diff options
-rw-r--r-- | dev-lang/php/files/70_mod_php5_concurr.conf-apache2 | 14 | ||||
-rw-r--r-- | dev-lang/php/files/70_mod_php5_concurr.conf-apache2-r1 | 17 | ||||
-rw-r--r-- | dev-lang/php/files/php-5.2.10-pdo_dblib.patch | 16 | ||||
-rw-r--r-- | dev-lang/php/files/php-5.2.12-libpng14.patch | 11 |
4 files changed, 0 insertions, 58 deletions
diff --git a/dev-lang/php/files/70_mod_php5_concurr.conf-apache2 b/dev-lang/php/files/70_mod_php5_concurr.conf-apache2 deleted file mode 100644 index 7ec8739cf837..000000000000 --- a/dev-lang/php/files/70_mod_php5_concurr.conf-apache2 +++ /dev/null @@ -1,14 +0,0 @@ -<IfDefine PHP5> - # Load the module first - <IfModule !mod_php5.c> - LoadModule php5_module modules/libphp5.so - </IfModule> - - # Set it to handle the files - <IfModule mod_mime.c> - AddHandler application/x-httpd-php .php .php5 .phtml - AddHandler application/x-httpd-php-source .phps - </IfModule> - - DirectoryIndex index.php index.phtml -</IfDefine> diff --git a/dev-lang/php/files/70_mod_php5_concurr.conf-apache2-r1 b/dev-lang/php/files/70_mod_php5_concurr.conf-apache2-r1 deleted file mode 100644 index cd1c3801edbc..000000000000 --- a/dev-lang/php/files/70_mod_php5_concurr.conf-apache2-r1 +++ /dev/null @@ -1,17 +0,0 @@ -<IfDefine PHP5> - # Load the module first - <IfModule !mod_php5.c> - LoadModule php5_module modules/libphp5.so - </IfModule> - - # Set it to handle the files - <FilesMatch "\.ph(p5?|tml)$"> - SetHandler application/x-httpd-php5 - </FilesMatch> - - <FilesMatch "\.phps$"> - SetHandler application/x-httpd-php5-source - </FilesMatch> - - DirectoryIndex index.php index.phtml -</IfDefine> diff --git a/dev-lang/php/files/php-5.2.10-pdo_dblib.patch b/dev-lang/php/files/php-5.2.10-pdo_dblib.patch deleted file mode 100644 index e161a8252718..000000000000 --- a/dev-lang/php/files/php-5.2.10-pdo_dblib.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff -Naur php-5.2.10.old/ext/pdo_dblib/dblib_driver.c php-5.2.10/ext/pdo_dblib/dblib_driver.c ---- php-5.2.10.old/ext/pdo_dblib/dblib_driver.c 2009-03-20 23:14:17.000000000 +0100 -+++ php-5.2.10/ext/pdo_dblib/dblib_driver.c 2009-09-25 00:19:31.000000000 +0200 -@@ -230,9 +230,9 @@ - goto cleanup; - } - -- if (DBSETOPT(H->link, DBTEXTLIMIT, "2147483647") == FAIL) { -- goto cleanup; -- } -+// if (DBSETOPT(H->link, DBTEXTLIMIT, "2147483647") == FAIL) { -+// goto cleanup; -+// } - - if (vars[3].optval && FAIL == dbuse(H->link, vars[3].optval)) { - goto cleanup; diff --git a/dev-lang/php/files/php-5.2.12-libpng14.patch b/dev-lang/php/files/php-5.2.12-libpng14.patch deleted file mode 100644 index 90f015f0f55f..000000000000 --- a/dev-lang/php/files/php-5.2.12-libpng14.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ext/gd/libgd/gd_png.c -+++ ext/gd/libgd/gd_png.c -@@ -139,7 +139,7 @@ - return NULL; - } - -- if (!png_check_sig (sig, 8)) { /* bad signature */ -+ if (png_sig_cmp (sig, 0, 8)) { /* bad signature */ - return NULL; - } - |