From c3876354e5c0812ae5929f7e68849c2e611b720c Mon Sep 17 00:00:00 2001 From: Jouk Jansen Date: Tue, 9 May 2023 07:15:53 +0200 Subject: [PATCH] * src/smooth/ftgrays.c (FT_SSE2): Don't define for VMS. --- src/smooth/ftgrays.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/smooth/ftgrays.c b/src/smooth/ftgrays.c index 1e2f7ad8b..6252df98a 100644 --- a/src/smooth/ftgrays.c +++ b/src/smooth/ftgrays.c @@ -1006,9 +1006,9 @@ typedef ptrdiff_t FT_PtrDist; * * For other cases, using binary splits is actually slightly faster. */ -#if defined( __SSE2__ ) || \ - defined( __x86_64__ ) || \ - defined( _M_AMD64 ) || \ +#if defined( __SSE2__ ) || \ + ( defined( __x86_64__ ) && !defined( __VMS ) ) || \ + defined( _M_AMD64 ) || \ ( defined( _M_IX86_FP ) && _M_IX86_FP >= 2 ) # define FT_SSE2 1 #else