diff options
author | Bert <ber.t@gmx.com> | 2011-09-12 19:28:02 +0200 |
---|---|---|
committer | Bert <ber.t@gmx.com> | 2011-09-12 19:28:02 +0200 |
commit | dad06c7561d6f0ca0ea8d7f104ade04ab0e051fd (patch) | |
tree | d2dd7b45aa80c926cc9b895c776c403b2366ea13 /options.c | |
parent | 32a65201bb2114790d98a73427fab80f41d94b97 (diff) |
Much nicer handling of compile-time features
- *_SUPPORT enabled in config.h
- XLIBS helper app prints lib flags needed for current settings
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -17,6 +17,7 @@ */ #define _POSIX_C_SOURCE 200112L +#define _FEATURE_CONFIG #define _IMAGE_CONFIG #include <stdlib.h> @@ -39,12 +40,12 @@ void print_usage() { void print_version() { printf("sxiv %s - Simple X Image Viewer\n", VERSION); printf("Additional features included (+) or not (-): %s, %s\n", -#ifdef EXIF_SUPPORT +#if EXIF_SUPPORT "+exif", #else "-exif", #endif -#ifdef GIF_SUPPORT +#if GIF_SUPPORT "+gif" #else "-gif" |