diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-04-24 08:34:52 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-04-24 08:34:52 -0600 |
commit | 1b83fe68a58fc7d19ed8557e2b363290732d4231 (patch) | |
tree | cfdf5a7ab7721a2a3bc7646d80e7793a89166cb0 | |
parent | f3a49f36d367b7b67152b0e67526768881dd47fd (diff) | |
download | tmwa-1b83fe68a58fc7d19ed8557e2b363290732d4231.tar.gz tmwa-1b83fe68a58fc7d19ed8557e2b363290732d4231.tar.bz2 tmwa-1b83fe68a58fc7d19ed8557e2b363290732d4231.tar.xz tmwa-1b83fe68a58fc7d19ed8557e2b363290732d4231.zip |
Remove a recent flag addition from cygwin builds
It seems that the compiler included with cygwin doesn't like the
-Wno-pointer-sign flag.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ OPT = -g -O2 ${M32} ifeq ($(findstring CYGWIN,$(PLATFORM)), CYGWIN) OS_TYPE = -DCYGWIN -CFLAGS = $(OPT) -Wall -Wno-pointer-sign -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE) +CFLAGS = $(OPT) -Wall -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE) else OS_TYPE = CFLAGS = $(OPT) -Wall -Wno-pointer-sign -I../common $(PACKETDEF) $(OS_TYPE) |