[geos-commits] r4306 - in branches/3.6: . tools

Sandro Santilli strk at kbt.io
Tue Nov 22 02:49:08 PST 2016


Author: strk
Date: 2016-11-22 02:49:08 -0800 (Tue, 22 Nov 2016)
New Revision: 4306

Modified:
   branches/3.6/NEWS
   branches/3.6/tools/geos-config.in
Log:
Fix --static-clibs and --static-cclibs returns from geos-config

Patch by Edzer Pebesma <edzer.pebesma at uni-muenster.de>

Modified: branches/3.6/NEWS
===================================================================
--- branches/3.6/NEWS	2016-11-10 19:14:58 UTC (rev 4305)
+++ branches/3.6/NEWS	2016-11-22 10:49:08 UTC (rev 4306)
@@ -3,6 +3,7 @@
 
 - Bug fixes / improvements
   - Fix GEOSSTRtree_nearest_r signature and add implementation (#796)
+  - Fix --static-clibs and --static-cclibs returns from geos-config
 
 Changes in 3.6.0
 2016-10-25

Modified: branches/3.6/tools/geos-config.in
===================================================================
--- branches/3.6/tools/geos-config.in	2016-11-10 19:14:58 UTC (rev 4305)
+++ branches/3.6/tools/geos-config.in	2016-11-22 10:49:08 UTC (rev 4306)
@@ -52,10 +52,10 @@
       echo -L${libdir} -lgeos
       ;;
     --static-clibs)
-      echo -L${libdir} -lgeos_c -lgeos -m
+      echo -L${libdir} -lgeos_c -lgeos -lm
       ;;
     --static-cclibs)
-      echo -L${libdir} -lgeos -m
+      echo -L${libdir} -lgeos -lm
       ;;
     --ldflags)
       echo -L${libdir}



More information about the geos-commits mailing list