diff options
author | Thomas Huth | 2020-11-14 11:10:11 +0100 |
---|---|---|
committer | Thomas Huth | 2020-11-17 09:45:24 +0100 |
commit | ded5d78c1eada3cd07b22259305a9e2ae332839c (patch) | |
tree | 62ce3bb64b27cdd4b9e17984ee1313ec85825a25 /nbd | |
parent | configure: Do not build pc-bios/optionrom on Haiku (diff) | |
download | qemu-ded5d78c1eada3cd07b22259305a9e2ae332839c.tar.gz qemu-ded5d78c1eada3cd07b22259305a9e2ae332839c.tar.xz qemu-ded5d78c1eada3cd07b22259305a9e2ae332839c.zip |
configure: Add a proper check for sys/ioccom.h and use it in tpm_ioctl.h
On Solaris and Haiku, the _IO() macros are defined in <sys/ioccom.h>.
Add a proper check for this header to our build system, and make sure
to include the header in tpm_ioctl.h to fix a build failure on Solaris
and Haiku.
Message-Id: <20201115152317.42752-1-thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'nbd')
-rw-r--r-- | nbd/nbd-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nbd/nbd-internal.h b/nbd/nbd-internal.h index 60629ef160..1b2141ab4b 100644 --- a/nbd/nbd-internal.h +++ b/nbd/nbd-internal.h @@ -19,7 +19,7 @@ #ifndef _WIN32 #include <sys/ioctl.h> #endif -#if defined(__sun__) || defined(__HAIKU__) +#ifdef HAVE_SYS_IOCCOM_H #include <sys/ioccom.h> #endif |