From: <ai...@us...> - 2010-04-13 14:19:00
|
Revision: 10912 http://plplot.svn.sourceforge.net/plplot/?rev=10912&view=rev Author: airwin Date: 2010-04-13 14:18:35 +0000 (Tue, 13 Apr 2010) Log Message: ----------- Tweak the wincairo message to remove the WARNING label from it since this is just an informational message concerning a condition (this is not a Windows platform) which the user can do nothing about on that platform. We should also systematically drop the WARNING label from messages on other platforms as well if they are just informational. Thus, WARNING messages should be reserved for something the user has control over such as downloading/installing more software. The ideal here is no WARNING messages at all for fully loaded systems. With this change we have reestablished that ideal on Linux, but this needs to be checked for other platforms as well. Modified Paths: -------------- trunk/cmake/modules/cairo.cmake Modified: trunk/cmake/modules/cairo.cmake =================================================================== --- trunk/cmake/modules/cairo.cmake 2010-04-12 23:07:11 UTC (rev 10911) +++ trunk/cmake/modules/cairo.cmake 2010-04-13 14:18:35 UTC (rev 10912) @@ -174,7 +174,7 @@ if(NOT WIN32) message(STATUS - "WARNING: Not a Windows platform so setting wincairo driver to OFF." - ) + "Not a Windows platform so setting wincairo driver to OFF." + ) set(PLD_wincairo OFF CACHE BOOL "Enable wincairo device" FORCE) endif(NOT WIN32) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |