From a2f17bcd63006e24da1090587bae193a3a16bab8 Mon Sep 17 00:00:00 2001 From: Kevin Greenan Date: Tue, 17 Mar 2015 11:29:39 -0700 Subject: Fixing bug where non-Intel platforms fail to compile due to SSE2-specific header in the xor-encoder. FWIW, we did conditional compilation in the body of the code, but missed the header include. --- src/builtin/xor_codes/xor_code.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/builtin/xor_codes/xor_code.c b/src/builtin/xor_codes/xor_code.c index 32defcc..8a337cb 100644 --- a/src/builtin/xor_codes/xor_code.c +++ b/src/builtin/xor_codes/xor_code.c @@ -22,7 +22,9 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#ifdef INTEL_SSE2 #include //SSE2 +#endif #include #include #include -- cgit v1.2.1