SQLite

Check-in [9c5697c70f]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:In the amalgamation, put date.c before os.c so that the time_t typedef can be correctly resolved by windows compilers. (CVS 3793)
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9c5697c70fa850ea700e8cc0c918791a1628ab10
User & Date: drh 2007-04-02 12:22:45.000
Context
2007-04-02
12:28
Cover a corrupt-db case in pager.c. (CVS 3794) (check-in: 84077fa160 user: danielk1977 tags: trunk)
12:22
In the amalgamation, put date.c before os.c so that the time_t typedef can be correctly resolved by windows compilers. (CVS 3793) (check-in: 9c5697c70f user: drh tags: trunk)
11:22
If an IO error is encountered on a commit, close the journal so that it persists and can (hopefully) rollback the failed transaction later. (CVS 3792) (check-in: 22e10cc24e user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to tool/mksqlite3c.tcl.
144
145
146
147
148
149
150

151
152
153
154
155
156
157
# Process the source files.  Process files containing commonly
# used subroutines first in order to help the compiler find
# inlining opportunities.
#
foreach file {
   sqlite3.h


   os.c

   printf.c
   random.c
   utf.c
   util.c
   hash.c







>







144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# Process the source files.  Process files containing commonly
# used subroutines first in order to help the compiler find
# inlining opportunities.
#
foreach file {
   sqlite3.h

   date.c
   os.c

   printf.c
   random.c
   utf.c
   util.c
   hash.c
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
   alter.c
   analyze.c
   attach.c
   auth.c
   build.c
   callback.c
   complete.c
   date.c
   delete.c
   func.c
   insert.c
   legacy.c
   loadext.c
   pragma.c
   prepare.c







<







176
177
178
179
180
181
182

183
184
185
186
187
188
189
   alter.c
   analyze.c
   attach.c
   auth.c
   build.c
   callback.c
   complete.c

   delete.c
   func.c
   insert.c
   legacy.c
   loadext.c
   pragma.c
   prepare.c