diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-16 01:04:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-16 01:04:36 +0000 |
commit | a1928d55dc781d6c4865d9a27f706eed4b6fda0c (patch) | |
tree | 314fb0fa02c818aa9911257c55d25a49e0094bda /x11-wm/enlightenment-cvs | |
parent | version bump (diff) | |
download | historical-a1928d55dc781d6c4865d9a27f706eed4b6fda0c.tar.gz historical-a1928d55dc781d6c4865d9a27f706eed4b6fda0c.tar.bz2 historical-a1928d55dc781d6c4865d9a27f706eed4b6fda0c.zip |
disabled mmx support in imlib2
Diffstat (limited to 'x11-wm/enlightenment-cvs')
-rw-r--r-- | x11-wm/enlightenment-cvs/enlightenment-cvs-0.17.20021027.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/x11-wm/enlightenment-cvs/enlightenment-cvs-0.17.20021027.ebuild b/x11-wm/enlightenment-cvs/enlightenment-cvs-0.17.20021027.ebuild index 7477b4c74cf5..182463d68559 100644 --- a/x11-wm/enlightenment-cvs/enlightenment-cvs-0.17.20021027.ebuild +++ b/x11-wm/enlightenment-cvs/enlightenment-cvs-0.17.20021027.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment-cvs/enlightenment-cvs-0.17.20021027.ebuild,v 1.5 2002/10/28 17:10:46 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment-cvs/enlightenment-cvs-0.17.20021027.ebuild,v 1.6 2002/11/16 01:04:36 vapier Exp $ IUSE="pic X mmx truetype opengl" @@ -70,10 +70,12 @@ src_install() { ############ ### imlib2 ### + # mmx support in imlib2 makes other things complain it would seem ... + # *shrug*, worked for me ;D cd ${S}/libs/imlib2 - addconf= + addconf="--disable-mmx" use X && addconf="${addconf} --with-x" - use mmx && addconf="${addconf} --enable-mmx" +# use mmx && addconf="${addconf} --enable-mmx" use truetype && addconf="${addconf} --with-ttf=/usr" env USER=BS ./autogen.sh ${baseconf} ${addconf} || die "could not autogen imlib2" make || die "could not make imlib2" |