diff options
author | Rene Ladan <rene@FreeBSD.org> | 2016-10-21 07:30:32 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2016-10-21 07:30:32 +0000 |
commit | 87a09e788fd713fb5c314f2fa9d9134fef902401 (patch) | |
tree | 2fb06aa538d7e0beddd857fc446f090c3bb788b8 /textproc/php55-simplexml | |
parent | Unlink expired PHP5.5 ports. (diff) |
Remove expired PHP5.5 ports.
Notes
Notes:
svn path=/head/; revision=424382
Diffstat (limited to 'textproc/php55-simplexml')
-rw-r--r-- | textproc/php55-simplexml/Makefile | 11 | ||||
-rw-r--r-- | textproc/php55-simplexml/files/patch-config.m4 | 43 |
2 files changed, 0 insertions, 54 deletions
diff --git a/textproc/php55-simplexml/Makefile b/textproc/php55-simplexml/Makefile deleted file mode 100644 index 8fbe2249fa7c..000000000000 --- a/textproc/php55-simplexml/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -# Created by: Alex Dupre <ale@FreeBSD.org> -# $FreeBSD$ - -PORTREVISION= 1 -CATEGORIES= textproc - -MASTERDIR= ${.CURDIR}/../../lang/php55 - -PKGNAMESUFFIX= -simplexml - -.include "${MASTERDIR}/Makefile" diff --git a/textproc/php55-simplexml/files/patch-config.m4 b/textproc/php55-simplexml/files/patch-config.m4 deleted file mode 100644 index 4eeef697dc87..000000000000 --- a/textproc/php55-simplexml/files/patch-config.m4 +++ /dev/null @@ -1,43 +0,0 @@ ---- config.m4.orig 2014-05-14 10:14:22.929420181 +0000 -+++ config.m4 2014-05-14 10:15:36.967414693 +0000 -@@ -4,6 +4,9 @@ - PHP_ARG_ENABLE(simplexml, whether to enable SimpleXML support, - [ --disable-simplexml Disable SimpleXML support], yes) - -+PHP_ARG_WITH(pcre-dir, pcre install prefix, -+[ --with-pcre-dir SimpleXML: pcre install prefix], no, no) -+ - if test -z "$PHP_LIBXML_DIR"; then - PHP_ARG_WITH(libxml-dir, libxml2 install dir, - [ --with-libxml-dir=DIR SimpleXML: libxml2 install prefix], no, no) -@@ -11,6 +14,30 @@ - - if test "$PHP_SIMPLEXML" != "no"; then - -+ dnl This is PECL build, check if bundled PCRE library is used -+ old_CPPFLAGS=$CPPFLAGS -+ CPPFLAGS=$INCLUDES -+ AC_EGREP_CPP(yes,[ -+#include <main/php_config.h> -+#if defined(HAVE_BUNDLED_PCRE) && !defined(COMPILE_DL_PCRE) -+yes -+#endif -+ ],[ -+ PHP_PCRE_REGEX=yes -+ ],[ -+ AC_EGREP_CPP(yes,[ -+#include <main/php_config.h> -+#if defined(HAVE_PCRE) && !defined(COMPILE_DL_PCRE) -+yes -+#endif -+ ],[ -+ PHP_PCRE_REGEX=pecl -+ PHP_ADD_INCLUDE($PHP_PCRE_DIR/include) -+ ],[ -+ PHP_PCRE_REGEX=no -+ ]) -+ ]) -+ - if test "$PHP_LIBXML" = "no"; then - AC_MSG_ERROR([SimpleXML extension requires LIBXML extension, add --enable-libxml]) - fi |