From 28118b6fc67514be4168533b5fab2675bc0ec7ef Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Tue, 3 Mar 1998 19:41:04 +0000 Subject: [PATCH] remove -Wcast-align, since it produces too many warnings on alpha. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4524 ec53bebd-3082-4978-b11e-865c3cabbd6b --- configure.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 30749148b..bc47b3494 100644 --- a/configure.in +++ b/configure.in @@ -28,7 +28,8 @@ AC_PROG_AWK AC_KRB_PROG_LN_S if test "$GCC" = "yes"; then - WFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast -Wcast-align -Wmissing-declarations -Wnested-externs" +# -Wcast-align doesn't work well on alpha osf/1 + WFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast -Wmissing-declarations -Wnested-externs" WFLAGS_NOUNUSED="-Wno-unused" fi AC_SUBST(WFLAGS)