diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-10 15:40:06 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-10 15:40:06 +0000 |
commit | ea8eeb4ca7cd1a699d4104f85867a804799b483b (patch) | |
tree | 33acc3e5d4bc98a1cc9833d32baf76cd0c1e90d0 | |
parent | 3923f08ca03889d3e6d818085538cedbb388a140 (diff) | |
download | postgresql-ea8eeb4ca7cd1a699d4104f85867a804799b483b.tar.gz postgresql-ea8eeb4ca7cd1a699d4104f85867a804799b483b.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 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 |