diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2007-04-13 18:50:01 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2007-04-13 18:50:01 +0000 |
commit | 6506a584cc853d2c6dcac76e75c9e1c802586afe (patch) | |
tree | 7ce9cdf144d77685984511ea4a12f65c167d1cc0 /src | |
parent | 15ebfeec2de8c29585ee4c976c089a7cd95331b2 (diff) | |
download | postgresql-6506a584cc853d2c6dcac76e75c9e1c802586afe.tar.gz postgresql-6506a584cc853d2c6dcac76e75c9e1c802586afe.zip |
Enable building contrib/xml2 if configured using --with-libxml.
If this breaks things due to missing libxslt, then I'll have to
revert it, but let's see if it breaks the buildfarm.
Workarounds in case libxslt is missing include:
. don't configure with libxml, or
. don't build contrib modules from the contrib Makefile (use the individual module Makefiles instead), or
. change the xml2 Makefile
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 740918e422e..39d18b6acc6 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,5 +1,5 @@ # -*-makefile-*- -# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.233 2007/02/09 15:55:57 petere Exp $ +# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.234 2007/04/13 18:50:01 adunstan Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -152,6 +152,7 @@ with_perl = @with_perl@ with_python = @with_python@ with_tcl = @with_tcl@ with_openssl = @with_openssl@ +with_libxml = @with_libxml@ with_zlib = @with_zlib@ enable_shared = @enable_shared@ enable_rpath = @enable_rpath@ |