[geos-commits] r4077 - trunk

svn_geos at osgeo.org svn_geos at osgeo.org
Wed Aug 12 06:34:16 PDT 2015


Author: pramsey
Date: 2015-08-12 06:34:16 -0700 (Wed, 12 Aug 2015)
New Revision: 4077

Modified:
   trunk/configure.ac
Log:
Quiet 64-bit errors in OSX build by preferring longlongint defn of 64bit to longint


Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac	2015-08-12 00:22:26 UTC (rev 4076)
+++ trunk/configure.ac	2015-08-12 13:34:16 UTC (rev 4077)
@@ -217,10 +217,10 @@
 dnl Find a working 64bit integer
 PGAC_TYPE_64BIT_INT([int64_t])
 if test x"$HAVE_INT64_T_64" = x"no" ; then
-  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
+  PGAC_TYPE_64BIT_INT([long long int])
+  if test x"$HAVE_LONG_LONG_INT_64" = x"no" ; then
+    PGAC_TYPE_64BIT_INT([long int])
+    if test x"$HAVE_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



More information about the geos-commits mailing list