diff options
author | Mukesh Agrawal <quiche@chromium.org> | 2011-10-15 16:52:51 +0300 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2011-10-15 16:52:51 +0300 |
commit | a49214d48235b6b275abe0de21a3913a91b85d32 (patch) | |
tree | cd577e0749870c482991be10e13d86edc2e1c81e /hostapd/Makefile | |
parent | 1e1a0a4dc9ce81464ff4ad3308baa4c5a91cd9dc (diff) | |
download | external_wpa_supplicant_8_ti-a49214d48235b6b275abe0de21a3913a91b85d32.zip external_wpa_supplicant_8_ti-a49214d48235b6b275abe0de21a3913a91b85d32.tar.gz external_wpa_supplicant_8_ti-a49214d48235b6b275abe0de21a3913a91b85d32.tar.bz2 |
Fix object file list for hlr_auc_gw
If CONFIG_NO_RANDOM_POOL is unset, src/crypto/random.o is linked
into hlr_auc_gw. However, in this configuration, random.o requires
symbols defined in src/utils/eloop.o. So add eloop.o to the object
file list for hlr_auc_gw.
Diffstat (limited to 'hostapd/Makefile')
-rw-r--r-- | hostapd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hostapd/Makefile b/hostapd/Makefile index 8e8c8c0..9664c02 100644 --- a/hostapd/Makefile +++ b/hostapd/Makefile @@ -699,6 +699,7 @@ CFLAGS += -DCONFIG_NO_RANDOM_POOL else OBJS += ../src/crypto/random.o HOBJS += ../src/crypto/random.o +HOBJS += ../src/utils/eloop.o HOBJS += $(SHA1OBJS) HOBJS += ../src/crypto/md5.o endif |