From 1ef648cfbc75041eddce48ef2e9eb004b7906efd Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 13 Nov 2007 00:13:19 +0000 Subject: 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). --- contrib/uuid-ossp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/uuid-ossp') diff --git a/contrib/uuid-ossp/Makefile b/contrib/uuid-ossp/Makefile index 68db64c2de0..4ed83537dd7 100644 --- a/contrib/uuid-ossp/Makefile +++ b/contrib/uuid-ossp/Makefile @@ -1,11 +1,11 @@ -# $PostgreSQL: pgsql/contrib/uuid-ossp/Makefile,v 1.3 2007/11/10 23:59:51 momjian Exp $ +# $PostgreSQL: pgsql/contrib/uuid-ossp/Makefile,v 1.4 2007/11/13 00:13:19 tgl Exp $ MODULE_big = uuid-ossp OBJS = uuid-ossp.o DATA_built = uuid-ossp.sql DATA = uninstall_uuid-ossp.sql -SHLIB_LINK += -lossp-uuid +SHLIB_LINK += $(OSSP_UUID_LIBS) ifdef USE_PGXS PG_CONFIG = pg_config -- cgit v1.2.3