GNOME Bugzilla – Bug 394641
Undefined reference in gthread
Last modified: 2011-02-18 15:50:35 UTC
+ Trace 100705
from _gobject import *
It seems like it's not linking to librt since the following solves it: Index: gthread/Makefile.am =================================================================== --- gthread/Makefile.am (revision 5233) +++ gthread/Makefile.am (working copy) @@ -61,7 +61,7 @@ libgthread_2_0_la_LDFLAGS = \ $(gthread_win32_res_ldflag) \ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ - -export-dynamic $(no_undefined) $(export_symbols) + -export-dynamic $(no_undefined) $(export_symbols) -lrt libgthread_2_0_la_LIBADD = $(G_THREAD_LIBS_EXTRA) $(G_THREAD_LIBS_FOR_GTHREAD) $(libglib)
2007-01-10 Matthias Clasen <mclasen@redhat.com> * configure.in: Actually link gthread against librt. (#394641, Marco Pesenti Gritti)