Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make sure that CFLAGS from the cmdline are honoured #202

Merged
merged 1 commit into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Make sure that CFLAGS from the cmdline are honoured
Origin: Debian
Bug: <URL to the upstream bug report if any, implies patch has been forwarded, optional>
Forwarded: no
Last-Update: 2025-01-11

Last-Update: 2025-01-11
Gbp-Pq: Name apply_CFLAGS.patch
  • Loading branch information
IOhannes m zmölnig authored and jaromil committed Jan 12, 2025
commit c50b0ea4e20a929da931be16b0bcbce6bd2ba1aa
2 changes: 1 addition & 1 deletion src/filter/levels/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Set C99 flag for gcc
if (CMAKE_COMPILER_IS_GNUCC)
set(CMAKE_C_FLAGS "-std=c99")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99")
endif (CMAKE_COMPILER_IS_GNUCC)

set (SOURCES levels.c)
Expand Down
2 changes: 1 addition & 1 deletion src/filter/three_point_balance/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Set C99 flag for gcc
if (CMAKE_COMPILER_IS_GNUCC)
set(CMAKE_C_FLAGS "-std=c99")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99")
endif (CMAKE_COMPILER_IS_GNUCC)

set (SOURCES three_point_balance.c)
Expand Down
Loading