libcrypto: suppress warning about unused value

This commit is contained in:
Norman Feske 2020-01-03 15:26:57 +01:00 committed by Christian Helmuth
parent 4bbbf5d2e3
commit aee8d35dc4
1 changed files with 6 additions and 0 deletions

View File

@ -182,6 +182,12 @@ SRC_DIR = aes asn1 bf bio bn buffer camellia cast cmac cms comp conf des dh \
SRC_C += $(foreach dir,$(SRC_DIR),$(addprefix $(dir)/,$(SRC_C_$(dir))))
#
# Suppress warning "right-hand operand of comma expression has no effect" for
# the HOST_c2l(c,l) macro.
#
CC_OPT_md5/md5_dgst := -Wno-unused-value
INC_DIR += $(LIBCRYPTO_DIR)/asn1
INC_DIR += $(LIBCRYPTO_DIR)/evp
INC_DIR += $(LIBCRYPTO_DIR)/modes