From 41decbabe7cba6644e74f6d9ca5bb71f7e6afd66 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 18 Oct 2016 11:14:31 +0100 Subject: [PATCH] Fix compile flags and libraries for Solaris. --- YSFReflector/Makefile.Solaris | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/YSFReflector/Makefile.Solaris b/YSFReflector/Makefile.Solaris index 1376bb3..a44d4df 100644 --- a/YSFReflector/Makefile.Solaris +++ b/YSFReflector/Makefile.Solaris @@ -1,7 +1,7 @@ CC = gcc CXX = g++ -CFLAGS = -g -O3 -Wall -std=c++0x -LIBS = -lsocket +CFLAGS = -g -O3 -Wall -std=c++0x -pthread +LIBS = -lsocket -lpthread LDFLAGS = -g OBJECTS = Conf.o Log.o Network.o StopWatch.o Thread.o Timer.o UDPSocket.o Utils.o YSFReflector.o @@ -16,4 +16,4 @@ YSFReflector: $(OBJECTS) clean: $(RM) YSFReflector *.o *.d *.bak *~ - \ No newline at end of file +