diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-07-19 03:02:34 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-07-19 03:02:34 +0000 |
commit | c017d9655043b7dbbb5a62088fb5f71bcfd360f1 (patch) | |
tree | 65eaa97218f136ddd82f1834979671a73dda6c24 /eclass/php.eclass | |
parent | *** empty log message *** (diff) | |
download | historical-c017d9655043b7dbbb5a62088fb5f71bcfd360f1.tar.gz historical-c017d9655043b7dbbb5a62088fb5f71bcfd360f1.tar.bz2 historical-c017d9655043b7dbbb5a62088fb5f71bcfd360f1.zip |
Fix bug #24611 with LDFLAGS stuff
Diffstat (limited to 'eclass/php.eclass')
-rw-r--r-- | eclass/php.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/php.eclass b/eclass/php.eclass index 20a1b0c4a313..7203ab54bd05 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 # Author: Robin H. Johnson <robbat2@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/php.eclass,v 1.65 2003/07/14 00:39:47 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php.eclass,v 1.66 2003/07/19 03:02:34 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 @@ -280,7 +280,7 @@ php_src_compile() { myconf="${myconf} --without-gd" fi use png || [ -n "${REQUIREPNG}" ] && myconf="${myconf} --with-png-dir=/usr" || myconf="${myconf} --without-png" - use jpeg || [ -n "${REQUIREJPG}" ] && myconf="${myconf} --with-jpeg --with-jpeg-dir=/usr --enable-exif" LDFLAGS="${LDFLAGS} -ljpeg" || myconf="${myconf} --without-jpeg" + use jpeg || [ -n "${REQUIREJPG}" ] && myconf="${myconf} --with-jpeg --with-jpeg-dir=/usr --enable-exif" myconf="${myconf} --without-jpeg" use tiff || [ -n "${REQUIRETIFF}" ] && myconf="${myconf} --with-tiff-dir=/usr" LDFLAGS="${LDFLAGS} -ltiff" || myconf="${myconf} --without-tiff" #use mysql && myconf="${myconf} --with-mysql=/usr" || myconf="${myconf} --without-mysql" |