Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the build on Windows. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
11e105b3c958b4aa029106dcfd2ee908 |
| User & Date: | drh 2016-11-02 17:47:46.645 |
Context
|
2016-11-03
| ||
| 18:31 | Compilation fix for MinGW: consistently use _WIN32_WINNT when including winsock2.h, etc. check-in: 26a88f1bbf user: mistachkin tags: trunk | |
|
2016-11-02
| ||
| 19:12 | Merge updates from trunk. check-in: 25285f06f2 user: mistachkin tags: openssl-1.1 | |
| 17:47 | Fix the build on Windows. check-in: 11e105b3c9 user: drh tags: trunk | |
| 15:16 | Update the built-in SQLite to the latest trunk version that includes a fix to VACUUM to prevent it from running out of memory on very large databases. check-in: 7fa9701b3d user: drh tags: trunk | |
Changes
Changes to src/winhttp.c.
| ︙ | ︙ | |||
664 665 666 667 668 669 670 |
}else{
fossil_fatal("error from StartServiceCtrlDispatcher()");
}
}
return 0;
}
| > | | 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 |
}else{
fossil_fatal("error from StartServiceCtrlDispatcher()");
}
}
return 0;
}
/* Dupliate #ifdef needed for mkindex */
#ifdef _WIN32
/*
** COMMAND: winsrv*
**
** Usage: %fossil winsrv METHOD ?SERVICE-NAME? ?OPTIONS?
**
** Where METHOD is one of: create delete show start stop.
**
|
| ︙ | ︙ |