From 80a32f358fb8920fd3ec57de9caabb4fb124d4f9 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Mon, 29 Jan 2024 16:17:53 +0000 Subject: [PATCH] Remove unneeded define. --- NXDNGateway/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NXDNGateway/Makefile b/NXDNGateway/Makefile index d87177e..c989240 100644 --- a/NXDNGateway/Makefile +++ b/NXDNGateway/Makefile @@ -2,11 +2,11 @@ CC = cc CXX = c++ # Use the following CFLAGS and LIBS if you don't want to use gpsd. -CFLAGS = -g -O3 -Wall -DHAVE_LOG_H -DUDP_SOCKET_MAX=2 -std=c++0x -pthread +CFLAGS = -g -O3 -Wall -DHAVE_LOG_H -std=c++0x -pthread LIBS = -lpthread # Use the following CFLAGS and LIBS if you do want to use gpsd. -#CFLAGS = -g -O3 -Wall -DHAVE_LOG_H -DUDP_SOCKET_MAX=2 -DUSE_GPSD -std=c++0x -pthread +#CFLAGS = -g -O3 -Wall -DHAVE_LOG_H -DUSE_GPSD -std=c++0x -pthread #LIBS = -lpthread -lgps LDFLAGS = -g