Fix the LIBS for gpsd.

This commit is contained in:
Jonathan Naylor 2020-06-21 17:45:02 +01:00
parent e41762c0a2
commit 40d20e0920
1 changed files with 4 additions and 3 deletions

View File

@ -1,13 +1,14 @@
CC = gcc
CXX = g++
# Use the following CFLAGS if you don't want to use gpsd.
# Use the following CFLAGS and LIBS if you don't want to use gpsd.
CFLAGS = -g -O3 -Wall -std=c++0x -pthread
LIBS = -lpthread
# Use the following CFLAGS if you do want to use gpsd.
# Use the following CFLAGS and LIBS if you do want to use gpsd.
CFLAGS = -g -O3 -Wall -DUSE_GPSD -std=c++0x -pthread
LIBS = -lpthread -lgps
LDFLAGS = -g
OBJECTS = APRSWriter.o Conf.o GPSHandler.o IcomNetwork.o KenwoodNetwork.o Log.o Mutex.o NXDNCRC.o NXDNGateway.o NXDNLookup.o NXDNNetwork.o \