Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the OpenSSL version number display. On second through, maybe this isn't a good fix... |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | openssl-version |
| Files: | files | file ages | folders |
| SHA3-256: |
97400cab66c1301971ecfcc50031432c |
| User & Date: | drh 2025-02-20 14:29:53.022 |
| Original Comment: | Fix the OpenSSL version number display. |
Context
|
2025-02-20
| ||
| 14:29 | Fix the OpenSSL version number display. On second through, maybe this isn't a good fix... ... (Closed-Leaf check-in: 97400cab66 user: drh tags: openssl-version) | |
| 13:36 | Enhance the "fossil merge-info --tk" application with a new menu that will bring up detailed two-way diffs between source components. This involves various diff subsystem upgrades, including: (1) Add the "fdiff" command. (Not actually needed here, but useful.) (2) Add --label options on diff commands. (3) Add --tkdebug on diff commands for debugging. (4) Improvements to column titles in two-way diffs. ... (check-in: f5cb12df5a user: drh tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
1205 1206 1207 1208 1209 1210 1211 |
if( eVerbose<=0 ) return;
blob_appendf(pOut, "Compiled on %s %s using %s (%d-bit)\n",
__DATE__, __TIME__, COMPILER_NAME, sizeof(void*)*8);
blob_appendf(pOut, "SQLite %s %.30s\n", sqlite3_libversion(),
sqlite3_sourceid());
#if defined(FOSSIL_ENABLE_SSL)
| | | 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 |
if( eVerbose<=0 ) return;
blob_appendf(pOut, "Compiled on %s %s using %s (%d-bit)\n",
__DATE__, __TIME__, COMPILER_NAME, sizeof(void*)*8);
blob_appendf(pOut, "SQLite %s %.30s\n", sqlite3_libversion(),
sqlite3_sourceid());
#if defined(FOSSIL_ENABLE_SSL)
blob_appendf(pOut, "SSL (%s)\n", OPENSSL_VERSION_TEXT);
#endif
blob_appendf(pOut, "zlib %s, loaded %s\n", ZLIB_VERSION, zlibVersion());
#if defined(FOSSIL_HAVE_FUSEFS)
blob_appendf(pOut, "libfuse %s, loaded %s\n", fusefs_inc_version(),
fusefs_lib_version());
#endif
#if defined(FOSSIL_ENABLE_TCL)
|
| ︙ | ︙ |