diff options
author | 2003-06-12 08:50:41 +0000 | |
---|---|---|
committer | 2003-06-12 08:50:41 +0000 | |
commit | 82b54d88c044a24339a50a325d6c9dc273f0fbb2 (patch) | |
tree | b4f31e02eeac714bfd9ec74815f84129f155a416 /eclass/php.eclass | |
parent | Cleanup some configure stuff to use use_with and use_enable. Add kerberos sup... (diff) | |
download | gentoo-2-82b54d88c044a24339a50a325d6c9dc273f0fbb2.tar.gz gentoo-2-82b54d88c044a24339a50a325d6c9dc273f0fbb2.tar.bz2 gentoo-2-82b54d88c044a24339a50a325d6c9dc273f0fbb2.zip |
a commented fix for bug #22635
Diffstat (limited to 'eclass/php.eclass')
-rw-r--r-- | eclass/php.eclass | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/eclass/php.eclass b/eclass/php.eclass index b36858edd9a1..42c4e46dcb3f 100644 --- a/eclass/php.eclass +++ b/eclass/php.eclass @@ -1,7 +1,7 @@ # Copyright 2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author: Robin H. Johnson <robbat2@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/php.eclass,v 1.42 2003/06/12 08:45:26 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php.eclass,v 1.43 2003/06/12 08:50:41 robbat2 Exp $ # This EBUILD is totally masked presently. Use it at your own risk. I know it # is severely broken, but I needed to get a copy into CVS to pass around and @@ -200,6 +200,9 @@ php_src_unpack() { php_src_compile() { + # Stuart, test this (just uncomment it): + # use ldap && use kerberos && LIBS="${LIBS} -lkrb4" + # Control the extra SAPI stuff that can be built in addition to any usual SAPI # [ -z "${PHP_CGI}" ] && PHP_CGI=0 # [ -z "${PHP_CLI}" ] && PHP_CLI=0 @@ -343,9 +346,9 @@ php_src_compile() { --enable-versioning \ --with-config-file-path=/etc/php4" - econf \ + LIBS="${LIBS}" econf \ ${myconf} || die "bad ./configure" - + emake || die "compile problem" } |