From e3b1c53ecd84c871d1adf3dcccf25622799f29d6 Mon Sep 17 00:00:00 2001 From: MadCamel Date: Wed, 22 Apr 2009 19:02:46 +0000 Subject: Removed compiler warnings for pointer signedness to make more important warnings more visible --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 550c238..926228b 100644 --- a/Makefile +++ b/Makefile @@ -18,10 +18,10 @@ OPT = -g -O2 ${M32} ifeq ($(findstring CYGWIN,$(PLATFORM)), CYGWIN) OS_TYPE = -DCYGWIN -CFLAGS = $(OPT) -Wall -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE) +CFLAGS = $(OPT) -Wall -Wno-pointer-sign -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE) else OS_TYPE = -CFLAGS = $(OPT) -Wall -I../common $(PACKETDEF) $(OS_TYPE) +CFLAGS = $(OPT) -Wall -Wno-pointer-sign -I../common $(PACKETDEF) $(OS_TYPE) endif MKDEF = CC="$(CC)" CFLAGS="$(CFLAGS)" -- cgit v1.2.3-70-g09d2