build: quiet annoying warnings without adding new ones
commit63b3111f84daa421abc2889a550e86c17bf9609d
authorCory Fields <cory-nospam-@coryfields.com>
Wed, 9 Mar 2016 21:45:58 +0000 (9 16:45 -0500)
committerCory Fields <cory-nospam-@coryfields.com>
Wed, 27 Apr 2016 05:17:14 +0000 (27 01:17 -0400)
treeb83930ad73ec9e693880a38c4ca3e87ec04d1cf2
parente26b62093ae21e89ed7d36a24a6b863f38ec631d
build: quiet annoying warnings without adding new ones

Disabling warnings can be tricky, because doing so can cause a different
compiler to create new warnings about unsupported disable flags. Also, some
warnings don't surface until they're paired with another warning (gcc). For
example, adding "-Wno-foo" won't cause any trouble, but if there's a legitimate
warning emitted, the "unknown option -Wno-foo" will show up as well.

Work around this in 2 ways:

1. When checking to see if -Wno-foo is supported, check for "-Wfoo" instead.
2. Enable -Werror while checking 1.

If "-Werror -Wfoo" compiles, "-Wno-foo" is almost guaranteed to be supported.

-Werror itself is also checked. If that fails to compile by itself, it likely
means that the user added a flag that adds a warning. In that case, -Werror
won't be used while checking, and the build may be extra noisy. The user would
need to fix the bad input flag.

Also, silence 2 more additional warnings that can show up post-c++11.
configure.ac