From 4252f6eb96ef00d5907dceda3af8c581917d7aa1 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 27 Jan 2012 20:23:03 +0100 Subject: optional exif support (build with exif=1), initial patch import --- src/filelist.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/filelist.h') diff --git a/src/filelist.h b/src/filelist.h index 9ec302c..00e36e8 100644 --- a/src/filelist.h +++ b/src/filelist.h @@ -26,6 +26,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #ifndef FILELIST_H #define FILELIST_H +#ifdef HAVE_LIBEXIF +#include +#endif + struct __feh_file { char *filename; char *caption; @@ -33,6 +37,9 @@ struct __feh_file { /* info stuff */ feh_file_info *info; /* only set when needed */ +#ifdef HAVE_LIBEXIF + ExifData *ed; +#endif }; struct __feh_file_info { -- cgit v1.2.3