diff options
author | drh <drh@noemail.net> | 2005-01-08 18:42:28 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2005-01-08 18:42:28 +0000 |
commit | 49766d6cd022f75d8b7563a7c4fbf79a1d5a61d6 (patch) | |
tree | 298d12b45cad2b31271e14de055e7c4e5af77c66 /src/sqliteInt.h | |
parent | 268283bc7fe89e9ee4d0a4451550883f798a3175 (diff) | |
download | sqlite-49766d6cd022f75d8b7563a7c4fbf79a1d5a61d6.tar.gz sqlite-49766d6cd022f75d8b7563a7c4fbf79a1d5a61d6.zip |
Tcl interface does as sqlite3 or as sqlite. A compile-time option allows
duel linking. Also fix a bug in the pragma change from earlier today. (CVS 2186)
FossilOrigin-Name: ad10953799f3aa15fde41cbbd5911a3b56c326ec
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index cd4907c10..99db739cb 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.350 2005/01/03 01:27:19 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.351 2005/01/08 18:42:28 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -110,6 +110,14 @@ /* #define SQLITE_OMIT_ALTERTABLE */ /* +** Provide a default value for TEMP_STORE in case it is not specified +** on the command-line +*/ +#ifndef TEMP_STORE +# define TEMP_STORE 1 +#endif + +/* ** GCC does not define the offsetof() macro so we'll have to do it ** ourselves. */ |