Changeset: 4c6c6b484d34 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=4c6c6b484d34
Modified Files:
        configure.ag
Branch: Oct2012
Log Message:

Ported to Ubuntu Quantal Quetzal.
Whether it is the newer geos library (3.3.3) or something
quantal-specific, I don't know, but we need to use the --clibs option
to geos-config.  This option does not exist on our Fedora system.


diffs (16 lines):

diff --git a/configure.ag b/configure.ag
--- a/configure.ag
+++ b/configure.ag
@@ -2220,7 +2220,11 @@ yes|auto)
        fi
        if test "x$have_geos" != xno; then
                GEOS_INCS="`$GEOS_CONFIG --cflags`"
-               GEOS_LIBS="`$GEOS_CONFIG --libs | sed 's:-lgeos:-lgeos_c:'`"
+               if GEOS_LIBS="`$GEOS_CONFIG --clibs 2> /dev/null`"; then
+                       :
+               else
+                       GEOS_LIBS="`$GEOS_CONFIG --libs | sed 
's:-lgeos:-lgeos_c:'`"
+               fi
        fi
        if test "x$have_geos" = xno; then
                if test "x$enable_geom" = xyes; then
_______________________________________________
checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to