Get it to compile again ...
[linux-2.6/linux-mips.git] / lib / Kconfig
blob1203bd92136c703ebc8a891b797e3556c741bd0a
2 # Library configuration
5 menu "Library routines"
7 config CRC32
8         tristate "CRC32 functions"
9         help
10           This option is provided for the case where no in-kernel-tree
11           modules require CRC32 functions, but a module built outside the
12           kernel tree does. Such modules that use library CRC32 functions
13           require M here.
16 # Do we need the compression support?
18 config ZLIB_INFLATE
19         tristate
20         default y if CRAMFS=y || PPP_DEFLATE=y || JFFS2_FS=y || ZISOFS_FS=y || BINFMT_ZFLAT=y || CRYPTO_DEFLATE=y
21         default m if CRAMFS=m || PPP_DEFLATE=m || JFFS2_FS=m || ZISOFS_FS=m || BINFMT_ZFLAT=m || CRYPTO_DEFLATE=m
23 config ZLIB_DEFLATE
24         tristate
25         default m if PPP_DEFLATE!=y && JFFS2_FS!=y && CRYPTO_DEFLATE!=y && \
26                 (PPP_DEFLATE=m || JFFS2_FS=m || CRYPTO_DEFLATE=m)
27         default y if PPP_DEFLATE=y || JFFS2_FS=y || CRYPTO_DEFLATE=y
29 endmenu