stupid_idiot
Group: Members
Posts: 344
Joined: Oct. 2006 |
|
Posted: Jan. 04 2008,07:52 |
|
Hi Juanito: From thisQuote | /opt/gimp-2.4/lib/libgthread-2.0.so.0: undefined reference to `g_thread_gettime' | I guess your glib is installed in '/opt/gimp-2.4/lib/'?
I think the problem might be because 'libgthread-2.0.so.0' is still linked to DSL's glib at '/usr/lib/libglib-2.0.so.0'. (DSL's glib is version 2.6.4.)
Possible solutions: -- Configure glib with "--prefix=/usr". This will overwrite the old '/usr/lib/libglib-2.0.so.0' with the new version. -- Configure glib with "LDFLAGS='-Wl,-rpath,/opt/gimp-2.4/lib'". This way, 'libgthread-2.0.so.0' will look first in '/opt/gimp-2.4/lib/' for 'libglib-2.0.so.0'.
|