diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-11-13 00:13:19 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-11-13 00:13:19 +0000 |
commit | 1ef648cfbc75041eddce48ef2e9eb004b7906efd (patch) | |
tree | 0d6e694635ca0aa0ef0b3b4523eacef7c9a2e736 /src | |
parent | 2ce1a60bfa82b44c5ae5e65aedac391c54e8bf8e (diff) | |
download | postgresql-1ef648cfbc75041eddce48ef2e9eb004b7906efd.tar.gz postgresql-1ef648cfbc75041eddce48ef2e9eb004b7906efd.zip |
I find that an out-of-the-box installation of OSSP uuid 1.6.0 installs
itself as libuuid, not libossp-uuid which was the only case expected by
our build support. Install a configure test to determine which name
to use (and to check that the library is present at all).
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 cbe2634091f..aa41ee9f9b6 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,5 +1,5 @@ # -*-makefile-*- -# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.239 2007/09/28 22:25:49 tgl Exp $ +# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.240 2007/11/13 00:13:19 tgl Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -228,6 +228,7 @@ DTRACEFLAGS = @DTRACEFLAGS@ LIBS = @LIBS@ LDAP_LIBS_FE = @LDAP_LIBS_FE@ LDAP_LIBS_BE = @LDAP_LIBS_BE@ +OSSP_UUID_LIBS = @OSSP_UUID_LIBS@ LD = @LD@ with_gnu_ld = @with_gnu_ld@ ld_R_works = @ld_R_works@ |