Merge branch 'tb/new-make-fix'
Workaround the overly picky HT/SP rule in newer GNU Make. * tb/new-make-fix: Makefile: remove accidental recipe prefix in conditionalmaint
commit
5ce6e0e242
8
Makefile
8
Makefile
|
@ -1704,16 +1704,16 @@ IMAP_SEND_LDFLAGS += $(OPENSSL_LINK) $(OPENSSL_LIBSSL) $(LIB_4_CRYPTO)
|
||||||
|
|
||||||
ifdef ZLIB_NG
|
ifdef ZLIB_NG
|
||||||
BASIC_CFLAGS += -DHAVE_ZLIB_NG
|
BASIC_CFLAGS += -DHAVE_ZLIB_NG
|
||||||
ifdef ZLIB_NG_PATH
|
ifdef ZLIB_NG_PATH
|
||||||
BASIC_CFLAGS += -I$(ZLIB_NG_PATH)/include
|
BASIC_CFLAGS += -I$(ZLIB_NG_PATH)/include
|
||||||
EXTLIBS += $(call libpath_template,$(ZLIB_NG_PATH)/$(lib))
|
EXTLIBS += $(call libpath_template,$(ZLIB_NG_PATH)/$(lib))
|
||||||
endif
|
endif
|
||||||
EXTLIBS += -lz-ng
|
EXTLIBS += -lz-ng
|
||||||
else
|
else
|
||||||
ifdef ZLIB_PATH
|
ifdef ZLIB_PATH
|
||||||
BASIC_CFLAGS += -I$(ZLIB_PATH)/include
|
BASIC_CFLAGS += -I$(ZLIB_PATH)/include
|
||||||
EXTLIBS += $(call libpath_template,$(ZLIB_PATH)/$(lib))
|
EXTLIBS += $(call libpath_template,$(ZLIB_PATH)/$(lib))
|
||||||
endif
|
endif
|
||||||
EXTLIBS += -lz
|
EXTLIBS += -lz
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue