diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2007-04-15 12:48:24 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2007-04-15 12:48:24 +0000 |
commit | f97d4a267a8d8b680960dfc32bd7111eb7ed8dca (patch) | |
tree | 3411c9417f484e70601ce9942c7c264951eb5e07 /src | |
parent | 6041b92238897b06fe7bbe229a6e99f80121fa4a (diff) | |
download | postgresql-f97d4a267a8d8b680960dfc32bd7111eb7ed8dca.tar.gz postgresql-f97d4a267a8d8b680960dfc32bd7111eb7ed8dca.zip |
Add --with-libxslt configure option
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 3 | ||||
-rw-r--r-- | src/include/pg_config.h.in | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 39d18b6acc6..2266704922c 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,5 +1,5 @@ # -*-makefile-*- -# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.234 2007/04/13 18:50:01 adunstan Exp $ +# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.235 2007/04/15 12:48:23 adunstan Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -153,6 +153,7 @@ with_python = @with_python@ with_tcl = @with_tcl@ with_openssl = @with_openssl@ with_libxml = @with_libxml@ +with_libxslt = @with_libxslt@ with_zlib = @with_zlib@ enable_shared = @enable_shared@ enable_rpath = @enable_rpath@ diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index b76dcd874f8..e357e18272a 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -256,6 +256,9 @@ /* Define to 1 if you have the `xml2' library (-lxml2). */ #undef HAVE_LIBXML2 +/* Define to 1 if you have the `xslt' library (-lxslt). */ +#undef HAVE_LIBXSLT + /* Define to 1 if you have the `z' library (-lz). */ #undef HAVE_LIBZ |