1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* init.c: #include <config.h> if HAVE_CONFIG_H. Rename usage of

HAVE_ARRAYS to SCM_HAVE_ARRAYS.

* gdbinit.c: #include <config.h> if HAVE_CONFIG_H.
This commit is contained in:
Rob Browning 2003-03-25 23:56:32 +00:00
parent e938aff131
commit 6f0250f7b4

View file

@ -44,6 +44,10 @@
/* Include the headers for just about everything. /* Include the headers for just about everything.
We call all their initialization functions. */ We call all their initialization functions. */
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h> #include <stdio.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>
@ -551,7 +555,7 @@ scm_init_guile_1 (SCM_STACKITEM *base)
scm_init_debug (); /* Requires macro smobs */ scm_init_debug (); /* Requires macro smobs */
#endif #endif
scm_init_random (); scm_init_random ();
#ifdef HAVE_ARRAYS #ifdef SCM_HAVE_ARRAYS
scm_init_ramap (); scm_init_ramap ();
scm_init_unif (); scm_init_unif ();
#endif #endif