Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typos in the amalgamation builder script. (CVS 3786) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a5070a2d11b4dad550a889d5fc005302 |
User & Date: | drh 2007-04-01 01:57:42 |
Context
2007-04-01
| ||
18:46 | Make unix builds threadsafe by default. (CVS 3787) check-in: ddfc3b2d user: drh tags: trunk | |
01:57 | Fix typos in the amalgamation builder script. (CVS 3786) check-in: a5070a2d user: drh tags: trunk | |
2007-03-31
| ||
22:34 | Improvements to the output of the speed tests. (CVS 3785) check-in: 1a4d8024 user: drh tags: trunk | |
Changes
Changes to tool/mksqlite3c.tcl.
40 40 # Open the output file and write a header comment at the beginning 41 41 # of the file. 42 42 # 43 43 set out [open sqlite3.c w] 44 44 set today [clock format [clock seconds] -format "%Y-%m-%d %H:%M:%S UTC" -gmt 1] 45 45 puts $out [subst \ 46 46 {/****************************************************************************** 47 -** This file is a amalgamation of many separate C source files from SQLite 47 +** This file is an amalgamation of many separate C source files from SQLite 48 48 ** version $VERSION. By combining all the individual C code files into this 49 49 ** single large file, the entire code can be compiled as a one translation 50 50 ** unit. This allows many compilers to do optimizations that would not be 51 51 ** possible if the files were compiled separately. Performance improvements 52 52 ** of 5% are more are commonly seen when SQLite is compiled as a single 53 53 ** translation unit. 54 54 ** 55 55 ** This file is all you need to compile SQLite. To use SQLite in other 56 56 ** programs, you need this file and the "sqlite3.h" header file that defines 57 57 ** the programming interface to the SQLite library. (If you do not have 58 58 ** the "sqlite3.h" header file at hand, you will find a copy in the first 59 -** $cnt lines past the header of this amalgamation.) Additional code 60 -** files may be needed if you want a wrapper to interface SQLite with your 61 -** choice of programming language. The code for the "sqlite3" command-line 62 -** shell is also in a separate file. This file contains only code for the 63 -** core SQLite library. 59 +** $cnt lines past this header comment.) Additional code files may be 60 +** needed if you want a wrapper to interface SQLite with your choice of 61 +** programming language. The code for the "sqlite3" command-line shell 62 +** is also in a separate file. This file contains only code for the core 63 +** SQLite library. 64 64 ** 65 65 ** This amalgamation was generated on $today. 66 66 */}] 67 67 68 68 # These are the header files used by SQLite. The first time any of these 69 69 # files are seen in a #include statement in the C code, include the complete 70 70 # text of the file in-line. The file only needs to be included once.