diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2005-05-14 15:36:45 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2005-05-14 15:36:45 +0000 |
commit | 88c1c47526d205a6df34f87e057bd1129c844f37 (patch) | |
tree | 57882f95b83623435781e24f7e8ee54eab6df617 | |
parent | 0.2.0 x86 stable (diff) | |
download | gentoo-2-88c1c47526d205a6df34f87e057bd1129c844f37.tar.gz gentoo-2-88c1c47526d205a6df34f87e057bd1129c844f37.tar.bz2 gentoo-2-88c1c47526d205a6df34f87e057bd1129c844f37.zip |
Removed dmalloc support. bug# 92569
-rw-r--r-- | eclass/wxlib.eclass | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/eclass/wxlib.eclass b/eclass/wxlib.eclass index 462ea3d8a409..2028c31aebca 100644 --- a/eclass/wxlib.eclass +++ b/eclass/wxlib.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/wxlib.eclass,v 1.6 2005/05/12 18:01:38 pythonhead Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/wxlib.eclass,v 1.7 2005/05/14 15:36:45 pythonhead Exp $ # Author Diego Pettenò <flameeyes@gentoo.org> # Maintained by wxwidgets herd @@ -13,7 +13,7 @@ inherit flag-o-matic eutils multilib toolchain-funcs ECLASS="wxlib" INHERITED="${INHERITED} ${ECLASS}" -IUSE="doc debug unicode dmalloc" +IUSE="doc debug unicode" LICENSE="wxWinLL-3" @@ -21,7 +21,6 @@ LICENSE="wxWinLL-3" # has its own implementation of it # Note 2: PCX support is enabled if the correct libraries are detected. # There is no USE flag for this. -RDEPEND="!hppa? ( !alpha? ( !ppc64? ( !amd64? ( !arm? ( !mips? ( dmalloc? ( dev-libs/dmalloc ) ) ) ) ) ) )" DEPEND="${RDEPEND} sys-libs/zlib @@ -73,7 +72,6 @@ subconfigure() { debug_conf="" if use debug; then debug_conf="--enable-debug --enable-debug_gdb" - debug_conf="${debug_conf} `use_with dmalloc`" fi ${S}/configure \ --host=${CHOST} \ |