configure: Leverage gcc warn options to enable safe use of C99 features where possible.
authorJose Fonseca <jfonseca@vmware.com>
Thu, 26 Feb 2015 16:46:48 +0000 (16:46 +0000)
committerJose Fonseca <jfonseca@vmware.com>
Fri, 27 Feb 2015 14:30:36 +0000 (14:30 +0000)
commit79daa510c7a871a33797308a2ccb4b83a067ffbe
treeec98da7a205b6d22710684e5983908788d5cd90b
parentf320ecf218ab24ef4883f918a9007b2a6cfdac5e
configure: Leverage gcc warn options to enable safe use of C99 features where possible.

The main objective of this change is to enable Linux developers to use
more of C99 throughout Mesa, with confidence that the portions that need
to be built with MSVC -- and only those portions --, stay portable.

This is achieved by using the appropriate -Werror= options only on the
places they need to be used.

Unfortunately we still need MSVC 2008 on a few portions of the code
(namely llvmpipe and its dependencies).  I hope to eventually eliminate
this so that we can use C99 everywhere, but there are technical/logistic
challenges (specifically, newer Windows SDKs no longer bundle MSVC,
instead require a full installation of Visual Studio, and that has
hindered adoption of newer MSVC versions on our build processes.)
Thankfully we have more directy control over our OpenGL driver, which is
why we're now able to migrate to MSVC 2013 for most of the tree.

Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
configure.ac
src/egl/main/Makefile.am
src/gallium/auxiliary/Makefile.am
src/gallium/drivers/llvmpipe/Makefile.am
src/gallium/state_trackers/egl/Makefile.am
src/gallium/targets/egl-static/Makefile.am
src/glsl/Makefile.am
src/loader/Makefile.am
src/mapi/Makefile.am
src/mesa/Makefile.am
src/util/Makefile.am