diff --git a/ChangeLog b/ChangeLog index c86cabe1f..7f7d7a19c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-11-03 Marius Vollmer + + * configure.in: Do not add "threads.o" to the libobjs, it is now + always compiled. + (USE_THREADS, GUILE_ISELECT): Do not define. + 2002-10-27 Marius Vollmer * configure.in: Handle thread package "coop-pthread" with alias diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 169e66a11..9eeb2828b 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,5 +1,15 @@ 2002-11-03 Marius Vollmer + * Makefile.am (libguile_la_SOURCES): Added threads.c + (DOT_DOC_FILES): Added threads.doc. + (DOT_X_FILES): Added threads.x. + (EXTRA_libguile_la_SOURCES): Removed threads.c. + (noinst_HEADERS): Added coop-pthreads.c. + (modinclude_HEADERS): Added coop-pthreads.h. + + * __scm.h (USE_THREADS, GUILE_ISELECT): Define when + SCM_DEBUG_DEPRECATED. Removed their use thru-out Guile. + * iselect.c: Include "_scm.h" before testing HAVE_UNISTD_H. Thanks to Bill Schottstaedt!