SDL_ttf: Disabled ARM intrinsics because of compiler errors

From b264dfe2ed931668d3496dde56f9f7425948162d Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Thu, 8 Apr 2021 09:33:35 -0700
Subject: [PATCH] Disabled ARM intrinsics because of compiler errors

Lots of type mismatch errors, e.g.
SDL_ttf.c:772:41: error: incompatible type for argument 2 of 'vorrq_u32'
  772 |             r2  = vorrq_u32(d2, sx23.val[0]);           // or
      |                                 ~~~~~~~~^~~
      |                                         |
      |                                         uint8x16_t
---
 SDL_ttf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/SDL_ttf.c b/SDL_ttf.c
index 7cf09c3..e12eff7 100644
--- a/SDL_ttf.c
+++ b/SDL_ttf.c
@@ -94,7 +94,7 @@ int TTF_SetScript(int script) /* hb_script_t */
 #endif
 
 /* Round glyph width to 16 bytes use NEON instructions */
-#if defined(__ARM_NEON)
+#if 0 /*defined(__ARM_NEON)*/
 #  define HAVE_NEON_INTRINSICS 1
 #endif