diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-10 15:39:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-10 15:39:42 +0000 |
commit | 7d84d3ec1c2014ca2246ab277420faa8bc23f218 (patch) | |
tree | dbaf7e2b9ea2622d298ee763671010afdc8066ac | |
parent | bbfa1c39a1463693e9a3d704439034e69f11d823 (diff) | |
download | postgresql-7d84d3ec1c2014ca2246ab277420faa8bc23f218.tar.gz postgresql-7d84d3ec1c2014ca2246ab277420faa8bc23f218.zip |
Fix order of linking of libxslt and libxml2, per Dave Page.
-rw-r--r-- | contrib/xml2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/xml2/Makefile b/contrib/xml2/Makefile index 5fdcc9fcd04..0bd5b032976 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 DATA = uninstall_pgxml.sql |