summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2004-12-14 09:15:02 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2004-12-14 09:15:02 +0000
commit569f2b710216a2f9f5de2dbe3ee923fc1ebb19f6 (patch)
treea360f4fc6355330b4d85c048e02312c7f8c8f5d0 /eclass
parentrepoman: Trim trailing whitespace (diff)
downloadhistorical-569f2b710216a2f9f5de2dbe3ee923fc1ebb19f6.tar.gz
historical-569f2b710216a2f9f5de2dbe3ee923fc1ebb19f6.tar.bz2
historical-569f2b710216a2f9f5de2dbe3ee923fc1ebb19f6.zip
Bug #69643.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/php-sapi.eclass5
-rw-r--r--eclass/php5-sapi.eclass6
2 files changed, 9 insertions, 2 deletions
diff --git a/eclass/php-sapi.eclass b/eclass/php-sapi.eclass
index 584ba6af0bfa..0883aacf446e 100644
--- a/eclass/php-sapi.eclass
+++ b/eclass/php-sapi.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/php-sapi.eclass,v 1.51 2004/11/02 02:13:29 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/php-sapi.eclass,v 1.52 2004/12/14 09:15:02 robbat2 Exp $
# Author: Robin H. Johnson <robbat2@gentoo.org>
inherit eutils flag-o-matic
@@ -642,6 +642,9 @@ php-sapi_pkg_postinst() {
fi
ewarn "If you have additional third party PHP extensions (such as"
ewarn "dev-php/turck-mmcache) you may need to recompile them now."
+ if use curl; then
+ ewarn "Please be aware that CURL can allow the bypass of open_basedir restrictions."
+ fi
}
php-sapi_securityupgrade() {
diff --git a/eclass/php5-sapi.eclass b/eclass/php5-sapi.eclass
index 49f5fdd93f67..293b72f7ab4a 100644
--- a/eclass/php5-sapi.eclass
+++ b/eclass/php5-sapi.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/php5-sapi.eclass,v 1.33 2004/11/28 22:51:03 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/php5-sapi.eclass,v 1.34 2004/12/14 09:15:02 robbat2 Exp $
#
# eclass/php5-sapi.eclass
# Eclass for building different php5 SAPI instances
@@ -500,5 +500,9 @@ php5-sapi_pkg_postinst() {
ewarn "If you have additional third party PHP extensions (such as"
ewarn "dev-php/turck-mmcache) you may need to recompile them now."
+
+ if use curl; then
+ ewarn "Please be aware that CURL can allow the bypass of open_basedir restrictions."
+ fi
}