]> git.stg.codes - ssmd.git/commitdiff
Fixed linking with OpenSSL.
authorMaxim Mamontov <faust.madf@gmail.com>
Tue, 16 Sep 2014 18:37:58 +0000 (21:37 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Tue, 16 Sep 2014 18:37:58 +0000 (21:37 +0300)
Makefile

index 910a5d269c021de67e320a394bc0d0d73e5ed4ee..50397f525a577f7a4000e25ce6fe002ae197657b 100644 (file)
--- 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 \