diff options
author | dequis <dx@dxzone.com.ar> | 2015-11-21 15:02:10 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-11-21 15:02:10 -0300 |
commit | 2f8e3cab9bcc724dfed40bfcd2434fc9a415398e (patch) | |
tree | f17f7d6aa7969848aac6a0981da7f9bbef569a00 /conf.c | |
parent | fa8f57b7f51a44ee0870d1bf29646007e087f24e (diff) |
Show ./configure args in bitlbee -V, config.h and Makefile.settings
Diffstat (limited to 'conf.c')
-rw-r--r-- | conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -139,8 +139,8 @@ conf_t *conf_load(int argc, char *argv[]) conf_free(conf); return NULL; } else if (opt == 'V') { - printf("BitlBee %s\nAPI version %06x\n", - BITLBEE_VERSION, BITLBEE_VERSION_CODE); + printf("BitlBee %s\nAPI version %06x\nConfigure args: %s\n", + BITLBEE_VERSION, BITLBEE_VERSION_CODE, BITLBEE_CONFIGURE_ARGS); conf_free(conf); return NULL; } else if (opt == 'u') { |