Bug 328140, r=vladimir 0-fill deleted data so deleted history is not exposed

in the file.
This commit is contained in:
brettw%gmail.com 2006-02-23 01:05:23 +00:00
parent 3650a89de7
commit 7856fb1283

View File

@ -95,7 +95,10 @@ CSRCS = \
where.c \
$(NULL)
DEFINES = -DSQLITE_ENABLE_REDEF_IO
# REFEF_IO allows us to override IO functions, which is used in the AsyncIO
# storage system. SECURE_DELETE will cause SQLITE to 0-fill delete data so we
# don't have to vacuum to make sure the data is not visible in the file.
DEFINES = -DSQLITE_ENABLE_REDEF_IO -DSQLITE_SECURE_DELETE=1
ifdef ENABLE_TESTS
##LIBS = $(DIST)/lib/$(LIB_PREFIX)sqlite3_s.$(LIB_SUFFIX)