From 3f09c5f73e52ba7bdb20df0417dccffdbe56226d Mon Sep 17 00:00:00 2001 From: OrganicProgramming <98908762+OrganicProgramming@users.noreply.github.com> Date: Sat, 5 Aug 2023 22:30:52 +0200 Subject: [PATCH] Added name for native windows dll (Windows 10) Normally the winsqlite3 dll file will be present by default on Windows 10 (and possibly 11), so this change allows this library to compile without any third party installation of sqlite3. --- sqlite-ffi.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite-ffi.lisp b/sqlite-ffi.lisp index 09964f7..18c6fea 100644 --- a/sqlite-ffi.lisp +++ b/sqlite-ffi.lisp @@ -37,7 +37,7 @@ (define-foreign-library sqlite3-lib (:darwin (:default "libsqlite3")) (:unix (:or "libsqlite3.so.0" "libsqlite3.so")) - (t (:or (:default "libsqlite3") (:default "sqlite3")))) + (t (:or (:default "libsqlite3") (:default "sqlite3") (:default "winsqlite3")))) (use-foreign-library sqlite3-lib)