Fix -O3 -Werror=unused-result build in dcache.c (#420)
[heimdal.git] / lib / sqlite / README
blobf147d8a7519f9bf7137dec9617ab69e787de9862
2 This directory contains a copy of the SQLite3 amalgamation.
4 In order to help update this copy to newer versions of SQLite3, please
5 make NO changes to it that are not absolutely necessary:
7  - add no features that can't be added as loadable extensions or avoided
8    altogether
9  - fix no bugs that can't be worked around
10  - define macros via the Makefile as much as possible (-D...) rather
11    than via changes to the source
12  - fix absolutely no whitespace, formatting, or spelling errors
13  - fix no compiler warnings (the upstream community mostly doesn't care
14    to fix them) unless you're absolutely convinced that the warning(s)
15    represent a serious bug(s) that is relevant to Heimdal
17 If you must make changes to this copy, DO:
19  - have a commit just for those changes and no other changes outside
20    this part of the tree
22  - provide enough information in the commit message that someone else
23    (or even yourself) can figure out whether and how to re-apply your
24    change years later when updating to a newer version of SQLite3