symmetrica: compile with -std=c99 (#342275)

This commit is contained in:
Mauricio Collares 2024-09-20 22:27:05 +02:00 committed by GitHub
commit 9799f75f7e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,6 +23,10 @@ stdenv.mkDerivation rec {
autoreconfHook
];
# clang warning: passing arguments to '...' without a prototype is deprecated
# in all versions of C and is not supported in C23.
CFLAGS = "-std=c99 -Wno-deprecated-non-prototype";
enableParallelBuilding = true;
meta = with lib; {