Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | More revisions to verbose version information reporting, especially for FUSE. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | versionReform |
| Files: | files | file ages | folders |
| SHA1: |
444e3c437536104750dbdfc6294bd328 |
| User & Date: | mistachkin 2017-01-17 02:16:09.300 |
Context
|
2017-01-17
| ||
| 02:22 | Improved libfuse version information. ... (check-in: 28c7a35f2e user: drh tags: trunk) | |
| 02:16 | More revisions to verbose version information reporting, especially for FUSE. ... (Closed-Leaf check-in: 444e3c4375 user: mistachkin tags: versionReform) | |
|
2017-01-16
| ||
| 23:34 | Provide more information about compile-time options to the "fossil version -v" command. ... (check-in: 3192b13d20 user: drh tags: trunk) | |
Changes
Changes to src/fusefs.c.
| ︙ | ︙ | |||
337 338 339 340 341 342 343 | fuse_main(4, azNewArgv, &fusefs_methods, NULL); fusefs_reset(); fusefs_clear_path(); } #endif /* FOSSIL_HAVE_FUSEFS */ /* | | > > > > > > > > > | < | | | 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
fuse_main(4, azNewArgv, &fusefs_methods, NULL);
fusefs_reset();
fusefs_clear_path();
}
#endif /* FOSSIL_HAVE_FUSEFS */
/*
** Return version numbers for the FUSE header that was used at compile-time
** and/or the FUSE library that was loaded at runtime.
*/
const char *fusefs_lib_version(void){
#if defined(FOSSIL_HAVE_FUSEFS) && FUSE_MAJOR_VERSION>=3
return fuse_pkgversion();
#else
return "unknown";
#endif
}
const char *fusefs_inc_version(void){
#ifdef FOSSIL_HAVE_FUSEFS
return COMPILER_STRINGIFY(FUSE_MAJOR_VERSION) "."
COMPILER_STRINGIFY(FUSE_MINOR_VERSION);
#else
return "unknown";
#endif
}
|
Changes to src/main.c.
| ︙ | ︙ | |||
930 931 932 933 934 935 936 | #else blob_appendf(pOut, "zlib %s, loaded %s\n", ZLIB_VERSION, zlibVersion()); #endif #if defined(FOSSIL_ENABLE_SSL) blob_appendf(pOut, "SSL (%s)\n", SSLeay_version(SSLEAY_VERSION)); #endif #if defined(FOSSIL_HAVE_FUSEFS) | > | | 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 |
#else
blob_appendf(pOut, "zlib %s, loaded %s\n", ZLIB_VERSION, zlibVersion());
#endif
#if defined(FOSSIL_ENABLE_SSL)
blob_appendf(pOut, "SSL (%s)\n", SSLeay_version(SSLEAY_VERSION));
#endif
#if defined(FOSSIL_HAVE_FUSEFS)
blob_appendf(pOut, "libfuse %s, loaded %s\n", fusefs_inc_version(),
fusefs_lib_version());
#endif
#if defined(FOSSIL_DEBUG)
blob_append(pOut, "FOSSIL_DEBUG\n", -1);
#endif
#if defined(FOSSIL_OMIT_DELTA_CKSUM_TEST)
blob_append(pOut, "FOSSIL_OMIT_DELTA_CKSUM_TEST\n", -1);
#endif
|
| ︙ | ︙ | |||
976 977 978 979 980 981 982 | #endif #if defined(BROKEN_MINGW_CMDLINE) blob_append(pOut, "MBCS_COMMAND_LINE\n", -1); #else blob_append(pOut, "UNICODE_COMMAND_LINE\n", -1); #endif #if defined(FOSSIL_DYNAMIC_BUILD) | | | | 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 | #endif #if defined(BROKEN_MINGW_CMDLINE) blob_append(pOut, "MBCS_COMMAND_LINE\n", -1); #else blob_append(pOut, "UNICODE_COMMAND_LINE\n", -1); #endif #if defined(FOSSIL_DYNAMIC_BUILD) blob_append(pOut, "FOSSIL_DYNAMIC_BUILD\n", -1); #else blob_append(pOut, "FOSSIL_STATIC_BUILD\n", -1); #endif #if defined(USE_SEE) blob_append(pOut, "USE_SEE\n", -1); #endif #if defined(FOSSIL_ALLOW_OUT_OF_ORDER_DATES) blob_append(pOut, "FOSSIL_ALLOW_OUT_OF_ORDER_DATES\n"); #endif |
| ︙ | ︙ |