From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:57111) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwFNo-0002ae-Em for qemu-devel@nongnu.org; Tue, 31 Jul 2012 12:33:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SwFNm-00060s-Ny for qemu-devel@nongnu.org; Tue, 31 Jul 2012 12:33:20 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:59231) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwFNm-00060K-HB for qemu-devel@nongnu.org; Tue, 31 Jul 2012 12:33:18 -0400 Message-ID: <501808CB.9090009@weilnetz.de> Date: Tue, 31 Jul 2012 18:33:15 +0200 From: Stefan Weil MIME-Version: 1.0 References: <1343648493-27905-1-git-send-email-avi@redhat.com> <877gtks9qc.fsf@skywalker.in.ibm.com> In-Reply-To: <877gtks9qc.fsf@skywalker.in.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] configure: fix libcap detection List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Aneesh Kumar K.V" , Anthony Liguori Cc: Peter Maydell , rjones@redhat.com, Avi Kivity , qemu-devel@nongnu.org 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. Peter sent a series with this one and more patches on 2012-07-18 (1st: http://patchwork.ozlabs.org/patch/171686/). At least the first 10 of them should be applied. Please tell me if you need more information or support. Cheers, Stefan W.