While most of the breakage caused by new GCC47 warnings have been fixed,
swildner would prefer to complete the task and review the previously
and hastily submitted warning fixes at his leisure.
To accommodate this, the -Werror flag is removed when gcc47 is used to
build so the new warnings will pass by harmlessly. swildner will
restore the -Werror flag when his task is complete.
. if defined(WARNS)
. if ${WARNS} >= 1
CWARNFLAGS += -Wsystem-headers
-. if !defined(NO_WERROR) && (${CCVER} == "gcc47" || ${CCVER} == "gcc44")
+. if !defined(NO_WERROR) && ${CCVER} == "gcc44"
CWARNFLAGS += -Werror
. endif
. endif