Skip to content

Commit

Permalink
i2pd: remove unused USE_AVX flag
Browse files Browse the repository at this point in the history
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
  • Loading branch information
nagy committed Oct 26, 2024
1 parent fe1af4b commit c1c2aef
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pkgs/tools/networking/i2pd/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
, boost, zlib, openssl
, upnpSupport ? true, miniupnpc
, aesniSupport ? stdenv.hostPlatform.aesSupport
, avxSupport ? stdenv.hostPlatform.avxSupport
}:

stdenv.mkDerivation rec {
Expand All @@ -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)
];

Expand Down

0 comments on commit c1c2aef

Please sign in to comment.