Ernesto Bascon wrote:
> Hi everybody:
>
> I am trying to create a full SLAMD64 (Slackware 64 bits distro) linux
> installation using pkgsrc as much as possible.
>
> My goal was building meta-pkgs/xorg but I have problems when trying to
> compile the audio/arts package:
>
> When linking, I get an error of:
>
> g_thread_gettime reference is not found on libgthread.so.0
>
> Someone of you has gotten this error? How can I deal with it?
>
> Regards,
>
>
> ernesto
g_thread_gettime should be defined in libglib-2.0.so.
What is the output of
$ nm libglib-2.0.so | grep g_thread_gettime
$ nm libgthread-2.0.so | grep g_thread_gettime
and
$ ldd libgthread-2.0.so
?
Tobias