Unverified Commit 9d42cf20 authored by Rick van Schijndel's avatar Rick van Schijndel Committed by GitHub
Browse files

i2pd: remove unused USE_AVX flag, mark as broken on darwin (#351445)

parents 18f3e227 a178d8dd
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
, boost, zlib, openssl
, upnpSupport ? true, miniupnpc
, aesniSupport ? stdenv.hostPlatform.aesSupport
, avxSupport   ? stdenv.hostPlatform.avxSupport
}:

stdenv.mkDerivation rec {
@@ -27,7 +26,6 @@ stdenv.mkDerivation rec {
  makeFlags =
    let ynf = a: b: a + "=" + (if b then "yes" else "no"); in
    [ (ynf "USE_AESNI" aesniSupport)
      (ynf "USE_AVX"   avxSupport)
      (ynf "USE_UPNP"  upnpSupport)
    ];

@@ -46,5 +44,6 @@ stdenv.mkDerivation rec {
    maintainers = with maintainers; [ edwtjo ];
    platforms = platforms.unix;
    mainProgram = "i2pd";
    broken = stdenv.hostPlatform.isDarwin;
  };
}