diff options
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -6,6 +6,7 @@ curl ?= 1 debug ?= 0 exif ?= 0 help ?= 0 +mkstemps ?= 1 verscmp ?= 1 xinerama ?= 1 @@ -63,6 +64,10 @@ ifeq (${stat64},1) CFLAGS += -D_FILE_OFFSET_BITS=64 endif +ifeq (${mkstemps},1) + CFLAGS += -DHAVE_MKSTEMPS +endif + ifeq (${verscmp},1) CFLAGS += -DHAVE_STRVERSCMP endif |