From cf1200cab16630b6f35b4ddb5d683e7bed7759c3 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Wed, 4 Mar 2015 00:37:32 +0100 Subject: [PATCH] Removed -lcrypto from Makefile - OpenSSL is no longer a dependency. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e62cc157..0d68fbeb 100644 --- a/Makefile +++ b/Makefile @@ -17,9 +17,9 @@ ifndef NOSHM override CPPFLAGS += -DSHM_ENABLED=1 endif -LDLIBS = -lcrypto +LDLIBS = THREADLIB = -lpthread -lrt -LDLIBS = -lcrypto $(THREADLIB) +LDLIBS = $(THREADLIB) .DEFAULT_GOAL := all