Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c1a03be

Browse files
committed
Document that configure option only affects contrib:
--with-ossp-uuid use OSSP UUID library when building /contrib/uuid-ossp
1 parent faac769 commit c1a03be

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ Optional Packages:
896896
--with-openssl build with OpenSSL support
897897
--without-readline do not use GNU Readline nor BSD Libedit for editing
898898
--with-libedit-preferred prefer BSD Libedit over GNU Readline
899-
--with-ossp-uuid build with OSSP UUID library for UUID generation
899+
--with-ossp-uuid use OSSP UUID library when building /contrib/uuid-ossp
900900
--with-libxml build with XML support
901901
--with-libxslt use XSLT support when building /contrib/xml2
902902
--with-system-tzdata=DIR use system time zone data in DIR

configure.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
dnl $PostgreSQL: pgsql/configure.in,v 1.534 2007/11/04 18:53:39 momjian Exp $
2+
dnl $PostgreSQL: pgsql/configure.in,v 1.535 2007/11/05 17:43:20 momjian Exp $
33
dnl
44
dnl Developers, please strive to achieve this order:
55
dnl
@@ -569,7 +569,7 @@ PGAC_ARG_BOOL(with, libedit-preferred, no,
569569
#
570570
# OSSP UUID library
571571
#
572-
PGAC_ARG_BOOL(with, ossp-uuid, no, [ --with-ossp-uuid build with OSSP UUID library for UUID generation])
572+
PGAC_ARG_BOOL(with, ossp-uuid, no, [ --with-ossp-uuid use OSSP UUID library when building /contrib/uuid-ossp ])
573573
AC_SUBST(with_ossp_uuid)
574574

575575

doc/src/sgml/installation.sgml

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.296 2007/11/04 18:53:39 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.297 2007/11/05 17:43:20 momjian Exp $ -->
22

33
<chapter id="installation">
44
<title><![%standalone-include[<productname>PostgreSQL</>]]>
@@ -937,11 +937,10 @@ su - postgres
937937
<term><option>--with-ossp-uuid</option></term>
938938
<listitem>
939939
<para>
940-
Build with the <ulink
941-
url="http://www.ossp.org/pkg/lib/uuid/">OSSP UUID
942-
library</ulink>. This is necessary for the contrib module
943-
<literal>uuid-ossp</literal> which provides functions to
944-
generate UUIDs.<indexterm><primary>UUID</primary></indexterm>
940+
Use the <ulink url="http://www.ossp.org/pkg/lib/uuid/">OSSP UUID
941+
library</ulink> when building <filename>/contrib/uuid-ossp</>.
942+
The library provides functions to generate
943+
UUIDs.<indexterm><primary>UUID</primary></indexterm>
945944
</para>
946945
</listitem>
947946
</varlistentry>

src/include/pg_config.h.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,8 @@
672672
/* Define to 1 to build with XML support. (--with-libxml) */
673673
#undef USE_LIBXML
674674

675-
/* Define to 1 to build with XSLT support. (--with-libxslt) */
675+
/* Define to 1 to use XSLT support when building /contrib/xml2.
676+
(--with-libxslt) */
676677
#undef USE_LIBXSLT
677678

678679
/* Define to select named POSIX semaphores. */

0 commit comments

Comments
 (0)