configure: improve usbfs check
commit847fe10828696f949bd5f1614fa3e22da7d5eb83
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>
Wed, 13 Feb 2019 21:18:27 +0000 (13 22:18 +0100)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Thu, 28 Mar 2019 16:27:42 +0000 (28 11:27 -0500)
tree03d64443fad1bce0779d71bd8325b4f8a55b5afd
parentf3a70a4ae16ab118b5eab137644cb76181fbec18
configure: improve usbfs check

The current check to test if usbfs support should be compiled or not
solely relies on the presence of <linux/usbdevice_fs.h>, without
actually checking that all definition used by Qemu are provided by
this header file.

With sufficiently old kernel headers, <linux/usbdevice_fs.h> may be
present, but some of the definitions needed by Qemu may not be
available.

This commit improves the check by building a small program that
actually tests whether the necessary definitions are available.

In addition, it fixes a bug where have_usbfs was set to "yes"
regardless of the result of the test.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20190213211827.20300-1-thomas.petazzoni@bootlin.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
(cherry picked from commit 96566d09aa105ee04cbc1c9539cf8a9a40e8e422)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
configure