[geos-commits] r2245 - trunk

svn_geos at osgeo.org svn_geos at osgeo.org
Sun Jan 18 18:28:14 EST 2009


Author: pramsey
Date: 2009-01-18 18:28:14 -0500 (Sun, 18 Jan 2009)
New Revision: 2245

Modified:
   trunk/autogen.sh
Log:
Add some more info on missing tools.


Modified: trunk/autogen.sh
===================================================================
--- trunk/autogen.sh	2009-01-18 23:07:34 UTC (rev 2244)
+++ trunk/autogen.sh	2009-01-18 23:28:14 UTC (rev 2245)
@@ -14,12 +14,16 @@
 
 OSTYPE=`uname -s`
 
-for aclocal in aclocal aclocal-1.10 aclocal-1.9; do
+for aclocal in aclocal alocal-1.10 alocal-1.9; do
     ACLOCAL=`which $aclocal 2>/dev/null`
     if test -x "${ACLOCAL}"; then
         break;
     fi
 done
+if [ ! $ACLOCAL ]; then
+    echo "Missingn aclocal!"
+    exit
+fi
 
 for automake in automake automake-1.10 automake-1.9; do
     AUTOMAKE=`which $automake 2>/dev/null`
@@ -27,6 +31,10 @@
         break;
     fi
 done
+if [ ! $AUTOMAKE ]; then
+    echo "Missingn automake!"
+    exit
+fi
 
 
 for libtoolize in glibtoolize libtoolize; do
@@ -35,6 +43,10 @@
         break;
     fi
 done
+if [ ! $LIBTOOLIZE ]; then
+    echo "Missingn libtoolize!"
+    exit
+fi
 
 #AMFLAGS="--add-missing --copy --force-missing"
 AMFLAGS="--add-missing --copy"



More information about the geos-commits mailing list