From: Tom Lane Date: Fri, 10 Mar 2006 15:40:06 +0000 (+0000) Subject: Fix order of linking of libxslt and libxml2, per Dave Page. X-Git-Tag: REL8_0_8~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ea8eeb4ca7cd1a699d4104f85867a804799b483b;p=thirdparty%2Fpostgresql.git Fix order of linking of libxslt and libxml2, per Dave Page. --- diff --git a/contrib/xml2/Makefile b/contrib/xml2/Makefile index 7d4779f25cb..a7398c1a21a 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