cosmopolitan/third_party/sqlite3
Justine Tunney ff77f2a6af
Make improvements
- This change fixes a bug that allowed unbuffered printf() output (to
  streams like stderr) to be truncated. This regression was introduced
  some time between now and the last release.

- POSIX specifies all functions as thread safe by default. This change
  works towards cleaning up our use of the @threadsafe / @threadunsafe
  documentation annotations to reflect that. The goal is (1) to use
  @threadunsafe to document functions which POSIX say needn't be thread
  safe, and (2) use @threadsafe to document functions that we chose to
  implement as thread safe even though POSIX didn't mandate it.

- Tidy up the clock_gettime() implementation. We're now trying out a
  cleaner approach to system call support that aims to maintain the
  Linux errno convention as long as possible. This also fixes bugs that
  existed previously, where the vDSO errno wasn't being translated
  properly. The gettimeofday() system call is now a wrapper for
  clock_gettime(), which reduces bloat in apps that use both.

- The recently-introduced improvements to the execute bit on Windows has
  had bugs fixed. access(X_OK) on a directory on Windows now succeeds.
  fstat() will now perform the MZ/#! ReadFile() operation correctly.

- Windows.h is no longer included in libc/isystem/, because it confused
  PCRE's build system into thinking Cosmopolitan is a WIN32 platform.
  Cosmo's Windows.h polyfill was never even really that good, since it
  only defines a subset of the subset of WIN32 APIs that Cosmo defines.

- The setlongerjmp() / longerjmp() APIs are removed. While they're nice
  APIs that are superior to the standardized setjmp / longjmp functions,
  they weren't superior enough to not be dead code in the monorepo. If
  you use these APIs, please file an issue and they'll be restored.

