From: izsh.f0f Date: Fri, 5 Feb 2010 11:16:07 +0000 (+0000) Subject: Change -std=c99 to -std=gnu99 to be able to compile libusb-0.1.* which uses u_int... X-Git-Tag: v1.0.0~383 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/535b5a59bd3e8f424b3a4a523db5845d115ce49a Change -std=c99 to -std=gnu99 to be able to compile libusb-0.1.* which uses u_int*_t and PATH_MAX --- diff --git a/client/Makefile b/client/Makefile index 48ddffd2..b7a529fc 100644 --- a/client/Makefile +++ b/client/Makefile @@ -5,7 +5,7 @@ VPATH = ../common LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb -lreadline -lpthread LDFLAGS = $(COMMON_FLAGS) -CFLAGS = -std=c99 -I. -I../include -I../common -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g3 +CFLAGS = -std=gnu99 -I. -I../include -I../common -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g3 WINLIBS = -lgdi32 -lsetupapi CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall