From: <ai...@us...> - 2009-04-26 01:19:34
|
Revision: 9852 http://plplot.svn.sourceforge.net/plplot/?rev=9852&view=rev Author: airwin Date: 2009-04-26 01:19:33 +0000 (Sun, 26 Apr 2009) Log Message: ----------- Enable Tk and Itk by default now that we have shown by experiment that the segfaults in these components of PLplot were caused by HAVE_PTHREAD ON (which is now OFF by default for this reason). Modified Paths: -------------- trunk/cmake/modules/tcl-related.cmake Modified: trunk/cmake/modules/tcl-related.cmake =================================================================== --- trunk/cmake/modules/tcl-related.cmake 2009-04-26 01:14:33 UTC (rev 9851) +++ trunk/cmake/modules/tcl-related.cmake 2009-04-26 01:19:33 UTC (rev 9852) @@ -28,8 +28,8 @@ else(DEFAULT_NO_BINDINGS) option(ENABLE_tcl "Enable Tcl bindings" ON) option(ENABLE_itcl "Enable incr Tcl interface code" ON) - option(ENABLE_tk "Enable Tk interface code" OFF) - option(ENABLE_itk "Enable incr TK interface code" OFF) + option(ENABLE_tk "Enable Tk interface code" ON) + option(ENABLE_itk "Enable incr TK interface code" ON) endif(DEFAULT_NO_BINDINGS) # Depending on these above options and system resources may also determine This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |