Annotation of embedaddon/axTLS/config/Config.in, revision 1.1.1.1

1.1       misho       1: #
                      2: # For a description of the syntax of this configuration file,
                      3: # see scripts/config/Kconfig-language.txt
                      4: #
                      5: 
                      6: mainmenu "axTLS Configuration"
                      7: 
                      8: config HAVE_DOT_CONFIG
                      9:     bool
                     10:     default y
                     11: 
                     12: choice 
                     13:     prompt "Platform"
                     14:     default CONFIG_PLATFORM_LINUX
                     15: 
                     16: config CONFIG_PLATFORM_LINUX
                     17:     bool "Linux"
                     18: 
                     19: config CONFIG_PLATFORM_CYGWIN
                     20:     bool "Cygwin"
                     21: 
                     22: config CONFIG_PLATFORM_WIN32
                     23:     bool "Win32"
                     24: 
                     25: endchoice 
                     26: 
                     27: menu "General Configuration"
                     28: 
                     29: config PREFIX
                     30:     string "axTLS installation prefix"
                     31:     depends on !CONFIG_PLATFORM_WIN32
                     32:     default "/usr/local"
                     33:     help
                     34:       Define your directory to install axTLS files/subdirs in.
                     35: 
                     36: config CONFIG_DEBUG
                     37:     bool "Build axTLS with Debugging symbols"
                     38:     default n
                     39:     help
                     40:       Say Y here if you wish to compile axTLS with debugging symbols.
                     41:       This will allow you to use a debugger to examine axTLS internals.  
                     42:       This increases the size of the binary considerably and should only be 
                     43:       used when doing development.
                     44:       If you are doing development and want to debug axTLS, answer Y.
                     45: 
                     46:       Most people should answer N.
                     47: 
                     48: config CONFIG_STRIP_UNWANTED_SECTIONS
                     49:     depends on !CONFIG_PLATFORM_WIN32 && !CONFIG_DEBUG
                     50:     bool "Strip unwanted sections from elf binaries"
                     51:     default y
                     52:     help
                     53:         Strip unwanted sections from the resulting binaries
                     54: 
                     55: menu "Microsoft Compiler Options"
                     56: depends on CONFIG_PLATFORM_WIN32
                     57: 
                     58: choice 
                     59:     prompt "Compiler"
                     60:     depends on CONFIG_PLATFORM_WIN32
                     61:     default CONFIG_VISUAL_STUDIO_10_0
                     62: 
                     63: config CONFIG_VISUAL_STUDIO_7_0
                     64:     bool "Visual Studio 7.0 (2003)"
                     65:     help 
                     66:         Use Microsoft's Visual Studio 2003 platform.
                     67: 
                     68: config CONFIG_VISUAL_STUDIO_8_0
                     69:     bool "Visual Studio 8.0 (2005)"
                     70:     help 
                     71:         Use Microsoft's Visual Studio 2005 platform.
                     72: 
                     73: config CONFIG_VISUAL_STUDIO_10_0
                     74:     bool "Visual Studio 10.0 (2010)"
                     75:     help 
                     76:         Use Microsoft's Visual Studio 2010 platform.
                     77: endchoice
                     78: 
                     79: config CONFIG_VISUAL_STUDIO_7_0_BASE
                     80:     string "Base"
                     81:     depends on CONFIG_VISUAL_STUDIO_7_0
                     82:     default "c:\\Program Files\\Microsoft Visual Studio .NET 2003"
                     83: 
                     84: config CONFIG_VISUAL_STUDIO_8_0_BASE
                     85:     string "Base"
                     86:     depends on CONFIG_VISUAL_STUDIO_8_0
                     87:     default "c:\\Program Files\\Microsoft Visual Studio 8"
                     88: 
                     89: config CONFIG_VISUAL_STUDIO_10_0_BASE
                     90:     string "Base"
                     91:     depends on CONFIG_VISUAL_STUDIO_10_0
                     92:     default "c:\\Program Files\\Microsoft Visual Studio 10.0"
                     93: endmenu
                     94: 
                     95: config CONFIG_EXTRA_CFLAGS_OPTIONS
                     96:     string "Any extra CFLAGS options for the compiler?"
                     97:     help
                     98:         Do you want to pass any extra CFLAGS options to the compiler as  
                     99:         you build axTLS? If so, this is the option for you...  For
                    100:         example, if you want to add some simple compiler switches (like
                    101:         -march=i686), or check for warnings using -Werror, just those 
                    102:         options here.
                    103: 
                    104: config CONFIG_EXTRA_LDFLAGS_OPTIONS
                    105:     string "Any extra LDFLAGS options for the compiler?"
                    106:     help
                    107:         Do you want to pass any extra LDFLAGS options to the compiler?
                    108: 
                    109: endmenu
                    110: 
                    111: source ssl/Config.in
                    112: config CONFIG_AXTLSWRAP
                    113:     depends on !CONFIG_PLATFORM_WIN32
                    114:     bool "Enable axtlswrap"
                    115:     default n
                    116:     help
                    117:         axtlswrap is similar to sslwrap - http://www.rickk.com/sslwrap. 
                    118:         It enables SSL for processes that don't have native SSL support.
                    119: 
                    120: config CONFIG_AXHTTPD
                    121:     bool "Enable HTTP/HTTPS Web Server"
                    122:     default y
                    123:     help
                    124:         Build the AXHTTPD web server
                    125: 
                    126: source httpd/Config.in
                    127: source bindings/Config.in
                    128: source samples/Config.in
                    129: source ssl/BigIntConfig.in
                    130: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>