frang75/nappgui_src

dlib_open can't load dynamic library under macos

Closed this issue · 1 comments

line 29-24 in osbs/unix/dlib.c :
#if defined(__LINUX__) static const char_t *i_LIB_PREFIX = "lib"; static const char_t *i_LIB_SUFIX = ".so"; #elif defined(__MACOS__) static const char_t *i_LIB_PREFIX = "lib"; static const char_t *i_LIB_SUFIX = ".so"; #else #error Unknown platform #endif
static const char_t *i_LIB_SUFIX = ".so"; this line may be need change to static const char_t *i_LIB_SUFIX = ".dylib";

the nappgui_src version:
commit 50887ca (grafted, HEAD -> main, origin/main, origin/HEAD)

Hi @cnsitk! Thank you very much for reporting.
The issue has been fixed in this commit: 393f098