From effecebad1cdbc5fbdf7d4fa972df614ca974bcd Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 10 Mar 2006 15:39:53 +0000 Subject: [PATCH] Fix order of linking of libxslt and libxml2, per Dave Page. --- contrib/xml2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/xml2/Makefile b/contrib/xml2/Makefile index b30da283640..dcaf68698dd 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