diff --git a/README.md b/README.md new file mode 100644 index 0000000..ca53675 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# This repository has [moved](https://shinmera.com/projects/cl-sqlite)! +Due to Microsoft's continued enshittification of the platform this repository has been moved to [Codeberg](https://shinmera.com/projects/cl-sqlite) in August of 2025. It will not receive further updates or patches. **Issues and pull requests will not be looked at here either**, please submit your patches and issue tickets on Codeberg, or send them directly via good old email patches to [shirakumo@tymoon.eu](mailto:shirakumo@tymoon.eu). + +Thanks. \ No newline at end of file diff --git a/sqlite-ffi.lisp b/sqlite-ffi.lisp index 09964f7..45094f0 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 "libsqlite3-0") (:default "sqlite3") (:default "sqlite3-0")))) (use-foreign-library sqlite3-lib)