Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Also adjust the order of files in the amalgamation to ensure that _FILE_OFFSET_BITS is defined before any #include, for QNX. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
23001a85cd334090cf6c70d4d7e722a0 |
User & Date: | drh 2014-02-25 18:12:58 |
Context
2014-02-25
| ||
21:55 | Do not allow temporary registers to be in use across an OP_Yield within a co-routine. Fix for ticket [8c63ff0eca81a9132d8]. check-in: 97a8c973 user: drh tags: trunk | |
21:01 | Attempt to speed up sqlite3VdbeRecordCompare() by various means. This code is in an interim state. check-in: 85206e0b user: dan tags: experimental | |
19:38 | Make sure temporary registers used within a co-routine are not also used outside of that co-routine, in order to prevent concurrent use of the same register for two different things. Ticket [8c63ff0eca81a9132d8] Closed-Leaf check-in: cc5eda54 user: drh tags: tkt-8c63ff0eca | |
18:12 | Also adjust the order of files in the amalgamation to ensure that _FILE_OFFSET_BITS is defined before any #include, for QNX. check-in: 23001a85 user: drh tags: trunk | |
14:52 | QNX requires that _FILE_OFFSET_BITS be set prior to any system #include. check-in: 953cdd6a user: drh tags: trunk | |
Changes
Changes to tool/mksqlite3c.tcl.
117 117 vdbeInt.h 118 118 wal.h 119 119 whereInt.h 120 120 } { 121 121 set available_hdr($hdr) 1 122 122 } 123 123 set available_hdr(sqliteInt.h) 0 124 -set available_hdr(sqlite3.h) 0 125 124 126 125 # 78 stars used for comment formatting. 127 126 set s78 \ 128 127 {*****************************************************************************} 129 128 130 129 # Insert a comment into the code 131 130 # ................................................................................ 225 224 226 225 227 226 # Process the source files. Process files containing commonly 228 227 # used subroutines first in order to help the compiler find 229 228 # inlining opportunities. 230 229 # 231 230 foreach file { 232 - sqlite3.h 233 231 sqliteInt.h 234 232 235 233 global.c 236 234 ctime.c 237 235 status.c 238 236 date.c 239 237 os.c