Unnecessarily enforced -Werror in perfdhcp Makefiles
Noticed a compilation error on FreeBSD which was caused by these fringe -Werror
s. They are the only ones out of all the Makefile.am
s.
src/bin/perfdhcp/Makefile.am
6:AM_CPPFLAGS += -Werror
src/bin/perfdhcp/tests/Makefile.am
7:AM_CPPFLAGS += -Werror
I suggest to remove them. The proper way to enable -Werror
is --with-werror
which enables it everywhere.
Edited by Andrei Pavel