Fix compilation without openssl and gnutls
When HAVE_SSL is false, previously, md5c.o was only compiled when EXTRAOBJS was unset. But this is never the case since the top level Makefile exports EXTRAOBJS. Now, append md5c.o to EXTRAOBJS instead. Bug: https://bugs.gentoo.org/show_bug.cgi?id=560234#c10
This commit is contained in:
parent
5e76842961
commit
d188b31a34
|
@ -39,7 +39,7 @@ include configure.mk
|
|||
|
||||
# Only use own md5-code if neither OpenSSL nor GnuTLS are present
|
||||
ifneq ($(HAVE_SSL),1)
|
||||
EXTRAOBJS ?= md5c.o
|
||||
EXTRAOBJS += md5c.o
|
||||
endif
|
||||
|
||||
GKRELLM_INCLUDES = gkrellm.h gkrellm-public-proto.h $(SHARED_PATH)/log.h
|
||||
|
|
Loading…
Reference in New Issue