aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2013-12-03 22:32:48 +0000
committermistachkin <mistachkin@noemail.net>2013-12-03 22:32:48 +0000
commit1fa85a15df681cd1ed0f8f93ebe248a4e92620e4 (patch)
tree6384039508dd5c06badf260f0c592db2f2d43969 /src
parent7f59475fdaac1f487f32cc3604b15a7273b73631 (diff)
downloadsqlite-1fa85a15df681cd1ed0f8f93ebe248a4e92620e4.tar.gz
sqlite-1fa85a15df681cd1ed0f8f93ebe248a4e92620e4.zip
Add memory subsystem related defines to the compile-time options list.
FossilOrigin-Name: 52a44146dd7c5a7662545042045e23deab302c96
Diffstat (limited to 'src')
-rw-r--r--src/ctime.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ctime.c b/src/ctime.c
index 7c915d58c..c863cbed5 100644
--- a/src/ctime.c
+++ b/src/ctime.c
@@ -347,6 +347,9 @@ static const char * const azCompileOpt[] = {
#ifdef SQLITE_SOUNDEX
"SOUNDEX",
#endif
+#ifdef SQLITE_SYSTEM_MALLOC
+ "SYSTEM_MALLOC",
+#endif
#ifdef SQLITE_TCL
"TCL",
#endif
@@ -362,6 +365,9 @@ static const char * const azCompileOpt[] = {
#ifdef SQLITE_USE_ALLOCA
"USE_ALLOCA",
#endif
+#ifdef SQLITE_WIN32_MALLOC
+ "WIN32_MALLOC",
+#endif
#ifdef SQLITE_ZERO_MALLOC
"ZERO_MALLOC"
#endif