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