1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-22 20:40:29 +02:00
This commit is contained in:
Tim Pierce 1997-11-30 02:35:18 +00:00
parent b6609fc78a
commit 756fa4f89b
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,7 @@
1997-11-29 Tim Pierce <twp@skepsis.com>
* iselect.c: Doc fix.
Sat Nov 29 01:16:53 1997 Mikael Djurfeldt <mdj@kenneth> Sat Nov 29 01:16:53 1997 Mikael Djurfeldt <mdj@kenneth>
* init.c (scm_start_stack): Removed initialization of * init.c (scm_start_stack): Removed initialization of

View file

@ -45,6 +45,15 @@
#include "_scm.h" #include "_scm.h"
/*
* iselect.c is linked with Guile only when threads are in use. However,
* when threads are *not* in use, the `make depend' mechanism will try
* to process this file anyway and get tangled up in iselect.h and
* coop-threads.h. Therefore, we use the USE_THREADS macro (which is
* otherwise redundant for this file) to prevent `make depend' from
* failing.
*/
#ifdef USE_THREADS #ifdef USE_THREADS
#include "iselect.h" #include "iselect.h"
#include "coop-threads.h" #include "coop-threads.h"