summaryrefslogtreecommitdiff
path: root/srfi
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2008-04-27 00:50:05 +0200
committerLudovic Courtès <ludo@gnu.org>2008-04-27 00:50:19 +0200
commita030cb4b16cf9c39fcd8c4ab3b6570d599cd993f (patch)
treed806375f331a704450875feb2330ec6a3fe4643a /srfi
parent56ae2148173f0b9a8fe8bb82530113f99f1f364d (diff)
downloadguile-a030cb4b16cf9c39fcd8c4ab3b6570d599cd993f.tar.gz
Include <config.h> in SRFI-1.
Diffstat (limited to 'srfi')
-rw-r--r--srfi/ChangeLog4
-rw-r--r--srfi/srfi-1.c6
2 files changed, 9 insertions, 1 deletions
diff --git a/srfi/ChangeLog b/srfi/ChangeLog
index d93ac8232..65ea3e982 100644
--- a/srfi/ChangeLog
+++ b/srfi/ChangeLog
@@ -1,3 +1,7 @@
+2008-04-27 Ludovic Courtès <ludo@gnu.org>
+
+ * srfi-1.c: Include <config.h>.
+
2008-04-26 Ludovic Courtès <ludo@gnu.org>
* srfi-35.scm: Provide `srfi-35' through `cond-expand-provide'.
diff --git a/srfi/srfi-1.c b/srfi/srfi-1.c
index 8e27ab4e6..2989a25cf 100644
--- a/srfi/srfi-1.c
+++ b/srfi/srfi-1.c
@@ -1,6 +1,6 @@
/* srfi-1.c --- SRFI-1 procedures for Guile
*
- * Copyright (C) 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2005, 2006
+ * Copyright (C) 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2005, 2006, 2008
* Free Software Foundation, Inc.
*
* This library is free software; you can redistribute it and/or
@@ -18,6 +18,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#if HAVE_CONFIG_H
+# include <config.h>
+#endif
+
#include <libguile.h>
#include <libguile/lang.h>