Merge pull request #4707 from wmertens/libpcap-darwin

libpcap: Force detection on Darwin
This commit is contained in:
Peter Simons 2014-10-30 19:27:22 +01:00
commit fc4cf24965

View File

@ -10,7 +10,12 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ flex bison ];
configureFlags = stdenv.lib.optionals stdenv.isLinux "--with-pcap=linux";
# We need to force the autodetection because detection doesn't
# work in pure build enviroments.
configureFlags =
if stdenv.isLinux then [ "--with-pcap=linux" ]
else if stdenv.isDarwin then [ "--with-pcap=bpf" ]
else [];
preInstall = ''mkdir -p $out/bin'';