libqb: fix build on darwin

Remove configure check for linker flag `--enable-new-dtags`, which fails
on darwin. The flag is never used by the Makefile anyway.
This commit is contained in:
Sebastián Mancilla 2021-11-21 13:35:50 -03:00
parent 53edfe1d1c
commit 0241bd3d64

View file

@ -15,6 +15,10 @@ stdenv.mkDerivation rec {
buildInputs = [ libxml2 ];
postPatch = ''
sed -i '/# --enable-new-dtags:/,/--enable-new-dtags is required/ d' configure.ac
'';
meta = with lib; {
homepage = "https://github.com/clusterlabs/libqb";
description = "A library providing high performance logging, tracing, ipc, and poll";