summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2007-04-15 12:48:24 +0000
committerAndrew Dunstan <andrew@dunslane.net>2007-04-15 12:48:24 +0000
commitf97d4a267a8d8b680960dfc32bd7111eb7ed8dca (patch)
tree3411c9417f484e70601ce9942c7c264951eb5e07 /contrib
parent6041b92238897b06fe7bbe229a6e99f80121fa4a (diff)
downloadpostgresql-f97d4a267a8d8b680960dfc32bd7111eb7ed8dca.tar.gz
Add --with-libxslt configure option
Diffstat (limited to 'contrib')
-rw-r--r--contrib/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/Makefile b/contrib/Makefile
index 0123688ba2..411bbec26c 100644
--- a/contrib/Makefile
+++ b/contrib/Makefile
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/contrib/Makefile,v 1.73 2007/04/14 12:57:07 adunstan Exp $
+# $PostgreSQL: pgsql/contrib/Makefile,v 1.74 2007/04/15 12:48:23 adunstan Exp $
subdir = contrib
top_builddir = ..
@@ -37,9 +37,15 @@ ifeq ($(with_openssl),yes)
WANTED_DIRS += sslinfo
endif
+ifeq ($(with_libxml),yes)
+ifeq ($(with_libxslt),yes)
+WANTED_DIRS += xml2
+endif
+endif
+
# Missing:
# start-scripts \ (does not have a makefile)
-# xml2 \ (requires libxml and libxslt installed)
+
all install installdirs uninstall distprep clean distclean maintainer-clean:
@for dir in $(WANTED_DIRS); do \