From dad06c7561d6f0ca0ea8d7f104ade04ab0e051fd Mon Sep 17 00:00:00 2001 From: Bert Date: Mon, 12 Sep 2011 19:28:02 +0200 Subject: Much nicer handling of compile-time features - *_SUPPORT enabled in config.h - XLIBS helper app prints lib flags needed for current settings --- thumbs.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'thumbs.c') diff --git a/thumbs.c b/thumbs.c index fa54576..85dd34f 100644 --- a/thumbs.c +++ b/thumbs.c @@ -17,6 +17,7 @@ */ #define _POSIX_C_SOURCE 200112L +#define _FEATURE_CONFIG #define _THUMBS_CONFIG #include @@ -30,7 +31,7 @@ #include "util.h" #include "config.h" -#ifdef EXIF_SUPPORT +#if EXIF_SUPPORT void exif_auto_orientate(const fileinfo_t*); #endif @@ -252,7 +253,7 @@ bool tns_load(tns_t *tns, int n, const fileinfo_t *file, /* avoid unused-but-set-variable warning */ (void) fmt; -#ifdef EXIF_SUPPORT +#if EXIF_SUPPORT if (!cache_hit && !strcmp(fmt, "jpeg")) exif_auto_orientate(file); #endif -- cgit v1.2.3-54-g00ecf