diff options
author | Dan Armak <danarmak@gentoo.org> | 2001-12-08 15:36:55 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2001-12-08 15:36:55 +0000 |
commit | da1fe6776527eded8928cca366fd264d721529ec (patch) | |
tree | c5fc06d80429977991356262cb3cd19fec7f628d /eclass | |
parent | replaced 'KDE 2.2.1' to 'KDE 2.2.2' (diff) | |
download | gentoo-2-da1fe6776527eded8928cca366fd264d721529ec.tar.gz gentoo-2-da1fe6776527eded8928cca366fd264d721529ec.tar.bz2 gentoo-2-da1fe6776527eded8928cca366fd264d721529ec.zip |
added --enable-final. this speeds up compile times by as much as 30% or more! the faster yuor machine is andthe more
memory you have, the more you'll enjoy this (higher speedup percentage). the resulting binaries are also vrey
slightly more optimized. have fun!
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/doc/todo.txt | 3 | ||||
-rw-r--r-- | eclass/kde.eclass | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/eclass/doc/todo.txt b/eclass/doc/todo.txt index 98b860496593..cc2e5b16168d 100644 --- a/eclass/doc/todo.txt +++ b/eclass/doc/todo.txt @@ -1,7 +1,6 @@ -- inverse section requests (I like fancy names) - sort out docs/sgml, get link from site - have ebuilds/eclasses use newdepend() - sort debug.eclass msgs into levels, divide output - +- MAJOR AND COMPLETE REWRITE (?!) diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 6d6a447e5556..ccf37090e92b 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.16 2001/11/25 09:06:57 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.17 2001/12/08 15:36:55 danarmak Exp $ # The kde eclass is inherited by all kde-* eclasses. Few ebuilds inherit straight from here. inherit autoconf base depend || die ECLASS=kde @@ -48,7 +48,7 @@ kde_src_compile() { case $1 in myconf) debug-print-section myconf - myconf="--host=${CHOST} --with-x --enable-mitshm --with-xinerama --prefix=/usr --with-qt-dir=${QTDIR}" + myconf="--host=${CHOST} --with-x --enable-mitshm --with-xinerama --prefix=/usr --with-qt-dir=${QTDIR} --enable-final" use qtmt && myconf="$myconf --enable-mt" use objprelink && myconf="$myconf --enable-objprelink" || myconf="$myconf --disable-objprelink" set-kdedir $kde_version |