From 35060d69925b57a765bf86a314e47ba2e4f499a8 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Tue, 16 Oct 2012 14:37:59 +0200 Subject: update to latest php upstream, finetune module selections --- package/php/files/php-mod-bz2.postinst | 3 +++ package/php/files/php-mod-curl.postinst | 3 +++ package/php/files/php-mod-ftp.postinst | 3 +++ package/php/files/php-mod-gd.postinst | 3 +++ package/php/files/php-mod-gmp.postinst | 3 +++ package/php/files/php-mod-ldap.postinst | 3 +++ package/php/files/php-mod-mysql.postinst | 3 +++ package/php/files/php-mod-openssl.postinst | 3 +++ package/php/files/php-mod-pgsql.postinst | 3 +++ package/php/files/php-mod-session.postinst | 3 +++ package/php/files/php-mod-sockets.postinst | 3 +++ package/php/files/php-mod-sqlite.postinst | 4 ++++ package/php/files/php-mod-xml.postinst | 3 +++ package/php/files/php-mod-zlib.postinst | 3 +++ package/php/files/php.ini | 2 -- 15 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 package/php/files/php-mod-bz2.postinst create mode 100644 package/php/files/php-mod-curl.postinst create mode 100644 package/php/files/php-mod-ftp.postinst create mode 100644 package/php/files/php-mod-gd.postinst create mode 100644 package/php/files/php-mod-gmp.postinst create mode 100644 package/php/files/php-mod-ldap.postinst create mode 100644 package/php/files/php-mod-mysql.postinst create mode 100644 package/php/files/php-mod-openssl.postinst create mode 100644 package/php/files/php-mod-pgsql.postinst create mode 100644 package/php/files/php-mod-session.postinst create mode 100644 package/php/files/php-mod-sockets.postinst create mode 100644 package/php/files/php-mod-sqlite.postinst create mode 100644 package/php/files/php-mod-xml.postinst create mode 100644 package/php/files/php-mod-zlib.postinst (limited to 'package/php/files') diff --git a/package/php/files/php-mod-bz2.postinst b/package/php/files/php-mod-bz2.postinst new file mode 100644 index 000000000..f90b37fa3 --- /dev/null +++ b/package/php/files/php-mod-bz2.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=bz2.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-curl.postinst b/package/php/files/php-mod-curl.postinst new file mode 100644 index 000000000..5c00bdaa1 --- /dev/null +++ b/package/php/files/php-mod-curl.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=curl.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-ftp.postinst b/package/php/files/php-mod-ftp.postinst new file mode 100644 index 000000000..02d0a56b4 --- /dev/null +++ b/package/php/files/php-mod-ftp.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=ftp.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-gd.postinst b/package/php/files/php-mod-gd.postinst new file mode 100644 index 000000000..79f17af24 --- /dev/null +++ b/package/php/files/php-mod-gd.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=gd.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-gmp.postinst b/package/php/files/php-mod-gmp.postinst new file mode 100644 index 000000000..5f1828f1d --- /dev/null +++ b/package/php/files/php-mod-gmp.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=gmp.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-ldap.postinst b/package/php/files/php-mod-ldap.postinst new file mode 100644 index 000000000..9d6d31117 --- /dev/null +++ b/package/php/files/php-mod-ldap.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=ldap.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-mysql.postinst b/package/php/files/php-mod-mysql.postinst new file mode 100644 index 000000000..b3c23e843 --- /dev/null +++ b/package/php/files/php-mod-mysql.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=mysql.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-openssl.postinst b/package/php/files/php-mod-openssl.postinst new file mode 100644 index 000000000..475426577 --- /dev/null +++ b/package/php/files/php-mod-openssl.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=openssl.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-pgsql.postinst b/package/php/files/php-mod-pgsql.postinst new file mode 100644 index 000000000..30effb1b6 --- /dev/null +++ b/package/php/files/php-mod-pgsql.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=pgsql.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-session.postinst b/package/php/files/php-mod-session.postinst new file mode 100644 index 000000000..ef08f8da2 --- /dev/null +++ b/package/php/files/php-mod-session.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=session.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-sockets.postinst b/package/php/files/php-mod-sockets.postinst new file mode 100644 index 000000000..db06a6f22 --- /dev/null +++ b/package/php/files/php-mod-sockets.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=sockets.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-sqlite.postinst b/package/php/files/php-mod-sqlite.postinst new file mode 100644 index 000000000..523f74337 --- /dev/null +++ b/package/php/files/php-mod-sqlite.postinst @@ -0,0 +1,4 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=pdo.so" >> $IPKG_INSTROOT/etc/php.ini +echo "extension=pdo_sqlite.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-xml.postinst b/package/php/files/php-mod-xml.postinst new file mode 100644 index 000000000..934984f84 --- /dev/null +++ b/package/php/files/php-mod-xml.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=xml.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php-mod-zlib.postinst b/package/php/files/php-mod-zlib.postinst new file mode 100644 index 000000000..3f04a3714 --- /dev/null +++ b/package/php/files/php-mod-zlib.postinst @@ -0,0 +1,3 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +echo "extension=zlib.so" >> $IPKG_INSTROOT/etc/php.ini diff --git a/package/php/files/php.ini b/package/php/files/php.ini index b41be8776..903bb432e 100644 --- a/package/php/files/php.ini +++ b/package/php/files/php.ini @@ -17,8 +17,6 @@ implicit_flush = Off unserialize_callback_func= serialize_precision = 100 -allow_call_time_pass_reference = On - safe_mode = Off safe_mode_gid = Off -- cgit v1.2.3