diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-12-14 09:15:02 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-12-14 09:15:02 +0000 |
commit | 8c5ca28997fe5c1ea0bc37ee9466f210a683ca0e (patch) | |
tree | ecf8a4a90fe68da918af43a9df9bb3b66c42d231 /eclass | |
parent | repoman: Trim trailing whitespace (Manifest recommit) (diff) | |
download | gentoo-2-8c5ca28997fe5c1ea0bc37ee9466f210a683ca0e.tar.gz gentoo-2-8c5ca28997fe5c1ea0bc37ee9466f210a683ca0e.tar.bz2 gentoo-2-8c5ca28997fe5c1ea0bc37ee9466f210a683ca0e.zip |
Bug #69643.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php-sapi.eclass | 5 | ||||
-rw-r--r-- | eclass/php5-sapi.eclass | 6 |
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 } |