summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2012-01-27 20:23:03 +0100
committerDaniel Friesel <derf@finalrewind.org>2012-01-27 20:23:03 +0100
commit4252f6eb96ef00d5907dceda3af8c581917d7aa1 (patch)
tree7850c29f32d7bbb2be61d865b2900f24c7d54eb7 /config.mk
parentf32e4f8b3876b5cf063b92fa8988a7bda3672795 (diff)
optional exif support (build with exif=1), initial patch import
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/config.mk b/config.mk
index f6d4031..d2b038b 100644
--- a/config.mk
+++ b/config.mk
@@ -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