mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
Merge remote-tracking branch 'stefanha/block' into staging
* stefanha/block: commit: Remove unused check qemu-iotests: Update test cases for commit active commit: Support commit active layer block: Add commit_active_start() mirror: Move base to MirrorBlockJob mirror: Don't close target qemu-iotests: drop duplicate virtio-blk initialization failure vmdk: Allow vmdk_create to work with protocol vmdk: Check VMFS extent line field number docs: updated qemu-img man page and qemu-doc to reflect VHDX support. block: vhdx - improve error message, and .bdrv_check implementation block/iscsi: Fix compilation for libiscsi 1.4.0 (API change) qapi-schema: fix QEMU 1.8 references dataplane: replace hostmem with memory_region_find dataplane: change vring API to use VirtQueueElement vring: factor common code for error exits vring: create a common function to parse descriptors sheepdog: fix dynamic grow for running qcow2 format Message-id: 1387554416-5837-1-git-send-email-stefanha@redhat.com Signed-off-by: Anthony Liguori <aliguori@amazon.com>
This commit is contained in:
commit
debe40fbc5
24 changed files with 535 additions and 541 deletions
22
configure
vendored
22
configure
vendored
|
@ -3078,6 +3078,21 @@ EOF
|
|||
fi
|
||||
fi
|
||||
|
||||
# We also need to know the API version because there was an
|
||||
# API change from 1.4.0 to 1.5.0.
|
||||
if test "$libiscsi" = "yes"; then
|
||||
cat >$TMPC <<EOF
|
||||
#include <iscsi/iscsi.h>
|
||||
int main(void)
|
||||
{
|
||||
iscsi_read10_task(0, 0, 0, 0, 0, 0, 0);
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
if compile_prog "" "-liscsi"; then
|
||||
libiscsi_version="1.4.0"
|
||||
fi
|
||||
fi
|
||||
|
||||
##########################################
|
||||
# Do we need libm
|
||||
|
@ -3805,7 +3820,11 @@ echo "nss used $smartcard_nss"
|
|||
echo "libusb $libusb"
|
||||
echo "usb net redir $usb_redir"
|
||||
echo "GLX support $glx"
|
||||
if test "$libiscsi_version" = "1.4.0"; then
|
||||
echo "libiscsi support $libiscsi (1.4.0)"
|
||||
else
|
||||
echo "libiscsi support $libiscsi"
|
||||
fi
|
||||
echo "build guest agent $guest_agent"
|
||||
echo "QGA VSS support $guest_agent_with_vss"
|
||||
echo "seccomp support $seccomp"
|
||||
|
@ -4137,6 +4156,9 @@ fi
|
|||
|
||||
if test "$libiscsi" = "yes" ; then
|
||||
echo "CONFIG_LIBISCSI=y" >> $config_host_mak
|
||||
if test "$libiscsi_version" = "1.4.0"; then
|
||||
echo "CONFIG_LIBISCSI_1_4=y" >> $config_host_mak
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$seccomp" = "yes"; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue