Codebase list frei0r / 258af0b
Add patch to ensure that CFLAGS are honoured IOhannes m zmölnig (Debian/GNU) 1 year, 5 months ago
3 changed file(s) with 33 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
+0
-3
debian/patches/README less more
0 0xxx: Grabbed from upstream development.
1 1xxx: Possibly relevant for upstream adoption.
2 2xxx: Only relevant for official Debian release.
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