Fix compile flags and libraries for Solaris.

This commit is contained in:
Jonathan Naylor 2016-10-18 11:12:10 +01:00 committed by GitHub
parent 3283f7eb28
commit a25d43f020
1 changed files with 2 additions and 2 deletions

View File

@ -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