From: Sandro Santilli Date: Thu, 11 Jun 2015 09:06:47 +0000 (+0000) Subject: Build liblwgeom with -no-undefined flag X-Git-Tag: 2.2.0rc1~372 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=58289f8e9ab7c5f822e377d8e6a0f67ff84d7c1a;p=postgis Build liblwgeom with -no-undefined flag Doing so should report unresolved symbol references from regular object files. git-svn-id: http://svn.osgeo.org/postgis/trunk@13650 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/liblwgeom/Makefile.in b/liblwgeom/Makefile.in index 7eb5c17d2..82baaf2bb 100644 --- a/liblwgeom/Makefile.in +++ b/liblwgeom/Makefile.in @@ -100,6 +100,8 @@ LDFLAGS += @SFCGAL_LDFLAGS@ SA_OBJS += lwgeom_sfcgal.o endif +LDFLAGS += -no-undefined + LT_SA_OBJS = $(SA_OBJS:.o=.lo) LT_NM_OBJS = $(NM_OBJS:.o=.lo) LT_OBJS = $(LT_SA_OBJS) $(LT_NM_OBJS)