From 58fa43aea6da8a4d7ac36b12a90b69ff10060213 Mon Sep 17 00:00:00 2001 From: Shinmera Date: Sat, 25 Apr 2020 11:04:05 +0200 Subject: [PATCH 1/2] Add more defaults (used by mingw on windows) --- sqlite-ffi.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) From 0a1ab5ca0b3f73b3f6803cf42b17b09e08f63678 Mon Sep 17 00:00:00 2001 From: Yukari Hafner Date: Wed, 13 Aug 2025 11:43:17 +0200 Subject: [PATCH 2/2] Update readme with move notice. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 README.md 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