From: Mukesh Agrawal Date: Sat, 15 Oct 2011 13:52:51 +0000 (+0300) Subject: Fix object file list for hlr_auc_gw X-Git-Tag: hostap-1-bp~170 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a49214d48235b6b275abe0de21a3913a91b85d32;p=thirdparty%2Fhostap.git 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. --- diff --git a/hostapd/Makefile b/hostapd/Makefile index 8e8c8c010..9664c028d 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