|
From: <ai...@us...> - 2014-04-04 16:21:43
|
Revision: 13095
http://sourceforge.net/p/plplot/code/13095
Author: airwin
Date: 2014-04-04 16:21:39 +0000 (Fri, 04 Apr 2014)
Log Message:
-----------
Because ENABLE_d=ON is known to interfere with wxwidgets linking on
Windows (for unknown reasons) turn it OFF by default on that platform.
Modified Paths:
--------------
trunk/cmake/modules/d.cmake
Modified: trunk/cmake/modules/d.cmake
===================================================================
--- trunk/cmake/modules/d.cmake 2014-04-02 20:46:46 UTC (rev 13094)
+++ trunk/cmake/modules/d.cmake 2014-04-04 16:21:39 UTC (rev 13095)
@@ -24,6 +24,11 @@
# Options to enable D bindings
if(DEFAULT_NO_BINDINGS)
option(ENABLE_d "Enable D bindings" OFF)
+elseif(WIN32_AND_NOT_CYGWIN)
+ option(ENABLE_d "Enable D bindings" OFF)
+ if(ENABLE_d)
+ message(STATUS "WARNING: setting the -DENABLE_d=ON option is considered to be experimental on Windows because it has been found to interfere with wxwidgets linking for unknown reasons")
+ endif(ENABLE_d)
else(DEFAULT_NO_BINDINGS)
option(ENABLE_d "Enable D bindings" ON)
endif(DEFAULT_NO_BINDINGS)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|