diff options
| -rw-r--r-- | src/options.c | 18 | 
1 files changed, 17 insertions, 1 deletions
| diff --git a/src/options.c b/src/options.c index caa9aa4..bbef6ef 100644 --- a/src/options.c +++ b/src/options.c @@ -849,7 +849,23 @@ static void check_options(void)  static void show_version(void)  { -	printf(PACKAGE " version " VERSION "\n"); +	puts(PACKAGE " version " VERSION); +	puts("Compile-time switches: " + +#ifdef HAVE_LIBCURL +		"curl " +#endif + +#ifdef DEBUG +		"debug " +#endif + +#ifdef HAVE_LIBXINERAMA +		"xinerama " +#endif + +	); +  	exit(0);  } | 
