Add axTLS sourcecode
[project/luci.git] / libs / nixio / axTLS / config / Config.in
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_7_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 endchoice
74
75 config CONFIG_VISUAL_STUDIO_7_0_BASE
76     string "Base"
77     depends on CONFIG_VISUAL_STUDIO_7_0
78     default "c:\\Program Files\\Microsoft Visual Studio .NET 2003"
79
80 config CONFIG_VISUAL_STUDIO_8_0_BASE
81     string "Base"
82     depends on CONFIG_VISUAL_STUDIO_8_0
83     default "c:\\Program Files\\Microsoft Visual Studio 8"
84
85 endmenu
86
87 config CONFIG_EXTRA_CFLAGS_OPTIONS
88     string "Any extra CFLAGS options for the compiler?"
89     help
90         Do you want to pass any extra CFLAGS options to the compiler as  
91         you build axTLS? If so, this is the option for you...  For
92         example, if you want to add some simple compiler switches (like
93         -march=i686), or check for warnings using -Werror, just those 
94         options here.
95
96 config CONFIG_EXTRA_LDFLAGS_OPTIONS
97     string "Any extra LDFLAGS options for the compiler?"
98     help
99         Do you want to pass any extra LDFLAGS options to the compiler?
100
101 endmenu
102
103 source ssl/Config.in
104 config CONFIG_AXHTTPD
105     bool "Enable HTTP/HTTPS Web Server"
106     default y
107     help
108         Build the AXHTTPD web server
109
110 source httpd/Config.in
111 source bindings/Config.in
112 source samples/Config.in
113 source ssl/BigIntConfig.in
114