Skip to content

Commit d09051a

Browse files
committed
track 3.7.10
1 parent ddb595f commit d09051a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+11143
-4268
lines changed

Makefile.in

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ TCC = @CC@ @CPPFLAGS@ @CFLAGS@ -I. -I${TOP}/src -I${TOP}/ext/rtree
3131
# Define this for the autoconf-based build, so that the code knows it can
3232
# include the generated config.h
3333
#
34-
TCC += -D_HAVE_SQLITE_CONFIG_H
34+
TCC += -D_HAVE_SQLITE_CONFIG_H -DBUILD_sqlite
3535

3636
# Define -DNDEBUG to compile without debugging (i.e., for production usage)
3737
# Omitting the define will cause extra debugging code to be inserted and
@@ -518,6 +518,12 @@ sqlite3$(TEXE): $(TOP)/src/shell.c libsqlite3.la sqlite3.h
518518
sqlite3.c: .target_source $(TOP)/tool/mksqlite3c.tcl
519519
$(TCLSH_CMD) $(TOP)/tool/mksqlite3c.tcl
520520

521+
tclsqlite3.c: sqlite3.c
522+
echo '#ifndef USE_SYSTEM_SQLITE' >tclsqlite3.c
523+
cat sqlite3.c >>tclsqlite3.c
524+
echo '#endif /* USE_SYSTEM_SQLITE */' >>tclsqlite3.c
525+
cat $(TOP)/src/tclsqlite.c >>tclsqlite3.c
526+
521527
sqlite3-all.c: sqlite3.c $(TOP)/tool/split-sqlite3c.tcl
522528
$(TCLSH_CMD) $(TOP)/tool/split-sqlite3c.tcl
523529

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.9
1+
3.7.10

config.h.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
/* Define to 1 if you have the `localtime_s' function. */
3434
#undef HAVE_LOCALTIME_S
3535

36+
/* Define to 1 if you have the `malloc_usable_size' function. */
37+
#undef HAVE_MALLOC_USABLE_SIZE
38+
3639
/* Define to 1 if you have the <memory.h> header file. */
3740
#undef HAVE_MEMORY_H
3841

0 commit comments

Comments
 (0)