summaryrefslogtreecommitdiff
path: root/libguile/gen-scmconfig.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2005-01-02 19:43:36 +0000
committerMarius Vollmer <mvo@zagadka.de>2005-01-02 19:43:36 +0000
commit9c6e33c62acc203792053b6d5a579bdc22827eec (patch)
treebd5d26b05be49a284ccb22d37a05398ff7911778 /libguile/gen-scmconfig.c
parent9de6f5f1768624170ba6b1a48366f5ab14ef7d2c (diff)
downloadguile-9c6e33c62acc203792053b6d5a579bdc22827eec.tar.gz
* gen-scmconfig.h.in (SCM_I_GSC_HAVE_ARRAYS): Removed.
* gen-scmconfig.c: Hard code SCM_HAVE_ARRAYS to "1".
Diffstat (limited to 'libguile/gen-scmconfig.c')
-rw-r--r--libguile/gen-scmconfig.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/libguile/gen-scmconfig.c b/libguile/gen-scmconfig.c
index 5f1351307..20714f05d 100644
--- a/libguile/gen-scmconfig.c
+++ b/libguile/gen-scmconfig.c
@@ -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;