Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the build on windows by using "_pclose" instead of "pclose". |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
07463fbf02a30f32beb6d3fa91cf4944 |
| User & Date: | drh 2013-06-29 15:41:28.610 |
Context
|
2013-07-04
| ||
| 19:11 | Help text fixes from Andreas Kupries. check-in: f6ad6979d7 user: stephan tags: trunk | |
|
2013-07-01
| ||
| 09:08 | rebase Closed-Leaf check-in: d57bddaa37 user: jan.nijtmans tags: pending-review | |
|
2013-06-29
| ||
| 15:41 | Fix the build on windows by using "_pclose" instead of "pclose". check-in: 07463fbf02 user: drh tags: trunk | |
| 15:26 | Bring in the latest SQLite 3.8.0 alpha version from upstream, for testing. check-in: c3e723e308 user: drh tags: trunk | |
Changes
Changes to src/shell.c.
| ︙ | ︙ | |||
63 64 65 66 67 68 69 | #if defined(_WIN32) || defined(WIN32) # include <io.h> #define isatty(h) _isatty(h) #define access(f,m) _access((f),(m)) #undef popen #define popen(a,b) _popen((a),(b)) #undef pclose | | | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | #if defined(_WIN32) || defined(WIN32) # include <io.h> #define isatty(h) _isatty(h) #define access(f,m) _access((f),(m)) #undef popen #define popen(a,b) _popen((a),(b)) #undef pclose #define pclose _pclose #else /* Make sure isatty() has a prototype. */ extern int isatty(int); #endif #if defined(_WIN32_WCE) |
| ︙ | ︙ |