753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
|
*/
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 with the following features enabled:\n",
COMPILER_NAME);
int count = 0;
#if defined(FOSSIL_ENABLE_SSL)
++count;
fossil_print("\tSSL\n");
#endif
#if defined(FOSSIL_ENABLE_TCL)
++count;
fossil_print("\tTCL\n");
|
>
<
|
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
|
*/
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 with the following features enabled:\n",
COMPILER_NAME);
#if defined(FOSSIL_ENABLE_SSL)
++count;
fossil_print("\tSSL\n");
#endif
#if defined(FOSSIL_ENABLE_TCL)
++count;
fossil_print("\tTCL\n");
|