diff options
author | 2003-02-27 17:27:37 +0000 | |
---|---|---|
committer | 2003-02-27 17:27:37 +0000 | |
commit | 0be536a5b1fb201324d9ddb1782affae1bcac077 (patch) | |
tree | 644d179d1a87e41a2cf46b8a2b17ed55af02c374 /eclass | |
parent | pack has been moved to x11-libs (diff) | |
download | gentoo-2-0be536a5b1fb201324d9ddb1782affae1bcac077.tar.gz gentoo-2-0be536a5b1fb201324d9ddb1782affae1bcac077.tar.bz2 gentoo-2-0be536a5b1fb201324d9ddb1782affae1bcac077.zip |
removed qtmt use flag, --enable-mt is now passed to configure by default.
see thread on -core for details.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 78850c7e43da..a603bb5d2c35 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.72 2003/02/18 09:00:45 carpaski Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.73 2003/02/27 17:27:37 hannes Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -80,10 +80,9 @@ kde_src_compile() { case $1 in myconf) debug-print-section myconf - myconf="$myconf --host=${CHOST} --prefix=${PREFIX} --with-x --enable-mitshm --with-xinerama --with-qt-dir=${QTDIR}" + myconf="$myconf --host=${CHOST} --prefix=${PREFIX} --with-x --enable-mitshm --with-xinerama --with-qt-dir=${QTDIR} --enable-mt" # calculate dependencies separately from compiling, enables ccache to work on kde compiles myconf="$myconf --disable-dependency-tracking" - use qtmt && myconf="$myconf --enable-mt" [ -n "$DEBUG" ] && myconf="$myconf --enable-debug=full --with-debug" || myconf="$myconf --disable-debug --without-debug" debug-print "$FUNCNAME: myconf: set to ${myconf}" ;; |