From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.8 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: cmogstored-public@bogomips.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id CC4382062D; Fri, 20 Nov 2015 21:35:35 +0000 (UTC) From: Eric Wong To: cmogstored-public@bogomips.org Cc: Eric Wong Subject: [PATCH] require newer gnulib for free_mount_entry support Date: Fri, 20 Nov 2015 21:35:34 +0000 Message-Id: <20151120213534.9861-1-e@80x24.org> List-Id: gnulib commit 41d1b6c42641a5b9e21486ca2074198ee7909bd7 ("mountlist: add support for deallocating returned list entries") or later (from July 2013) is needed for free_mount_entry support introduced in our commit 1225f9ce4c32b3bba61ce92a487d99260a001995 ("use free_mount_entry from gnulib instead of rolling our own"). --- HACKING | 5 +++++ autogen.sh | 12 ++++++++++++ 2 files changed, 17 insertions(+) diff --git a/HACKING b/HACKING index 2088958..4afe63a 100644 --- a/HACKING +++ b/HACKING @@ -20,8 +20,13 @@ Generally, the versions of these tools bundled with the latest stable release of Debian GNU/Linux will work. For Gnulib, we will use the latest git checkouts from: + git://git.savannah.gnu.org/gnulib.git +We currently require gnulib commit 41d1b6c42641a5b9e21486ca2074198ee7909bd7 +("mountlist: add support for deallocating returned list entries") +or later (from July 2013) for free_mount_entry support + For gcov code coverage reports, we rely on "gcov2perl" and "cover" from the Devel::Cover Perl module: diff --git a/autogen.sh b/autogen.sh index 4db469d..6fb4433 100755 --- a/autogen.sh +++ b/autogen.sh @@ -4,6 +4,18 @@ glver="$(gnulib-tool --version | head -n1)" if gnulib-tool --update && autoreconf -i then echo "$glver" > .gnulib-version + if ! grep -w free_mount_entry >/dev/null lib/mountlist.h + then + cat >&2 <