- The .com appending magic has now been removed from APE Loader.
2023-10-03 06:17:16 -07:00
..
alter.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
alter.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
analyze.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
analyze.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
appendvfs.c Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
appendvfs.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
attach.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
attach.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
auth.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
auth.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
backup.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
backup.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
bitvec.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
bitvec.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
btmutex.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
btmutex.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
btree.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
btree.inc Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
btree.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
btreeInt.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
build.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
build.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
callback.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
callback.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
complete.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
complete.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
completion.c Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
completion.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
ctime.c Fix SQLite3 build for Landlock Make 2022-12-11 14:49:53 -08:00
ctime.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
date.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
date.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
dbdata.c Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
dbdata.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
dbpage.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
dbpage.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
dbstat.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
dbstat.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
decimal.c Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
decimal.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
delete.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
delete.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
dog.py Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
expr.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
expr.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
extensions.h Enable sqlite zipfile module in redbean 2022-06-17 02:49:04 -07:00
fault.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fault.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fileio.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fileio.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fkey.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fkey.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_aux.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_aux.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_expr.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_expr.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_hash.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_hash.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_hash.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_icu.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_icu.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_porter.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_porter.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_snippet.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_snippet.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_tokenize_vtab.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_tokenize_vtab.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_tokenizer.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_tokenizer.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_tokenizer.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_tokenizer1.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_tokenizer1.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_unicode.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_unicode.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_unicode2.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_unicode2.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3_write.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts3_write.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
fts3Int.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts5.c Make some system call fixes 2023-02-12 22:16:34 -08:00
fts5.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
fts5.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
func.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
func.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
geopoly.inc Remove printf() linking hack 2023-06-17 10:13:50 -07:00
global.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
global.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
hash.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
hash.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
hash.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
hwtime.inc Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
icu.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
icu.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
ieee754.c Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
ieee754.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
insert.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
insert.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
json.c Remove printf() linking hack 2023-06-17 10:13:50 -07:00
json.shell.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
keywordhash.inc Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
legacy.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
legacy.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
loadext.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
loadext.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
main.c Fix SQLite3 build for Landlock Make 2022-12-11 14:49:53 -08:00
main.shell.c Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
malloc.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
malloc.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
mem0.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
mem0.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
mem1.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
mem1.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
mem2.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
mem2.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
mem3.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
mem3.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
mem5.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
mem5.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
memdb.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
memdb.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
memjournal.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
memjournal.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
memtrace.c Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
memtrace.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
msvc.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
mutex.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
mutex.inc Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
mutex.internal.h Do some work on TurfWar 2022-10-07 03:11:07 -07:00
mutex.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
mutex_noop.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
mutex_noop.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
mutex_unix.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
mutex_unix.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
notify.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
notify.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
opcodes.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
opcodes.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
opcodes.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
os.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
os.inc Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
os.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
os_common.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
os_kv.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
os_setup.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
os_unix.c Make improvements 2023-10-03 06:17:16 -07:00
os_unix.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
pager.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
pager.inc Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
pager.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
parse.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
parse.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
parse.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
pcache.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
pcache.inc Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
pcache.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
pcache1.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
pcache1.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
pragma.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
pragma.inc Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
pragma.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
prepare.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
prepare.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
printf.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
printf.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
random.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
random.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
README.cosmo Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
resolve.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
resolve.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
rowset.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
rowset.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
rtree.c Fix more build configuration errors 2023-07-08 09:08:13 -07:00
rtree.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
rtree.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
select.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
select.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
series.c Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
series.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
shathree.c Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
shathree.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
shell.c Make improvements 2023-08-21 02:34:17 -07:00
shell.c.in Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
sqlar.c Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
sqlar.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
sqlite3.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
sqlite3.mk Make improvements 2023-09-18 21:04:47 -07:00
sqlite3expert.c Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
sqlite3expert.h Enable sqlite zipfile module in redbean 2022-06-17 02:49:04 -07:00
sqlite3expert.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
sqlite3ext.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
sqlite3rbu.c Fix SQLite3 build for Landlock Make 2022-12-11 14:49:53 -08:00
sqlite3rbu.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
sqlite3rbu.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
sqlite3rtree.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
sqlite3session.c Fix warnings 2023-09-01 20:50:18 -07:00
sqlite3session.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
sqlite3session.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
sqlite3userauth.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
sqliteicu.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
sqliteInt.h Get us closer to building busybox 2023-06-18 04:13:45 -07:00
sqliteLimit.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
status.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
status.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
stmt.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
stmt.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
table.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
table.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
threads.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
threads.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
tokenize.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
tokenize.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
treeview.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
treeview.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
trigger.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
trigger.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
uint.c Revert whitespace fixes to third_party (#501) 2022-07-21 21:46:07 -07:00
uint.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
update.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
update.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
upsert.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
upsert.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
userauth.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
userauth.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
utf.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
utf.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
util.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
util.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
vacuum.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vacuum.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
vdbe.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vdbe.inc Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vdbe.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
vdbeapi.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vdbeapi.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
vdbeaux.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vdbeaux.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
vdbeblob.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vdbeblob.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
vdbeInt.inc Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vdbemem.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vdbemem.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
vdbesort.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vdbesort.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
vdbetrace.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vdbetrace.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
vdbevtab.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vdbevtab.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
vtab.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
vtab.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
vxworks.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
wal.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
wal.h Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
wal.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
walker.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
walker.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
where.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
where.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
wherecode.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
wherecode.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
whereexpr.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
whereexpr.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
whereInt.inc Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
window.c Upgrade SQLite to 3.40 (#699) 2022-11-28 12:54:48 -08:00
window.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00
zipfile.c Fix breakages in Linux-only build modes 2023-07-09 19:51:44 -07:00
zipfile.shell.c Remove plenty of makefile misconfigurations 2022-07-21 09:20:59 -07:00

DESCRIPTION

    SQLite is an embeddable SQL relational database with a ~1mb
    footprint and a wide variety of features.

ORIGIN

    https://www.sqlite.org/2022/sqlite-preprocessed-3400000.zip

LICENSE

    Public Domain or MIT

LOCAL CHANGES

  - Added `/zip/.args` file support to SQLite shell
  - Added `--strace` system call tracing flag to SQLite shell
  - Added `--strace` function call logging flag to SQLite shell
  - Configured fsync() using runtime magnums rather than ifdefs
  - Modify preprocessor macro for enabling pread() and pwrite()
  - Save and restore errno in some places to avoid log pollution