From 8a4239e0c215a3fb039b34134f6aac70e2977169 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 11 Mar 2015 23:33:05 +0100 Subject: player: dump list of satisfied deps instead of config.h with -v Starting to get tired of seeing the full config.h in verbose output every time. Make it slightly more elegant by outputting the list of satisfied dependencies instead. --- player/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player') diff --git a/player/main.c b/player/main.c index 788977de8f..b85813a2f7 100644 --- a/player/main.c +++ b/player/main.c @@ -130,7 +130,7 @@ void mp_print_version(struct mp_log *log, int always) // Only in verbose mode. if (!always) { mp_msg(log, MSGL_V, "Configuration: " CONFIGURATION "\n"); - mp_msg(log, MSGL_V, "config.h:\n%s\n", FULLCONFIG); + mp_msg(log, MSGL_V, "List of enabled features: %s\n", FULLCONFIG); } } -- cgit v1.2.3