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:
parent
53edfe1d1c
commit
0241bd3d64
1 changed files with 4 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue