From 5726dad47c207dbf362bdb490d694264f1d899f8 Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Mon, 1 Sep 2008 21:06:20 +0200 Subject: [PATCH] Avoid autoconf removing the #undef ECL_API statement (J. Elsasser) --- src/h/config.h.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/h/config.h.in b/src/h/config.h.in index 8337b8a65..1f8a024a2 100644 --- a/src/h/config.h.in +++ b/src/h/config.h.in @@ -24,7 +24,7 @@ #if defined(mingw32) || defined(_MSC_VER) || defined(cygwin) # define ECL_DLLEXPORT __declspec(dllexport) # ifdef ECL_API -# undef ECL_API +# undef ECL_API /* Avoid autoconf removing this */ # define ECL_API __declspec(dllexport) # else # define ECL_API __declspec(dllimport) @@ -32,7 +32,7 @@ #else # define ECL_DLLEXPORT # ifdef ECL_API -# undef ECL_API +# undef ECL_API /* Avoid autoconf removing this */ # endif # define ECL_API #endif