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.
1 parent 986ae73 commit b2081a6Copy full SHA for b2081a6
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