From 88d65b23c1f18afaf178b0d850597021428eb557 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 18 Feb 2015 21:15:58 -0800 Subject: [PATCH] CMake Feedback Messages - Reworded the '-std=c++11' feedback messages to user fewer '!' characters, and be more emphatic about upgrading the compiler. --- CMakeLists.txt | 6 +++--- ChangeLog | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 91d8b211f..fa7de13a5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,13 +30,13 @@ CHECK_CXX_COMPILER_FLAG("-std=gnu++0x" _HAS_GNU0X) if (_HAS_CXX11) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") elseif (_HAS_CXX0X) - message (WARNING "Enabling -std=c++0x draft compile flag. Please try using an up to date compiler if you run into any problems!") + message (WARNING "Enabling -std=c++0x draft compile flag. Your compiler does not support the standard '-std=c++11' option. Consider upgrading.") set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") elseif (_HAS_GNU0X) - message (WARNING "Enabling -std=gnu++0x draft compile flag. You're probably in for a bad time, please try using an up to date compiler!") + message (WARNING "Enabling -std=gnu++0x draft compile flag. Your compiler does not support the standard '-std=c++11' option. Consider upgrading.") set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++0x") else (_HAS_CXX11) - message (FATAL_ERROR "C++11 support missing. Try upgrading your C++ compiler! If you have a good reason for using an outdated compiler, please let us know at support@taskwarrior.org!") + message (FATAL_ERROR "C++11 support missing. Try upgrading your C++ compiler. If you have a good reason for using an outdated compiler, please let us know at support@taskwarrior.org.") endif (_HAS_CXX11) if (${CMAKE_SYSTEM_NAME} MATCHES "Linux") diff --git a/ChangeLog b/ChangeLog index 50b812e6c..7393e97a8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,11 +1,11 @@ 2.4.2 () - -- TW-1547 Recur column is always shown even if no recurring task is displayed - (thanks to Renato Alves). - TW-1545 cc1plus: error: unrecognized command line option '-std=c++11' (thanks to Petteri). - TW-1546 column type due.remaining breaks colors on due tasks (thanks to Renato Alves). +- TW-1547 Recur column is always shown even if no recurring task is displayed + (thanks to Renato Alves). - Eliminated some code that is not UTF8-safe. - Removed pthreads linkage.