Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Let "fossil version -v" report the zlib version currently running, not the zlib version it was compiled with |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e568d9f03fe7088c42aa92ee182292b7 |
| User & Date: | jan.nijtmans 2013-09-15 16:59:37.615 |
Context
|
2013-09-15
| ||
| 18:51 | Revise TH1 initialization function to accept a single flags argument. Cleanup and revise version information reported for zlib and Tcl. ... (check-in: 0e6862046d user: mistachkin tags: trunk) | |
| 16:59 | Let "fossil version -v" report the zlib version currently running, not the zlib version it was compiled with ... (check-in: e568d9f03f user: jan.nijtmans tags: trunk) | |
|
2013-09-14
| ||
| 21:59 | When building the new OpenSSL target in the MinGW makefile, build only what is necessary to actually compile and use Fossil. ... (check-in: a5073b3ae9 user: mistachkin tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
801 802 803 804 805 806 807 |
int rc;
const char *zRc;
#endif
fossil_print("Compiled on %s %s using %s (%d-bit)\n",
__DATE__, __TIME__, COMPILER_NAME, sizeof(void*)*8);
fossil_print("SQLite %s %.30s\n", SQLITE_VERSION, SQLITE_SOURCE_ID);
fossil_print("Schema version %s\n", AUX_SCHEMA);
| | | 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 |
int rc;
const char *zRc;
#endif
fossil_print("Compiled on %s %s using %s (%d-bit)\n",
__DATE__, __TIME__, COMPILER_NAME, sizeof(void*)*8);
fossil_print("SQLite %s %.30s\n", SQLITE_VERSION, SQLITE_SOURCE_ID);
fossil_print("Schema version %s\n", AUX_SCHEMA);
fossil_print("zlib %s\n", zlibVersion());
#if defined(FOSSIL_ENABLE_SSL)
fossil_print("SSL (%s)\n", OPENSSL_VERSION_TEXT);
#endif
#if defined(FOSSIL_ENABLE_TCL)
Th_FossilInit(0, 0);
th_register_tcl(g.interp, &g.tcl);
rc = Th_Eval(g.interp, 0, "tclEval {package require Tcl}", -1);
|
| ︙ | ︙ |