1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-29 22:40:34 +02:00

* gen-scmconfig.h.in (SCM_I_GSC_HAVE_ARRAYS): Removed.

* gen-scmconfig.c: Hard code SCM_HAVE_ARRAYS to "1".
This commit is contained in:
Marius Vollmer 2005-01-02 19:43:36 +00:00
parent 9de6f5f176
commit 9c6e33c62a
2 changed files with 2 additions and 6 deletions

View file

@ -244,11 +244,6 @@ main (int argc, char *argv[])
pf ("/* Set to 1 to add Elisp support (in addition to Scheme). */\n");
pf ("#define SCM_ENABLE_ELISP %d /* 0 or 1 */\n", SCM_I_GSC_ENABLE_ELISP);
/*** SCM_HAVE_ARRAYS (0 or 1) ***/
pf ("\n");
pf ("/* Set to 1 to add support for arrays and uniform arrays. */\n");
pf ("#define SCM_HAVE_ARRAYS %d /* 0 or 1 */\n", SCM_I_GSC_HAVE_ARRAYS);
/*** SCM_STACK_GROWS_UP (0 or 1) ***/
pf ("\n");
pf ("/* Set to 1 if the stack grows up, 0 otherwise. */\n");
@ -406,6 +401,8 @@ main (int argc, char *argv[])
"#endif\n");
printf ("\n");
pf ("#define SCM_HAVE_ARRAYS +++ /* always true now */\n");
printf ("#endif\n");
return 0;

View file

@ -11,7 +11,6 @@
#define SCM_I_GSC_ENABLE_DISCOURAGED @SCM_I_GSC_ENABLE_DISCOURAGED@
#define SCM_I_GSC_ENABLE_DEPRECATED @SCM_I_GSC_ENABLE_DEPRECATED@
#define SCM_I_GSC_ENABLE_ELISP @SCM_I_GSC_ENABLE_ELISP@
#define SCM_I_GSC_HAVE_ARRAYS @SCM_I_GSC_HAVE_ARRAYS@
#define SCM_I_GSC_STACK_GROWS_UP @SCM_I_GSC_STACK_GROWS_UP@
#define SCM_I_GSC_C_INLINE @SCM_I_GSC_C_INLINE@
#define SCM_I_GSC_NEEDS_STDINT_H @SCM_I_GSC_NEEDS_STDINT_H@