summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2006-03-10 15:19:45 (GMT)
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2006-03-10 15:19:45 (GMT)
commitfe6fc8192c75eb885814a520238f8063162996ea (patch)
tree4f3b7e3d5d72a31049bfb2008e791956dcf76200
parent4909154387581ed82544b3407e087f7d7221ca55 (diff)
downloadCMake-fe6fc8192c75eb885814a520238f8063162996ea.zip
CMake-fe6fc8192c75eb885814a520238f8063162996ea.tar.gz
CMake-fe6fc8192c75eb885814a520238f8063162996ea.tar.bz2
COMP: Fix compilation on MacOSX (common symbols not allowed with MH_DYLIB output format)
-rw-r--r--Source/kwsys/testDynload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/testDynload.c b/Source/kwsys/testDynload.c
index 8168f9b..7308530 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()
{