Unverified Commit e4a2ef56 authored by Daniel Nagy's avatar Daniel Nagy
Browse files

i2pd: remove unused USE_AVX flag

Since release 2.35 that flag has been removed. Therefore we remove it
to avoid confusion.

https://github.com/PurpleI2P/i2pd/releases/tag/2.35.0
parent ae9f64a3
Loading
Loading
Loading
Loading
+0 −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)
    ];