From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40266) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwGMP-0002Ub-Ak for qemu-devel@nongnu.org; Tue, 31 Jul 2012 13:35:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SwGMO-0002ny-3y for qemu-devel@nongnu.org; Tue, 31 Jul 2012 13:35:57 -0400 Received: from e28smtp07.in.ibm.com ([122.248.162.7]:36778) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwGMN-0002nb-GA for qemu-devel@nongnu.org; Tue, 31 Jul 2012 13:35:56 -0400 Received: from /spool/local by e28smtp07.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 31 Jul 2012 23:05:44 +0530 Received: from d28av04.in.ibm.com (d28av04.in.ibm.com [9.184.220.66]) by d28relay04.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q6VHZft216449574 for ; Tue, 31 Jul 2012 23:05:41 +0530 Received: from d28av04.in.ibm.com (loopback [127.0.0.1]) by d28av04.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q6VHZfFx017695 for ; Wed, 1 Aug 2012 03:35:41 +1000 From: "Aneesh Kumar K.V" In-Reply-To: <501808CB.9090009@weilnetz.de> References: <1343648493-27905-1-git-send-email-avi@redhat.com> <877gtks9qc.fsf@skywalker.in.ibm.com> <501808CB.9090009@weilnetz.de> Date: Tue, 31 Jul 2012 23:05:35 +0530 Message-ID: <87boivkf4o.fsf@skywalker.in.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH] configure: fix libcap detection List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil , Anthony Liguori Cc: Peter Maydell , rjones@redhat.com, Avi Kivity , qemu-devel@nongnu.org Stefan Weil writes: > Am 31.07.2012 08:52, schrieb Aneesh Kumar K.V: >> Avi Kivity writes: >> >>> - avoid assigned-but-not-used error >>> - avoid missing return error >>> >>> Signed-off-by: Avi Kivity >> >> Acked-by: Aneesh Kumar K.V >> >> >>> --- >>> configure | 2 +- >>> 1 file changed, 1 insertion(+), 1 deletion(-) >>> >>> diff --git a/configure b/configure >>> index 7767aca..5fb449d 100755 >>> --- a/configure >>> +++ b/configure >>> @@ -2099,7 +2099,7 @@ if test "$cap" != "no" ; then >>> cat > $TMPC <>> #include >>> #include >>> -int main(void) { cap_t caps; caps = cap_init(); } >>> +int main(void) { cap_t caps; caps = cap_init(); (void)caps; return 0; } >>> EOF >>> if compile_prog "" "-lcap" ; then >>> cap=yes >>> -- >>> 1.7.11.3 > > > Hi Anthony, > > please apply http://patchwork.ozlabs.org/patch/171067/, > or we'll get a 4th bug fix for this. I sent a pull request for VirtFS taking the patch done by you found at http://patchwork.ozlabs.org/patch/171704/ That patch is important for VirtFS because without that VirtFS won't be enabled in the build. Let me know if you want me to redo the pull request. -aneesh