mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 10:34:58 -06:00
build-sys: drop ntddscsi.h check
The header has been part of MinGW-w64 since the introduction of the project (2007). While on MinGW(32), the legacy project, it was imported in 2014 from w32api-3.17 (commit e4803e0da2). According to build-platform.rst and our CI coverage, we only support building with MinGW-w64 (from Debian/Fedora). Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com> Message-Id: <20220401085106.2167374-1-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
0f9668e0c1
commit
3015321dc4
3 changed files with 2 additions and 40 deletions
17
meson.build
17
meson.build
|
@ -2019,22 +2019,6 @@ if targetos == 'windows' and link_language == 'cpp'
|
|||
endif
|
||||
config_host_data.set('HAVE_VSS_SDK', have_vss_sdk)
|
||||
|
||||
have_ntddscsi = false
|
||||
if targetos == 'windows'
|
||||
have_ntddscsi = cc.compiles('''
|
||||
#include <windows.h>
|
||||
#include <ntddscsi.h>
|
||||
int main(void) {
|
||||
#if !defined(IOCTL_SCSI_GET_ADDRESS)
|
||||
#error Missing required ioctl definitions
|
||||
#endif
|
||||
SCSI_ADDRESS addr = { .Lun = 0, .TargetId = 0, .PathId = 0 };
|
||||
return addr.Lun;
|
||||
}
|
||||
''')
|
||||
endif
|
||||
config_host_data.set('HAVE_NTDDSCSI', have_ntddscsi)
|
||||
|
||||
ignored = ['CONFIG_QEMU_INTERP_PREFIX', # actually per-target
|
||||
'HAVE_GDB_BIN']
|
||||
arrays = ['CONFIG_BDRV_RW_WHITELIST', 'CONFIG_BDRV_RO_WHITELIST']
|
||||
|
@ -3722,7 +3706,6 @@ summary_info += {'libnfs support': libnfs}
|
|||
if targetos == 'windows'
|
||||
if have_ga
|
||||
summary_info += {'QGA VSS support': have_qga_vss}
|
||||
summary_info += {'QGA w32 disk info': have_ntddscsi}
|
||||
endif
|
||||
endif
|
||||
summary_info += {'seccomp support': seccomp}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue