Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
stenzek
GitHub Repository: stenzek/duckstation
Path: blob/master/scripts/deps/freetype-harfbuzz-soname.patch
4802 views
1
--- freetype-2.14.1/src/autofit/ft-hb.c 2025-09-24 17:27:12.271362737 +1000
2
+++ freetype-2.14.1/src/autofit/ft-hb.c 2025-09-24 17:27:22.590123789 +1000
3
@@ -33,12 +33,12 @@
4
5
#ifndef FT_LIBHARFBUZZ
6
# ifdef _WIN32
7
-# define FT_LIBHARFBUZZ "libharfbuzz-0.dll"
8
+# define FT_LIBHARFBUZZ "libharfbuzz.dll"
9
# else
10
# ifdef __APPLE__
11
-# define FT_LIBHARFBUZZ "libharfbuzz.0.dylib"
12
+# define FT_LIBHARFBUZZ "libharfbuzz.dylib"
13
# else
14
-# define FT_LIBHARFBUZZ "libharfbuzz.so.0"
15
+# define FT_LIBHARFBUZZ "libharfbuzz.so"
16
# endif
17
# endif
18
#endif
19
20