From 29f3d540f794737f5c327cd95d008ba22bdc7d03 Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Fri, 26 Aug 2011 02:37:20 -0400 Subject: [PATCH] Switch from -lssl to -lcrypto --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 24ce190..b81105d 100644 --- a/Makefile +++ b/Makefile @@ -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)