diff options
author | Daniel Friesel <derf@finalrewind.org> | 2012-01-27 20:23:03 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2012-01-27 20:23:03 +0100 |
commit | 4252f6eb96ef00d5907dceda3af8c581917d7aa1 (patch) | |
tree | 7850c29f32d7bbb2be61d865b2900f24c7d54eb7 /config.mk | |
parent | f32e4f8b3876b5cf063b92fa8988a7bda3672795 (diff) |
optional exif support (build with exif=1), initial patch import
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -21,6 +21,7 @@ curl ?= 1 debug ?= 0 help ?= 0 xinerama ?= 1 +exif ?= 0 ifeq (${curl},1) CFLAGS += -DHAVE_LIBCURL @@ -53,6 +54,12 @@ else MAN_XINERAMA = disabled endif +ifeq (${exif},1) + CFLAGS += -DHAVE_LIBEXIF + LDLIBS += -lexif +endif + + # Uncomment this to use dmalloc #CFLAGS += -DWITH_DMALLOC |