Minor SSL-related fixes

This commit is contained in:
Mark Nunberg 2018-01-08 16:09:53 -05:00
parent 82549a53de
commit bc2a8f372a
2 changed files with 4 additions and 2 deletions

View File

@ -55,7 +55,9 @@ STLIBNAME=$(LIBNAME).$(STLIBSUFFIX)
STLIB_MAKE_CMD=$(AR) rcs $(STLIBNAME)
ifdef USE_SSL
OPENSSL_PREFIX=/usr/local/opt/openssl
# This is the prefix of openssl on my system. This should be the sane default
# based on the platform
OPENSSL_PREFIX?=/usr/local/opt/openssl
CFLAGS+=-I$(OPENSSL_PREFIX)/include -DHIREDIS_SSL
LDFLAGS+=-L$(OPENSSL_PREFIX)/lib -lssl -lcrypto
endif

View File

@ -57,7 +57,7 @@ static void opensslDoLock(int mode, int lkid, const char *f, int line) {
} else {
sslLockRelease(l);
}
(void)f;
(void)line;
}