summaryrefslogtreecommitdiff
path: root/sysutils/php74-posix/files/patch-posix.c
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-12-25 13:34:18 -0600
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-12-25 13:36:42 -0600
commit0d310d700aa060b02feec9c7487893a983bf7098 (patch)
tree3d35d698e9c13e27e41a8cd9de8ff7839dcd7b66 /sysutils/php74-posix/files/patch-posix.c
parentmail/dovecot: fix build (diff)
*/*php74*: Sunset php 7.4
As per upstream php 7.4 has reached it's EOL on 2022-11-22. Remove php74 from the tree. Default version of php has already been switched to 8.1. Approved by: portmgr (blanket infrastructure) Sponsored by: Bounce Experts
Diffstat (limited to 'sysutils/php74-posix/files/patch-posix.c')
-rw-r--r--sysutils/php74-posix/files/patch-posix.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/sysutils/php74-posix/files/patch-posix.c b/sysutils/php74-posix/files/patch-posix.c
deleted file mode 100644
index d2365b249569..000000000000
--- a/sysutils/php74-posix/files/patch-posix.c
+++ /dev/null
@@ -1,38 +0,0 @@
---- 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);
-