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 # 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) ######################################
27 #CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc
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) #######################################
35 #CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc
37 #CPPFLAGS=-I../src/include -I../openssl-0.9.7d/include \
38 # -I../WRT54GS/release/src/include
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/wpa
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
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
76 # Driver interface for generic Linux wireless extensions
79 # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
81 #CFLAGS += -I/usr/local/include
82 #LIBS += -L/usr/local/lib
84 # Driver interface for Windows NDIS
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
95 # Driver interface for development testing
98 # Driver interface for wired Ethernet drivers
101 # Enable IEEE 802.1X Supplicant (automatically included if any EAP method is
103 CONFIG_IEEE8021X_EAPOL=y
105 # EAP-MD5 (automatically included if EAP-TTLS is enabled)
108 # EAP-MSCHAPv2 (automatically included if EAP-PEAP is enabled)
109 CONFIG_EAP_MSCHAPV2=y
126 # EAP-SIM (enable CONFIG_PCSC, if EAP-SIM is used)
129 # EAP-PSK (experimental; this is _not_ needed for WPA-PSK)
138 # EAP-AKA (enable CONFIG_PCSC, if EAP-AKA is used)
141 # PKCS#12 (PFX) support (used to read private key and certificate file from
142 # a file that usually has extension .p12 or .pfx)
145 # Smartcard support (i.e., private key on a smartcard), e.g., with openssl
149 # PC/SC interface for smartcards (USIM, GSM SIM)
150 # Enable this if EAP-SIM or EAP-AKA is included
153 # Development testing
156 # Replace native Linux implementation of packet sockets with libdnet/libpcap.
157 # This will be automatically set for non-Linux OS.
160 # Include control interface for external programs, e.g, wpa_cli
163 # Include support for GNU Readline and History Libraries in wpa_cli.
164 # When building a wpa_cli binary for distribution, please note that these
165 # libraries are licensed under GPL and as such, BSD license may not apply for
166 # the resulting binary.
169 # Remove debugging code that is printing out debug message to stdout.
170 # This can be used to reduce the size of the wpa_supplicant considerably
171 # if debugging code is not needed. The size reduction can be around 35%
173 #CONFIG_NO_STDOUT_DEBUG=y
175 # Remove WPA support, e.g., for wired-only IEEE 802.1X supplicant, to save
176 # 35-50 kB in code size.
179 # Select configuration backend:
180 # file = text file (e.g., wpa_supplicant.conf)