From 3ba436c800f64eb769c162ff58fa02e26619ee4b Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Tue, 25 Mar 2003 23:55:25 +0000 Subject: [PATCH] * gc-mark.c: #include if HAVE_CONFIG_H. Rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS. Replace usage of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0". --- libguile/gc-mark.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libguile/gc-mark.c b/libguile/gc-mark.c index c29ec3613..f53a02529 100644 --- a/libguile/gc-mark.c +++ b/libguile/gc-mark.c @@ -41,6 +41,10 @@ +#if HAVE_CONFIG_H +# include +#endif + #include #include #include @@ -286,7 +290,7 @@ scm_gc_mark_dependencies (SCM p) goto gc_mark_loop; } #endif -#ifdef HAVE_ARRAYS +#ifdef SCM_HAVE_ARRAYS case scm_tc7_bvect: case scm_tc7_byvect: case scm_tc7_ivect: @@ -295,7 +299,7 @@ scm_gc_mark_dependencies (SCM p) case scm_tc7_dvect: case scm_tc7_cvect: case scm_tc7_svect: -#ifdef HAVE_LONG_LONGS +#if SCM_SIZEOF_LONG_LONG != 0 case scm_tc7_llvect: #endif #endif