summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristophe Grenier <grenier@cgsecurity.org>2023-02-19 09:45:36 +0100
committerChristophe Grenier <grenier@cgsecurity.org>2023-02-19 09:45:36 +0100
commit9997b601c26264539391b5fb23a845a3000a9b3a (patch)
treefbd8eba85823d7355640cefa9e63b2607f1b4b06 /src
parent972217f99390b095fe7487441f0b3b325e5e6df2 (diff)
fidentify: report if iconv is usedHEADmaster
Diffstat (limited to 'src')
-rw-r--r--src/fidentify.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/fidentify.c b/src/fidentify.c
index e123818..cf3deb7 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
}