The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/lib/Config.in

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #
    2 # Library configuration
    3 #
    4 mainmenu_option next_comment
    5 comment 'Library routines'
    6 
    7 tristate 'CRC32 functions' CONFIG_CRC32
    8 
    9 #
   10 # Do we need the compression support?
   11 #
   12 if [ "$CONFIG_CRAMFS" = "y" -o \
   13      "$CONFIG_PPP_DEFLATE" = "y" -o \
   14      "$CONFIG_CRYPTO_DEFLATE" = "y" -o \
   15      "$CONFIG_JFFS2_FS" = "y" -o \
   16      "$CONFIG_ZISOFS_FS" = "y" ]; then
   17    define_tristate CONFIG_ZLIB_INFLATE y
   18 else
   19   if [ "$CONFIG_CRAMFS" = "m" -o \
   20        "$CONFIG_PPP_DEFLATE" = "m" -o \
   21        "$CONFIG_CRYPTO_DEFLATE" = "m" -o \
   22        "$CONFIG_JFFS2_FS" = "m" -o \
   23        "$CONFIG_ZISOFS_FS" = "m" ]; then
   24      define_tristate CONFIG_ZLIB_INFLATE m
   25   else
   26      tristate 'zlib decompression support' CONFIG_ZLIB_INFLATE
   27   fi
   28 fi
   29 
   30 if [ "$CONFIG_PPP_DEFLATE" = "y" -o \
   31      "$CONFIG_CRYPTO_DEFLATE" = "y" -o \
   32      "$CONFIG_JFFS2_FS" = "y" ]; then
   33    define_tristate CONFIG_ZLIB_DEFLATE y
   34 else
   35   if [ "$CONFIG_PPP_DEFLATE" = "m" -o \
   36        "$CONFIG_CRYPTO_DEFLATE" = "m" -o \
   37        "$CONFIG_JFFS2_FS" = "m" ]; then
   38      define_tristate CONFIG_ZLIB_DEFLATE m
   39   else
   40      tristate 'zlib compression support' CONFIG_ZLIB_DEFLATE
   41   fi
   42 fi
   43 
   44 endmenu

Cache object: 21bfa53cd222e352c726bcfcdef8c592


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.