diff options
author | Neal H. Walfield <neal@g10code.com> | 2015-10-28 13:12:27 +0100 |
---|---|---|
committer | Neal H. Walfield <neal@g10code.com> | 2015-10-29 10:10:38 +0100 |
commit | 351f4213e192aa11500c0c590d11183edbe326c5 (patch) | |
tree | 19f030d9dd3d644a3b70509e5e46871a7df967f9 /g10/Makefile.am | |
parent | doc: Don't install gpg-zip.1. (diff) | |
download | gnupg2-351f4213e192aa11500c0c590d11183edbe326c5.tar.xz gnupg2-351f4213e192aa11500c0c590d11183edbe326c5.zip |
gpg: Move sqlite helper functions into their own file.
* g10/tofu.c (sqlite3_exec_printf): Move from here...
* g10/sqlite.c (sqlite3_exec_printf): ... to this new file. Don't
mark as static.
* g10/tofu.c (sqlite3_stepx): Move from here...
* g10/sqlite.c (sqlite3_stepx): ... to this new file. Don't
mark as static.
* g10/tofu.c (enum sqlite_arg_type): Move from here...
* g10/sqlite.h (enum sqlite_arg_type): ... to this new file.
--
Signed-off-by: Neal H. Walfield <neal@g10code.com>
Diffstat (limited to 'g10/Makefile.am')
-rw-r--r-- | g10/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/Makefile.am b/g10/Makefile.am index 75ccac85f..2fe5c9aa2 100644 --- a/g10/Makefile.am +++ b/g10/Makefile.am @@ -57,7 +57,7 @@ trust_source = trustdb.c trustdb.h tdbdump.c tdbio.c tdbio.h endif if USE_TOFU -tofu_source = tofu.h tofu.c +tofu_source = tofu.h tofu.c sqlite.c sqlite.h else tofu_source = endif |