mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
openssl 1_1_0: fix build on aarch64
This commit is contained in:
parent
f14c27d178
commit
e85a855d2c
@ -48,7 +48,8 @@ let
|
|||||||
] ++ stdenv.lib.optionals withCryptodev [
|
] ++ stdenv.lib.optionals withCryptodev [
|
||||||
"-DHAVE_CRYPTODEV"
|
"-DHAVE_CRYPTODEV"
|
||||||
"-DUSE_CRYPTODEV_DIGESTS"
|
"-DUSE_CRYPTODEV_DIGESTS"
|
||||||
] ++ stdenv.lib.optional enableSSL2 "enable-ssl2";
|
] ++ stdenv.lib.optional enableSSL2 "enable-ssl2"
|
||||||
|
++ stdenv.lib.optional (versionAtLeast version "1.1.0" && stdenv.isAarch64) "no-afalgeng";
|
||||||
|
|
||||||
makeFlags = [ "MANDIR=$(man)/share/man" ];
|
makeFlags = [ "MANDIR=$(man)/share/man" ];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user