[geos-commits] r2558 - trunk

svn_geos at osgeo.org svn_geos at osgeo.org
Mon Jun 8 05:40:27 EDT 2009


Author: strk
Date: 2009-06-08 05:40:27 -0400 (Mon, 08 Jun 2009)
New Revision: 2558

Modified:
   trunk/configure.in
Log:
Warn at configure time if 64bit integer type isn't found. See bug #202.


Modified: trunk/configure.in
===================================================================
--- trunk/configure.in	2009-06-08 09:30:55 UTC (rev 2557)
+++ trunk/configure.in	2009-06-08 09:40:27 UTC (rev 2558)
@@ -178,6 +178,9 @@
   PGAC_TYPE_64BIT_INT([long int])
   if test x"$HAVE_LONG_INT_64" = x"no" ; then
     PGAC_TYPE_64BIT_INT([long long int])
+    if test x"$HAVE_LONG_LONG_INT_64" = x"no" ; then
+      AC_MSG_WARN([Could not find a working 64bit int type, you may experience weird bugs (undefined behaviour)]);
+    fi
   fi
 fi
 



More information about the geos-commits mailing list