Skip to content

Commit b2081a6

Browse files
committed
Search for libfribidi.dylib in /usr/local/lib
1 parent 986ae73 commit b2081a6

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/thirdparty/fribidi-shim/fribidi.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ int load_fribidi(void) {
4949
if (!p_fribidi) {
5050
p_fribidi = dlopen("libfribidi.dylib", RTLD_LAZY);
5151
}
52+
if (!p_fribidi) {
53+
p_fribidi = dlopen("/usr/local/lib/libfribidi.dylib", RTLD_LAZY);
54+
}
5255
#else
5356
#define LOAD_FUNCTION(func) \
5457
func = (t_##func)GetProcAddress(p_fribidi, #func); \

0 commit comments

Comments
 (0)