diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-08-17 21:51:01 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-08-17 21:51:01 +0000 |
commit | 3aeb262c22f9b029d045e112b082b6e8316ad39d (patch) | |
tree | 46985d63f6c7420a8fb229abcf4befcf18e6279d /eclass | |
parent | Fix & cleanup (diff) | |
download | historical-3aeb262c22f9b029d045e112b082b6e8316ad39d.tar.gz historical-3aeb262c22f9b029d045e112b082b6e8316ad39d.tar.bz2 historical-3aeb262c22f9b029d045e112b082b6e8316ad39d.zip |
fix glitch with jpeg code
Diffstat (limited to '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 a0b9abcdc687..697a3629c5ed 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.75 2003/08/17 06:06:23 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php.eclass,v 1.76 2003/08/17 21:51:01 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 @@ -286,7 +286,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" 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" |