Move the GThread implementations to glib/

We can now get threads initialised from inside of libglib by calling
g_thread_init_glib().
This commit is contained in:
Ryan Lortie
2011-08-31 18:00:03 -04:00
parent 96e4896804
commit cfa1d0540e
7 changed files with 23 additions and 25 deletions

View File

@@ -13,8 +13,6 @@ AM_CPPFLAGS = \
EXTRA_DIST += \
makefile.msc.in \
gthread-posix.c \
gthread-win32.c \
gthread.def \
gthread.rc.in
@@ -66,11 +64,7 @@ gthread_win32_res = gthread-win32-res.o
gthread_win32_res_ldflag = -Wl,$(gthread_win32_res)
endif
if OS_WIN32
libgthread_2_0_la_SOURCES = gthread-win32.c
else
libgthread_2_0_la_SOURCES = gthread-posix.c
endif
libgthread_2_0_la_SOURCES = gthread-impl.c
libgthread_2_0_la_LDFLAGS = $(GLIB_LINK_FLAGS) \
$(gthread_win32_res_ldflag) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \