From: Maxim Mamontov Date: Tue, 16 Sep 2014 18:37:58 +0000 (+0300) Subject: Fixed linking with OpenSSL. X-Git-Url: https://git.stg.codes/ssmd.git/commitdiff_plain/4d615f132a1b6645e490e222c9fad08d2ed1ced0 Fixed linking with OpenSSL. --- 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 \