From fdb6d781a14befca446ddb99e78fbb582ef26f77 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 17 May 2020 11:39:57 +1000 Subject: On Unix call shared object liblexilla instead of lexilla to match platform convention. --- lexilla/test/LexillaAccess.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lexilla/test') 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 -- cgit v1.2.3