[mapserver-commits] r13123 - trunk/mapserver/tinyows

svn at osgeo.org svn at osgeo.org
Wed Feb 8 20:33:18 EST 2012


Author: colivier
Date: 2012-02-08 17:33:18 -0800 (Wed, 08 Feb 2012)
New Revision: 13123

Modified:
   trunk/mapserver/tinyows/configure.in
Log:
add exuberant ctags test (ticket #1, report by cschmidt)
ol | 2008-02-27 16:45:01 +0100 (Wed, 27 Feb 2008)

Modified: trunk/mapserver/tinyows/configure.in
===================================================================
--- trunk/mapserver/tinyows/configure.in	2012-02-09 01:33:08 UTC (rev 13122)
+++ trunk/mapserver/tinyows/configure.in	2012-02-09 01:33:18 UTC (rev 13123)
@@ -17,9 +17,13 @@
 if test [ $ENABLE_API == 1]; then
         AC_CHECK_PROG(HAVE_CTAGS, ctags, yes, no)
         if test [ $HAVE_CTAGS = no ]; then
-                AC_MSG_ERROR(ctags must be installed to deal with api.h generation)
+                AC_MSG_ERROR(exuberant ctags must be installed to deal with api.h generation)
         fi
 
+	if test [ `ctags --version | grep Exuberant > /dev/null && echo 1 || echo 0` = 0 ]; then
+                AC_MSG_ERROR(exuberant ctags must be installed instead of emacs ctags)
+        fi
+
 	API=api
 fi
 



More information about the mapserver-commits mailing list