Fix hlr_auc_gw build with OpenSSL

Commit 983c6a606b ('OpenSSL: Replace
internal HMAC-MD5 implementation') forgot to make inclusion of md5.o
conditional for hlr_auc_gw build.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
Jouni Malinen 2015-03-20 14:56:31 +02:00 committed by Jouni Malinen
parent 5f9c92f8f7
commit 58e115b869
2 changed files with 4 additions and 0 deletions

View file

@ -795,8 +795,10 @@ OBJS += src/crypto/random.c
HOBJS += src/crypto/random.c HOBJS += src/crypto/random.c
HOBJS += src/utils/eloop.c HOBJS += src/utils/eloop.c
HOBJS += $(SHA1OBJS) HOBJS += $(SHA1OBJS)
ifneq ($(CONFIG_TLS), openssl)
HOBJS += src/crypto/md5.c HOBJS += src/crypto/md5.c
endif endif
endif
ifdef CONFIG_RADIUS_SERVER ifdef CONFIG_RADIUS_SERVER
L_CFLAGS += -DRADIUS_SERVER L_CFLAGS += -DRADIUS_SERVER

View file

@ -792,8 +792,10 @@ OBJS += ../src/crypto/random.o
HOBJS += ../src/crypto/random.o HOBJS += ../src/crypto/random.o
HOBJS += ../src/utils/eloop.o HOBJS += ../src/utils/eloop.o
HOBJS += $(SHA1OBJS) HOBJS += $(SHA1OBJS)
ifneq ($(CONFIG_TLS), openssl)
HOBJS += ../src/crypto/md5.o HOBJS += ../src/crypto/md5.o
endif endif
endif
ifdef CONFIG_RADIUS_SERVER ifdef CONFIG_RADIUS_SERVER
CFLAGS += -DRADIUS_SERVER CFLAGS += -DRADIUS_SERVER