summaryrefslogtreecommitdiff
path: root/headsetcontrol/debian/patches/warningsnoterrors.patch
blob: 1b1a485a1291c9f18d54ee8170d8dba2217c1ea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
From: B. Stack <bgstack15@gmail.com>
Author: Denis Arnst <git@sapd.eu>
Last-modified: 2024-12-30 14:33
Description:
 Remove the -Wall (formerly -Wall -Werror) from compile flags
Origin: headsetcontrol upstream
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -36,7 +36,6 @@ IF (WIN32)
 	set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-Bstatic,--whole-archive -lwinpthread -Wl,--no-whole-archive")
 ENDIF()
 
-set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall")
 set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
 
 # ------------------------------------------------------------------------------
bgstack15