Codebase list frei0r / f74f23a
Drop obsolete patches IOhannes m zmölnig (Debian/GNU) 9 months ago
2 changed file(s) with 0 addition(s) and 33 deletion(s). Raw diff Collapse all Expand all
+0
-32
debian/patches/apply_CFLAGS.patch less more
0 From: =?utf-8?q?IOhannes_m_zm=C3=B6lnig?= <umlaeute@debian.org>
1 Date: Sat, 11 Jan 2025 19:01:54 +0100
2 Subject: Make sure that CFLAGS from the cmdline are honoured
3
4 Origin: Debian
5 Forwarded: https://github.com/dyne/frei0r/pull/202
6 Last-Update: 2025-01-11
7 ---
8 src/filter/levels/CMakeLists.txt | 2 +-
9 src/filter/three_point_balance/CMakeLists.txt | 2 +-
10 2 files changed, 2 insertions(+), 2 deletions(-)
11
12 --- frei0r.orig/src/filter/levels/CMakeLists.txt
13 +++ frei0r/src/filter/levels/CMakeLists.txt
14 @@ -1,6 +1,6 @@
15 # Set C99 flag for gcc
16 if (CMAKE_COMPILER_IS_GNUCC)
17 - set(CMAKE_C_FLAGS "-std=c99")
18 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99")
19 endif (CMAKE_COMPILER_IS_GNUCC)
20
21 set (SOURCES levels.c)
22 --- frei0r.orig/src/filter/three_point_balance/CMakeLists.txt
23 +++ frei0r/src/filter/three_point_balance/CMakeLists.txt
24 @@ -1,6 +1,6 @@
25 # Set C99 flag for gcc
26 if (CMAKE_COMPILER_IS_GNUCC)
27 - set(CMAKE_C_FLAGS "-std=c99")
28 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99")
29 endif (CMAKE_COMPILER_IS_GNUCC)
30
31 set (SOURCES three_point_balance.c)
0 apply_CFLAGS.patch