ref: 640a60c9408af9659c593f07908bc39f7c0f7af5
parent: c3aa61d5b6b479c49b40848832feb12759fc659f
author: Olav Sørensen <olav.sorensen@live.no>
date: Sun Sep 7 11:57:25 EDT 2025
Fix pull request breaking compiling on macOS
--- a/src/ft2_unicode.c
+++ b/src/ft2_unicode.c
@@ -4,7 +4,7 @@
#endif
// for detecting if musl or glibc is used
-#ifndef _WIN32
+#if !defined _WIN32 && !defined __APPLE__
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#include <features.h>
--
⑨