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
- Luke