diff options
author | Jouni Malinen <jouni.malinen@atheros.com> | 2009-06-30 19:52:10 +0300 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2009-06-30 19:52:10 +0300 |
commit | c8878307c4a5a163c459ecb5e83f6f61a2f33eb7 (patch) | |
tree | 2e6e83780399172b4e42fde6d05acd10c27e026a /eap_example | |
parent | 1c5a1aa51c37f3604bbef5c24b3e4209848f6886 (diff) | |
download | external_wpa_supplicant_8_ti-c8878307c4a5a163c459ecb5e83f6f61a2f33eb7.zip external_wpa_supplicant_8_ti-c8878307c4a5a163c459ecb5e83f6f61a2f33eb7.tar.gz external_wpa_supplicant_8_ti-c8878307c4a5a163c459ecb5e83f6f61a2f33eb7.tar.bz2 |
Fix eap_example build with renamed EAP_* server defines
1e5839e06fbc20945044239984b652da9c3fc772 renamed the defines for EAP
server, but did not update the eap_example Makefile to match. This
broke the server side of the EAP example (no methods were actually
enabled).
Diffstat (limited to 'eap_example')
-rw-r--r-- | eap_example/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/eap_example/Makefile b/eap_example/Makefile index 6fba712..c3e3256 100644 --- a/eap_example/Makefile +++ b/eap_example/Makefile @@ -81,6 +81,17 @@ CFLAGS += -DEAP_SAKE CFLAGS += -DEAP_GPSK -DEAP_GPSK_SHA256 CFLAGS += -DEAP_TLS_FUNCS +CFLAGS += -DEAP_SERVER_TLS +CFLAGS += -DEAP_SERVER_PEAP +CFLAGS += -DEAP_SERVER_TTLS +CFLAGS += -DEAP_SERVER_MD5 +CFLAGS += -DEAP_SERVER_MSCHAPV2 +CFLAGS += -DEAP_SERVER_GTC +CFLAGS += -DEAP_SERVER_PSK +CFLAGS += -DEAP_SERVER_PAX +CFLAGS += -DEAP_SERVER_SAKE +CFLAGS += -DEAP_SERVER_GPSK -DEAP_SERVER_GPSK_SHA256 + CFLAGS += -DIEEE8021X_EAPOL ifeq ($(CONFIG_TLS), openssl) |