From a25d43f0206e0e4c17537997aca413fce53531df Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 18 Oct 2016 11:12:10 +0100 Subject: [PATCH] Fix compile flags and libraries for Solaris. --- P25Parrot/Makefile.Solaris | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/P25Parrot/Makefile.Solaris b/P25Parrot/Makefile.Solaris index 618aba0..2d62204 100644 --- a/P25Parrot/Makefile.Solaris +++ b/P25Parrot/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 = Log.o Network.o P25Parrot.o Parrot.o StopWatch.o Thread.o Timer.o UDPSocket.o Utils.o