More attempts at getting this working again on wheezy.

This commit is contained in:
Oliver Jowett 2016-09-16 17:43:21 +01:00
parent bef563b8a3
commit 73a3b5113e
2 changed files with 4 additions and 3 deletions

View file

@ -1,6 +1,6 @@
PROGNAME=dump1090
CC=gcc -std=c1x
CC=gcc
CPPFLAGS += -DMODES_DUMP1090_VERSION=\"$(DUMP1090_VERSION)\" -DMODES_DUMP1090_VARIANT=\"dump1090-fa\"
ifneq ($(RTLSDR_PREFIX),"")
@ -12,7 +12,8 @@ ifneq ($(HTMLPATH),"")
CPPFLAGS += -DHTMLPATH=\"$(HTMLPATH)\"
endif
CFLAGS += -O2 -g -Wall -Werror -W -D_DEFAULT_SOURCE
DIALECT = -std=c11
CFLAGS += $(DIALECT) -O2 -g -Wall -Werror -W -D_DEFAULT_SOURCE
LIBS = -lpthread -lm -lrt
ifeq ($(STATIC), yes)