diff options
| author | Harsh Prateek Bora <harsh@linux.vnet.ibm.com> | 2012-06-08 03:20:43 +0530 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2012-06-08 10:01:45 +0100 |
| commit | 263ddcc81bf45d475ef86100a8567b3fb2129b8d (patch) | |
| tree | 51ca43578dcaa9bbe172994be4a1be741e41dd94 | |
| parent | 0d665005c7fd3800f1ae590701f60fe7e4c9a57a (diff) | |
| download | focaccia-qemu-263ddcc81bf45d475ef86100a8567b3fb2129b8d.tar.gz focaccia-qemu-263ddcc81bf45d475ef86100a8567b3fb2129b8d.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>
| -rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure index 76dd57fc27..e8f0172b4b 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 |