aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordan <Dan Kennedy>2022-11-22 16:12:53 +0000
committerdan <Dan Kennedy>2022-11-22 16:12:53 +0000
commit63b74e02a70b499d3783b1116e49840cb7a97e87 (patch)
treebeab3d81d8a501c7ba2478d1327327751f202b50 /src
parentd01dee5e6aef8aebc2932f743c90f41db70e2a7c (diff)
downloadsqlite-63b74e02a70b499d3783b1116e49840cb7a97e87.tar.gz
sqlite-63b74e02a70b499d3783b1116e49840cb7a97e87.zip
Add Makefile.in targets for sqlite3r.c and sqlite3r.h, versions of the amalgamation that include the recover extension.
FossilOrigin-Name: 59a837cfc7f9f96509491c8fc45355d2e8892af25246955e22adec1cbf37327b
Diffstat (limited to 'src')
-rw-r--r--src/shell.c.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shell.c.in b/src/shell.c.in
index db8d98766..29e61c7b1 100644
--- a/src/shell.c.in
+++ b/src/shell.c.in
@@ -1066,9 +1066,11 @@ INCLUDE ../ext/expert/sqlite3expert.c
#define SQLITE_SHELL_HAVE_RECOVER 0
#endif
#if SQLITE_SHELL_HAVE_RECOVER
-INCLUDE ../ext/recover/dbdata.c
INCLUDE ../ext/recover/sqlite3recover.h
+# ifndef SQLITE_HAVE_SQLITE3R
+INCLUDE ../ext/recover/dbdata.c
INCLUDE ../ext/recover/sqlite3recover.c
+# endif
#endif
#if defined(SQLITE_ENABLE_SESSION)