diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-01-27 09:05:47 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-01-27 09:05:47 +0200 |
commit | 2b3b70a261cf1408e20eded4b6f8405ee231d4d3 (patch) | |
tree | e561d3854f5cef45305b9efd34a847209521ec99 /src/crypto/slow-hash.c | |
parent | fixed AES support flag (diff) | |
download | monero-2b3b70a261cf1408e20eded4b6f8405ee231d4d3.tar.xz |
remove aes flag, detect no sse2
Diffstat (limited to 'src/crypto/slow-hash.c')
-rw-r--r-- | src/crypto/slow-hash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index 9b9eecba3..2b9cb0ee5 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -37,7 +37,9 @@ #include "hash-ops.h" #include "oaes_lib.h" +#ifndef __SSE2__ #include <emmintrin.h> +#else #if defined(_MSC_VER) #include <intrin.h> |