diff options
| author | Andrew Dunstan | 2007-04-13 18:50:01 +0000 |
|---|---|---|
| committer | Andrew Dunstan | 2007-04-13 18:50:01 +0000 |
| commit | 6506a584cc853d2c6dcac76e75c9e1c802586afe (patch) | |
| tree | 7ce9cdf144d77685984511ea4a12f65c167d1cc0 /contrib/Makefile | |
| parent | 15ebfeec2de8c29585ee4c976c089a7cd95331b2 (diff) | |
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 'contrib/Makefile')
| -rw-r--r-- | contrib/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/contrib/Makefile b/contrib/Makefile index 637ba237678..ee8c965004c 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/Makefile,v 1.71 2007/02/08 15:09:47 momjian Exp $ +# $PostgreSQL: pgsql/contrib/Makefile,v 1.72 2007/04/13 18:50:01 adunstan Exp $ subdir = contrib top_builddir = .. @@ -37,9 +37,12 @@ ifeq ($(with_openssl),yes) WANTED_DIRS += sslinfo endif +ifeq ($(with_libxml),yes) +WANTED_DIRS += xml2 +endif + # Missing: # start-scripts \ (does not have a makefile) -# xml2 \ (requires libxml installed) all install installdirs uninstall distprep clean distclean maintainer-clean: |
