diff -urNp -x '*.orig' postgresql-13.6.org/configure.in postgresql-13.6/configure.in --- postgresql-13.6.org/configure.in 2022-04-04 17:57:53.706326633 +0200 +++ postgresql-13.6/configure.in 2022-04-04 17:57:57.921336380 +0200 @@ -1478,6 +1478,7 @@ fi 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 @@ -1485,6 +1486,7 @@ dnl people to try to use the avahi imple 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 diff -urNp -x '*.orig' postgresql-13.6.org/src/Makefile.global.in postgresql-13.6/src/Makefile.global.in --- postgresql-13.6.org/src/Makefile.global.in 2022-04-04 17:57:53.704326629 +0200 +++ postgresql-13.6/src/Makefile.global.in 2022-04-04 17:57:57.922336382 +0200 @@ -172,6 +172,7 @@ includedir_internal = $(pkgincludedir)/i pgxsdir = $(pkglibdir)/pgxs bitcodedir = $(pkglibdir)/bitcode +BONJOUR_LIBS = @BONJOUR_LIBS@ ########################################################################## # diff -urNp -x '*.orig' postgresql-13.6.org/src/backend/Makefile postgresql-13.6/src/backend/Makefile --- postgresql-13.6.org/src/backend/Makefile 2022-02-07 22:17:41.000000000 +0100 +++ postgresql-13.6/src/backend/Makefile 2022-04-04 17:57:57.921336380 +0200 @@ -63,7 +63,7 @@ ifneq ($(PORTNAME), win32) ifneq ($(PORTNAME), aix) postgres: $(OBJS) - $(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