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.
This commit is contained in:
Mukesh Agrawal 2011-10-15 16:52:51 +03:00 committed by Jouni Malinen
parent 1e1a0a4dc9
commit a49214d482

View file

@ -699,6 +699,7 @@ CFLAGS += -DCONFIG_NO_RANDOM_POOL
else else
OBJS += ../src/crypto/random.o OBJS += ../src/crypto/random.o
HOBJS += ../src/crypto/random.o HOBJS += ../src/crypto/random.o
HOBJS += ../src/utils/eloop.o
HOBJS += $(SHA1OBJS) HOBJS += $(SHA1OBJS)
HOBJS += ../src/crypto/md5.o HOBJS += ../src/crypto/md5.o
endif endif