X-Git-Url: https://git.tld-linux.org/?a=blobdiff_plain;f=postgresql-link.patch;h=4c6cefbed4eaa76760198591d7c4c71483488436;hb=8ce77702f0f7f0e875933082aefce1d901fed071;hp=1e89ba17f66faf5c6d306a708011a8a6c47c2367;hpb=82a0dacdf4c683ddc120706c512abceadc2be3c4;p=packages%2Fpostgresql.git diff --git a/postgresql-link.patch b/postgresql-link.patch index 1e89ba1..4c6cefb 100644 --- a/postgresql-link.patch +++ b/postgresql-link.patch @@ -1,31 +1,37 @@ ---- postgresql-9.5.0/configure.in.orig 2016-01-14 18:59:41.640973653 +0100 -+++ postgresql-9.5.0/configure.in 2016-01-14 21:10:21.783977990 +0100 -@@ -1192,7 +1192,9 @@ +--- postgresql-15.2/configure.ac 2023-03-07 23:37:05.721401513 +0100 ++++ postgresql-15.2/configure.ac 2023-03-07 23:37:22.414607273 +0100 +@@ -1603,6 +1603,7 @@ if test "$with_bonjour" = yes ; then AC_CHECK_HEADER(dns_sd.h, [], [AC_MSG_ERROR([header file is required for Bonjour])]) + AC_CHECK_LIB(dns_sd, DNSServiceRegister, [BONJOUR_LIBS=-ldns_sd]) + dnl At some point we might add something like + dnl AC_SEARCH_LIBS(DNSServiceRegister, dns_sd) + dnl but right now, what that would mainly accomplish is to encourage +@@ -1610,6 +1611,7 @@ + dnl If you want to use Apple's own Bonjour code on another platform, + dnl just add -ldns_sd to LIBS manually. fi +AC_SUBST([BONJOUR_LIBS]) # for contrib/uuid-ossp if test "$with_uuid" = bsd ; then ---- postgresql-9.5.0/src/backend/Makefile.orig 2016-01-04 22:29:34.000000000 +0100 -+++ postgresql-9.5.0/src/backend/Makefile 2016-01-14 21:10:48.093976872 +0100 -@@ -54,7 +54,7 @@ +--- postgresql-15.2/src/backend/Makefile 2023-03-07 23:37:05.607400108 +0100 ++++ postgresql-15.2/src/backend/Makefile 2023-03-07 23:37:22.415607285 +0100 +@@ -64,7 +64,7 @@ ifneq ($(PORTNAME), aix) postgres: $(OBJS) -- $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(call expand_subsys,$^) $(LIBS) -o $@ -+ $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(call expand_subsys,$^) $(LIBS) $(BONJOUR_LIBS) -o $@ +- $(CC) $(CFLAGS) $(call expand_subsys,$^) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(LIBS) -o $@ ++ $(CC) $(CFLAGS) $(call expand_subsys,$^) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(LIBS) $(BONJOUR_LIBS) -o $@ endif endif ---- postgresql-9.5.0/src/Makefile.global.in.orig 2016-01-04 22:29:34.000000000 +0100 -+++ postgresql-9.5.0/src/Makefile.global.in 2016-01-14 21:11:50.820640805 +0100 -@@ -216,6 +216,7 @@ - PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ - PTHREAD_LIBS = @PTHREAD_LIBS@ +--- postgresql-15.2/src/Makefile.global.in 2023-03-07 23:37:05.481398555 +0100 ++++ postgresql-15.2/src/Makefile.global.in 2023-03-07 23:37:22.415607285 +0100 +@@ -172,6 +172,7 @@ + pgxsdir = $(pkglibdir)/pgxs + bitcodedir = $(pkglibdir)/bitcode +BONJOUR_LIBS = @BONJOUR_LIBS@