talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit a8a52797f33b4ceddf8841094c4384637af47306
parent 7c16b7e353e2e3504b5c2fe675046a6d81425634
Author: Ricardo Mones <ricardo@mones.org>
Date:   Fri, 31 Mar 2017 20:05:25 +0200

Add missing library to output of --version-full

Diffstat:
Msrc/main.c | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/src/main.c b/src/main.c @@ -65,6 +65,9 @@ #ifdef HAVE_VALGRIND #include <valgrind.h> #endif +#ifdef HAVE_SVG +#include <librsvg/rsvg.h> +#endif #include "claws.h" #include "main.h" @@ -851,6 +854,12 @@ static void main_dump_features_list(gboolean show_debug_only) else g_print(" NetworkManager\n"); #endif +#if HAVE_SVG + if (show_debug_only) + debug_print(" librSVG " LIBRSVG_VERSION "\n"); + else + g_print(" librSVG " LIBRSVG_VERSION "\n"); +#endif } #ifdef HAVE_DBUS_GLIB