From 9997b601c26264539391b5fb23a845a3000a9b3a Mon Sep 17 00:00:00 2001 From: Christophe Grenier Date: Sun, 19 Feb 2023 09:45:36 +0100 Subject: [PATCH] fidentify: report if iconv is used --- src/fidentify.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/fidentify.c b/src/fidentify.c index e1238183..cf3deb79 100644 --- a/src/fidentify.c +++ b/src/fidentify.c @@ -427,6 +427,13 @@ static void display_version(void) #endif #ifndef DISABLED_FOR_FRAMAC printf("libjpeg: %s, zlib: %s\n", td_jpeg_version(), td_zlib_version()); +#endif +#ifdef HAVE_ICONV + printf("iconv support: yes\n"); +#else + printf("iconv support: no\n"); +#endif +#ifndef DISABLED_FOR_FRAMAC printf("OS: %s\n" , get_os()); #endif }