support amalgamated builds

This commit is contained in:
Stephen Lombardo 2009-02-19 13:09:17 -05:00
parent d85be36fd7
commit 88e6a2edf8
3 changed files with 7 additions and 2 deletions

View File

@ -40,8 +40,6 @@
#include "btreeInt.h"
#include "crypto.h"
extern int sqlite3pager_get_codec(Pager *pPager, void * ctx);
typedef struct {
int key_sz;
int iv_sz;

View File

@ -39,5 +39,8 @@
#define CIPHER_DECRYPT 0
#define CIPHER_ENCRYPT 1
int sqlite3pager_get_codec(Pager *pPager, void **ctx);
int sqlite3pager_is_mj_pgno(Pager *pPager, Pgno pgno);
#endif
/* END CRYPTO */

View File

@ -86,6 +86,7 @@ if {$addstatic} {
# text of the file in-line. The file only needs to be included once.
#
foreach hdr {
crypto.h
btree.h
btreeInt.h
fts3.h
@ -203,6 +204,8 @@ proc copy_file {filename} {
foreach file {
sqliteInt.h
crypto.c
global.c
status.c
date.c
@ -281,6 +284,7 @@ foreach file {
rtree.c
icu.c
} {
copy_file tsrc/$file
}