]> granicus.if.org Git - postgresql/commitdiff
Portability fix for commit 9a895462d.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 31 Mar 2018 00:52:05 +0000 (20:52 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 31 Mar 2018 00:52:13 +0000 (20:52 -0400)
So far as I can find, NI_MAXHOST isn't actually required anywhere by
POSIX.  Nonetheless, commit 9a895462d supposed that it could rely on
having that symbol without any ceremony at all.  We do have a hack
for providing it if the platform doesn't, in getaddrinfo.h, so fix
the problem by #including that file.  Per buildfarm.

src/include/replication/walreceiver.h

index 14d401674d602cdb777249dd574e5aff4c94a8ab..76268ceb23f6cb7bf97c87151bdb9d4ed7b3244b 100644 (file)
@@ -15,6 +15,7 @@
 #include "access/xlog.h"
 #include "access/xlogdefs.h"
 #include "fmgr.h"
+#include "getaddrinfo.h"               /* for NI_MAXHOST */
 #include "replication/logicalproto.h"
 #include "replication/walsender.h"
 #include "storage/latch.h"