diff options
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 |