From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55747) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sckbf-00042a-BH for qemu-devel@nongnu.org; Thu, 07 Jun 2012 17:51:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sckbd-0008Aw-4V for qemu-devel@nongnu.org; Thu, 07 Jun 2012 17:51:02 -0400 Received: from e28smtp02.in.ibm.com ([122.248.162.2]:34787) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sckbc-00085E-Fy for qemu-devel@nongnu.org; Thu, 07 Jun 2012 17:51:01 -0400 Received: from /spool/local by e28smtp02.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 8 Jun 2012 03:20:54 +0530 From: Harsh Prateek Bora Date: Fri, 8 Jun 2012 03:20:43 +0530 Message-Id: <1339105843-30064-3-git-send-email-harsh@linux.vnet.ibm.com> In-Reply-To: <1339105843-30064-1-git-send-email-harsh@linux.vnet.ibm.com> References: <1339105843-30064-1-git-send-email-harsh@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 2/2] configure: report appropriate error on missing library List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, qemu-trivial@nongnu.org Cc: Harsh Prateek Bora , stefanha@linux.vnet.ibm.com, aneesh.kumar@linux.vnet.ibm.com Signed-off-by: Harsh Prateek Bora --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 76dd57f..e8f0172 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 -- 1.7.10.2