From: Nick Terrell Date: Wed, 22 Mar 2017 19:33:08 +0000 (-0700) Subject: Add $(FLAGS) when testing for zlib/lzma support. X-Git-Tag: v1.2.0^2~91^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=741e3e831489266c8174cb157ca59b1f9bafd5bc;p=thirdparty%2Fzstd.git Add $(FLAGS) when testing for zlib/lzma support. * If zlib/lzma isn't in the usual spot, it won't be used, even if `$CFLAGS` and `$LDFLAGS` add the location it is in. * Update the test code snippets to not trigger any warnings. --- diff --git a/programs/Makefile b/programs/Makefile index bb91e069a..5c3fd19e7 100644 --- a/programs/Makefile +++ b/programs/Makefile @@ -85,7 +85,7 @@ endif # zlib detection NO_ZLIB_MSG := ==> no zlib, building zstd without .gz support VOID = /dev/null -HAVE_ZLIB := $(shell printf '\#include \nint main(){}' | $(CC) -o have_zlib -x c - -lz 2> $(VOID) && rm have_zlib$(EXT) && echo 1 || echo 0) +HAVE_ZLIB := $(shell printf '\#include \nint main(void) { return 0; }' | $(CC) $(FLAGS) -o have_zlib -x c - -lz 2> $(VOID) && rm have_zlib$(EXT) && echo 1 || echo 0) ifeq ($(HAVE_ZLIB), 1) ZLIB_MSG := ==> building zstd with .gz compression support ZLIBCPP = -DZSTD_GZCOMPRESS -DZSTD_GZDECOMPRESS @@ -95,7 +95,7 @@ ZLIB_MSG := $(NO_ZLIB_MSG) endif # lzma detection NO_LZMA_MSG := ==> no liblzma, building zstd without .xz/.lzma support -HAVE_LZMA := $(shell printf '\#include \nint main(){}' | $(CC) -o have_lzma -x c - -llzma 2> $(VOID) && rm have_lzma$(EXT) && echo 1 || echo 0) +HAVE_LZMA := $(shell printf '\#include \nint main(void) { return 0; }' | $(CC) $(FLAGS) -o have_lzma -x c - -llzma 2> $(VOID) && rm have_lzma$(EXT) && echo 1 || echo 0) ifeq ($(HAVE_LZMA), 1) LZMA_MSG := ==> building zstd with .xz/.lzma compression support LZMACPP = -DZSTD_LZMACOMPRESS -DZSTD_LZMADECOMPRESS