From db021968e3411b659e079e540742896abe4193f1 Mon Sep 17 00:00:00 2001 From: Torsten Zuehlsdorff Date: Tue, 24 Jan 2017 11:54:20 +0000 Subject: Add PHP 7.1 Thanks to: mat, pi, ale, martin@waschbuesch.de and franco@opnsense.org --- sysutils/php71-posix/Makefile | 9 ++++++++ sysutils/php71-posix/files/patch-posix.c | 38 ++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 sysutils/php71-posix/Makefile create mode 100644 sysutils/php71-posix/files/patch-posix.c (limited to 'sysutils/php71-posix') diff --git a/sysutils/php71-posix/Makefile b/sysutils/php71-posix/Makefile new file mode 100644 index 000000000000..d2734136a02b --- /dev/null +++ b/sysutils/php71-posix/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +CATEGORIES= sysutils + +MASTERDIR= ${.CURDIR}/../../lang/php71 + +PKGNAMESUFFIX= -posix + +.include "${MASTERDIR}/Makefile" diff --git a/sysutils/php71-posix/files/patch-posix.c b/sysutils/php71-posix/files/patch-posix.c new file mode 100644 index 000000000000..d2365b249569 --- /dev/null +++ b/sysutils/php71-posix/files/patch-posix.c @@ -0,0 +1,38 @@ +--- posix.c.orig Fri Feb 23 00:40:39 2007 ++++ posix.c Sun May 13 17:52:27 2007 +@@ -838,7 +838,7 @@ + #if defined(ZTS) && defined(HAVE_GETGRNAM_R) && defined(_SC_GETGR_R_SIZE_MAX) + buflen = sysconf(_SC_GETGR_R_SIZE_MAX); + if (buflen < 1) { +- RETURN_FALSE; ++ buflen = 1024; + } + buf = emalloc(buflen); + g = &gbuf; +@@ -888,7 +888,7 @@ + + grbuflen = sysconf(_SC_GETGR_R_SIZE_MAX); + if (grbuflen < 1) { +- RETURN_FALSE; ++ grbuflen = 1024; + } + + grbuf = emalloc(grbuflen); +@@ -955,7 +955,7 @@ + #if defined(ZTS) && defined(_SC_GETPW_R_SIZE_MAX) && defined(HAVE_GETPWNAM_R) + buflen = sysconf(_SC_GETPW_R_SIZE_MAX); + if (buflen < 1) { +- RETURN_FALSE; ++ buflen = 1024; + } + buf = emalloc(buflen); + pw = &pwbuf; +@@ -1004,7 +1004,7 @@ + #if defined(ZTS) && defined(_SC_GETPW_R_SIZE_MAX) && defined(HAVE_GETPWUID_R) + pwbuflen = sysconf(_SC_GETPW_R_SIZE_MAX); + if (pwbuflen < 1) { +- RETURN_FALSE; ++ pwbuflen = 1024; + } + pwbuf = emalloc(pwbuflen); + -- cgit v1.2.3