Pg V10: Patch for bug in bonjour support

From: Luke Lonergan <luke(at)brightforge(dot)com>
To: <pgsql-hackers(at)postgresql(dot)org>
Subject: Pg V10: Patch for bug in bonjour support
Date: 2017-11-08 21:05:30
Message-ID: 2D8331C5-D64F-44C1-8717-63EDC6EAF7EB@brightforge.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi all – I’m doing some geo analysis and was excited to see all the new features in V10 – particularly the declarative partitioning support!

Found a tiny bug in the build for Bonjour – patch below:

*** configure.in  2017-10-02 14:09:15.000000000 -0700

--- /home/llonergan/archive/configure.in    2017-11-08 12:53:29.522584528 -0800

***************

*** 1293,1298 ****

--- 1293,1299 ----

if test "$with_bonjour" = yes ; then

AC_CHECK_HEADER(dns_sd.h, [], [AC_MSG_ERROR([header file <dns_sd.h> is required for Bonjour])])

+ AC_CHECK_LIB(dns_sd, DNSServiceRefSockFD, [], [AC_MSG_ERROR([library 'dns_sd' is required for Bonjour])])

fi

# for contrib/uuid-ossp

- Luke

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Thomas Munro 2017-11-08 21:23:07 Re: Pg V10: Patch for bug in bonjour support
Previous Message Tom Lane 2017-11-08 21:05:27 Re: Simplify ACL handling for large objects and removal of superuser() checks