diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2011-08-26 12:35:03 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2011-08-26 12:35:03 +0000 |
commit | 5a5d27cd454a8068fe36e6300a5a9e667fa8f8a1 (patch) | |
tree | a320b0a0fa326362f873c2864d8a2a8f3f498db8 /dev-lang/php/files | |
parent | Removed older versions (diff) | |
download | gentoo-2-5a5d27cd454a8068fe36e6300a5a9e667fa8f8a1.tar.gz gentoo-2-5a5d27cd454a8068fe36e6300a5a9e667fa8f8a1.tar.bz2 gentoo-2-5a5d27cd454a8068fe36e6300a5a9e667fa8f8a1.zip |
Removed some unused files
(Portage version: 2.1.10.6/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/php/files')
-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; - } - |