diff options
author | Hannes Mehnert <hannes@gentoo.org> | 2003-02-27 17:27:37 +0000 |
---|---|---|
committer | Hannes Mehnert <hannes@gentoo.org> | 2003-02-27 17:27:37 +0000 |
commit | 8f401eb04ee9642bed8a730f79ad5e8bae80d9f1 (patch) | |
tree | 51a7d446931fd942c897764002849f0cf2939084 | |
parent | pack has been moved to x11-libs (diff) | |
download | historical-8f401eb04ee9642bed8a730f79ad5e8bae80d9f1.tar.gz historical-8f401eb04ee9642bed8a730f79ad5e8bae80d9f1.tar.bz2 historical-8f401eb04ee9642bed8a730f79ad5e8bae80d9f1.zip |
removed qtmt use flag, --enable-mt is now passed to configure by default.
see thread on -core for details.
-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}" ;; |