diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2007-04-21 17:26:18 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2007-04-21 17:26:18 +0000 |
commit | 74496bc298e099401a8b41c1c529bf9fb7aa9f3c (patch) | |
tree | 691b988a5d60c61fda649f535537eb7258873653 /src | |
parent | 71495f296e54468c3998ae1d9bc1654867b6369f (diff) | |
download | postgresql-74496bc298e099401a8b41c1c529bf9fb7aa9f3c.tar.gz postgresql-74496bc298e099401a8b41c1c529bf9fb7aa9f3c.zip |
Contrib module uuid-ossp for generating UUID values using the OSSP UUID
library. New configure option --with-ossp-uuid to activate.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 2266704922c..604d7bbc67f 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,5 +1,5 @@ # -*-makefile-*- -# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.235 2007/04/15 12:48:23 adunstan Exp $ +# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.236 2007/04/21 17:26:18 petere Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -152,6 +152,7 @@ with_perl = @with_perl@ with_python = @with_python@ with_tcl = @with_tcl@ with_openssl = @with_openssl@ +with_ossp_uuid = @with_ossp_uuid@ with_libxml = @with_libxml@ with_libxslt = @with_libxslt@ with_zlib = @with_zlib@ |