Browse Source

Explicitly link against libdl when including TNC support

If you don't choose OpenSSL as TLS implementation and choose to enable
CONFIG_EAP_TNC you have to link against libdl. The OpenSSL libraries
implicitly link against them, so this might be a reason why it wasn't
noticed yet. I assume the same applies to hostapd.
Daniel Mierswa 16 years ago
parent
commit
b77eab282a
2 changed files with 2 additions and 0 deletions
  1. 1 0
      hostapd/Makefile
  2. 1 0
      wpa_supplicant/Makefile

+ 1 - 0
hostapd/Makefile

@@ -335,6 +335,7 @@ CFLAGS += -DEAP_TNC
 OBJS += ../src/eap_server/eap_tnc.o
 OBJS += ../src/eap_server/tncs.o
 NEED_BASE64=y
+LIBS += -ldl
 endif
 
 # Basic EAP functionality is needed for EAPOL

+ 1 - 0
wpa_supplicant/Makefile

@@ -566,6 +566,7 @@ OBJS += ../src/eap_peer/tncc.o
 OBJS_h += ../src/eap_server/eap_tnc.o
 OBJS_h += ../src/eap_server/tncs.o
 NEED_BASE64=y
+LIBS += -ldl
 endif
 
 ifdef CONFIG_IEEE8021X_EAPOL