]> git.pld-linux.org Git - packages/postgresql.git/blame - postgresql-link.patch
- llvm bcond
[packages/postgresql.git] / postgresql-link.patch
CommitLineData
c37143c9
AZ
1--- postgresql-9.5.0/configure.in.orig 2018-02-21 03:23:25.335399998 +0100
2+++ postgresql-9.5.0/configure.in 2018-02-21 03:28:24.392066743 +0100
3@@ -1203,6 +1203,7 @@
081e09bf
JB
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])
c37143c9
AZ
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@@ -1210,6 +1211,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.
081e09bf
JB
14 fi
15+AC_SUBST([BONJOUR_LIBS])
16
17 # for contrib/uuid-ossp
18 if test "$with_uuid" = bsd ; then
19--- postgresql-9.5.0/src/backend/Makefile.orig 2016-01-04 22:29:34.000000000 +0100
20+++ postgresql-9.5.0/src/backend/Makefile 2016-01-14 21:10:48.093976872 +0100
21@@ -54,7 +54,7 @@
22 ifneq ($(PORTNAME), aix)
23
24 postgres: $(OBJS)
25- $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(call expand_subsys,$^) $(LIBS) -o $@
26+ $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(call expand_subsys,$^) $(LIBS) $(BONJOUR_LIBS) -o $@
27
28 endif
29 endif
30--- postgresql-9.5.0/src/Makefile.global.in.orig 2016-01-04 22:29:34.000000000 +0100
31+++ postgresql-9.5.0/src/Makefile.global.in 2016-01-14 21:11:50.820640805 +0100
32@@ -216,6 +216,7 @@
33 PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
34 PTHREAD_LIBS = @PTHREAD_LIBS@
35
36+BONJOUR_LIBS = @BONJOUR_LIBS@
37
38 ##########################################################################
39 #
This page took 0.031052 seconds and 4 git commands to generate.