From e5591e8c38690c1bff9ff39ec0ce24274f0d61c6 Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Thu, 23 May 2019 19:46:27 +0900 Subject: [PATCH] Fix compile error on freebsd. Add missing include file "netinet/in.h". per bug519 and bug512. --- src/auth/pool_hba.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/auth/pool_hba.c b/src/auth/pool_hba.c index 06b372782..794ec0124 100644 --- a/src/auth/pool_hba.c +++ b/src/auth/pool_hba.c @@ -30,6 +30,10 @@ #include #include +#ifdef __FreeBSD__ +#include +#endif + #include "pool.h" #include "auth/pool_hba.h" #include "utils/pool_path.h" -- 2.39.5