[svn-r226] Turned off couple tedious warning messages. One (1174) due to incorrect

local O2K system configuration. The other (1429 about long long) is
ignorable since long long is standard in the next version of ANSI C.
This commit is contained in:
Albert Cheng 1998-02-05 22:06:48 -05:00
parent f23e12ca73
commit cd5a522434

View File

@ -37,7 +37,10 @@
# only apply to that compiler.
CC="cc -ansi -64"
warn="-fullwarn"
# -woff 1174 about function declared but not used
# -woff 1429 about long long type non-standard
warn="-fullwarn -woff 1174,1429"
#warn="-woff 1174,1429"
profile="-pg"
@ -52,5 +55,6 @@ RANLIB=: # SGI needs not ranlib
# Don't set CFLAGS if the user already did.
if test -z "$CFLAGS"; then
CFLAGS="`eval echo ${HDF5_MODE:-$default_mode}`"
CFLAGS="$CFLAGS $PHDFFLAGS"
export CFLAGS
fi