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:
parent
e938aff131
commit
6f0250f7b4
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue