f3809c6f4a
When compiling with GCC v7 and the `-Werror` flag several new warnings caused the build to fail: https://hydra.nixos.org/build/70751457/nixlog/2 Note: I patched the CMake file manually as v4.3.0 is quite old, a v5 is in progress, but isn't stable yet, so patching v4 seems to be the better solution taking stability into account. See tickets #31747 and #36453
16 lines
788 B
Diff
16 lines
788 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index a1e8541..6bc9c30 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -135,8 +135,8 @@ configure_file (
|
|
"${PROJECT_BINARY_DIR}/config.h"
|
|
)
|
|
|
|
-set(LIB_CFLAGS "${C99_C_FLAGS} -pedantic -Werror -Wall -Werror=strict-prototypes -Werror=old-style-definition -Werror=missing-prototypes -D_REENTRANT -D_POSIX_C_SOURCE=200809L")
|
|
-set(EXAMPLE_CFLAGS "${C99_C_FLAGS} -pedantic -Werror -Wall -g")
|
|
+set(LIB_CFLAGS "${C99_C_FLAGS} -pedantic -Wall -Werror=strict-prototypes -Werror=old-style-definition -Werror=missing-prototypes -D_REENTRANT -D_POSIX_C_SOURCE=200809L")
|
|
+set(EXAMPLE_CFLAGS "${C99_C_FLAGS} -pedantic -Wall -g")
|
|
set(EXAMPLE_INCLUDES "${PROJECT_SOURCE_DIR}")
|
|
|
|
add_library(groove SHARED ${LIBGROOVE_SOURCES} ${LIBGROOVE_HEADERS})
|