]> git.pld-linux.org Git - packages/postgresql.git/blame - postgresql-link.patch
- remove autoconf version check
[packages/postgresql.git] / postgresql-link.patch
CommitLineData
3f8bba39
JR
1diff -urNp -x '*.orig' postgresql-11.5.org/configure.in postgresql-11.5/configure.in
2--- postgresql-11.5.org/configure.in 2021-05-08 22:44:52.028956200 +0200
3+++ postgresql-11.5/configure.in 2021-05-08 22:44:54.932351739 +0200
4@@ -1401,6 +1401,7 @@ fi
081e09bf
JB
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])
c37143c9
AZ
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
3f8bba39 12@@ -1408,6 +1409,7 @@ dnl people to try to use the avahi imple
c37143c9
AZ
13 dnl If you want to use Apple's own Bonjour code on another platform,
14 dnl just add -ldns_sd to LIBS manually.
081e09bf
JB
15 fi
16+AC_SUBST([BONJOUR_LIBS])
17
18 # for contrib/uuid-ossp
19 if test "$with_uuid" = bsd ; then
3f8bba39
JR
20diff -urNp -x '*.orig' postgresql-11.5.org/src/Makefile.global.in postgresql-11.5/src/Makefile.global.in
21--- postgresql-11.5.org/src/Makefile.global.in 2019-08-05 23:14:59.000000000 +0200
22+++ postgresql-11.5/src/Makefile.global.in 2021-05-08 22:44:54.932351739 +0200
23@@ -173,6 +173,7 @@ includedir_internal = $(pkgincludedir)/i
24 pgxsdir = $(pkglibdir)/pgxs
25 bitcodedir = $(pkglibdir)/bitcode
26
27+BONJOUR_LIBS = @BONJOUR_LIBS@
28
29 ##########################################################################
30 #
31diff -urNp -x '*.orig' postgresql-11.5.org/src/backend/Makefile postgresql-11.5/src/backend/Makefile
32--- postgresql-11.5.org/src/backend/Makefile 2019-08-05 23:14:59.000000000 +0200
33+++ postgresql-11.5/src/backend/Makefile 2021-05-08 22:44:54.932351739 +0200
34@@ -60,7 +60,7 @@ ifneq ($(PORTNAME), win32)
081e09bf
JB
35 ifneq ($(PORTNAME), aix)
36
37 postgres: $(OBJS)
38- $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(call expand_subsys,$^) $(LIBS) -o $@
39+ $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(call expand_subsys,$^) $(LIBS) $(BONJOUR_LIBS) -o $@
40
41 endif
42 endif
This page took 0.05071 seconds and 4 git commands to generate.