|
From: <ai...@us...> - 2008-09-11 18:40:39
|
Revision: 8773
http://plplot.svn.sourceforge.net/plplot/?rev=8773&view=rev
Author: airwin
Date: 2008-09-11 18:40:50 +0000 (Thu, 11 Sep 2008)
Log Message:
-----------
Fix bug (DUSINGPLDLL ==> DMAKINGPLDLL) which was revealed by recent changes
which ignore visibility for _import_ symbols for Linux GCC. Later, for the
windows case this logic should be replaced by logic which distinguishes
clearly between the visibility of export and import symbols. But the
present logic works for now for Linux since visibility is meaningless there
for imported symbols.
Modified Paths:
--------------
trunk/bindings/tcl/CMakeLists.txt
Modified: trunk/bindings/tcl/CMakeLists.txt
===================================================================
--- trunk/bindings/tcl/CMakeLists.txt 2008-09-11 18:36:19 UTC (rev 8772)
+++ trunk/bindings/tcl/CMakeLists.txt 2008-09-11 18:40:50 UTC (rev 8773)
@@ -157,7 +157,7 @@
)
if(BUILD_SHARED_LIBS)
set_source_files_properties(${plplottcltk${LIB_TAG}_LIB_SRCS}
- PROPERTIES COMPILE_FLAGS "-DUSINGPLDLL"
+ PROPERTIES COMPILE_FLAGS "-DMAKINGPLDLL"
)
endif(BUILD_SHARED_LIBS)
set(plplottcltk${LIB_TAG}_link_libraries
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|