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:
parent
1e1a0a4dc9
commit
a49214d482
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue