summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarsh Prateek Bora <harsh@linux.vnet.ibm.com>2012-06-08 03:20:43 +0530
committerMichael Roth <mdroth@linux.vnet.ibm.com>2012-06-25 08:52:57 -0500
commit0cc21de484d4f00c7b7cacb487bd343cc55effa5 (patch)
tree3f552dda73b9197a19b17a57179153fbc0de3104
parenttrace/simple.c: fix deprecated glib2 interface (diff)
downloadqemu-kvm-0cc21de484d4f00c7b7cacb487bd343cc55effa5.tar.gz
qemu-kvm-0cc21de484d4f00c7b7cacb487bd343cc55effa5.tar.bz2
qemu-kvm-0cc21de484d4f00c7b7cacb487bd343cc55effa5.zip
configure: report missing libraries for virtfs
Signed-off-by: Harsh Prateek Bora <harsh@linux.vnet.ibm.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> (cherry picked from commit 263ddcc81bf45d475ef86100a8567b3fb2129b8d) Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 1f338f8dc..268ed21b6 100755
--- a/configure
+++ b/configure
@@ -2915,7 +2915,8 @@ if test "$softmmu" = yes ; then
tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
else
if test "$virtfs" = yes; then
- feature_not_found "virtfs"
+ echo "VirtFS is supported only on Linux and requires libcap-devel and libattr-devel"
+ exit 1
fi
virtfs=no
fi