diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-04-18 08:17:01 -0400 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-04-18 08:17:01 -0400 |
commit | 729c429769e7409a695fa69bfa05c20ef3f41b79 (patch) | |
tree | b6c16c3045c2e9bb35bed01f14a5e1354fafdcf1 /config.mk | |
parent | 6920ca2aa23ffe9fc7da3eaf5dbbae2cd8c2788e (diff) |
feh(1): Distinguish between enabled/disabled features more clearly
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -50,9 +50,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) @@ -65,9 +65,9 @@ endif ifeq (${verscmp},1) CFLAGS += -DHAVE_VERSCMP - MAN_VERSCMP = enabled + MAN_VERSCMP = available else - MAN_VERSCMP = disabled + MAN_VERSCMP = not available endif ifeq (${xinerama},1) @@ -81,9 +81,9 @@ endif ifeq (${exif},1) CFLAGS += -DHAVE_LIBEXIF LDLIBS += -lexif - MAN_EXIF = enabled + MAN_EXIF = available else - MAN_EXIF = disabled + MAN_EXIF = not available endif ifeq (${inotify},1) |