aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2020-04-23 14:47:30 -0500
committerDenis Kenzior <denkenz@gmail.com>2020-04-23 14:47:30 -0500
commit46215a66240c2c587098ba49e49c822f59c6998e (patch)
tree77ceda5dafb76389487a13fa251b4b3d69a0008e
parented81fe1f4f5f3b525f3f0f0e8edd13f820dc1d8d (diff)
downloadiwd-46215a66240c2c587098ba49e49c822f59c6998e.tar.gz
build: Remove eap-wsc and wscutil from eap_sources
With the previous commit, wscutil now depends on ie.h. Unfortunately, wired also includes eap-wsc and wscutil in the build, but not ie, which results in a link-time failure. Fix this by droppig eap-wsc and wscutil from wired. There's no reason that ethernet authentication would ever use the WiFi Protected Setup authentication.
-rw-r--r--Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 0a82878e5..57c694df7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -164,7 +164,6 @@ manual_pages = src/iwd.8 src/iwd.debug.7 src/iwd.config.5 src/iwd.network.5 \
client/iwctl.1 monitor/iwmon.1 wired/ead.8 tools/hwsim.1
eap_sources = src/eap.c src/eap.h src/eap-private.h \
- src/eap-wsc.c src/eap-wsc.h \
src/eap-md5.c \
src/eap-tls.c \
src/eap-ttls.c \
@@ -176,7 +175,6 @@ eap_sources = src/eap.c src/eap.h src/eap-private.h \
src/eap-pwd.c \
src/util.h src/util.c \
src/crypto.h src/crypto.c \
- src/wscutil.h src/wscutil.c \
src/simutil.h src/simutil.c \
src/simauth.h src/simauth.c \
src/watchlist.h src/watchlist.c \
@@ -229,6 +227,8 @@ src_iwd_SOURCES = src/main.c linux/nl80211.h src/iwd.h src/missing.h \
src/module.h src/module.c \
src/rrm.c \
src/frame-xchg.h src/frame-xchg.c \
+ src/eap-wsc.c src/eap-wsc.h \
+ src/wscutil.h src/wscutil.c \
$(eap_sources) \
$(builtin_sources)