Added prebuild to vi PKGBUILD
[Archlinux-Stable.git] / support / wpa_supplicant / config
blob37954a1e311b4aa0ca205de42e1f70f2a4750674
1 # Example wpa_supplicant build time configuration
3 # This file lists the configuration options that are used when building the
4 # hostapd binary. All lines starting with # are ignored. Configuration option
5 # lines must be commented out complete, if they are not to be included, i.e.,
6 # just setting VARIABLE=n is not disabling that variable.
8 # This file is included in Makefile, so variables like CFLAGS and LIBS can also
9 # be modified from here. In most cases, these lines should use += in order not
10 # to override previous values of the variables.
13 # Uncomment following two lines and fix the paths if you have installed OpenSSL
14 # or GnuTLS in non-default location
15 #CFLAGS += -I/usr/local/openssl/include
16 #LIBS += -L/usr/local/openssl/lib
18 # Some Red Hat versions seem to include kerberos header files from OpenSSL, but
19 # the kerberos files are not in the default include path. Following line can be
20 # used to fix build issues on such systems (krb5.h not found).
21 #CFLAGS += -I/usr/include/kerberos
23 # Example configuration for various cross-compilation platforms
25 #### sveasoft (e.g., for Linksys WRT54G) ######################################
26 #CC=mipsel-uclibc-gcc
27 #CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc
28 #CFLAGS += -Os
29 #CPPFLAGS += -I../src/include -I../../src/router/openssl/include
30 #LIBS += -L/opt/brcm/hndtools-mipsel-uclibc-0.9.19/lib -lssl
31 ###############################################################################
33 #### openwrt (e.g., for Linksys WRT54G) #######################################
34 #CC=mipsel-uclibc-gcc
35 #CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc
36 #CFLAGS += -Os
37 #CPPFLAGS=-I../src/include -I../openssl-0.9.7d/include \
38 #       -I../WRT54GS/release/src/include
39 #LIBS = -lssl
40 ###############################################################################
43 # Driver interface for Host AP driver
44 CONFIG_DRIVER_HOSTAP=y
46 # Driver interface for Agere driver
47 #CONFIG_DRIVER_HERMES=y
48 # Change include directories to match with the local setup
49 #CFLAGS += -I../../hcf -I../../include -I../../include/hcf
50 #CFLAGS += -I../../include/wireless
52 # Driver interface for madwifi driver
53 CONFIG_DRIVER_MADWIFI=y
54 # Change include directories to match with the local setup
55 CFLAGS += -I../madwifi
57 # Driver interface for Prism54 driver
58 # (Note: Prism54 is not yet supported, i.e., this will not work as-is and is
59 # for developers only)
60 CONFIG_DRIVER_PRISM54=y
62 # Driver interface for ndiswrapper
63 CONFIG_DRIVER_NDISWRAPPER=y
65 # Driver interface for Atmel driver
66 CONFIG_DRIVER_ATMEL=y
68 # Driver interface for Broadcom driver
69 #CONFIG_DRIVER_BROADCOM=y
70 # Example path for wlioctl.h; change to match your configuration
71 #CFLAGS += -I/opt/WRT54GS/release/src/include
73 # Driver interface for Intel ipw2100/2200 driver
74 CONFIG_DRIVER_IPW=y
76 # Driver interface for generic Linux wireless extensions
77 CONFIG_DRIVER_WEXT=y
79 # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
80 #CONFIG_DRIVER_BSD=y
81 #CFLAGS += -I/usr/local/include
82 #LIBS += -L/usr/local/lib
84 # Driver interface for Windows NDIS
85 #CONFIG_DRIVER_NDIS=y
86 #CFLAGS += -I/usr/include/w32api/ddk
87 #LIBS += -L/usr/local/lib
88 # For native build using mingw
89 #CONFIG_NATIVE_WINDOWS=y
90 # Additional directories for cross-compilation on Linux host for mingw target
91 #CFLAGS += -I/opt/mingw/mingw32/include/ddk
92 #LIBS += -L/opt/mingw/mingw32/lib
93 #CC=mingw32-gcc
94 # By default, driver_ndis uses WinPcap for low-level operations. This can be
95 # replaced with the following option which replaces WinPcap calls with NDISUIO.
96 # However, this requires that WZC is disabled (net stop wzcsvc) before starting
97 # wpa_supplicant.
98 # CONFIG_USE_NDISUIO=y
100 # Driver interface for development testing
101 #CONFIG_DRIVER_TEST=y
103 # Driver interface for wired Ethernet drivers
104 CONFIG_DRIVER_WIRED=y
106 # Enable IEEE 802.1X Supplicant (automatically included if any EAP method is
107 # included)
108 CONFIG_IEEE8021X_EAPOL=y
110 # EAP-MD5
111 CONFIG_EAP_MD5=y
113 # EAP-MSCHAPv2
114 CONFIG_EAP_MSCHAPV2=y
116 # EAP-TLS
117 CONFIG_EAP_TLS=y
119 # EAL-PEAP
120 CONFIG_EAP_PEAP=y
122 # EAP-TTLS
123 CONFIG_EAP_TTLS=y
125 # EAP-GTC
126 CONFIG_EAP_GTC=y
128 # EAP-OTP
129 CONFIG_EAP_OTP=y
131 # EAP-SIM (enable CONFIG_PCSC, if EAP-SIM is used)
132 #CONFIG_EAP_SIM=y
134 # EAP-PSK (experimental; this is _not_ needed for WPA-PSK)
135 #CONFIG_EAP_PSK=y
137 # EAP-PAX
138 #CONFIG_EAP_PAX=y
140 # LEAP
141 CONFIG_EAP_LEAP=y
143 # EAP-AKA (enable CONFIG_PCSC, if EAP-AKA is used)
144 #CONFIG_EAP_AKA=y
146 # EAP-SAKE
147 #CONFIG_EAP_SAKE=y
149 # EAP-GPSK
150 #CONFIG_EAP_GPSK=y
151 # Include support for optional SHA256 cipher suite in EAP-GPSK
152 #CONFIG_EAP_GPSK_SHA256=y
154 # PKCS#12 (PFX) support (used to read private key and certificate file from
155 # a file that usually has extension .p12 or .pfx)
156 CONFIG_PKCS12=y
158 # Smartcard support (i.e., private key on a smartcard), e.g., with openssl
159 # engine.
160 CONFIG_SMARTCARD=y
162 # PC/SC interface for smartcards (USIM, GSM SIM)
163 # Enable this if EAP-SIM or EAP-AKA is included
164 #CONFIG_PCSC=y
166 # Development testing
167 #CONFIG_EAPOL_TEST=y
169 # Replace native Linux implementation of packet sockets with libdnet/libpcap.
170 # This will be automatically set for non-Linux OS.
171 #CONFIG_DNET_PCAP=y
173 # Select control interface backend for external programs, e.g, wpa_cli:
174 # unix = UNIX domain sockets (default for Linux/*BSD)
175 # udp = UDP sockets (default for Windows)
176 # y = use default (backwards compatibility)
177 # If this option is commented out, control interface is not included in the
178 # build.
179 CONFIG_CTRL_IFACE=y
181 # Include support for GNU Readline and History Libraries in wpa_cli.
182 # When building a wpa_cli binary for distribution, please note that these
183 # libraries are licensed under GPL and as such, BSD license may not apply for
184 # the resulting binary.
185 #CONFIG_READLINE=y
187 # Remove debugging code that is printing out debug message to stdout.
188 # This can be used to reduce the size of the wpa_supplicant considerably
189 # if debugging code is not needed. The size reduction can be around 35%
190 # (e.g., 90 kB).
191 #CONFIG_NO_STDOUT_DEBUG=y
193 # Remove WPA support, e.g., for wired-only IEEE 802.1X supplicant, to save
194 # 35-50 kB in code size.
195 #CONFIG_NO_WPA=y
197 # Remove WPA2 support. This allows WPA to be used, but removes WPA2 code to
198 # save about 1 kB in code size when building only WPA-Personal (no EAP support)
199 # or 6 kB if building for WPA-Enterprise.
200 #CONFIG_NO_WPA2=y
202 # Remove AES extra functions. This can be used to reduce code size by about
203 # 1.5 kB by removing extra AES modes that are not needed for commonly used
204 # client configurations (they are needed for some EAP types).
205 #CONFIG_NO_AES_EXTRAS=y
207 # Select configuration backend:
208 # file = text file (e.g., wpa_supplicant.conf)
209 # winreg = Windows registry (see win_example.reg for an example)
210 CONFIG_BACKEND=file
212 # Select program entry point implementation:
213 # main = UNIX/POSIX like main() function (default)
214 # main_winsvc = Windows service (read parameters from registry)
215 # main_none = Very basic example (development use only)
216 #CONFIG_MAIN=main
218 # Select wrapper for operatins system and C library specific functions
219 # unix = UNIX/POSIX like systems (default)
220 # win32 = Windows systems
221 # none = Empty template
222 #CONFIG_OS=unix
224 # Select event loop implementation
225 # eloop = select() loop (default)
226 # eloop_win = Windows events and WaitForMultipleObject() loop
227 # eloop_none = Empty template
228 #CONFIG_ELOOP=eloop
230 # Select layer 2 packet implementation
231 # linux = Linux packet socket (default)
232 # pcap = libpcap/libdnet/WinPcap
233 # freebsd = FreeBSD libpcap
234 # winpcap = WinPcap with receive thread
235 # ndis = Windows NDISUIO (note: requires CONFIG_USE_NDISUIO=y)
236 # none = Empty template
237 #CONFIG_L2_PACKET=linux
239 # IEEE 802.11i/IEEE 802.11e STAKey negotiation for direct link connection
240 #CONFIG_STAKEY=y
242 # Proposed replacement for STAKey negotiation: PeerKey handshake for
243 # Station to Station Link
244 CONFIG_PEERKEY=y
246 # Select TLS implementation
247 # openssl = OpenSSL (default)
248 # gnutls = GnuTLS (needed for TLS/IA, see also CONFIG_GNUTLS_EXTRA)
249 # internal = Internal TLSv1 implementation (experimental)
250 # none = Empty template
251 #CONFIG_TLS=openssl
253 # Whether to enable TLS/IA support, which is required for EAP-TTLSv1.
254 # You need CONFIG_TLS=gnutls for this to have any effect. Please note that
255 # even though the core GnuTLS library is released under LGPL, this extra
256 # library uses GPL and as such, the terms of GPL apply to the combination
257 # of wpa_supplicant and GnuTLS if this option is enabled. BSD license may not
258 # apply for distribution of the resulting binary.
259 #CONFIG_GNUTLS_EXTRA=y
261 # If CONFIG_TLS=internal is used, additional library and include paths are
262 # needed for LibTomCrypt and TomsFastMath.
263 #LTC_PATH=/usr/src/libtomcrypt-1.11
264 #TFM_PATH=/usr/src/tomsfastmath-0.09
265 #CFLAGS += -I$(LTC_PATH)/src/headers
266 #LIBS += -L$(LTC_PATH) -L$(TFM_PATH)
267 #LIBS_p += -L$(LTC_PATH) -L$(TFM_PATH)
269 # Integrate ndis_events.exe functionality into wpa_supplicant.
270 # This is only for Windows builds and requires WMI-related header files and
271 # WbemUuid.Lib from Platform SDK even when building with MinGW.
272 #CONFIG_NDIS_EVENTS_INTEGRATED=y
273 #PLATFORMSDKLIB="/opt/Program Files/Microsoft Platform SDK/Lib"
275 # Add support for DBus control interface
276 #CONFIG_CTRL_IFACE_DBUS=y
278 # Add support for loading EAP methods dynamically as shared libraries.
279 # When this option is enabled, each EAP method can be either included
280 # statically (CONFIG_EAP_<method>=y) or dynamically (CONFIG_EAP_<method>=dyn).
281 # Dynamic EAP methods are build as shared objects (eap_*.so) and they need to
282 # be loaded in the beginning of the wpa_supplicant configuration file
283 # (see load_dynamic_eap parameter in the example file) before being used in
284 # the network blocks.
286 # Note that some shared parts of EAP methods are included in the main program
287 # and in order to be able to use dynamic EAP methods using these parts, the
288 # main program must have been build with the EAP method enabled (=y or =dyn).
289 # This means that EAP-TLS/PEAP/TTLS/FAST cannot be added as dynamic libraries
290 # unless at least one of them was included in the main build to force inclusion
291 # of the shared code. Similarly, at least one of EAP-SIM/AKA must be included
292 # in the main build to be able to load these methods dynamically.
294 # Please also note that using dynamic libraries will increase the total binary
295 # size. Thus, it may not be the best option for targets that have limited
296 # amount of memory/flash.
297 CONFIG_DYNAMIC_EAP_METHODS=y
299 # Include client MLME (management frame processing).
300 # This can be used to move MLME processing of Devicescape IEEE 802.11 stack
301 # into user space.
302 #CONFIG_CLIENT_MLME=y