]> Git Repo - qemu.git/commitdiff
configure: improve usbfs check
authorThomas Petazzoni <[email protected]>
Wed, 13 Feb 2019 21:18:27 +0000 (22:18 +0100)
committerLaurent Vivier <[email protected]>
Thu, 14 Feb 2019 10:46:30 +0000 (11:46 +0100)
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 <[email protected]>
Reviewed-by: Thomas Huth <[email protected]>
Message-Id: <20190213211827[email protected]>
Signed-off-by: Laurent Vivier <[email protected]>
configure

index c0f278141823bd01d1fbead1ef2b0387fb4879d7..90b9e2fa3c05001f0992adb87df1c1accb2e3f36 100755 (executable)
--- a/configure
+++ b/configure
@@ -4262,10 +4262,25 @@ fi
 # check for usbfs
 have_usbfs=no
 if test "$linux_user" = "yes"; then
-  if check_include linux/usbdevice_fs.h; then
+  cat > $TMPC << EOF
+#include <linux/usbdevice_fs.h>
+
+#ifndef USBDEVFS_GET_CAPABILITIES
+#error "USBDEVFS_GET_CAPABILITIES undefined"
+#endif
+
+#ifndef USBDEVFS_DISCONNECT_CLAIM
+#error "USBDEVFS_DISCONNECT_CLAIM undefined"
+#endif
+
+int main(void)
+{
+    return 0;
+}
+EOF
+  if compile_prog "" ""; then
     have_usbfs=yes
   fi
-  have_usbfs=yes
 fi
 
 # check for fallocate
This page took 0.035018 seconds and 4 git commands to generate.