aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-03-10 15:39:53 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-03-10 15:39:53 +0000
commiteffecebad1cdbc5fbdf7d4fa972df614ca974bcd (patch)
treea31d4b959001898bb6ccf785ec8bae147fbc2c6d
parent98ab0c96dd8b039d4a2e415d0c3f7def6ab8c427 (diff)
downloadpostgresql-effecebad1cdbc5fbdf7d4fa972df614ca974bcd.tar.gz
postgresql-effecebad1cdbc5fbdf7d4fa972df614ca974bcd.zip
Fix order of linking of libxslt and libxml2, per Dave Page.
-rw-r--r--contrib/xml2/Makefile2
1 files changed, 1 insertions, 1 deletions
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