From: Sandro Santilli Date: Mon, 2 Oct 2017 06:17:36 +0000 (+0000) Subject: Add -lm to liblwgeom link line X-Git-Tag: 2.4.1~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d14a5b97f7758380efc9749c5541b4837c8e49a4;p=postgis Add -lm to liblwgeom link line References #3869 for 2.4 branch git-svn-id: http://svn.osgeo.org/postgis/branches/2.4@15866 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/NEWS b/NEWS index ebe05ae1f..32a39f49e 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,7 @@ YYYY/MM/DD * Bug fixes * - #3864, Fix memory leaks in BTREE operators + - #3869, Fix build with "gold" linker PostGIS 2.4.0 2017/09/30 diff --git a/liblwgeom/Makefile.in b/liblwgeom/Makefile.in index f2652278f..e78e245c3 100644 --- a/liblwgeom/Makefile.in +++ b/liblwgeom/Makefile.in @@ -25,7 +25,7 @@ CC = @CC@ CPPFLAGS = @CPPFLAGS@ CFLAGS = @CFLAGS@ @PICFLAGS@ @WARNFLAGS@ @GEOS_CPPFLAGS@ @PROJ_CPPFLAGS@ @JSON_CPPFLAGS@ -LDFLAGS = @LDFLAGS@ @GEOS_LDFLAGS@ -lgeos_c @PROJ_LDFLAGS@ -lproj @JSON_LDFLAGS@ +LDFLAGS = @LDFLAGS@ @GEOS_LDFLAGS@ -lgeos_c @PROJ_LDFLAGS@ -lproj @JSON_LDFLAGS@ -lm NUMERICFLAGS = @NUMERICFLAGS@ top_builddir = @top_builddir@ prefix = @prefix@