Hi, This fixes a minor regression that occured with Jeremy's recent reworking of the build system. I guess he wasn't dealing with compressed images and thus didn't notice that zlib support had been disabled. The fix involves updating an #ifdef to use the new symbol, and ensuring that -lz is passed to the linker as neccessary. Cc: Jeremy Kerr <jk at ozlabs.org> Signed-off-by: Simon Horman <horms at verge.net.au> --- kexec/Makefile | 1 + kexec/kexec.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) Index: kexec-tools-testing/kexec/kexec.c =================================================================== --- kexec-tools-testing.orig/kexec/kexec.c 2008-02-19 12:21:04.000000000 +0900 +++ kexec-tools-testing/kexec/kexec.c 2008-02-19 12:21:15.000000000 +0900 @@ -32,7 +32,7 @@ #include "config.h" -#ifdef HAVE_ZLIB_H +#ifdef HAVE_LIBZ #include <zlib.h> #endif #include <sha256.h> @@ -446,7 +446,7 @@ char *slurp_file_len(const char *filenam return buf; } -#if HAVE_ZLIB_H +#if HAVE_LIBZ char *slurp_decompress_file(const char *filename, off_t *r_size) { gzFile fp; Index: kexec-tools-testing/kexec/Makefile =================================================================== --- kexec-tools-testing.orig/kexec/Makefile 2008-02-19 12:40:05.000000000 +0900 +++ kexec-tools-testing/kexec/Makefile 2008-02-19 12:41:23.000000000 +0900 @@ -36,6 +36,7 @@ KEXEC_MANPAGE = $(MANDIR)/man8/kexec.8 -include $(KEXEC_DEPS) +$(KEXEC): LDFLAGS+=$(LIBS) $(KEXEC): $(KEXEC_OBJS) $(UTIL_LIB) @$(MKDIR) -p $(@D) $(LINK.o) -o $@ $^