qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 1/3] Check for Linux USBFS in configure


From: Laurent Vivier
Subject: Re: [Qemu-devel] [PATCH 1/3] Check for Linux USBFS in configure
Date: Wed, 19 Sep 2018 15:39:59 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1

Le 19/09/2018 à 10:04, Cortland Tölva a écrit :
> In preparation for adding user mode emulation support for the
> Linux usbfs interface, check for its kernel header.
> 
> Signed-off-by: Cortland Tölva <address@hidden>
> ---
>  configure | 21 ++++++++++++++++++++-
>  1 file changed, 20 insertions(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index 58862d2ae8..5d36f45442 100755
> --- a/configure
> +++ b/configure
> @@ -4235,7 +4235,23 @@ if compile_prog "" "" ; then
>    memfd=yes
>  fi
>  
> -
> +# check for usbfs
> +have_usbfs=no
> +if test "$linux_user" = "yes"; then
> +  cat > $TMPC << EOF
> +#include <linux/usbdevice_fs.h>
> +int main(void) {
> +#if !defined(USBDEVFS_URB_TYPE_CONTROL)
> +#error Missing usbdevfs defintions.

s/defintions./definitions/

> +#else
> +     return 0;
> +#endif
> +}
> +EOF
> +  if compile_prog "" "" ; then

As you don't check for any lib API, I think you don't need the ld stage,
so you can use compile_object instead (and you don't need the main body)

Thanks,
Laurent




reply via email to

[Prev in Thread] Current Thread [Next in Thread]