aboutsummaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-01-26 00:06:01 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-01-26 00:20:01 +0000
commitcc378fb60bd6ff39ac810093b5fc83cf330c1d92 (patch)
tree7bafa7aa53795dec5c06d1af55dffa895e6ef8ce /sysutils
parenta60d5b0d747489751077ce93e8e52b44910f8eba (diff)
downloadports-cc378fb60bd6ff39ac810093b5fc83cf330c1d92.tar.gz
ports-cc378fb60bd6ff39ac810093b5fc83cf330c1d92.zip
lang/php73: Remove port
- EOL reached on 2021-12-06 https://www.php.net/eol.php PR: 260624 Approved by: tz (private email) ale portmgr (blanket) Sponsored by: Bounce Experts
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/Makefile2
-rw-r--r--sysutils/php73-fileinfo/Makefile9
-rw-r--r--sysutils/php73-fileinfo/files/patch-config.m421
-rw-r--r--sysutils/php73-posix/Makefile9
-rw-r--r--sysutils/php73-posix/files/patch-posix.c38
5 files changed, 0 insertions, 79 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile
index 3f9195c3529d..8f7bf3aa1747 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -954,8 +954,6 @@
SUBDIR += pfstat
SUBDIR += pftables
SUBDIR += pftop
- SUBDIR += php73-fileinfo
- SUBDIR += php73-posix
SUBDIR += php74-fileinfo
SUBDIR += php74-posix
SUBDIR += php80-fileinfo
diff --git a/sysutils/php73-fileinfo/Makefile b/sysutils/php73-fileinfo/Makefile
deleted file mode 100644
index 98581ccc2cc6..000000000000
--- a/sysutils/php73-fileinfo/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-CATEGORIES= sysutils
-
-MASTERDIR= ${.CURDIR}/../../lang/php73
-
-PKGNAMESUFFIX= -fileinfo
-
-TEST_TARGET= test
-
-.include "${MASTERDIR}/Makefile"
diff --git a/sysutils/php73-fileinfo/files/patch-config.m4 b/sysutils/php73-fileinfo/files/patch-config.m4
deleted file mode 100644
index 1348023ccf64..000000000000
--- a/sysutils/php73-fileinfo/files/patch-config.m4
+++ /dev/null
@@ -1,21 +0,0 @@
---- config.m4.orig 2010-09-07 15:45:30.000000000 +0200
-+++ config.m4 2010-09-07 15:46:50.000000000 +0200
-@@ -4,6 +4,9 @@
- PHP_ARG_ENABLE(fileinfo, for fileinfo support,
- [ --disable-fileinfo Disable fileinfo support], yes)
-
-+PHP_ARG_WITH(pcre-dir, pcre install prefix,
-+[ --with-pcre-dir FILEINFO: pcre install prefix], no, no)
-+
- if test "$PHP_FILEINFO" != "no"; then
-
- libmagic_sources=" \
-@@ -13,6 +16,8 @@
- libmagic/is_tar.c libmagic/magic.c libmagic/print.c \
- libmagic/readcdf.c libmagic/readelf.c libmagic/softmagic.c"
-
-+ PHP_ADD_INCLUDE($PHP_PCRE_DIR/include)
-+
- PHP_NEW_EXTENSION(fileinfo, fileinfo.c $libmagic_sources, $ext_shared,,-I@ext_srcdir@/libmagic)
- PHP_ADD_BUILD_DIR($ext_builddir/libmagic)
-
diff --git a/sysutils/php73-posix/Makefile b/sysutils/php73-posix/Makefile
deleted file mode 100644
index 160cdc2616cd..000000000000
--- a/sysutils/php73-posix/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-CATEGORIES= sysutils
-
-MASTERDIR= ${.CURDIR}/../../lang/php73
-
-PKGNAMESUFFIX= -posix
-
-TEST_TARGET= test
-
-.include "${MASTERDIR}/Makefile"
diff --git a/sysutils/php73-posix/files/patch-posix.c b/sysutils/php73-posix/files/patch-posix.c
deleted file mode 100644
index d2365b249569..000000000000
--- a/sysutils/php73-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);
-