Compile pf/pf_subr.c and netnatm/cc_conn.c without -Werror for the time

being.

Approved by:  re (rwatson)
This commit is contained in:
Peter Wemm 2007-07-05 07:04:17 +00:00
parent 0278f1c0a3
commit 4085424709
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=171239
2 changed files with 3 additions and 3 deletions

View File

@ -276,7 +276,7 @@ contrib/ipfilter/netinet/ip_sync.c optional ipfilter inet \
contrib/ipfilter/netinet/mlfk_ipl.c optional ipfilter inet \
compile-with "${NORMAL_C} -I$S/contrib/ipfilter"
contrib/ngatm/netnatm/api/cc_conn.c optional ngatm_ccatm \
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
compile-with "${NORMAL_C_NOWERROR} -I$S/contrib/ngatm"
contrib/ngatm/netnatm/api/cc_data.c optional ngatm_ccatm \
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
contrib/ngatm/netnatm/api/cc_dump.c optional ngatm_ccatm \
@ -336,7 +336,7 @@ contrib/pf/net/pf_osfp.c optional pf \
contrib/pf/net/pf_ruleset.c optional pf \
compile-with "${NORMAL_C} -I$S/contrib/pf"
contrib/pf/net/pf_subr.c optional pf \
compile-with "${NORMAL_C} -I$S/contrib/pf"
compile-with "${NORMAL_C_NOWERROR} -I$S/contrib/pf"
contrib/pf/net/pf_table.c optional pf \
compile-with "${NORMAL_C} -I$S/contrib/pf"
contrib/pf/netinet/in4_cksum.c optional pf inet

View File

@ -90,7 +90,7 @@ CFLAGS+= ${INCLUDES} -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.
CFLAGS+= -fno-common -finline-limit=${INLINE_LIMIT}
CFLAGS+= --param inline-unit-growth=100
CFLAGS+= --param large-function-growth=1000
#WERROR?= -Werror
WERROR?= -Werror
.endif
# XXX LOCORE means "don't declare C stuff" not "for locore.s".