diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-11-13 18:48:33 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-11-13 18:48:33 +0100 |
| commit | d832ec8ab2021842534fea111518e1f6af626f68 (patch) | |
| tree | 1b1b209ec8c6c384f04be012d61a58cf80f6212f /src | |
| parent | 13612d4024c50dbc79c5900e1cf1d8b5319ae1ba (diff) | |
| download | box64-d832ec8ab2021842534fea111518e1f6af626f68.tar.gz box64-d832ec8ab2021842534fea111518e1f6af626f68.zip | |
Better dependancies for fontconfig lib (should help #1063)
Diffstat (limited to 'src')
| -rw-r--r-- | src/wrapped/wrappedfontconfig.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wrapped/wrappedfontconfig.c b/src/wrapped/wrappedfontconfig.c index ef6a19d2..9a5b2e71 100644 --- a/src/wrapped/wrappedfontconfig.c +++ b/src/wrapped/wrappedfontconfig.c @@ -50,7 +50,10 @@ EXPORT void* my_FcObjectSetBuild(x64emu_t* emu, void* first, uint64_t* b) } #define CUSTOM_INIT \ - getMy(lib); + getMy(lib); \ + setNeededLibs(lib, 2, \ + "libexpat.so.1", \ + "libfreetype.so.6"); #define CUSTOM_FINI \ freeMy(); |