File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / axTLS / config / Config.in
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Fri Sep 28 11:55:55 2012 UTC (11 years, 8 months ago) by misho
Branches: v1_4_8, MAIN
CVS tags: datecs, HEAD
axTLS

#
# For a description of the syntax of this configuration file,
# see scripts/config/Kconfig-language.txt
#

mainmenu "axTLS Configuration"

config HAVE_DOT_CONFIG
    bool
    default y

choice 
    prompt "Platform"
    default CONFIG_PLATFORM_LINUX

config CONFIG_PLATFORM_LINUX
    bool "Linux"

config CONFIG_PLATFORM_CYGWIN
    bool "Cygwin"

config CONFIG_PLATFORM_WIN32
    bool "Win32"

endchoice 

menu "General Configuration"

config PREFIX
    string "axTLS installation prefix"
    depends on !CONFIG_PLATFORM_WIN32
    default "/usr/local"
    help
      Define your directory to install axTLS files/subdirs in.

config CONFIG_DEBUG
    bool "Build axTLS with Debugging symbols"
    default n
    help
      Say Y here if you wish to compile axTLS with debugging symbols.
      This will allow you to use a debugger to examine axTLS internals.  
      This increases the size of the binary considerably and should only be 
      used when doing development.
      If you are doing development and want to debug axTLS, answer Y.

      Most people should answer N.

config CONFIG_STRIP_UNWANTED_SECTIONS
    depends on !CONFIG_PLATFORM_WIN32 && !CONFIG_DEBUG
    bool "Strip unwanted sections from elf binaries"
    default y
    help
        Strip unwanted sections from the resulting binaries

menu "Microsoft Compiler Options"
depends on CONFIG_PLATFORM_WIN32

choice 
    prompt "Compiler"
    depends on CONFIG_PLATFORM_WIN32
    default CONFIG_VISUAL_STUDIO_10_0

config CONFIG_VISUAL_STUDIO_7_0
    bool "Visual Studio 7.0 (2003)"
    help 
        Use Microsoft's Visual Studio 2003 platform.

config CONFIG_VISUAL_STUDIO_8_0
    bool "Visual Studio 8.0 (2005)"
    help 
        Use Microsoft's Visual Studio 2005 platform.

config CONFIG_VISUAL_STUDIO_10_0
    bool "Visual Studio 10.0 (2010)"
    help 
        Use Microsoft's Visual Studio 2010 platform.
endchoice

config CONFIG_VISUAL_STUDIO_7_0_BASE
    string "Base"
    depends on CONFIG_VISUAL_STUDIO_7_0
    default "c:\\Program Files\\Microsoft Visual Studio .NET 2003"

config CONFIG_VISUAL_STUDIO_8_0_BASE
    string "Base"
    depends on CONFIG_VISUAL_STUDIO_8_0
    default "c:\\Program Files\\Microsoft Visual Studio 8"

config CONFIG_VISUAL_STUDIO_10_0_BASE
    string "Base"
    depends on CONFIG_VISUAL_STUDIO_10_0
    default "c:\\Program Files\\Microsoft Visual Studio 10.0"
endmenu

config CONFIG_EXTRA_CFLAGS_OPTIONS
    string "Any extra CFLAGS options for the compiler?"
    help
        Do you want to pass any extra CFLAGS options to the compiler as  
        you build axTLS? If so, this is the option for you...  For
        example, if you want to add some simple compiler switches (like
        -march=i686), or check for warnings using -Werror, just those 
        options here.

config CONFIG_EXTRA_LDFLAGS_OPTIONS
    string "Any extra LDFLAGS options for the compiler?"
    help
        Do you want to pass any extra LDFLAGS options to the compiler?

endmenu

source ssl/Config.in
config CONFIG_AXTLSWRAP
    depends on !CONFIG_PLATFORM_WIN32
    bool "Enable axtlswrap"
    default n
    help
        axtlswrap is similar to sslwrap - http://www.rickk.com/sslwrap. 
        It enables SSL for processes that don't have native SSL support.

config CONFIG_AXHTTPD
    bool "Enable HTTP/HTTPS Web Server"
    default y
    help
        Build the AXHTTPD web server

source httpd/Config.in
source bindings/Config.in
source samples/Config.in
source ssl/BigIntConfig.in


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