From: Tom Lane Date: Fri, 10 Mar 2006 15:39:53 +0000 (+0000) Subject: Fix order of linking of libxslt and libxml2, per Dave Page. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=17b1039be7075399b6f995db6a709e5b60bf3f33;p=users%2Fbernd%2Fpostgres.git Fix order of linking of libxslt and libxml2, per Dave Page. --- diff --git a/contrib/xml2/Makefile b/contrib/xml2/Makefile index b30da28364..dcaf68698d 100644 --- a/contrib/xml2/Makefile +++ b/contrib/xml2/Makefile @@ -6,7 +6,7 @@ MODULE_big = pgxml OBJS = xpath.o xslt_proc.o # Remove -lxslt from the following line if you don't have libxslt. -SHLIB_LINK = -lxml2 -lxslt +SHLIB_LINK = -lxslt -lxml2 DATA_built = pgxml.sql DOCS = README.xml2