]> TLD Linux GIT Repositories - packages/postgresql.git/blob - postgresql-link.patch
- updated to 14.0
[packages/postgresql.git] / postgresql-link.patch
1 diff -ur postgresql-14.0.orig/configure.ac postgresql-14.0/configure.ac
2 --- postgresql-14.0.orig/configure.ac   2021-11-01 14:52:54.420842615 +0100
3 +++ postgresql-14.0/configure.ac        2021-11-01 14:53:49.104982037 +0100
4 @@ -1494,6 +1494,7 @@
5  
6  if test "$with_bonjour" = yes ; then
7    AC_CHECK_HEADER(dns_sd.h, [], [AC_MSG_ERROR([header file <dns_sd.h> is required for Bonjour])])
8 +  AC_CHECK_LIB(dns_sd, DNSServiceRegister, [BONJOUR_LIBS=-ldns_sd])
9  dnl At some point we might add something like
10  dnl AC_SEARCH_LIBS(DNSServiceRegister, dns_sd)
11  dnl but right now, what that would mainly accomplish is to encourage
12 @@ -1501,6 +1502,7 @@
13  dnl If you want to use Apple's own Bonjour code on another platform,
14  dnl just add -ldns_sd to LIBS manually.
15  fi
16 +AC_SUBST([BONJOUR_LIBS])
17  
18  # for contrib/uuid-ossp
19  if test "$with_uuid" = bsd ; then
20 diff -ur postgresql-14.0.orig/src/backend/Makefile postgresql-14.0/src/backend/Makefile
21 --- postgresql-14.0.orig/src/backend/Makefile   2021-11-01 14:52:54.349842434 +0100
22 +++ postgresql-14.0/src/backend/Makefile        2021-11-01 14:53:49.105982039 +0100
23 @@ -63,7 +63,7 @@
24  ifneq ($(PORTNAME), aix)
25  
26  postgres: $(OBJS)
27 -       $(CC) $(CFLAGS) $(call expand_subsys,$^) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(LIBS) -o $@
28 +       $(CC) $(CFLAGS) $(call expand_subsys,$^) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(LIBS) $(BONJOUR_LIBS) -o $@
29  
30  endif
31  endif
32 diff -ur postgresql-14.0.orig/src/Makefile.global.in postgresql-14.0/src/Makefile.global.in
33 --- postgresql-14.0.orig/src/Makefile.global.in 2021-11-01 14:52:54.297842301 +0100
34 +++ postgresql-14.0/src/Makefile.global.in      2021-11-01 14:53:49.105982039 +0100
35 @@ -172,6 +172,7 @@
36  pgxsdir = $(pkglibdir)/pgxs
37  bitcodedir = $(pkglibdir)/bitcode
38  
39 +BONJOUR_LIBS            = @BONJOUR_LIBS@
40  
41  ##########################################################################
42  #