diff options
author | Jochen Neumeister <joneum@FreeBSD.org> | 2018-11-15 21:06:26 +0000 |
---|---|---|
committer | Jochen Neumeister <joneum@FreeBSD.org> | 2018-11-15 21:06:26 +0000 |
commit | a5f13487caad93042f66f3fa6093310885eed0fe (patch) | |
tree | 063f51853db23631e628245552966994938dd4d3 /databases/pgpool-II-40/files/patch-src_auth_pool__hba.c | |
parent | devel/awscli: Update 1.16.44 -> 1.16.55 (diff) |
New Port: databases/pgpool-II-40
pgpool is a connection pool server for PostgreSQL. pgpool runs between
PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can
connect to pgpool as if it were a standard PostgreSQL server.
pgpool caches the connection to PostgreSQL server to reduce the overhead to
establish the connection to it.
WWW: http://pgpool.net/
PR: 232957
Reported by: Franco Ricci <franco.ricc@gmail.com>
Approved by: tz (implicit)
Sponsored by: Netzkommune GmbH
Diffstat (limited to 'databases/pgpool-II-40/files/patch-src_auth_pool__hba.c')
-rw-r--r-- | databases/pgpool-II-40/files/patch-src_auth_pool__hba.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/pgpool-II-40/files/patch-src_auth_pool__hba.c b/databases/pgpool-II-40/files/patch-src_auth_pool__hba.c new file mode 100644 index 000000000000..99d35e0be35f --- /dev/null +++ b/databases/pgpool-II-40/files/patch-src_auth_pool__hba.c @@ -0,0 +1,11 @@ +--- src/auth/pool_hba.c.orig 2018-04-11 05:37:54 UTC ++++ src/auth/pool_hba.c +@@ -29,6 +29,8 @@ + #include <string.h> + #include <errno.h> + #include <netdb.h> ++#include <arpa/inet.h> ++#include <netinet/in.h> + + #include "pool.h" + #include "auth/pool_hba.h" |