From: Sandro Santilli Date: Mon, 2 Oct 2017 06:20:26 +0000 (+0000) Subject: Add -lm to liblwgeom link line X-Git-Tag: 2.3.4~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20c0b96cfc020974683475666f50241e0f0c3dce;p=postgis Add -lm to liblwgeom link line References #3869 for 2.3 branch git-svn-id: http://svn.osgeo.org/postgis/branches/2.3@15867 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/NEWS b/NEWS index 0b9c12497..6a8207c66 100644 --- a/NEWS +++ b/NEWS @@ -23,6 +23,7 @@ PostGIS 2.3.4 - #3781, Not-quite curved CurvePolygon rejected by ST_Contains - #3818, Triangles unclosed in M should be parseable - #3866, Rare crash generating TWKB with large coordinate values + - #3869, Fix build with "gold" linker PostGIS 2.3.3 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@