opendkim: fix cross-build

This commit is contained in:
Jörg Thalheim 2018-12-12 00:17:40 +00:00
parent b67c061f0a
commit 863ceb5891
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -10,7 +10,11 @@ stdenv.mkDerivation rec {
sha256 = "06v8bqhh604sz9rh5bvw278issrwjgc4h1wx2pz9a84lpxbvm823";
};
configureFlags= [ "--with-milter=${libmilter}" ];
configureFlags= [
"--with-milter=${libmilter}"
"ac_cv_func_malloc_0_nonnull=yes"
"ac_cv_func_realloc_0_nonnull=yes"
];
nativeBuildInputs = [ pkgconfig makeWrapper ];