Switch from -lssl to -lcrypto

This commit is contained in:
Keith Winstein
2011-08-26 02:37:20 -04:00
parent 5ee4ec1b61
commit 29f3d540f7
+1 -1
View File
@@ -6,7 +6,7 @@ executables = parse termemu ntester encrypt decrypt stm-server stm
CXX = g++
CXXFLAGS = -g -O2 --std=c++0x -pedantic -Werror -Wall -Wextra -Weffc++ -fno-implicit-templates -fno-default-inline -pipe -D_FILE_OFFSET_BITS=64 -D_XOPEN_SOURCE=500 -D_GNU_SOURCE -D_BSD_SOURCE
LIBS = -lutil -lssl -lrt -lm -lprotobuf-lite
LIBS = -lutil -lcrypto -lrt -lm -lprotobuf-lite
PROTOC = protoc
all: $(executables)