From 2a90770eedca4a7422b44d120833e1acfca157e5 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Sun, 5 Jul 2026 05:10:37 +0300
Subject: [PATCH] autotools: fix build error due to stupid typo..
(cherry picked from commit fe8b56ff8eff5e0701ad120fa2891114f9d6751c)
---
configure | 2 +-
configure.ac | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
index c1f159aa..27e6ada2 100755
--- a/configure
+++ b/configure
@@ -20004,7 +20004,7 @@ printf "%s\n" "#define ALIGNOF_STRUCT_CHAR__ $ac_cv_alignof_struct_char__" >>con
TTF_LIBS="$TTF_LIBS -lusp10 -lgdi32 -lrpcrt4"
PC_LIBS="$PC_LIBS -lusp10 -lgdi32 -lrpcrt4"
;;
- *-*-darwin*|*-ios-*))
+ *-*-darwin*|*-ios-*)
# for coretext support:
TTF_LIBS="$TTF_LIBS -framework CoreText -framework CoreGraphics -framework CoreFoundation"
PC_LIBS="$PC_LIBS -framework CoreText -framework CoreGraphics -framework CoreFoundation"
diff --git a/configure.ac b/configure.ac
index 5b9f9aec..c05f81bd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -248,7 +248,7 @@ if test x$enable_harfbuzz = xyes; then
TTF_LIBS="$TTF_LIBS -lusp10 -lgdi32 -lrpcrt4"
PC_LIBS="$PC_LIBS -lusp10 -lgdi32 -lrpcrt4"
;;
- *-*-darwin*|*-ios-*))
+ *-*-darwin*|*-ios-*)
# for coretext support:
TTF_LIBS="$TTF_LIBS -framework CoreText -framework CoreGraphics -framework CoreFoundation"
PC_LIBS="$PC_LIBS -framework CoreText -framework CoreGraphics -framework CoreFoundation"