We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0413c34 + b2081a6 commit 4996f84Copy full SHA for 4996f84
1 file changed
src/thirdparty/fribidi-shim/fribidi.c
@@ -49,6 +49,9 @@ int load_fribidi(void) {
49
if (!p_fribidi) {
50
p_fribidi = dlopen("libfribidi.dylib", RTLD_LAZY);
51
}
52
+ if (!p_fribidi) {
53
+ p_fribidi = dlopen("/usr/local/lib/libfribidi.dylib", RTLD_LAZY);
54
+ }
55
#else
56
#define LOAD_FUNCTION(func) \
57
func = (t_##func)GetProcAddress(p_fribidi, #func); \
0 commit comments