diff options
author | Neil <nyamatongwe@gmail.com> | 2020-05-17 11:39:57 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2020-05-17 11:39:57 +1000 |
commit | fdb6d781a14befca446ddb99e78fbb582ef26f77 (patch) | |
tree | 24f007c1e0a2f5500926728dba5defb5cdb46158 /lexilla/test | |
parent | a2360c37c6374007ba2d6ce937862ce357485fec (diff) | |
download | scintilla-mirror-fdb6d781a14befca446ddb99e78fbb582ef26f77.tar.gz |
On Unix call shared object liblexilla instead of lexilla to match platform
convention.
Diffstat (limited to 'lexilla/test')
-rw-r--r-- | lexilla/test/LexillaAccess.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexilla/test/LexillaAccess.cxx b/lexilla/test/LexillaAccess.cxx index ea62c9605..10e7675db 100644 --- a/lexilla/test/LexillaAccess.cxx +++ b/lexilla/test/LexillaAccess.cxx @@ -77,9 +77,9 @@ bool LoadLexilla([[maybe_unused]] std::filesystem::path path) { lexillaDL = ::LoadLibraryW(sharedLibrary.c_str()); #else #if defined(__APPLE__) - sharedLibrary.append("lexilla.dylib"); + sharedLibrary.append("liblexilla.dylib"); #else - sharedLibrary.append("lexilla.so"); + sharedLibrary.append("liblexilla.so"); #endif lexillaDL = dlopen(sharedLibrary.c_str(), RTLD_LAZY); #endif |