comparison src/configure.in @ 1871:ad41c6afaa7b v7.2.168

updated for version 7.2-168
author vimboss
date Wed, 13 May 2009 12:49:39 +0000
parents 456ae41254c9
children 932ff0c0f57b
comparison
equal deleted inserted replaced
1870:92168cfd558c 1871:ad41c6afaa7b
2966 fi 2966 fi
2967 2967
2968 dnl Link with xpg4, it is said to make Korean locale working 2968 dnl Link with xpg4, it is said to make Korean locale working
2969 AC_CHECK_LIB(xpg4, _xpg4_setrunelocale, [LIBS="$LIBS -lxpg4"],,) 2969 AC_CHECK_LIB(xpg4, _xpg4_setrunelocale, [LIBS="$LIBS -lxpg4"],,)
2970 2970
2971 dnl Check how we can run ctags 2971 dnl Check how we can run ctags. Default to "ctags" when nothing works.
2972 dnl --version for Exuberant ctags (preferred) 2972 dnl --version for Exuberant ctags (preferred)
2973 dnl Add --fields=+S to get function signatures for omni completion. 2973 dnl Add --fields=+S to get function signatures for omni completion.
2974 dnl -t for typedefs (many ctags have this) 2974 dnl -t for typedefs (many ctags have this)
2975 dnl -s for static functions (Elvis ctags only?) 2975 dnl -s for static functions (Elvis ctags only?)
2976 dnl -v for variables. Dangerous, most ctags take this for 'vgrind style'. 2976 dnl -v for variables. Dangerous, most ctags take this for 'vgrind style'.
2978 AC_MSG_CHECKING(how to create tags) 2978 AC_MSG_CHECKING(how to create tags)
2979 test -f tags && mv tags tags.save 2979 test -f tags && mv tags tags.save
2980 if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then 2980 if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then
2981 TAGPRG="ctags -I INIT+ --fields=+S" 2981 TAGPRG="ctags -I INIT+ --fields=+S"
2982 else 2982 else
2983 TAGPRG="ctags"
2983 (eval etags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags" 2984 (eval etags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags"
2984 (eval etags -c /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags -c" 2985 (eval etags -c /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags -c"
2985 (eval ctags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags" 2986 (eval ctags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags"
2986 (eval ctags -t /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -t" 2987 (eval ctags -t /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -t"
2987 (eval ctags -ts /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -ts" 2988 (eval ctags -ts /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -ts"