Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make the compile work under cygwin. Tickets #327, #213, #316, #322, #349, #373, and #429. (CVS 1075) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7d8d3252df1e9f6bec5e105b6eca3313 |
User & Date: | drh 2003-08-16 13:10:52.000 |
Context
2003-08-19
| ||
14:31 | Add the "onecolumn" method to the TCL language bindings. (CVS 1076) (check-in: c7b4c28fbc user: drh tags: trunk) | |
2003-08-16
| ||
13:10 | Make the compile work under cygwin. Tickets #327, #213, #316, #322, #349, #373, and #429. (CVS 1075) (check-in: 7d8d3252df user: drh tags: trunk) | |
12:37 | Do not delete tables with the same name when dropping triggers. Ticket #430. (CVS 1074) (check-in: ef58f163b0 user: drh tags: trunk) | |
Changes
Changes to src/os.h.
︙ | ︙ | |||
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | # endif # else # define OS_MAC 0 # define OS_UNIX 0 # endif #else # define OS_MAC 0 # define OS_WIN 0 #endif /* ** A handle for an open file is stored in an OsFile object. */ #if OS_UNIX # include <sys/types.h> # include <sys/stat.h> | > > | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | # endif # else # define OS_MAC 0 # define OS_UNIX 0 # endif #else # define OS_MAC 0 # ifndef OS_WIN # define OS_WIN 0 # endif #endif /* ** A handle for an open file is stored in an OsFile object. */ #if OS_UNIX # include <sys/types.h> # include <sys/stat.h> |
︙ | ︙ | |||
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | # define SQLITE_MIN_SLEEP_MS 1 # else # define SQLITE_MIN_SLEEP_MS 1000 # endif #endif #if OS_WIN #include <windows.h> #include <winbase.h> typedef struct OsFile OsFile; struct OsFile { HANDLE h; /* Handle for accessing the file */ int locked; /* 0: unlocked, <0: write lock, >0: read lock */ }; # if defined(_MSC_VER) || defined(__BORLANDC__) typedef __int64 off_t; # else typedef long long off_t; # endif # define SQLITE_TEMPNAME_SIZE (MAX_PATH+50) # define SQLITE_MIN_SLEEP_MS 1 #endif #if OS_MAC # include <unistd.h> # include <Files.h> | > > > > > | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | # define SQLITE_MIN_SLEEP_MS 1 # else # define SQLITE_MIN_SLEEP_MS 1000 # endif #endif #if OS_WIN # if defined(__CYGWIN__) # define __CYGWIN_USE_BIG_TYPES__ # endif #include <windows.h> #include <winbase.h> typedef struct OsFile OsFile; struct OsFile { HANDLE h; /* Handle for accessing the file */ int locked; /* 0: unlocked, <0: write lock, >0: read lock */ }; # if defined(_MSC_VER) || defined(__BORLANDC__) typedef __int64 off_t; # else # if !defined(_CYGWIN_TYPES_H) typedef long long off_t; # endif # endif # define SQLITE_TEMPNAME_SIZE (MAX_PATH+50) # define SQLITE_MIN_SLEEP_MS 1 #endif #if OS_MAC # include <unistd.h> # include <Files.h> |
︙ | ︙ |