summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-cpp/rttr/files/rttr-0.9.6-werror.patch')
-rw-r--r--dev-cpp/rttr/files/rttr-0.9.6-werror.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/dev-cpp/rttr/files/rttr-0.9.6-werror.patch b/dev-cpp/rttr/files/rttr-0.9.6-werror.patch
deleted file mode 100644
index 04c65203ac91..000000000000
--- a/dev-cpp/rttr/files/rttr-0.9.6-werror.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-This causes build failures with modern GCC, and is against Gentoo policy in any case.
-
---- a/CMake/utility.cmake
-+++ b/CMake/utility.cmake
-@@ -392,11 +392,9 @@
- ####################################################################################
- function( set_compiler_warnings target)
- if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
-- set(WARNINGS "-Werror"
-- "-Wall")
-+ set(WARNINGS "-Wall")
- elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
-- set(WARNINGS "-Werror"
-- "-Wall")
-+ set(WARNINGS "-Wall")
- elseif(MSVC)
- set(WARNINGS "/WX"
- "/W4")