Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Even more refinements to the "fossil version --verbose" output. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
340711f48c836b0483987a4f6af1d6f3 |
| User & Date: | drh 2013-06-18 23:17:59.415 |
Context
|
2013-06-19
| ||
| 02:50 | Update ignore-glob setting file to include commonly used external directories. ... (check-in: 5ef811b726 user: mistachkin tags: trunk) | |
|
2013-06-18
| ||
| 23:17 | Even more refinements to the "fossil version --verbose" output. ... (check-in: 340711f48c user: drh tags: trunk) | |
| 23:12 | Improved formatting and additional information output for "fossil version --verbose". ... (check-in: 1b0e8cf9c0 user: drh tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
783 784 785 786 787 788 789 |
*/
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{
| < | < < < < | 783 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 |
*/
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{
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("zlib %s\n", ZLIB_VERSION);
#if defined(FOSSIL_ENABLE_SSL)
fossil_print("SSL (%s)\n", OPENSSL_VERSION_TEXT);
#endif
#if defined(FOSSIL_ENABLE_TCL)
fossil_print("TCL (Tcl %s)\n", TCL_PATCH_LEVEL);
#endif
#if defined(FOSSIL_ENABLE_TCL_STUBS)
fossil_print("TCL_STUBS\n");
#endif
#if defined(FOSSIL_ENABLE_JSON)
fossil_print("JSON (API %s)\n", FOSSIL_JSON_API_VERSION);
#endif
}
}
/*
|
| ︙ | ︙ |