summaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorBert Münnich <ber.t@gmx.com>2012-02-11 02:42:52 +0100
committerBert Münnich <ber.t@gmx.com>2012-02-11 02:42:52 +0100
commitef0ed3226428c00507e76bdda77c522729ed6809 (patch)
tree41f4a1675c6a5fada955d331485010d5d0863590 /options.c
parentc3c95ab2187037793f9a827a8930eb4080337487 (diff)
downloadnsxiv-ef0ed3226428c00507e76bdda77c522729ed6809.tar.zst
Removed exif support; made gif support non-optional
Diffstat (limited to 'options.c')
-rw-r--r--options.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/options.c b/options.c
index 5c45e5d..26c1339 100644
--- a/options.c
+++ b/options.c
@@ -17,7 +17,6 @@
*/
#define _POSIX_C_SOURCE 200112L
-#define _FEATURE_CONFIG
#define _IMAGE_CONFIG
#include <stdlib.h>
@@ -39,18 +38,6 @@ void print_usage(void) {
void print_version(void) {
printf("sxiv %s - Simple X Image Viewer\n", VERSION);
- printf("Additional features included (+) or not (-): %s, %s\n",
-#if EXIF_SUPPORT
- "+exif",
-#else
- "-exif",
-#endif
-#if GIF_SUPPORT
- "+gif"
-#else
- "-gif"
-#endif
- );
}
void parse_options(int argc, char **argv) {