[KDE4] libkio undefined symbol [workaround-fix]

This is a discussion on [KDE4] libkio undefined symbol [workaround-fix] within the Debian forums, part of the Linux category; Ola. This is my first post and what brought me here was an error I was getting when trying to launch KDE4 installed from the packages in the experimental repository. ...

Go Back   Unix Linux Forum > Unix > Linux > Debian

FixUnix.com - Unix Linux Forums

Unix Content Register FAQ Calendar Search Today's Posts Mark Forums Read
  #1  
Old 01-16-2008, 10:00 PM
Default [KDE4] libkio undefined symbol [workaround-fix]

Ola.

This is my first post and what brought me here was an error I was
getting when trying to launch KDE4 installed from the packages in the
experimental repository.

The error was (from ~/.xsession-errors):

--
startkde: Starting up...
kdeinit4: symbol lookup error: /usr/lib/libkio.so.5: undefined symbol:
_ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_
startkde: Could not start kdeinit4. Check your installation.
--

I searched here for it, but no one seemed to have the same problem.
So I went further to find my way through it alone and I found, at
first, that /usr/lib/libkio.so.5 actually _has_ the supposedly missing
symbol:

--
nm -D /usr/lib/libkio.so.5 | grep
_ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_
U _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_
--

So I thought could be any library dynamic loading issue, then I found
that the startup script 'startkde' set the env variable LD_BIND_NOW. I
just removed it from the script, by changing the line above:

--
LD_BIND_NOW=true kdeinit4 +kcminit_startup
--

to this:

--
kdeinit4 +kcminit_startup
--

and KDE started fine with a few errors when shutting down (that I
cannot be sure if are colateral effects of what I did, but I'm almost
sure not).

I'm posting this here to help anyone having the same trouble, and
maybe someone who is in more touch with KDE4 development than me to
analyze this.

Regards,

Kiyoshi.


--
To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Reply With Quote
  #2  
Old 01-17-2008, 02:30 PM
Default Re: [KDE4] libkio undefined symbol [workaround-fix]

What version of libstreamanalyzer* and libstrigi* are you using ?
Try upgrading them.


Ritesh


Kiyoshi Murata wrote:

> Ola.
>
> This is my first post and what brought me here was an error I was
> getting when trying to launch KDE4 installed from the packages in the
> experimental repository.
>
> The error was (from ~/.xsession-errors):
>
> --
> startkde: Starting up...
> kdeinit4: symbol lookup error: /usr/lib/libkio.so.5: undefined symbol:
>

_ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_
> startkde: Could not start kdeinit4. Check your installation.
> --
>
> I searched here for it, but no one seemed to have the same problem.
> So I went further to find my way through it alone and I found, at
> first, that /usr/lib/libkio.so.5 actually _has_ the supposedly missing
> symbol:
>
> --
> nm -D /usr/lib/libkio.so.5 | grep
>

_ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_
> U
>

_ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_
> --
>
> So I thought could be any library dynamic loading issue, then I found
> that the startup script 'startkde' set the env variable LD_BIND_NOW. I
> just removed it from the script, by changing the line above:
>
> --
> LD_BIND_NOW=true kdeinit4 +kcminit_startup
> --
>
> to this:
>
> --
> kdeinit4 +kcminit_startup
> --
>
> and KDE started fine with a few errors when shutting down (that I
> cannot be sure if are colateral effects of what I did, but I'm almost
> sure not).
>
> I'm posting this here to help anyone having the same trouble, and
> maybe someone who is in more touch with KDE4 development than me to
> analyze this.
>
> Regards,
>
> Kiyoshi.
>
>


--
If possible, Please CC me when replying. I'm not subscribed to the list.


--
To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Reply With Quote
  #3  
Old 01-17-2008, 08:10 PM
Default Re: [KDE4] libkio undefined symbol [workaround-fix]

The versions:

--

$ dpkg -l | grep libstream
rc libstreamanalyzer0 0.5.5-2
rc libstreams0 0.5.5-2

$ dpkg -l | grep libstrigi
rc libstrigiqtdbusclient0 0.5.5-2

--

They are "rc"ed because I just uninstalled KDE4 and downgraded to KDE3.
It's too unstable yet. =P
If I decide to retry KDE4, I'll took your advice.

Thanks,

Kiyoshi.

On Jan 17, 2008 5:17 PM, Ritesh Raj Sarraf wrote:
> What version of libstreamanalyzer* and libstrigi* are you using ?
> Try upgrading them.
>
>
> Ritesh
>
>
>
> Kiyoshi Murata wrote:
>
> > Ola.
> >
> > This is my first post and what brought me here was an error I was
> > getting when trying to launch KDE4 installed from the packages in the
> > experimental repository.
> >
> > The error was (from ~/.xsession-errors):
> >
> > --
> > startkde: Starting up...
> > kdeinit4: symbol lookup error: /usr/lib/libkio.so.5: undefined symbol:
> >

> _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_
> > startkde: Could not start kdeinit4. Check your installation.
> > --
> >
> > I searched here for it, but no one seemed to have the same problem.
> > So I went further to find my way through it alone and I found, at
> > first, that /usr/lib/libkio.so.5 actually _has_ the supposedly missing
> > symbol:
> >
> > --
> > nm -D /usr/lib/libkio.so.5 | grep
> >

> _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_
> > U
> >

> _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_
> > --
> >
> > So I thought could be any library dynamic loading issue, then I found
> > that the startup script 'startkde' set the env variable LD_BIND_NOW. I
> > just removed it from the script, by changing the line above:
> >
> > --
> > LD_BIND_NOW=true kdeinit4 +kcminit_startup
> > --
> >
> > to this:
> >
> > --
> > kdeinit4 +kcminit_startup
> > --
> >
> > and KDE started fine with a few errors when shutting down (that I
> > cannot be sure if are colateral effects of what I did, but I'm almost
> > sure not).
> >
> > I'm posting this here to help anyone having the same trouble, and
> > maybe someone who is in more touch with KDE4 development than me to
> > analyze this.
> >
> > Regards,
> >
> > Kiyoshi.
> >
> >

>
> --
> If possible, Please CC me when replying. I'm not subscribed to the list.
>
>
> --
> To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
>
>



--
To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Reply With Quote
Reply

Thread Tools


All times are GMT -5. The time now is 02:15 AM.

In an effort to better serve ads to our visitors, cookies are used on Fixunix.com. For more information, check out our Privacy Policy.

Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Ad Management by RedTyger