From 4d615f132a1b6645e490e222c9fad08d2ed1ced0 Mon Sep 17 00:00:00 2001 From: Maxim Mamontov Date: Tue, 16 Sep 2014 21:37:58 +0300 Subject: [PATCH] Fixed linking with OpenSSL. --- Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 910a5d2..50397f5 100644 --- a/Makefile +++ b/Makefile @@ -5,14 +5,15 @@ endif INCS = -Iinclude -I3rdparty/snmp++/include CXXFLAGS += -W -Wall -Wextra $(INCS) $(DEFS) -LIBS = -lpthread \ - -lssl \ - -lcurl \ +LIBS = 3rdparty/snmp++/libsnmp++.a \ -lboost_system \ -lboost_program_options \ - 3rdparty/snmp++/libsnmp++.a + -lcurl \ + -lssl \ + -lcrypto \ + -lpthread PROG = ssmd # SNMP Switch Management Daemon -VERSION = 1.1.4 +VERSION = 1.1.5 SOURCES = src/main.cpp \ src/pidfile.cpp \ -- 2.43.2