* configure.ac: Do not enable -Wmissing-noreturn as its

usefulness is limited and creates problems on some OS notably with
	code generated by bison.

	Also-By: Vladimir Serbinenko <phcoder@gmail.com>
This commit is contained in:
neil 2013-09-23 13:48:10 +02:00 committed by Vladimir 'phcoder' Serbinenko
parent c248781a83
commit 5830df88da
3 changed files with 10 additions and 3 deletions

View file

@ -1,7 +1,14 @@
2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
2013-09-23 neil
* configure.ac: Do no explicitly enable -Waddress as it's not
* configure.ac: Do not enable -Wmissing-noreturn as its
usefulness is limited and creates problems on some OS notably with
code generated by bison.
2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>
2013-09-23 neil
* configure.ac: Do not explicitly enable -Waddress as it's not
supported by all gcc and when it is, it's already enabled by -Wall.
2013-09-23 Vladimir Serbinenko <phcoder@gmail.com>