diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-02-28 17:56:13 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-02-28 17:56:13 +0100 |
commit | e6a535093596d3732628b8114386eb9b72929a02 (patch) | |
tree | 09279aaf64051767df0880faaaf22636856770eb /config.mk | |
parent | 8eaa39234a54fcdd3c9050a01790b152598af80d (diff) | |
parent | 5a2db8f2ffc4371d2e88a65567d85663e6d16b36 (diff) |
Merge branch 'ulteq-natural-sort'
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -5,9 +5,10 @@ app ?= 0 cam ?= 0 curl ?= 1 debug ?= 0 +exif ?= 0 help ?= 0 +verscmp ?= 1 xinerama ?= 1 -exif ?= 0 # Prefix for all installed files PREFIX ?= /usr/local @@ -63,6 +64,13 @@ ifeq (${stat64},1) CFLAGS += -D_FILE_OFFSET_BITS=64 endif +ifeq (${verscmp},1) + CFLAGS += -DHAVE_VERSCMP + MAN_VERSCMP = enabled +else + MAN_VERSCMP = disabled +endif + ifeq (${xinerama},1) CFLAGS += -DHAVE_LIBXINERAMA LDLIBS += -lXinerama |