From: <ai...@us...> - 2013-12-15 23:56:40
|
Revision: 12866 http://sourceforge.net/p/plplot/code/12866 Author: airwin Date: 2013-12-15 23:56:37 +0000 (Sun, 15 Dec 2013) Log Message: ----------- USE_TCL_TK_STUBS option temporarily set to OFF by default for this release since using the the stubs versions of libTcl and libTk (which is recommended by Tcl/Tk developers) has proven not to be reliable (-dev tk segfaults) for version 8.6 of Tcl/Tk. The stubs versions of libTcl and libTk work fine for version 8.5 of Tcl/Tk. Moving from the deprecated Tcl/Tk API we currently use to the recommended Tcl/Tk API may allow us to reliably use the stubs versions of libTcl and libTk for all versions of Tcl/Tk post-release. Modified Paths: -------------- trunk/cmake/modules/tcl-related.cmake Modified: trunk/cmake/modules/tcl-related.cmake =================================================================== --- trunk/cmake/modules/tcl-related.cmake 2013-12-14 21:23:33 UTC (rev 12865) +++ trunk/cmake/modules/tcl-related.cmake 2013-12-15 23:56:37 UTC (rev 12866) @@ -34,7 +34,7 @@ option(USE_INCRTCL_VERSION_4 "Use version 4 of Itcl and Itcl, version 4.1 of Iwidgets" OFF) -option(USE_TCL_TK_STUBS "Use Tcl/Tk stubs libraries" ON) +option(USE_TCL_TK_STUBS "Use Tcl/Tk stubs libraries" OFF) # Depending on these above options and system resources may also determine # the following variables which are largely self-explanatory unless documented This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |