summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2010-01-10 20:29:24 +0100
committerBardur Arantsson <bardur@scientician.net>2010-01-10 20:29:24 +0100
commit03002aae146c024c265792be875fdd02c9d47eb8 (patch)
treeb7c42010d9843ef3777fafbb2c471321153c7407
parent20087ac085b472a1238ac0ca78a2cd9d4e24c18d (diff)
Add -Wno-unused-value to gcc flags to avoid harmless warnings.
-rw-r--r--src/makefile.std2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile.std b/src/makefile.std
index 3d762d49..f1db7e43 100644
--- a/src/makefile.std
+++ b/src/makefile.std
@@ -125,7 +125,7 @@ CC = gcc
# including "USE_GETCH" and "USE_CURS_SET". Note that "config.h" will
# attempt to "guess" at many of these flags based on your system.
#
-COPTS = -Wall -O1 -pipe -g
+COPTS = -Wall -O1 -Wno-unused-value -pipe -g
INCLUDES = -I/usr/X11R6/include
DEFINES = -DUSE_X11 \
-DUSE_EGO_GRAPHICS -DUSE_TRANSPARENCY -DSUPPORT_GAMMA \