File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,17 +23,17 @@ If you are using SQLCipher in your own software please let us know at support@ze
2323Building SQLite Cipher is almost the same as compiling a regular version of SQLite with three small exceptions:
2424
2525 1. building via 'amalgamation' isn't supported (where all sqlite source is merged into one file)
26- 2. you must define SQLITE_HAS_CODEC
26+ 2. you must define SQLITE_HAS_CODEC and SQLITE_TEMP_STORE=2 in your application when including SQLCipher
2727 3. You need to link against a OpenSSL's libcrypto with sha256 support compiled in
2828
2929Example Static linking (replace /opt/local/lib with the path to libcrypto.a)
3030
31- ./configure CFLAGS="-DSQLITE_HAS_CODEC" LDFLAGS="/opt/local/lib/libcrypto.a"
31+ ./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" LDFLAGS="/opt/local/lib/libcrypto.a"
3232 make
3333
3434Example Dynamic linking
3535
36- ./configure CFLAGS="-DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto"
36+ ./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto"
3737 make
3838
3939[Encrypting a database]
You can’t perform that action at this time.
0 commit comments