3
0
Fork 0
forked from mirrors/nixpkgs

openssl 1_1_0: fix build on aarch64

This commit is contained in:
georgewhewell 2017-08-06 13:54:48 +01:00 committed by Robin Gloster
parent f14c27d178
commit e85a855d2c

View file

@ -48,7 +48,8 @@ let
] ++ stdenv.lib.optionals withCryptodev [
"-DHAVE_CRYPTODEV"
"-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" ];