1
0
mirror of https://github.com/sqlite/sqlite.git synced 2026-01-06 08:01:16 +03:00

Run configure.ac through autoupdate, as required by autoconf for rebuilding configure. These (many) changes were made entirely by the autotools, except that some whitespace-only changes were reverted by hand to reduce noise, and are a preliminary step to adding a new flag to configure.ac.

FossilOrigin-Name: 2be2d5d428acd538e44d7b9345b64470131bef40f67ba3190f5cd42f9949f355
This commit is contained in:
stephan
2022-12-10 05:52:02 +00:00
parent 9be7a363cc
commit f0962c9f49
4 changed files with 2932 additions and 2380 deletions

5218
configure vendored

File diff suppressed because it is too large Load Diff

View File

@@ -70,11 +70,11 @@
# target platform. "" for Unix and ".exe" for windows. # target platform. "" for Unix and ".exe" for windows.
# #
# This configure.in file is easy to reuse on other projects. Just # This configure.in file is easy to reuse on other projects. Just
# change the argument to AC_INIT(). And disable any features that # change the argument to AC_INIT. And disable any features that
# you don't need (for example BLT) by erasing or commenting out # you don't need (for example BLT) by erasing or commenting out
# the corresponding code. # the corresponding code.
# #
AC_INIT(sqlite, m4_esyscmd([cat VERSION | tr -d '\n'])) AC_INIT([sqlite],[m4_esyscmd(cat VERSION | tr -d '\n')])
dnl Make sure the local VERSION file matches this configure script dnl Make sure the local VERSION file matches this configure script
sqlite_version_sanity_check=`cat $srcdir/VERSION | tr -d '\n'` sqlite_version_sanity_check=`cat $srcdir/VERSION | tr -d '\n'`
@@ -88,7 +88,7 @@ fi
######### #########
# Programs needed # Programs needed
# #
AC_PROG_LIBTOOL LT_INIT
AC_PROG_INSTALL AC_PROG_INSTALL
######### #########
@@ -179,7 +179,7 @@ AC_SUBST(BUILD_CC)
# Do we want to support multithreaded use of sqlite # Do we want to support multithreaded use of sqlite
# #
AC_ARG_ENABLE(threadsafe, AC_ARG_ENABLE(threadsafe,
AC_HELP_STRING([--disable-threadsafe],[Disable mutexing])) AS_HELP_STRING([--disable-threadsafe],[Disable mutexing]))
AC_MSG_CHECKING([whether to support threadsafe operation]) AC_MSG_CHECKING([whether to support threadsafe operation])
if test "$enable_threadsafe" = "no"; then if test "$enable_threadsafe" = "no"; then
SQLITE_THREADSAFE=0 SQLITE_THREADSAFE=0
@@ -199,7 +199,7 @@ fi
# Do we want to support release # Do we want to support release
# #
AC_ARG_ENABLE(releasemode, AC_ARG_ENABLE(releasemode,
AC_HELP_STRING([--enable-releasemode],[Support libtool link to release mode]),,enable_releasemode=no) AS_HELP_STRING([--enable-releasemode],[Support libtool link to release mode]),,enable_releasemode=no)
AC_MSG_CHECKING([whether to support shared library linked as release mode or not]) AC_MSG_CHECKING([whether to support shared library linked as release mode or not])
if test "$enable_releasemode" = "no"; then if test "$enable_releasemode" = "no"; then
ALLOWRELEASE="" ALLOWRELEASE=""
@@ -214,7 +214,7 @@ AC_SUBST(ALLOWRELEASE)
# Do we want temporary databases in memory # Do we want temporary databases in memory
# #
AC_ARG_ENABLE(tempstore, AC_ARG_ENABLE(tempstore,
AC_HELP_STRING([--enable-tempstore],[Use an in-ram database for temporary tables (never,no,yes,always)]),,enable_tempstore=no) AS_HELP_STRING([--enable-tempstore],[Use an in-ram database for temporary tables (never,no,yes,always)]),,enable_tempstore=no)
AC_MSG_CHECKING([whether to use an in-ram database for temporary tables]) AC_MSG_CHECKING([whether to use an in-ram database for temporary tables])
case "$enable_tempstore" in case "$enable_tempstore" in
never ) never )
@@ -254,7 +254,15 @@ else
AC_MSG_RESULT(unknown) AC_MSG_RESULT(unknown)
fi fi
if test "$CYGWIN" != "yes"; then if test "$CYGWIN" != "yes"; then
AC_CYGWIN m4_warn([obsolete],
[AC_CYGWIN is obsolete: use AC_CANONICAL_HOST and check if $host_os
matches *cygwin*])dnl
AC_CANONICAL_HOST
case $host_os in
*cygwin* ) CYGWIN=yes;;
* ) CYGWIN=no;;
esac
fi fi
if test "$CYGWIN" = "yes"; then if test "$CYGWIN" = "yes"; then
BUILD_EXEEXT=.exe BUILD_EXEEXT=.exe
@@ -289,10 +297,10 @@ AC_SUBST(TARGET_EXEEXT)
# Those macros could not be used directly since we have to make some # Those macros could not be used directly since we have to make some
# minor changes to accomodate systems that do not have TCL installed. # minor changes to accomodate systems that do not have TCL installed.
# #
AC_ARG_ENABLE(tcl, AC_HELP_STRING([--disable-tcl],[do not build TCL extension]), AC_ARG_ENABLE(tcl, AS_HELP_STRING([--disable-tcl],[do not build TCL extension]),
[use_tcl=$enableval],[use_tcl=yes]) [use_tcl=$enableval],[use_tcl=yes])
if test "${use_tcl}" = "yes" ; then if test "${use_tcl}" = "yes" ; then
AC_ARG_WITH(tcl, AC_HELP_STRING([--with-tcl=DIR],[directory containing tcl configuration (tclConfig.sh)]), with_tclconfig=${withval}) AC_ARG_WITH(tcl, AS_HELP_STRING([--with-tcl=DIR],[directory containing tcl configuration (tclConfig.sh)]), with_tclconfig=${withval})
AC_MSG_CHECKING([for Tcl configuration]) AC_MSG_CHECKING([for Tcl configuration])
AC_CACHE_VAL(ac_cv_c_tclconfig,[ AC_CACHE_VAL(ac_cv_c_tclconfig,[
# First check to see if --with-tcl was specified. # First check to see if --with-tcl was specified.
@@ -474,11 +482,11 @@ TARGET_READLINE_INC=""
TARGET_HAVE_READLINE=0 TARGET_HAVE_READLINE=0
TARGET_HAVE_EDITLINE=0 TARGET_HAVE_EDITLINE=0
AC_ARG_ENABLE([editline], AC_ARG_ENABLE([editline],
[AC_HELP_STRING([--enable-editline],[enable BSD editline support])], [AS_HELP_STRING([--enable-editline],[enable BSD editline support])],
[with_editline=$enableval], [with_editline=$enableval],
[with_editline=auto]) [with_editline=auto])
AC_ARG_ENABLE([readline], AC_ARG_ENABLE([readline],
[AC_HELP_STRING([--disable-readline],[disable readline support])], [AS_HELP_STRING([--disable-readline],[disable readline support])],
[with_readline=$enableval], [with_readline=$enableval],
[with_readline=auto]) [with_readline=auto])
@@ -494,7 +502,7 @@ if test x"$with_readline" != xno; then
found="yes" found="yes"
AC_ARG_WITH([readline-lib], AC_ARG_WITH([readline-lib],
[AC_HELP_STRING([--with-readline-lib],[specify readline library])], [AS_HELP_STRING([--with-readline-lib],[specify readline library])],
[with_readline_lib=$withval], [with_readline_lib=$withval],
[with_readline_lib="auto"]) [with_readline_lib="auto"])
if test "x$with_readline_lib" = xauto; then if test "x$with_readline_lib" = xauto; then
@@ -509,7 +517,7 @@ if test x"$with_readline" != xno; then
fi fi
AC_ARG_WITH([readline-inc], AC_ARG_WITH([readline-inc],
[AC_HELP_STRING([--with-readline-inc],[specify readline include paths])], [AS_HELP_STRING([--with-readline-inc],[specify readline include paths])],
[with_readline_inc=$withval], [with_readline_inc=$withval],
[with_readline_inc="auto"]) [with_readline_inc="auto"])
if test "x$with_readline_inc" = xauto; then if test "x$with_readline_inc" = xauto; then
@@ -554,7 +562,7 @@ AC_SEARCH_LIBS(fdatasync, [rt])
######### #########
# check for debug enabled # check for debug enabled
AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],[enable debugging & verbose explain])) AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug],[enable debugging & verbose explain]))
AC_MSG_CHECKING([build type]) AC_MSG_CHECKING([build type])
if test "${enable_debug}" = "yes" ; then if test "${enable_debug}" = "yes" ; then
TARGET_DEBUG="-DSQLITE_DEBUG=1 -DSQLITE_ENABLE_SELECTTRACE -DSQLITE_ENABLE_WHERETRACE -O0" TARGET_DEBUG="-DSQLITE_DEBUG=1 -DSQLITE_ENABLE_SELECTTRACE -DSQLITE_ENABLE_WHERETRACE -O0"
@@ -567,7 +575,8 @@ AC_SUBST(TARGET_DEBUG)
######### #########
# See whether we should use the amalgamation to build # See whether we should use the amalgamation to build
AC_ARG_ENABLE(amalgamation, AC_HELP_STRING([--disable-amalgamation],
AC_ARG_ENABLE(amalgamation, AS_HELP_STRING([--disable-amalgamation],
[Disable the amalgamation and instead build all files separately])) [Disable the amalgamation and instead build all files separately]))
if test "${enable_amalgamation}" = "no" ; then if test "${enable_amalgamation}" = "no" ; then
USE_AMALGAMATION=0 USE_AMALGAMATION=0
@@ -582,7 +591,7 @@ AC_SUBST(HAVE_ZLIB)
######### #########
# See whether we should allow loadable extensions # See whether we should allow loadable extensions
AC_ARG_ENABLE(load-extension, AC_HELP_STRING([--disable-load-extension], AC_ARG_ENABLE(load-extension, AS_HELP_STRING([--disable-load-extension],
[Disable loading of external extensions]),,[enable_load_extension=yes]) [Disable loading of external extensions]),,[enable_load_extension=yes])
if test "${enable_load_extension}" = "yes" ; then if test "${enable_load_extension}" = "yes" ; then
OPT_FEATURE_FLAGS="" OPT_FEATURE_FLAGS=""
@@ -595,7 +604,7 @@ fi
# Do we want to support math functions # Do we want to support math functions
# #
AC_ARG_ENABLE(math, AC_ARG_ENABLE(math,
AC_HELP_STRING([--disable-math],[Disable math functions])) AS_HELP_STRING([--disable-math],[Disable math functions]))
AC_MSG_CHECKING([whether to support math functions]) AC_MSG_CHECKING([whether to support math functions])
if test "$enable_math" = "no"; then if test "$enable_math" = "no"; then
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
@@ -609,7 +618,7 @@ fi
# Do we want to support JSON functions # Do we want to support JSON functions
# #
AC_ARG_ENABLE(json, AC_ARG_ENABLE(json,
AC_HELP_STRING([--disable-json],[Disable JSON functions])) AS_HELP_STRING([--disable-json],[Disable JSON functions]))
AC_MSG_CHECKING([whether to support JSON functions]) AC_MSG_CHECKING([whether to support JSON functions])
if test "$enable_json" = "no"; then if test "$enable_json" = "no"; then
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
@@ -621,14 +630,14 @@ fi
######## ########
# The --enable-all argument is short-hand to enable # The --enable-all argument is short-hand to enable
# multiple extensions. # multiple extensions.
AC_ARG_ENABLE(all, AC_HELP_STRING([--enable-all], AC_ARG_ENABLE(all, AS_HELP_STRING([--enable-all],
[Enable FTS4, FTS5, Geopoly, RTree, Sessions])) [Enable FTS4, FTS5, Geopoly, RTree, Sessions]))
########## ##########
# Do we want to support memsys3 and/or memsys5 # Do we want to support memsys3 and/or memsys5
# #
AC_ARG_ENABLE(memsys5, AC_ARG_ENABLE(memsys5,
AC_HELP_STRING([--enable-memsys5],[Enable MEMSYS5])) AS_HELP_STRING([--enable-memsys5],[Enable MEMSYS5]))
AC_MSG_CHECKING([whether to support MEMSYS5]) AC_MSG_CHECKING([whether to support MEMSYS5])
if test "${enable_memsys5}" = "yes"; then if test "${enable_memsys5}" = "yes"; then
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS5" OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS5"
@@ -637,7 +646,7 @@ else
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
fi fi
AC_ARG_ENABLE(memsys3, AC_ARG_ENABLE(memsys3,
AC_HELP_STRING([--enable-memsys3],[Enable MEMSYS3])) AS_HELP_STRING([--enable-memsys3],[Enable MEMSYS3]))
AC_MSG_CHECKING([whether to support MEMSYS3]) AC_MSG_CHECKING([whether to support MEMSYS3])
if test "${enable_memsys3}" = "yes" -a "${enable_memsys5}" = "no"; then if test "${enable_memsys3}" = "yes" -a "${enable_memsys5}" = "no"; then
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS3" OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS3"
@@ -648,7 +657,7 @@ fi
######### #########
# See whether we should enable Full Text Search extensions # See whether we should enable Full Text Search extensions
AC_ARG_ENABLE(fts3, AC_HELP_STRING([--enable-fts3], AC_ARG_ENABLE(fts3, AS_HELP_STRING([--enable-fts3],
[Enable the FTS3 extension])) [Enable the FTS3 extension]))
AC_MSG_CHECKING([whether to support FTS3]) AC_MSG_CHECKING([whether to support FTS3])
if test "${enable_fts3}" = "yes" ; then if test "${enable_fts3}" = "yes" ; then
@@ -657,7 +666,7 @@ if test "${enable_fts3}" = "yes" ; then
else else
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
fi fi
AC_ARG_ENABLE(fts4, AC_HELP_STRING([--enable-fts4], AC_ARG_ENABLE(fts4, AS_HELP_STRING([--enable-fts4],
[Enable the FTS4 extension])) [Enable the FTS4 extension]))
AC_MSG_CHECKING([whether to support FTS4]) AC_MSG_CHECKING([whether to support FTS4])
if test "${enable_fts4}" = "yes" -o "${enable_all}" = "yes" ; then if test "${enable_fts4}" = "yes" -o "${enable_all}" = "yes" ; then
@@ -667,7 +676,7 @@ if test "${enable_fts4}" = "yes" -o "${enable_all}" = "yes" ; then
else else
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
fi fi
AC_ARG_ENABLE(fts5, AC_HELP_STRING([--enable-fts5], AC_ARG_ENABLE(fts5, AS_HELP_STRING([--enable-fts5],
[Enable the FTS5 extension])) [Enable the FTS5 extension]))
AC_MSG_CHECKING([whether to support FTS5]) AC_MSG_CHECKING([whether to support FTS5])
if test "${enable_fts5}" = "yes" -o "${enable_all}" = "yes" ; then if test "${enable_fts5}" = "yes" -o "${enable_all}" = "yes" ; then
@@ -681,7 +690,7 @@ fi
######### #########
# See whether we should enable the LIMIT clause on UPDATE and DELETE # See whether we should enable the LIMIT clause on UPDATE and DELETE
# statements. # statements.
AC_ARG_ENABLE(update-limit, AC_HELP_STRING([--enable-update-limit], AC_ARG_ENABLE(update-limit, AS_HELP_STRING([--enable-update-limit],
[Enable the UPDATE/DELETE LIMIT clause])) [Enable the UPDATE/DELETE LIMIT clause]))
AC_MSG_CHECKING([whether to support LIMIT on UPDATE and DELETE statements]) AC_MSG_CHECKING([whether to support LIMIT on UPDATE and DELETE statements])
if test "${enable_update_limit}" = "yes" ; then if test "${enable_update_limit}" = "yes" ; then
@@ -693,7 +702,7 @@ fi
######### #########
# See whether we should enable GEOPOLY # See whether we should enable GEOPOLY
AC_ARG_ENABLE(geopoly, AC_HELP_STRING([--enable-geopoly], AC_ARG_ENABLE(geopoly, AS_HELP_STRING([--enable-geopoly],
[Enable the GEOPOLY extension]), [Enable the GEOPOLY extension]),
[enable_geopoly=yes],[enable_geopoly=no]) [enable_geopoly=yes],[enable_geopoly=no])
AC_MSG_CHECKING([whether to support GEOPOLY]) AC_MSG_CHECKING([whether to support GEOPOLY])
@@ -707,7 +716,7 @@ fi
######### #########
# See whether we should enable RTREE # See whether we should enable RTREE
AC_ARG_ENABLE(rtree, AC_HELP_STRING([--enable-rtree], AC_ARG_ENABLE(rtree, AS_HELP_STRING([--enable-rtree],
[Enable the RTREE extension])) [Enable the RTREE extension]))
AC_MSG_CHECKING([whether to support RTREE]) AC_MSG_CHECKING([whether to support RTREE])
if test "${enable_rtree}" = "yes" ; then if test "${enable_rtree}" = "yes" ; then
@@ -719,7 +728,7 @@ fi
######### #########
# See whether we should enable the SESSION extension # See whether we should enable the SESSION extension
AC_ARG_ENABLE(session, AC_HELP_STRING([--enable-session], AC_ARG_ENABLE(session, AS_HELP_STRING([--enable-session],
[Enable the SESSION extension])) [Enable the SESSION extension]))
AC_MSG_CHECKING([whether to support SESSION]) AC_MSG_CHECKING([whether to support SESSION])
if test "${enable_session}" = "yes" -o "${enable_all}" = "yes" ; then if test "${enable_session}" = "yes" -o "${enable_all}" = "yes" ; then
@@ -783,7 +792,7 @@ BUILD_CFLAGS=$ac_temp_BUILD_CFLAGS
######### #########
# See whether we should use GCOV # See whether we should use GCOV
AC_ARG_ENABLE(gcov, AC_HELP_STRING([--enable-gcov], AC_ARG_ENABLE(gcov, AS_HELP_STRING([--enable-gcov],
[Enable coverage testing using gcov])) [Enable coverage testing using gcov]))
if test "${use_gcov}" = "yes" ; then if test "${use_gcov}" = "yes" ; then
USE_GCOV=1 USE_GCOV=1
@@ -812,7 +821,8 @@ AC_CONFIG_HEADERS(sqlite_cfg.h)
# Generate the output files. # Generate the output files.
# #
AC_SUBST(BUILD_CFLAGS) AC_SUBST(BUILD_CFLAGS)
AC_OUTPUT([ AC_CONFIG_FILES([
Makefile Makefile
sqlite3.pc sqlite3.pc
]) ])
AC_OUTPUT

