summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Markus With <olemarkus@gentoo.org>2013-01-09 12:01:26 +0000
committerOle Markus With <olemarkus@gentoo.org>2013-01-09 12:01:26 +0000
commit8458d891aca4aed745f0ced1b7e9388631074105 (patch)
treed6b6ffecfc831c0828dc7689997e966a990d8e4e /dev-php
parentStable on amd64, wrt bug #451036 (diff)
downloadgentoo-2-8458d891aca4aed745f0ced1b7e9388631074105.tar.gz
gentoo-2-8458d891aca4aed745f0ced1b7e9388631074105.tar.bz2
gentoo-2-8458d891aca4aed745f0ced1b7e9388631074105.zip
Remove unused patches that should have been removed a long time ago. Thanks to Hanno for notifying me
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key C4A92BF5)
Diffstat (limited to 'dev-php')
-rw-r--r--dev-php/pecl-apc/ChangeLog10
-rw-r--r--dev-php/pecl-apc/files/pecl-apc-3.0.16-CVE-2008-1488.patch12
-rw-r--r--dev-php/pecl-apc/files/pecl-apc-3.0.16-apc_set_signals.patch11
3 files changed, 8 insertions, 25 deletions
diff --git a/dev-php/pecl-apc/ChangeLog b/dev-php/pecl-apc/ChangeLog
index 1f8357796abf..d23c2f23dec1 100644
--- a/dev-php/pecl-apc/ChangeLog
+++ b/dev-php/pecl-apc/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-php/pecl-apc
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-apc/ChangeLog,v 1.13 2012/09/04 12:29:31 olemarkus Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-apc/ChangeLog,v 1.14 2013/01/09 12:01:26 olemarkus Exp $
+
+ 09 Jan 2013; Ole Markus With <olemarkus@gentoo.org>
+ -files/pecl-apc-3.0.16-CVE-2008-1488.patch,
+ -files/pecl-apc-3.0.16-apc_set_signals.patch:
+ Remove unused patches that should have been removed a long time ago. Thanks to
+ Hanno for notifying me
*pecl-apc-3.1.13 (04 Sep 2012)
diff --git a/dev-php/pecl-apc/files/pecl-apc-3.0.16-CVE-2008-1488.patch b/dev-php/pecl-apc/files/pecl-apc-3.0.16-CVE-2008-1488.patch
deleted file mode 100644
index 7ece786c4c25..000000000000
--- a/dev-php/pecl-apc/files/pecl-apc-3.0.16-CVE-2008-1488.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- apc.c.old 2008-03-26 19:22:02.000000000 +0100
-+++ apc.c 2008-03-26 19:22:23.000000000 +0100
-@@ -331,7 +331,7 @@
- /* not: [no active file] or no path */
- memcpy(fileinfo->fullpath, exec_fname, exec_fname_length);
- fileinfo->fullpath[exec_fname_length] = DEFAULT_SLASH;
-- strcpy(fileinfo->fullpath +exec_fname_length +1, filename);
-+ strlcpy(fileinfo->fullpath +exec_fname_length +1, filename,sizeof(fileinfo->fullpath)-exec_fname_length-1);
- /* apc_wprint("filename: %s, exec_fname: %s, fileinfo->fullpath: %s", filename, exec_fname, fileinfo->fullpath); */
- if (apc_stat(fileinfo->fullpath, &fileinfo->st_buf) == 0) {
- found = 1;
-
diff --git a/dev-php/pecl-apc/files/pecl-apc-3.0.16-apc_set_signals.patch b/dev-php/pecl-apc/files/pecl-apc-3.0.16-apc_set_signals.patch
deleted file mode 100644
index 0e12918a24ff..000000000000
--- a/dev-php/pecl-apc/files/pecl-apc-3.0.16-apc_set_signals.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- APC-3.0.16/php_apc.c.orig 2007-12-26 23:51:32.000000000 +0100
-+++ APC-3.0.16/php_apc.c 2008-01-04 23:34:30.000000000 +0100
-@@ -300,7 +300,7 @@
- apc_request_init(TSRMLS_C);
-
- #if HAVE_SIGACTION
-- apc_set_signals();
-+ apc_set_signals(TSRMLS_C);
- #endif
- }
- return SUCCESS;