From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49996) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WkDWR-00081G-52 for qemu-devel@nongnu.org; Tue, 13 May 2014 10:17:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WkDWL-0005HM-NX for qemu-devel@nongnu.org; Tue, 13 May 2014 10:17:35 -0400 Received: from mail-yk0-x22b.google.com ([2607:f8b0:4002:c07::22b]:65060) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WkDWL-0005H9-Ix for qemu-devel@nongnu.org; Tue, 13 May 2014 10:17:29 -0400 Received: by mail-yk0-f171.google.com with SMTP id 142so319544ykq.30 for ; Tue, 13 May 2014 07:17:28 -0700 (PDT) Received: from [9.10.87.15] (rchp4.rochester.ibm.com. [129.42.161.36]) by mx.google.com with ESMTPSA id t6sm24344025yhc.45.2014.05.13.07.17.25 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 13 May 2014 07:17:28 -0700 (PDT) Message-ID: <5372296E.60204@gmail.com> Date: Tue, 13 May 2014 09:17:18 -0500 From: Tom Musta MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Build Broken? List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers The current origin/master is not building for me: LINK qemu-img qemu-img.o: In function `add_format_to_seq': /bghome/tmusta/powerisa/qemu/qemu/qemu-img.c:73: undefined reference to `g_sequence_lookup' collect2: ld returned 1 exit status make: *** [qemu-img] Error 1 Bisection points me to this: > git bisect good 1a443c1b8b4314d365e82bddeb1de5b4b1c15fb3 is the first bad commit commit 1a443c1b8b4314d365e82bddeb1de5b4b1c15fb3 Author: Mike Day Date: Mon May 5 12:53:34 2014 -0400 qemu-img: sort block formats in help message The help message for qemu-img lists the supported block formats, of which there are 27 as of version 2.0.50. The formats are printed in the order of their driver's position in a linked list, which appears random. This patch prints the formats in sorted order, making it easier to read and to find a specific format in the list. [Added suggestions from Fam Zheng to declare variables at the top of the scope in help() and to omit explicit cast for void* opaque. --Stefan] Signed-off-by: Mike Day Signed-off-by: Stefan Hajnoczi It appears that this code is dependent on glib.h function that is newer than one of my build systems (RHEL 6 update 5, gcc version 4.4.7 20120313 (Red Hat 4.4.7-4)) Is this a known limitation? i.e. is QEMU 2.1 going to prereq a newer version of glib2?