View File

@@ -1,5 +1,5 @@
C Merge\strunk\sinto\swasi-patches\sbranch. C Run\sconfigure.ac\sthrough\sautoupdate,\sas\srequired\sby\sautoconf\sfor\srebuilding\sconfigure.\sThese\s(many)\schanges\swere\smade\sentirely\sby\sthe\sautotools,\sexcept\sthat\ssome\swhitespace-only\schanges\swere\sreverted\sby\shand\sto\sreduce\snoise,\sand\sare\sa\spreliminary\sstep\sto\sadding\sa\snew\sflag\sto\sconfigure.ac.
D 2022-12-10T05:00:16.044 D 2022-12-10T05:52:02.526
F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -33,8 +33,8 @@ F autoconf/tea/win/nmakehlp.c b01f822eabbe1ed2b64e70882d97d48402b42d2689a1ea0034
F autoconf/tea/win/rules.vc c511f222b80064096b705dbeb97060ee1d6b6d63 F autoconf/tea/win/rules.vc c511f222b80064096b705dbeb97060ee1d6b6d63
F config.guess 883205ddf25b46f10c181818bf42c09da9888884af96f79e1719264345053bd6 F config.guess 883205ddf25b46f10c181818bf42c09da9888884af96f79e1719264345053bd6
F config.sub c2d0260f17f3e4bc0b6808fccf1b291cb5e9126c14fc5890efc77b9fd0175559 F config.sub c2d0260f17f3e4bc0b6808fccf1b291cb5e9126c14fc5890efc77b9fd0175559
F configure 9cbf6a15a4b5f2b3551a466420e5f51ce04c40aaed7f90c886402bf0b66ec110 x F configure e24b3bc7cd06e0462d90aba856c3cdddbac3a0d85a86f0c3402866d579798f4c x
F configure.ac 48dc6bfee293eef05910faf085760f2fd79b680aa47b50e8e6a22ca40bb026bb F configure.ac c36bbc3f2604fc9b64a1e39e8c1897e395307ee624e95d4def8d7dcc8ef82918
F contrib/sqlitecon.tcl 210a913ad63f9f991070821e599d600bd913e0ad F contrib/sqlitecon.tcl 210a913ad63f9f991070821e599d600bd913e0ad
F doc/F2FS.txt c1d4a0ae9711cfe0e1d8b019d154f1c29e0d3abfe820787ba1e9ed7691160fcd F doc/F2FS.txt c1d4a0ae9711cfe0e1d8b019d154f1c29e0d3abfe820787ba1e9ed7691160fcd
F doc/json-enhancements.md e356fc834781f1f1aa22ee300027a270b2c960122468499bf347bb123ce1ea4f F doc/json-enhancements.md e356fc834781f1f1aa22ee300027a270b2c960122468499bf347bb123ce1ea4f
@@ -497,11 +497,11 @@ F ext/wasm/README.md ef39861aa21632fdbca0bdd469f78f0096f6449a720f3f39642594af503
F ext/wasm/api/EXPORTED_FUNCTIONS.sqlite3-api 4825910f48cc31b326c1c148e0c569dd4969deb81c69a48fab5d3e14728aa5e7 F ext/wasm/api/EXPORTED_FUNCTIONS.sqlite3-api 4825910f48cc31b326c1c148e0c569dd4969deb81c69a48fab5d3e14728aa5e7
F ext/wasm/api/EXPORTED_RUNTIME_METHODS.sqlite3-api 1ec3c73e7d66e95529c3c64ac3de2470b0e9e7fbf7a5b41261c367cf4f1b7287 F ext/wasm/api/EXPORTED_RUNTIME_METHODS.sqlite3-api 1ec3c73e7d66e95529c3c64ac3de2470b0e9e7fbf7a5b41261c367cf4f1b7287
F ext/wasm/api/README.md 17fb1e10335cc87e366dec496c5b17b061f3f75cdf216e825258de34d97a3e53 F ext/wasm/api/README.md 17fb1e10335cc87e366dec496c5b17b061f3f75cdf216e825258de34d97a3e53
F ext/wasm/api/extern-post-js.c-pp.js 8923f76c3d2213159e12d641dc750523ead5c848185dc4996fae5cc12397f88d w ext/wasm/api/extern-post-js.js F ext/wasm/api/extern-post-js.c-pp.js 8923f76c3d2213159e12d641dc750523ead5c848185dc4996fae5cc12397f88d
F ext/wasm/api/extern-pre-js.js cc61c09c7a24a07dbecb4c352453c3985170cec12b4e7e7e7a4d11d43c5c8f41 F ext/wasm/api/extern-pre-js.js cc61c09c7a24a07dbecb4c352453c3985170cec12b4e7e7e7a4d11d43c5c8f41
F ext/wasm/api/post-js-footer.js cd0a8ec768501d9bd45d325ab0442037fb0e33d1f3b4f08902f15c34720ee4a1 F ext/wasm/api/post-js-footer.js cd0a8ec768501d9bd45d325ab0442037fb0e33d1f3b4f08902f15c34720ee4a1
F ext/wasm/api/post-js-header.js 47b6b281f39ad59fa6e8b658308cd98ea292c286a68407b35ff3ed9cfd281a62 F ext/wasm/api/post-js-header.js 47b6b281f39ad59fa6e8b658308cd98ea292c286a68407b35ff3ed9cfd281a62
F ext/wasm/api/pre-js.c-pp.js b88499dc303c21fc3f55f2c364a0f814f587b60a95784303881169f9e91c1d5f w ext/wasm/api/pre-js.js F ext/wasm/api/pre-js.c-pp.js b88499dc303c21fc3f55f2c364a0f814f587b60a95784303881169f9e91c1d5f
F ext/wasm/api/sqlite3-api-cleanup.js 680d5ccfff54459db136a49b2199d9f879c8405d9c99af1dda0cc5e7c29056f4 F ext/wasm/api/sqlite3-api-cleanup.js 680d5ccfff54459db136a49b2199d9f879c8405d9c99af1dda0cc5e7c29056f4
F ext/wasm/api/sqlite3-api-glue.js 88e62a380b39a924728d9ed4f74f5424f0ea36e8d124df7da9268cc01ad0b191 F ext/wasm/api/sqlite3-api-glue.js 88e62a380b39a924728d9ed4f74f5424f0ea36e8d124df7da9268cc01ad0b191
F ext/wasm/api/sqlite3-api-oo1.js 6d10849609231ccd46fa11b1d3fbbe0f45d9fe84c66a0b054601036540844300 F ext/wasm/api/sqlite3-api-oo1.js 6d10849609231ccd46fa11b1d3fbbe0f45d9fe84c66a0b054601036540844300
@@ -509,8 +509,8 @@ F ext/wasm/api/sqlite3-api-prologue.js 2582c5a983e6213687153125a12e7f7496a1cd474
F ext/wasm/api/sqlite3-api-worker1.js e94ba98e44afccfa482874cd9acb325883ade50ed1f9f9526beb9de1711f182f F ext/wasm/api/sqlite3-api-worker1.js e94ba98e44afccfa482874cd9acb325883ade50ed1f9f9526beb9de1711f182f
F ext/wasm/api/sqlite3-license-version-header.js a661182fc93fc2cf212dfd0b987f8e138a3ac98f850b1112e29b5fbdaecc87c3 F ext/wasm/api/sqlite3-license-version-header.js a661182fc93fc2cf212dfd0b987f8e138a3ac98f850b1112e29b5fbdaecc87c3
F ext/wasm/api/sqlite3-opfs-async-proxy.js 7795b84b66a7a8dedc791340709b310bb497c3c72a80bef364fa2a58e2ddae3f F ext/wasm/api/sqlite3-opfs-async-proxy.js 7795b84b66a7a8dedc791340709b310bb497c3c72a80bef364fa2a58e2ddae3f
F ext/wasm/api/sqlite3-v-helper.js 64bb3559446eb441ce87afe942f6f924ee135a9f069a82705ffefdcd55fc6481 w ext/wasm/api/sqlite3-vfs-helper.js F ext/wasm/api/sqlite3-v-helper.js 64bb3559446eb441ce87afe942f6f924ee135a9f069a82705ffefdcd55fc6481
F ext/wasm/api/sqlite3-vfs-opfs.c-pp.js 66daf6fb6843bea615fe193109e1542efbeca24f560ee9da63375a910bb48115 w ext/wasm/api/sqlite3-vfs-opfs.js F ext/wasm/api/sqlite3-vfs-opfs.c-pp.js 66daf6fb6843bea615fe193109e1542efbeca24f560ee9da63375a910bb48115
F ext/wasm/api/sqlite3-wasi.h 25356084cfe0d40458a902afb465df8c21fc4152c1d0a59b563a3fba59a068f9 F ext/wasm/api/sqlite3-wasi.h 25356084cfe0d40458a902afb465df8c21fc4152c1d0a59b563a3fba59a068f9
F ext/wasm/api/sqlite3-wasm.c daad00c6822facb6ceb506dadc2201c734e9128c457c93f9304df01542084216 F ext/wasm/api/sqlite3-wasm.c daad00c6822facb6ceb506dadc2201c734e9128c457c93f9304df01542084216
F ext/wasm/api/sqlite3-worker1-promiser.js 0c7a9826dbf82a5ed4e4f7bf7816e825a52aff253afbf3350431f5773faf0e4b F ext/wasm/api/sqlite3-worker1-promiser.js 0c7a9826dbf82a5ed4e4f7bf7816e825a52aff253afbf3350431f5773faf0e4b
@@ -2067,8 +2067,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
P 64cf34a85505814b4c93e82855c25559c8096bb3ce38cdc5e0fb9218c6bcce32 4600a7bbdc4cbe14591d48ea19fe5f7de3a0c10a14cdd97fd51e263a13163d10 P 13dade955d46020ab408734123261e9fadb8bccbaf67003b111112af4789d8c0
R e3b70765e88ec1ad3cf06ec9b25dc445 R fc46c79a94547ce08fe3cd195462d6fd
U stephan U stephan
Z 12a8b4ca5bc116a93035c1402600a66b Z 3477295956a0e931748d4f484704cfa0
# Remove this line to create a well-formed Fossil manifest. # Remove this line to create a well-formed Fossil manifest.

View File

@@ -1 +1 @@
13dade955d46020ab408734123261e9fadb8bccbaf67003b111112af4789d8c0 2be2d5d428acd538e44d7b9345b64470131bef40f67ba3190f5cd42f9949f355