Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typos in the header comment of wapptclsh.c.in. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
7ee6ff55d1711cd1e1700a705554f614 |
User & Date: | drh 2025-01-14 15:26:05.201 |
Context
2025-01-14
| ||
15:27 | Update the built-in SQLite implementation to version 3.48.0. (check-in: 7225deab5d user: drh tags: trunk) | |
15:26 | Fix typos in the header comment of wapptclsh.c.in. (check-in: 7ee6ff55d1 user: drh tags: trunk) | |
2024-12-31
| ||
20:34 | Update the built-in SQLite to the latest 3.48.0 beta for testing. (check-in: cf707bae76 user: drh tags: trunk) | |
Changes
Changes to wapptclsh.c.in.
1 2 3 4 | /* ** A TCLSH that reads itself as its initialization script. This is ** intended for use as CGI. The CGI script should look like: ** | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /* ** A TCLSH that reads itself as its initialization script. This is ** intended for use as CGI. The CGI script should look like: ** ** #/usr/bin/wapptclsh ** # ** proc wapp-default {} { ** wapp "<h1>Hello, World!</h1>\n" ** } ** wapp-start -cgi ** */ #define SQLITE_THREADSAFE 0 #undef SQLITE_ENABLE_COLUMN_METADATA #define SQLITE_OMIT_DECLTYPE 1 #define SQLITE_OMIT_DEPRECATED 1 #define SQLITE_OMIT_PROGRESS_CALLBACK 1 |
︙ | ︙ |