Skip to content

Commit 68a703b

Browse files
committedNov 16, 2017
pgpool: 3.4.2 -> 3.4.14
Fixes the build with glibc 2.26. Tracking issue: #31696
1 parent 3835526 commit 68a703b

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed
 

‎pkgs/servers/sql/pgpool/default.nix

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
{ stdenv, fetchurl, postgresql, openssl, pam ? null, libmemcached ? null }:
22

33
stdenv.mkDerivation rec {
4-
name = "pgpool-II-3.4.2";
4+
name = "pgpool-II-3.4.14";
55

66
src = fetchurl {
77
name = "${name}.tar.gz";
88
url = "http://www.pgpool.net/download.php?f=${name}.tar.gz";
9-
sha256 = "0lf3fvwc2ib4md25a3hnv822nhy9ac06vg0ndw8q9bry66hzwcfh";
9+
sha256 = "1paak83f4lv48xckmf2znryrvhmdz86w4v97mcw2gxm50hcl74sw";
1010
};
1111

12+
patches = [ ./pgpool-II-3.4.14-glibc-2.26.patch ];
13+
1214
buildInputs = [ postgresql openssl pam libmemcached ];
1315

1416
configureFlags = [
@@ -22,6 +24,8 @@ stdenv.mkDerivation rec {
2224
"sysconfdir=\${out}/etc"
2325
];
2426

27+
enableParallelBuilding = true;
28+
2529
meta = with stdenv.lib; {
2630
homepage = http://pgpool.net/mediawiki/index.php;
2731
description = "A middleware that works between postgresql servers and postgresql clients";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
diff --git a/src/watchdog/wd_lifecheck.c b/src/watchdog/wd_lifecheck.c
2+
index 1e72307..5cf68a3 100644
3+
--- a/src/watchdog/wd_lifecheck.c
4+
+++ b/src/watchdog/wd_lifecheck.c
5+
@@ -26,6 +26,7 @@
6+
#include <ctype.h>
7+
#include <time.h>
8+
#include <string.h>
9+
+#include <stdint.h>
10+
#include <stdlib.h>
11+
#include <unistd.h>
12+
#include <netdb.h>

0 commit comments

Comments
 (0)