Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Improved formatting and additional information output for "fossil version --verbose". |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 1b0e8cf9c0185d14acf6ae249dc9ff46 |
User & Date: | drh 2013-06-18 23:12:05 |
Context
2013-06-18
| ||
23:17 | Even more refinements to the "fossil version --verbose" output. check-in: 340711f4 user: drh tags: trunk | |
23:14 | Pull in trunk changes and the latest NGQP updates. check-in: d3d4e111 user: drh tags: sqlite-NGQP | |
23:12 | Improved formatting and additional information output for "fossil version --verbose". check-in: 1b0e8cf9 user: drh tags: trunk | |
22:54 | Fix typos in the change log. check-in: 9734d2cd user: drh tags: trunk | |
Changes
Changes to src/main.c.
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 |
void version_cmd(void){ fossil_print("This is fossil version " RELEASE_VERSION " " MANIFEST_VERSION " " MANIFEST_DATE " UTC\n"); if(!find_option("verbose","v",0)){ return; }else{ int count = 0; fossil_print("\nCompiled using \"%s\" with\nSQLite %s [%s],\nzlib %s, " "and the following optional features enabled:\n\n", COMPILER_NAME, SQLITE_VERSION, SQLITE_SOURCE_ID, ZLIB_VERSION); #if defined(FOSSIL_ENABLE_SSL) ++count; fossil_print("\tSSL (%s)\n", OPENSSL_VERSION_TEXT); #endif #if defined(FOSSIL_ENABLE_TCL) ++count; fossil_print("\tTCL (Tcl %s)\n", TCL_PATCH_LEVEL); #endif #if defined(FOSSIL_ENABLE_TCL_STUBS) ++count; fossil_print("\tTCL_STUBS\n"); #endif #if defined(FOSSIL_ENABLE_JSON) ++count; fossil_print("\tJSON (API %s)\n", FOSSIL_JSON_API_VERSION); #endif if( !count ){ fossil_print("\tNo optional features were enabled.\n"); } } } /* ** COMMAND: help ** |
| | | | | | | | < < < |
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 |
void version_cmd(void){ fossil_print("This is fossil version " RELEASE_VERSION " " MANIFEST_VERSION " " MANIFEST_DATE " UTC\n"); if(!find_option("verbose","v",0)){ return; }else{ int count = 0; fossil_print("Compiled on %s %s using %s (%d-bit)\n", __DATE__, __TIME__, COMPILER_NAME, sizeof(void*)*8); fossil_print("SQLite %s [%s],\n", SQLITE_VERSION, SQLITE_SOURCE_ID); fossil_print("zlib %s\n", ZLIB_VERSION); #if defined(FOSSIL_ENABLE_SSL) ++count; fossil_print("SSL (%s)\n", OPENSSL_VERSION_TEXT); #endif #if defined(FOSSIL_ENABLE_TCL) ++count; fossil_print("TCL (Tcl %s)\n", TCL_PATCH_LEVEL); #endif #if defined(FOSSIL_ENABLE_TCL_STUBS) ++count; fossil_print("TCL_STUBS\n"); #endif #if defined(FOSSIL_ENABLE_JSON) ++count; fossil_print("JSON (API %s)\n", FOSSIL_JSON_API_VERSION); #endif } } /* ** COMMAND: help ** |