summaryrefslogtreecommitdiff
path: root/textproc/php71-wddx/files
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2019-12-17 20:21:15 +0000
committerRene Ladan <rene@FreeBSD.org>2019-12-17 20:21:15 +0000
commitb51b839969daf3b42232476460514c9cccc9053e (patch)
tree8c19b30b436d791294a59eca8ba267af39c6b719 /textproc/php71-wddx/files
parentAdd textproc/py-markdown dependency, required by polish book functionality. (diff)
Remove PHP 7.1 ports, upstream security support ended on 2019-12-01 :
2019-12-01 archivers/php71-bz2 2019-12-01 archivers/php71-phar 2019-12-01 archivers/php71-zip 2019-12-01 archivers/php71-zlib 2019-12-01 converters/php71-iconv 2019-12-01 converters/php71-mbstring 2019-12-01 converters/php71-recode 2019-12-01 databases/php71-dba 2019-12-01 databases/php71-interbase 2019-12-01 databases/php71-mysqli 2019-12-01 databases/php71-odbc 2019-12-01 databases/php71-pdo 2019-12-01 databases/php71-pdo_dblib 2019-12-01 databases/php71-pdo_firebird 2019-12-01 databases/php71-pdo_mysql 2019-12-01 databases/php71-pdo_odbc 2019-12-01 databases/php71-pdo_pgsql 2019-12-01 databases/php71-pdo_sqlite 2019-12-01 databases/php71-pgsql 2019-12-01 databases/php71-sqlite3 2019-12-01 devel/php71-gettext 2019-12-01 devel/php71-intl 2019-12-01 devel/php71-json 2019-12-01 devel/php71-pcntl 2019-12-01 devel/php71-readline 2019-12-01 devel/php71-shmop 2019-12-01 devel/php71-sysvmsg 2019-12-01 devel/php71-sysvsem 2019-12-01 devel/php71-sysvshm 2019-12-01 devel/php71-tokenizer 2019-12-01 ftp/php71-curl 2019-12-01 ftp/php71-ftp 2019-12-01 graphics/php71-exif 2019-12-01 graphics/php71-gd 2019-12-01 lang/php71 2019-12-01 mail/php71-imap 2019-12-01 math/php71-bcmath 2019-12-01 math/php71-gmp 2019-12-01 misc/php71-calendar 2019-12-01 net/php71-ldap 2019-12-01 net/php71-soap 2019-12-01 net/php71-sockets 2019-12-01 net/php71-xmlrpc 2019-12-01 net-mgmt/php71-snmp 2019-12-01 security/php71-filter 2019-12-01 security/php71-hash 2019-12-01 security/php71-mcrypt 2019-12-01 security/php71-openssl 2019-12-01 sysutils/php71-fileinfo 2019-12-01 sysutils/php71-posix 2019-12-01 textproc/php71-ctype 2019-12-01 textproc/php71-dom 2019-12-01 textproc/php71-enchant 2019-12-01 textproc/php71-pspell 2019-12-01 textproc/php71-simplexml 2019-12-01 textproc/php71-wddx 2019-12-01 textproc/php71-xml 2019-12-01 textproc/php71-xmlreader 2019-12-01 textproc/php71-xmlwriter 2019-12-01 textproc/php71-xsl 2019-12-01 www/mod_php71 2019-12-01 www/php71-opcache 2019-12-01 www/php71-session 2019-12-01 www/php71-tidy
Notes
Notes: svn path=/head/; revision=520344
Diffstat (limited to 'textproc/php71-wddx/files')
-rw-r--r--textproc/php71-wddx/files/patch-config.m422
-rw-r--r--textproc/php71-wddx/files/patch-wddx.c40
2 files changed, 0 insertions, 62 deletions
diff --git a/textproc/php71-wddx/files/patch-config.m4 b/textproc/php71-wddx/files/patch-config.m4
deleted file mode 100644
index 08787003b8f9..000000000000
--- a/textproc/php71-wddx/files/patch-config.m4
+++ /dev/null
@@ -1,22 +0,0 @@
---- config.m4.orig Mon Jul 26 09:05:10 2004
-+++ config.m4 Mon Jul 26 09:07:46 2004
-@@ -5,6 +5,9 @@
- PHP_ARG_ENABLE(wddx,whether to enable WDDX support,
- [ --enable-wddx Enable WDDX support.])
-
-+PHP_ARG_WITH(libxml-dir, libxml2 install dir,
-+[ --with-libxml-dir=<DIR> WDDX: libxml2 install prefix], no, no)
-+
- if test "$PHP_WDDX" != "no"; then
- if test "$ext_shared" != "yes" && test "$enable_xml" = "no"; then
- AC_MSG_WARN(Activating XML)
-@@ -12,4 +15,9 @@
- fi
- AC_DEFINE(HAVE_WDDX, 1, [ ])
- PHP_NEW_EXTENSION(wddx, wddx.c, $ext_shared)
-+
-+ PHP_SETUP_LIBXML(WDDX_SHARED_LIBADD, [
-+ ], [
-+ AC_MSG_ERROR([xml2-config not found. Please check your libxml2 installation.])
-+ ])
- fi
diff --git a/textproc/php71-wddx/files/patch-wddx.c b/textproc/php71-wddx/files/patch-wddx.c
deleted file mode 100644
index a8a6a79fe47f..000000000000
--- a/textproc/php71-wddx/files/patch-wddx.c
+++ /dev/null
@@ -1,40 +0,0 @@
---- wddx.c.orig Sun Jan 1 13:50:16 2006
-+++ wddx.c Mon Jan 16 12:56:21 2006
-@@ -18,6 +18,10 @@
-
- /* $Id: wddx.c,v 1.119.2.8 2006/01/01 12:50:16 sniper Exp $ */
-
-+#ifdef HAVE_CONFIG_H
-+# include "config.h"
-+#endif
-+
- #include "php.h"
-
- #if HAVE_WDDX
-@@ -223,7 +227,7 @@
-
- #include "ext/session/php_session.h"
-
--#if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION)
-+#if HAVE_PHP_SESSION
- /* {{{ PS_SERIALIZER_ENCODE_FUNC
- */
- PS_SERIALIZER_ENCODE_FUNC(wddx)
-@@ -302,7 +306,7 @@
- {
- le_wddx = zend_register_list_destructors_ex(release_wddx_packet_rsrc, NULL, "wddx", module_number);
-
--#if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION)
-+#if HAVE_PHP_SESSION
- php_session_register_serializer("wddx",
- PS_SERIALIZER_ENCODE_NAME(wddx),
- PS_SERIALIZER_DECODE_NAME(wddx));
-@@ -317,7 +321,7 @@
- PHP_MINFO_FUNCTION(wddx)
- {
- php_info_print_table_start();
--#if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION)
-+#if HAVE_PHP_SESSION
- php_info_print_table_header(2, "WDDX Support", "enabled" );
- php_info_print_table_row(2, "WDDX Session Serializer", "enabled" );
- #else