Skip to content

Commit

Permalink
macos: fix monolibtic library extension (#1949)
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit-pierre authored Oct 3, 2024
1 parent fb1612a commit d55129f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffi/loadlib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ local android = ffi.os == "Linux" and os.getenv("IS_ANDROID") and require("andro
local log = android and android.LOGI or print

local monolibtic = {
path = (android and android.nativeLibraryDir or "libs") .. "/libkoreader-monolibtic.so",
path = (android and android.nativeLibraryDir or "libs") .. "/libkoreader-monolibtic." .. (ffi.os == "OSX" and "dylib" or "so"),
redirects = {
["blitbuffer"] = true,
["czmq"] = true,
Expand Down

0 comments on commit d55129f

Please sign in to comment.