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:
Felix Janda 2016-01-25 19:57:14 +01:00 committed by Stefan Gehn
parent 5e76842961
commit d188b31a34
1 changed files with 1 additions and 1 deletions

View File

@ -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