diff options
author | Jose Fonseca <jfonseca@vmware.com> | 2017-03-23 11:06:04 +0000 |
---|---|---|
committer | Jose Fonseca <jfonseca@vmware.com> | 2017-04-08 08:24:55 +0100 |
commit | b08cd49726f5f26865123e4314dbbb4a050ea785 (patch) | |
tree | 876f31fb5db4469743d0c72b26d461bc21b2b01c /thirdparty | |
parent | a684e9e18aaf3e67cd43a516227a568ee1d5c102 (diff) |
snappy: Fix MinGW build.
Diffstat (limited to 'thirdparty')
-rw-r--r-- | thirdparty/snappy/snappy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/snappy/snappy.cc b/thirdparty/snappy/snappy.cc index 4bcea0b4..956db1af 100644 --- a/thirdparty/snappy/snappy.cc +++ b/thirdparty/snappy/snappy.cc @@ -30,7 +30,7 @@ #include "snappy-internal.h" #include "snappy-sinksource.h" -#if defined(__x86_64__) || defined(_M_X64) +#ifdef __SSE2__ #include <emmintrin.h> #endif #include <stdio.h> |