diff options
author | Daniel Bertalan <dani@danielbertalan.dev> | 2021-12-23 09:32:46 +0100 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-12-24 17:02:40 +0330 |
commit | ff4787ad2d1681f401e9797971e177b1ef16c539 (patch) | |
tree | b488a6fe830e8c1719a75cc983fcad9d265d3b85 | |
parent | 9418d4bf25d732cc9f205ba9949e4dc9c2e90c1d (diff) | |
download | serenity-ff4787ad2d1681f401e9797971e177b1ef16c539.zip |
Ports/chester: Enable -Werror
We no longer emit compiler warnings on deprecated/unsafe functions like
strcpy, so building more ports with -Werror is possible.
-rw-r--r-- | Ports/chester/patches/disable_Werror.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Ports/chester/patches/disable_Werror.patch b/Ports/chester/patches/disable_Werror.patch deleted file mode 100644 index 3579349d23..0000000000 --- a/Ports/chester/patches/disable_Werror.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index a68cf88..c541385 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -22,7 +22,7 @@ endif () - if (MSVC) - add_compile_options(/WX /wd4996) - else() -- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror") -+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall") - endif() - - add_subdirectory(src/lib) |