diff options
author | Jouni Malinen <j@w1.fi> | 2008-02-23 02:45:24 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2008-02-23 02:45:24 (GMT) |
commit | cd4e1a8cdc6c2702921c630a4b85f62dfdfd434b (patch) | |
tree | 02a922d7391401deeaaab7a60b0058eb1d098816 | |
parent | 82a77f3778082d17b9d42612f44f2c11aa6c80b3 (diff) | |
download | hostap-history-cd4e1a8cdc6c2702921c630a4b85f62dfdfd434b.zip hostap-history-cd4e1a8cdc6c2702921c630a4b85f62dfdfd434b.tar.gz hostap-history-cd4e1a8cdc6c2702921c630a4b85f62dfdfd434b.tar.bz2 |
wpa_passphrase.exe linking needs -lgdi32 due to some changes in crypto codeHEADhostap_0_6_3master
-rw-r--r-- | wpa_supplicant/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index 69c6eb0..de1a56f 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -823,7 +823,7 @@ ifdef CONFIG_NATIVE_WINDOWS CFLAGS += -DCONFIG_NATIVE_WINDOWS LIBS += -lws2_32 -lgdi32 -lcrypt32 LIBS_c += -lws2_32 -LIBS_p += -lws2_32 +LIBS_p += -lws2_32 -lgdi32 ifeq ($(CONFIG_CRYPTO), cryptoapi) LIBS_p += -lcrypt32 endif |