From fe6fc8192c75eb885814a520238f8063162996ea Mon Sep 17 00:00:00 2001 From: Mathieu Malaterre Date: Fri, 10 Mar 2006 10:19:45 -0500 Subject: [PATCH] COMP: Fix compilation on MacOSX (common symbols not allowed with MH_DYLIB output format) --- Source/kwsys/testDynload.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/testDynload.c b/Source/kwsys/testDynload.c index 8168f9b1d..7308530c0 100644 --- a/Source/kwsys/testDynload.c +++ b/Source/kwsys/testDynload.c @@ -4,7 +4,7 @@ #define DL_EXPORT #endif -DL_EXPORT int TestDynamicLoaderData; +DL_EXPORT int TestDynamicLoaderData = 0; DL_EXPORT void TestDynamicLoaderFunction() {