diff options
author | Ludovic Courtès <ludo@gnu.org> | 2008-09-13 20:09:08 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2008-09-13 20:09:08 +0200 |
commit | 3394818c0a465c8b337252250174ecb0d13d726d (patch) | |
tree | 54cef925f7849da9cf86d1576a5b4e5d1ad13504 /test-suite/standalone/test-list.c | |
parent | dbb605f575ea9720cb534b1e3e1a3a7015c828a6 (diff) | |
download | guile-3394818c0a465c8b337252250174ecb0d13d726d.tar.gz |
Include <config.h> in standalone tests.
* test-suite/standalone/Makefile.am (test_cflags): Add `-I$(top_builddir)' so
that <config.h> can be found.
(snarfcppopts): Likewise.
* test-suite/standalone/*.c: Include <config.h>.
Diffstat (limited to 'test-suite/standalone/test-list.c')
-rw-r--r-- | test-suite/standalone/test-list.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/standalone/test-list.c b/test-suite/standalone/test-list.c index 3396dff83..02634f676 100644 --- a/test-suite/standalone/test-list.c +++ b/test-suite/standalone/test-list.c @@ -17,6 +17,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef HAVE_CONFIG_H +# include <config.h> +#endif + #include <libguile.h> #include <stdio.h> |