SDL_ttf: Re-enable arm neon routines

From 8e7f1ae67da279562828535fb847f84afc6f6dfb Mon Sep 17 00:00:00 2001
From: Sylvain <[EMAIL REDACTED]>
Date: Fri, 27 Sep 2024 21:37:06 +0200
Subject: [PATCH] Re-enable arm neon routines

---
 src/SDL_ttf.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/SDL_ttf.c b/src/SDL_ttf.c
index 0c64c0e0..d2966704 100644
--- a/src/SDL_ttf.c
+++ b/src/SDL_ttf.c
@@ -94,8 +94,9 @@ static hb_script_t    g_hb_script = HB_SCRIPT_UNKNOWN;
 #endif
 
 /* Round glyph width to 16 bytes use NEON instructions */
-#if 0 /*defined(__ARM_NEON)*/
+#if defined(__ARM_NEON)
 #  define HAVE_NEON_INTRINSICS 1
+#include <arm_neon.h>
 #endif
 
 /* Round glyph width to 8 bytes */