From: Peter Lieven Date: Mon, 17 Mar 2014 08:37:33 +0000 (+0100) Subject: block/nfs: bump libnfs requirement to 1.9.3 X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~386^2~42^2~73^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7d769c93214bd6e58d16009f47e61ccb541025c;p=sdk%2Femulator%2Fqemu.git block/nfs: bump libnfs requirement to 1.9.3 libnfs prior to 1.9.3 contains a bug that will report wrong transfer sizes if the file offset grows beyond 4GB and RPC responses are received out of order. this error is not detectable and fixable in qemu. additionally 1.9.3 introduces support for handling short read/writes in general and takes care of the necessary retransmissions internally. Signed-off-by: Peter Lieven Signed-off-by: Kevin Wolf --- diff --git a/configure b/configure index 2bc6b770e2..aae617e765 100755 --- a/configure +++ b/configure @@ -3868,7 +3868,7 @@ fi ########################################## # Do we have libnfs if test "$libnfs" != "no" ; then - if $pkg_config --atleast-version=1.9.2 libnfs; then + if $pkg_config --atleast-version=1.9.3 libnfs; then libnfs="yes" libnfs_libs=$($pkg_config --libs libnfs) LIBS="$LIBS $libnfs_libs"