aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'options.c')
-rw-r--r--options.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/options.c b/options.c
index ef874ac..89dfe20 100644
--- a/options.c
+++ b/options.c
@@ -50,6 +50,27 @@ void print_usage(void)
static void print_version(void)
{
printf("%s %s\n", progname, VERSION);
+ fputs("features: "
+#if HAVE_INOTIFY
+ "+inotify "
+#endif
+#if HAVE_LIBFONTS
+ "+statusbar "
+#endif
+#if HAVE_LIBEXIF
+ "+exif "
+#endif
+#if HAVE_IMLIB2_MULTI_FRAME
+ "+multiframe "
+#else
+ #if HAVE_LIBGIF
+ "+giflib "
+ #endif
+ #if HAVE_LIBWEBP
+ "+libwebp "
+ #endif
+#endif
+ "\n", stdout);
}
void parse_options(int argc, char **argv)