From 4c870036d0d3458546f9cf8a83788d2bc1faea2d Mon Sep 17 00:00:00 2001 From: xcomputerman Date: Sat, 6 Mar 2004 17:20:04 +0000 Subject: [PATCH] Add configure option to manually specify vim directory SVN revision: 9246 --- legacy/edje/configure.in | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/legacy/edje/configure.in b/legacy/edje/configure.in index 51e348a321..6d7ce4e5b9 100644 --- a/legacy/edje/configure.in +++ b/legacy/edje/configure.in @@ -215,17 +215,32 @@ ecore_libs=`$ECORE_CONFIG --libs` AC_SUBST(ecore_cflags) AC_SUBST(ecore_libs) +AC_MSG_CHECKING([for location of Vim data files]) install_vim="yes"; -if test -d "${prefix}/share/vim"; then - vimdir="${prefix}/share/vim" -elif test -d "/usr/share/vim"; then - vimdir="/usr/share/vim" -elif test -d "/usr/local/share/vim"; then - vimdir="/usr/local/share/vim" -elif test -d "/opt/share/vim"; then - vimdir="/opt/share/vim" +AC_ARG_WITH(vim, + [ --with-vim=DIR Location of Vim data files (PREFIX/share/vim)], + [if test -d "${withval}"; then + vimdir="${withval}" + fi]) + +if test "x${vimdir}" = "x" ; then + if test -d "${prefix}/share/vim"; then + vimdir="${prefix}/share/vim" + elif test -d "/usr/share/vim"; then + vimdir="/usr/share/vim" + elif test -d "/usr/local/share/vim"; then + vimdir="/usr/local/share/vim" + elif test -d "/opt/share/vim"; then + vimdir="/opt/share/vim" + else + install_vim="no" + fi +fi + +if test "${install_vim}" = "yes"; then + AC_MSG_RESULT([$vimdir]) else - install_vim="no" + AC_MSG_RESULT([Not found, EDC syntax file will not be installed]) fi AC_SUBST(vimdir)