diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-11-05 17:43:20 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-11-05 17:43:20 +0000 |
commit | c1a03bee0806c14511bf94d257e3e41bcaf2a78a (patch) | |
tree | e1dc58e2bcf1ac2265b1d19c128fd6b1e62c0f76 | |
parent | faac769a6b27319400ba351740c51f21eb9495d0 (diff) | |
download | postgresql-c1a03bee0806c14511bf94d257e3e41bcaf2a78a.tar.gz postgresql-c1a03bee0806c14511bf94d257e3e41bcaf2a78a.zip |
Document that configure option only affects contrib:
--with-ossp-uuid use OSSP UUID library when building /contrib/uuid-ossp
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | doc/src/sgml/installation.sgml | 11 | ||||
-rw-r--r-- | src/include/pg_config.h.in | 3 |
4 files changed, 10 insertions, 10 deletions
diff --git a/configure b/configure index 8e44cb5642b..1ee9c59d9f4 100755 --- a/configure +++ b/configure @@ -896,7 +896,7 @@ Optional Packages: --with-openssl build with OpenSSL support --without-readline do not use GNU Readline nor BSD Libedit for editing --with-libedit-preferred prefer BSD Libedit over GNU Readline - --with-ossp-uuid build with OSSP UUID library for UUID generation + --with-ossp-uuid use OSSP UUID library when building /contrib/uuid-ossp --with-libxml build with XML support --with-libxslt use XSLT support when building /contrib/xml2 --with-system-tzdata=DIR use system time zone data in DIR diff --git a/configure.in b/configure.in index 0539a0ed0cb..4868717e9c5 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $PostgreSQL: pgsql/configure.in,v 1.534 2007/11/04 18:53:39 momjian Exp $ +dnl $PostgreSQL: pgsql/configure.in,v 1.535 2007/11/05 17:43:20 momjian Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -569,7 +569,7 @@ PGAC_ARG_BOOL(with, libedit-preferred, no, # # OSSP UUID library # -PGAC_ARG_BOOL(with, ossp-uuid, no, [ --with-ossp-uuid build with OSSP UUID library for UUID generation]) +PGAC_ARG_BOOL(with, ossp-uuid, no, [ --with-ossp-uuid use OSSP UUID library when building /contrib/uuid-ossp ]) AC_SUBST(with_ossp_uuid) diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index d185cbb2a5e..9c761aba562 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.296 2007/11/04 18:53:39 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.297 2007/11/05 17:43:20 momjian Exp $ --> <chapter id="installation"> <title><![%standalone-include[<productname>PostgreSQL</>]]> @@ -937,11 +937,10 @@ su - postgres <term><option>--with-ossp-uuid</option></term> <listitem> <para> - Build with the <ulink - url="http://www.ossp.org/pkg/lib/uuid/">OSSP UUID - library</ulink>. This is necessary for the contrib module - <literal>uuid-ossp</literal> which provides functions to - generate UUIDs.<indexterm><primary>UUID</primary></indexterm> + Use the <ulink url="http://www.ossp.org/pkg/lib/uuid/">OSSP UUID + library</ulink> when building <filename>/contrib/uuid-ossp</>. + The library provides functions to generate + UUIDs.<indexterm><primary>UUID</primary></indexterm> </para> </listitem> </varlistentry> diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 570472e13f4..e147e86b7b4 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -672,7 +672,8 @@ /* Define to 1 to build with XML support. (--with-libxml) */ #undef USE_LIBXML -/* Define to 1 to build with XSLT support. (--with-libxslt) */ +/* Define to 1 to use XSLT support when building /contrib/xml2. + (--with-libxslt) */ #undef USE_LIBXSLT /* Define to select named POSIX semaphores. */ |