blob: 59a2b5020534e6deb00e9a6d59a8215d4cfa38d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
if PACKAGE_aircrack-ng
comment "SSL support"
choice
prompt "Select SSL library"
default AIRCRACK_NG_OPENSSL
config AIRCRACK_NG_OPENSSL
bool "openssl"
config AIRCRACK_NG_GCRYPT
bool "gcrypt"
endchoice
config AIRCRACK_NG_OPTIMIZE_SPEED
bool "Optimize for speed"
default n
help
This enables additional optimization and
increases performance considerably at the
expense of binary size.
comment "Miscellaneous"
config AIRCRACK_NG_HWLOC
bool "Hwloc support"
default n
config AIRCRACK_NG_SQLITE3
bool "Sqlite3 support"
default n
endif
|