Merge pull request #271335 from SuperSandro2000/liberasurecode

liberasurecode: remove -Werror
This commit is contained in:
Emily Trau 2023-12-01 21:04:32 +11:00 committed by GitHub
commit 1ba227e333
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,9 @@ stdenv.mkDerivation rec {
postPatch = ''
substituteInPlace doc/doxygen.cfg.in \
--replace "GENERATE_MAN = NO" "GENERATE_MAN = YES"
substituteInPlace Makefile.am src/Makefile.am \
--replace "-Werror" ""
'';
nativeBuildInputs = [ autoreconfHook doxygen installShellFiles ];
@ -30,9 +33,8 @@ stdenv.mkDerivation rec {
buildInputs = [ zlib ];
configureFlags = [
"--disable-werror"
"--enable-doxygen"
] ++ lib.optionals stdenv.cc.isClang [
"CFLAGS=-Wno-error=strict-prototypes"
];
postInstall = ''