summaryrefslogtreecommitdiff
path: root/libsqlite3/README-DEV
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-10-29 17:59:15 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-11-02 12:15:07 +0300
commit237f49f66e7692a96f48a6299008bb72082e705f (patch)
treec5f49925200e55c0bc9377fd4fa18d7234baf8e8 /libsqlite3/README-DEV
parent12f23c3fa27d8d717ba14042a0c491bd53e40cd0 (diff)
Upgrade to 3.35.5
Diffstat (limited to 'libsqlite3/README-DEV')
-rw-r--r--libsqlite3/README-DEV16
1 files changed, 13 insertions, 3 deletions
diff --git a/libsqlite3/README-DEV b/libsqlite3/README-DEV
index 143a2ad..cf521b9 100644
--- a/libsqlite3/README-DEV
+++ b/libsqlite3/README-DEV
@@ -4,7 +4,17 @@ version. See ../README-DEV for general notes on SQLite packaging.
Symlink the required upstream files into libsqlite3/:
-$ ln -s ../../upstream/{sqlite3.c,sqlite3ext.h,sqlite3.h} libsqlite3
+$ mkdir libsqlite3
+$ pushd libsqlite3
+$ ln -s ../../upstream/{sqlite3.c,sqlite3ext.h,sqlite3.h} .
-Patch ../upstream/sqlite3.c to fix warnings that pop up with -Wall (see
-../upstream/sqlite3.c.patch for details).
+Also fix warnings that pop up with -Wall:
+
+$ mv sqlite3.c sqlite3.c.orig
+$ cp sqlite3.c.orig sqlite3.c
+$ git apply fix-warnings.patch
+$ popd
+
+Note that patches are produced by commands similar to the following:
+
+$ git diff >fix-warnings.patch