Removed -lcrypto from Makefile - OpenSSL is no longer a dependency.

This commit is contained in:
Thulinma 2015-03-04 00:37:32 +01:00
parent 3fc8409dfd
commit cf1200cab1

View file

@ -17,9 +17,9 @@ ifndef NOSHM
override CPPFLAGS += -DSHM_ENABLED=1 override CPPFLAGS += -DSHM_ENABLED=1
endif endif
LDLIBS = -lcrypto LDLIBS =
THREADLIB = -lpthread -lrt THREADLIB = -lpthread -lrt
LDLIBS = -lcrypto $(THREADLIB) LDLIBS = $(THREADLIB)
.DEFAULT_GOAL := all .DEFAULT_GOAL := all