diff options
author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2006-03-10 10:19:45 -0500 |
---|---|---|
committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2006-03-10 10:19:45 -0500 |
commit | fe6fc8192c75eb885814a520238f8063162996ea (patch) | |
tree | 4f3b7e3d5d72a31049bfb2008e791956dcf76200 /Source/kwsys/testDynload.c | |
parent | 4909154387581ed82544b3407e087f7d7221ca55 (diff) | |
download | cmake-fe6fc8192c75eb885814a520238f8063162996ea.tar.gz |
COMP: Fix compilation on MacOSX (common symbols not allowed with MH_DYLIB output format)
Diffstat (limited to 'Source/kwsys/testDynload.c')
-rw-r--r-- | Source/kwsys/testDynload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/testDynload.c b/Source/kwsys/testDynload.c index 8168f9b1d3..7308530c03 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() { |