Gentoo Archives: gentoo-dev

From: Damaen <damaen@××××××××××××.com>
To: gentoo-dev@g.o
Subject: [gentoo-dev] painful KDE install
Date: Mon, 21 Jan 2002 13:39:45
Message-Id: 1011642055.18823.0.camel@magdelina.tocun.org
1 I'm wondering if anyone else ran into the problems merging
2 kdebase-2.2.2-r1. I'm not normally a KDE user, but I do try it out
3 everytime there is an update.
4
5 I ran into three problems during compile. All of them undefined
6 references. I'm sorry I don't have exact errors, but I believe I can
7 replicate them if need be.
8
9 First off, I hit an undefined reference in ./libkonq/kfileivi.cc, lines
10 197-200 to the function KIconEffect::hasEffect. I remedied it by
11 commenting the reference out and replacing the if statment, as such:
12
13 195: KIconEffect *effect = KGlobal::iconLoader()->iconEffect();
14 196:
15 197: //bool haveEffect = effect->hasEffect( KIcon::Desktop, d->state
16 ) !=
17 198: // effect->hasEffect( KIcon::Desktop, state );
18 199:
19 200:// if( haveEffect &&
20 201: if(
21 202: effect->fingerprint( KIcon::Desktop, d->state ) !=
22 203: effect->fingerprint( KIcon::Desktop, state ) )
23 204: {
24
25 Compile continued after this, until I hit another undefined reference in
26 ./kcontrol/crypto/crypto.cpp, to function
27 KSSLCertificateCache::modifyByCN, again, I commented it out, line 987:
28
29 986: QDateTime expires = x->getExpires();
30 987: //_cc.modifyByCN(thisCN,
31 (KSSLCertificateCache::KSSLCertificatePolicy)x->getPolicy(),
32 x->isPermanent(), expires);
33 988: //policies->setGroup(x->configName());
34
35 Compile now moved past this point, this time it died on undefined
36 references in libMesaGL.so.I actually corrected this by backrev'ing Mesa
37 from 3.5 to 3.4.2.
38
39 Compile actually finished after this, and I do have a running KDE
40 environ. I did update Mesa, back to v3.5, and it seems to be running
41 fine. I thought that I should mention this difficulty to you guys
42 though... :)
43
44 --
45 Regards,
46 Tim Bissell
47 ----------
48 The man with a new idea is a Crank until the idea succeeds.
49 - Mark Twain - Following the Equator

Replies

Subject Author
Re: [gentoo-dev] painful KDE install Dan Armak <danarmak@g.o>