(to reduce linker warnings about empty object files)
* Makefile.am (libgc_la_SOURCES): Do not add pthread_start.c,
pthread_support.c, pthread_stop_world.c entries for Cygwin and
win32-pthread; do not add pthread_stop_world.c entry for Darwin.
# C Library: Architecture Dependent
# ---------------------------------
+if WIN32_THREADS
+libgc_la_SOURCES += win32_threads.c
+else
if PTHREADS
-libgc_la_SOURCES += pthread_start.c pthread_support.c pthread_stop_world.c
-endif
-
+libgc_la_SOURCES += pthread_start.c pthread_support.c
if DARWIN_THREADS
libgc_la_SOURCES += darwin_stop_world.c
+else
+libgc_la_SOURCES += pthread_stop_world.c
+endif
endif
-
-if WIN32_THREADS
-libgc_la_SOURCES += win32_threads.c
endif
if ENABLE_DISCLAIM