summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk43
1 files changed, 37 insertions, 6 deletions
diff --git a/config.mk b/config.mk
index 93bb1c3..5cad703 100644
--- a/config.mk
+++ b/config.mk
@@ -2,17 +2,22 @@ PACKAGE ?= feh
VERSION ?= ${shell git describe --dirty}
app ?= 0
-cam ?= 0
curl ?= 1
debug ?= 0
+exif ?= 0
help ?= 0
+magic ?= 0
+mkstemps ?= 1
+verscmp ?= 1
xinerama ?= 1
-exif ?= 0
# Prefix for all installed files
PREFIX ?= /usr/local
ICON_PREFIX ?= ${DESTDIR}${PREFIX}/share/icons
+# icons in /usr/share/local/icons (and other prefixes != /usr) are not
+# generally supported. So ignore PREFIX and always install icons into
+# /usr/share/icons if the user wants to install feh on their local machine.
ifeq (${app},1)
ICON_PREFIX = /usr/share/icons
endif
@@ -34,6 +39,9 @@ scalable_icon_dir = ${icon_dir}/scalable/apps
CFLAGS ?= -g -O2
CFLAGS += -Wall -Wextra -pedantic
+# Settings for glibc >= 2.19 - may need to be adjusted for other systems
+CFLAGS += -std=c11 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_DARWIN_C_SOURCE
+
ifeq (${curl},1)
CFLAGS += -DHAVE_LIBCURL
LDLIBS += -lcurl
@@ -44,9 +52,9 @@ endif
ifeq (${debug},1)
CFLAGS += -DDEBUG -O0
- MAN_DEBUG = . This is a debug build.
+ MAN_DEBUG = This is a debug build.
else
- MAN_DEBUG =
+ MAN_DEBUG = .
endif
ifeq (${help},1)
@@ -57,6 +65,22 @@ ifeq (${stat64},1)
CFLAGS += -D_FILE_OFFSET_BITS=64
endif
+ifeq (${mkstemps},1)
+ CFLAGS += -DHAVE_MKSTEMPS
+endif
+
+ifeq (${magic},1)
+ CFLAGS += -DHAVE_LIBMAGIC
+ LDLIBS += -lmagic
+ MAN_MAGIC = enabled
+else
+ MAN_MAGIC = disabled
+endif
+
+ifeq (${verscmp},1)
+ CFLAGS += -DHAVE_STRVERSCMP
+endif
+
ifeq (${xinerama},1)
CFLAGS += -DHAVE_LIBXINERAMA
LDLIBS += -lXinerama
@@ -68,9 +92,16 @@ endif
ifeq (${exif},1)
CFLAGS += -DHAVE_LIBEXIF
LDLIBS += -lexif
- MAN_EXIF = enabled
+ MAN_EXIF = available
+else
+ MAN_EXIF = not available
+endif
+
+ifeq (${inotify},1)
+ CFLAGS += -DHAVE_INOTIFY
+ MAN_INOTIFY = enabled
else
- MAN_EXIF = disabled
+ MAN_INOTIFY = disabled
endif
MAN_DATE ?= ${shell date '+%B %d, %Y'}