diff options
author | rene <rene@FreeBSD.org> | 2014-03-01 08:06:29 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2014-03-01 08:06:29 +0800 |
commit | 076592a92b4a7e010e8a6b2644ae232408c10c3b (patch) | |
tree | a82aa9cd34a90c5daecd9ec479f5a85b36141796 /math | |
parent | 0282d1525716be347b881ec0b2f6e2f10e232220 (diff) | |
download | freebsd-ports-gnome-076592a92b4a7e010e8a6b2644ae232408c10c3b.tar.gz freebsd-ports-gnome-076592a92b4a7e010e8a6b2644ae232408c10c3b.tar.zst freebsd-ports-gnome-076592a92b4a7e010e8a6b2644ae232408c10c3b.zip |
PHP 5.2 has reached it end-of-life in the FreeBSD Ports Tree, time
to say goodbye. Upstream unsupported it since 2011-01-06 (see
http://php.net/eol.php )
Strip PHP 5.2 out of Mk/bsd.php.mk
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 2 | ||||
-rw-r--r-- | math/php52-bcmath/Makefile | 11 | ||||
-rw-r--r-- | math/php52-gmp/Makefile | 11 | ||||
-rw-r--r-- | math/php52-gmp/files/patch-gmp.c | 11 |
4 files changed, 0 insertions, 35 deletions
diff --git a/math/Makefile b/math/Makefile index 068e63c4300e..c2efc82dea96 100644 --- a/math/Makefile +++ b/math/Makefile @@ -526,8 +526,6 @@ SUBDIR += petsc SUBDIR += php5-bcmath SUBDIR += php5-gmp - SUBDIR += php52-bcmath - SUBDIR += php52-gmp SUBDIR += php53-bcmath SUBDIR += php53-gmp SUBDIR += php55-bcmath diff --git a/math/php52-bcmath/Makefile b/math/php52-bcmath/Makefile deleted file mode 100644 index 32222dcf7297..000000000000 --- a/math/php52-bcmath/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -# Created by: Alex Keda <admin@lissyara.su> -# $FreeBSD$ - -CATEGORIES= math - -MASTERDIR= ${.CURDIR}/../../lang/php52 - -PKGNAMESUFFIX= -bcmath - -NO_STAGE= yes -.include "${MASTERDIR}/Makefile" diff --git a/math/php52-gmp/Makefile b/math/php52-gmp/Makefile deleted file mode 100644 index 2611be50f1dd..000000000000 --- a/math/php52-gmp/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -# Created by: Alex Keda <admin@lissyara.su> -# $FreeBSD$ - -CATEGORIES= math - -MASTERDIR= ${.CURDIR}/../../lang/php52 - -PKGNAMESUFFIX= -gmp - -NO_STAGE= yes -.include "${MASTERDIR}/Makefile" diff --git a/math/php52-gmp/files/patch-gmp.c b/math/php52-gmp/files/patch-gmp.c deleted file mode 100644 index 74b95c01878d..000000000000 --- a/math/php52-gmp/files/patch-gmp.c +++ /dev/null @@ -1,11 +0,0 @@ ---- ext/gmp/gmp.c.orig 2010-04-21 22:00:31.841602968 +0000 -+++ ext/gmp/gmp.c 2010-04-21 22:00:46.412804473 +0000 -@@ -1396,7 +1396,7 @@ - - GMPG(rand_initialized) = 1; - } -- mpz_urandomb(*gmpnum_result, GMPG(rand_state), GMP_ABS (limiter) * __GMP_BITS_PER_MP_LIMB); -+ mpz_urandomb(*gmpnum_result, GMPG(rand_state), GMP_ABS (limiter) * GMP_LIMB_BITS); - - ZEND_REGISTER_RESOURCE(return_value, gmpnum_result, le_gmp); - } |