From eb0ffdd8190bff165120b881ca3e1702be82c83a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 25 Apr 2011 23:54:47 +0200 Subject: [PATCH] Fix `#ifdef HAVE_CONFIG_H' stanza in some stand-alone tests. * test-suite/standalone/test-asmobs-lib.c, test-suite/standalone/test-extensions-lib.c, test-suite/standalone/test-ffi-lib.c, test-suite/standalone/test-list.c, test-suite/standalone/test-num2integral.c, test-suite/standalone/test-with-guile-module.c: Change `#ifndef HAVE_CONFIG_H' to `#ifdef HAVE_CONFIG_H' (!). --- test-suite/standalone/test-asmobs-lib.c | 2 +- test-suite/standalone/test-extensions-lib.c | 2 +- test-suite/standalone/test-ffi-lib.c | 2 +- test-suite/standalone/test-list.c | 2 +- test-suite/standalone/test-num2integral.c | 2 +- test-suite/standalone/test-with-guile-module.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test-suite/standalone/test-asmobs-lib.c b/test-suite/standalone/test-asmobs-lib.c index c88556ab2..03ac76447 100644 --- a/test-suite/standalone/test-asmobs-lib.c +++ b/test-suite/standalone/test-asmobs-lib.c @@ -16,7 +16,7 @@ * 02110-1301 USA */ -#ifndef HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include #endif diff --git a/test-suite/standalone/test-extensions-lib.c b/test-suite/standalone/test-extensions-lib.c index 7c8678895..cc03a9eba 100644 --- a/test-suite/standalone/test-extensions-lib.c +++ b/test-suite/standalone/test-extensions-lib.c @@ -16,7 +16,7 @@ * 02110-1301 USA */ -#ifndef HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include #endif diff --git a/test-suite/standalone/test-ffi-lib.c b/test-suite/standalone/test-ffi-lib.c index 364e6a684..a89b6aa94 100644 --- a/test-suite/standalone/test-ffi-lib.c +++ b/test-suite/standalone/test-ffi-lib.c @@ -16,7 +16,7 @@ * 02110-1301 USA */ -#ifndef HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include #endif diff --git a/test-suite/standalone/test-list.c b/test-suite/standalone/test-list.c index 2efaf5c88..b51a2a18e 100644 --- a/test-suite/standalone/test-list.c +++ b/test-suite/standalone/test-list.c @@ -18,7 +18,7 @@ * 02110-1301 USA */ -#ifndef HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include #endif diff --git a/test-suite/standalone/test-num2integral.c b/test-suite/standalone/test-num2integral.c index af995ecd8..6a44fb75a 100644 --- a/test-suite/standalone/test-num2integral.c +++ b/test-suite/standalone/test-num2integral.c @@ -16,7 +16,7 @@ * 02110-1301 USA */ -#ifndef HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include #endif diff --git a/test-suite/standalone/test-with-guile-module.c b/test-suite/standalone/test-with-guile-module.c index 154f4f23f..4e22ff5da 100644 --- a/test-suite/standalone/test-with-guile-module.c +++ b/test-suite/standalone/test-with-guile-module.c @@ -16,7 +16,7 @@ * 02110-1301 USA */ -#ifndef HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include #endif