From: <ai...@us...> - 2009-07-18 02:09:35
|
Revision: 10157 http://plplot.svn.sourceforge.net/plplot/?rev=10157&view=rev Author: airwin Date: 2009-07-18 02:09:33 +0000 (Sat, 18 Jul 2009) Log Message: ----------- Enable D bindings and examples by default. The D examples are still not complete, but a large fraction of them are, and the bindings and existing examples build without issues. Previously, we were rather reluctant to enable a new language by default, but now that a missing D compiler only causes a warning, I believe the criteria for enabling a language by default do not have to be quite so severe as before. Modified Paths: -------------- trunk/cmake/modules/d.cmake Modified: trunk/cmake/modules/d.cmake =================================================================== --- trunk/cmake/modules/d.cmake 2009-07-18 02:03:28 UTC (rev 10156) +++ trunk/cmake/modules/d.cmake 2009-07-18 02:09:33 UTC (rev 10157) @@ -25,7 +25,7 @@ if(DEFAULT_NO_BINDINGS) option(ENABLE_d "Enable D bindings" OFF) else(DEFAULT_NO_BINDINGS) - option(ENABLE_d "Enable D bindings" OFF) + option(ENABLE_d "Enable D bindings" ON) endif(DEFAULT_NO_BINDINGS) if(ENABLE_d AND NOT PLPLOT_D_COMPILER_WORKS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |