From d16332b312c248a0eba30a3ee6a965b91d060446 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Thu, 29 May 1997 02:20:19 +0000 Subject: [PATCH] * eval.c: Include scmconfig.h at the beginning of the file so that HAVE_ALLOCA_H may properly be defined. Thanks to Bill Janssen for pointing this out. --- libguile/eval.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libguile/eval.c b/libguile/eval.c index 5111dc28d..bdb4b0a98 100644 --- a/libguile/eval.c +++ b/libguile/eval.c @@ -54,6 +54,9 @@ #ifndef DEVAL +/* We need this to get the definitions for HAVE_ALLOCA_H, etc. */ +#include "scmconfig.h" + /* AIX requires this to be the first thing in the file. The #pragma directive is indented so pre-ANSI compilers will ignore it, rather than choke on it. */