]> git.proxmox.com Git - mirror_spl.git/commit - config/spl-build.m4
Fix gcc configure warnings
authorBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 19 Apr 2011 16:26:48 +0000 (09:26 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 19 Apr 2011 16:41:41 +0000 (09:41 -0700)
commit03318641afc3e2d6dc18614aaa75d6a0125cb933
tree551de9d0c11d07ec8b0bb04299f6fcd765eb5da9
parent9b0f9079d22f5a13903d3da4d94e8e306cfa40dd
Fix gcc configure warnings

Newer versions of gcc are getting smart enough to detect the sloppy
syntax used for the autoconf tests.  It is now generating warnings
for unused/undeclared variables.  Newer version of gcc even have
the -Wunused-but-set-variable option set by default.  This isn't a
problem except when -Werror is set and they get promoted to an error.
In this case the autoconf test will return an incorrect result which
will result in a build failure latter on.

To handle this I'm tightening up many of the autoconf tests to
explicitly mark variables as unused to suppress the gcc warning.
Remember, all of the autoconf code can never actually be run we
just want to get a clean build error to detect which APIs are
available.  Never using a variable is absolutely fine for this.
config/spl-build.m4
configure