Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Fix contrib/sepgsql and contrib/xml2 to always link required libraries.
authorRobert Haas <rhaas@postgresql.org>
Fri, 19 Aug 2011 15:57:38 +0000 (11:57 -0400)
committerRobert Haas <rhaas@postgresql.org>
Fri, 19 Aug 2011 16:00:45 +0000 (12:00 -0400)
contrib/xml2 can get by without libxslt; the relevant features just
won't work.  But if doesn't have libxml2, or if sepgsql doesn't have
libselinux, the link succeeds but the module then fails to work at load
time.  To avoid that, link the require libraries unconditionally, so
that it will be clear at link-time that there is a problem.

Per discussion with Tom Lane and KaiGai Kohei.

contrib/sepgsql/Makefile
contrib/xml2/Makefile

index 7f997eee99deadc73ad59a158c86a9bdece11b75..1978ccf8c86e4f50281fb61b10af1de6062949e8 100644 (file)
@@ -19,7 +19,7 @@ include $(top_builddir)/src/Makefile.global
 include $(top_srcdir)/contrib/contrib-global.mk
 endif
 
-SHLIB_LINK += $(filter -lselinux, $(LIBS))
+SHLIB_LINK += -lselinux
 REGRESS_OPTS += --launcher $(top_builddir)/contrib/sepgsql/launcher
 
 check_selinux_environment:
index ad325723c9917235edd7a629da1a2901c06be331..be3d018cf535abaf13a38a09483442c654dfe496 100644 (file)
@@ -8,7 +8,7 @@ DATA = xml2--1.0.sql xml2--unpackaged--1.0.sql
 
 REGRESS = xml2
 
-SHLIB_LINK += $(filter -lxslt, $(LIBS)) $(filter -lxml2, $(LIBS))
+SHLIB_LINK += $(filter -lxslt, $(LIBS)) -lxml2
 
 ifdef USE_PGXS
 PG_CONFIG = pg_config