Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion sqlite-ffi.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down