summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2011-03-14 15:56:25 -0400
committerDave Jones <davej@redhat.com>2011-03-14 15:56:25 -0400
commit208fb9613c8c151b2885e89066a3eb22a977df6f (patch)
tree91217e77eb1f219431d38ee71e959625e86a8d70 /Makefile
parentd228d451d49ad2b3d65bc6206dab65c6eef4fa5e (diff)
Fix up aliasing warnings.
gcc has started complaining about these even if passed -fno-strict-aliasing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 58b8953..66fc195 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,7 @@
-VERSION=1.28
+VERSION=1.29
-CFLAGS = -g -O2 -Werror -Wall -Wshadow -Wextra -Wmissing-declarations -Wdeclaration-after-statement -Wredundant-decls -fno-strict-aliasing
+CFLAGS = -g -O2 -Werror -Wall -Wshadow -Wextra -Wmissing-declarations -Wdeclaration-after-statement -Wredundant-decls
LDFLAGS = -Wl,-z,relro,-z,now
-# -Wstrict-overflow=5
CC = gcc
SHELL = /bin/sh