Fix gcc configure warnings
authorBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 19 Apr 2011 17:02:21 +0000 (10:02 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 19 Apr 2011 17:10:47 +0000 (10:10 -0700)
commit79713039a2b6e0ed223d141b4a8a8455f282d2f2
tree0412c6b2e5794ff3d8b7500d5c30959cd7795a41
parent03514b01109e0a6ef4eee4914ba7442c380fa6b4
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.

Closes #176
config/kernel-bio-end-io-t-args.m4
config/kernel-bio-failfast.m4
config/kernel-bio-rw-syncio.m4
config/kernel-evict-inode.m4
config/kernel-fmode-t.m4
config/kernel-fsync.m4
config/kernel-invalidate-bdev-args.m4
config/kernel-kobj-name-len.m4
config/kernel-xattr-handler.m4
configure