Browse Source

bzip2/lzma: DECOMPRESS_GZIP should select ZLIB_INFLATE

Impact: Partial resolution of build failure

DECOMPRESS_GZIP is just a common-interface wrapper around the
zlib_inflate code; it thus need to select it.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin 16 years ago
parent
commit
7856a16ea0
1 changed files with 1 additions and 0 deletions
  1. 1 0
      lib/Kconfig

+ 1 - 0
lib/Kconfig

@@ -102,6 +102,7 @@ config LZO_DECOMPRESS
 # ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.)
 # ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.)
 #
 #
 config DECOMPRESS_GZIP
 config DECOMPRESS_GZIP
+	select ZLIB_INFLATE
 	tristate
 	tristate
 
 
 config DECOMPRESS_BZIP2
 config DECOMPRESS_BZIP2