From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23617 invoked by alias); 9 Apr 2014 16:09:19 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 23488 invoked by uid 89); 9 Apr 2014 16:09:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.2 required=5.0 tests=AWL,BAYES_40,RCVD_IN_DNSWL_NONE,SPF_NEUTRAL autolearn=no version=3.3.2 X-HELO: sasl.smtp.pobox.com Received: from a-pb-sasl-quonix.pobox.com (HELO sasl.smtp.pobox.com) (208.72.237.25) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 09 Apr 2014 16:09:15 +0000 Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id 8A72F10F80; Wed, 9 Apr 2014 12:09:13 -0400 (EDT) Received: from a-pb-sasl-quonix.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id 81D5510F7F; Wed, 9 Apr 2014 12:09:13 -0400 (EDT) Received: from localhost.localdomain (unknown [88.160.190.192]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTPSA id DC26910F7B; Wed, 9 Apr 2014 12:09:10 -0400 (EDT) From: Andy Wingo To: gdb-patches@sourceware.org Cc: Andy Wingo Subject: [PATCH 1/9] Allow GDB to build against unreleased Guile 2.2 Date: Wed, 09 Apr 2014 16:09:00 -0000 Message-Id: <1397059725-18066-2-git-send-email-wingo@igalia.com> In-Reply-To: <1397059725-18066-1-git-send-email-wingo@igalia.com> References: <1397059725-18066-1-git-send-email-wingo@igalia.com> X-Pobox-Relay-ID: 4A11900E-C001-11E3-9AC2-873F0E5B5709-02397024!a-pb-sasl-quonix.pobox.com X-SW-Source: 2014-04/txt/msg00121.txt.bz2 * gdb/configure: * gdb/configure.ac (try_guile_versions): Allow building with guile 2.2. --- gdb/configure | 5 +++-- gdb/configure.ac | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/gdb/configure b/gdb/configure index fd61bb5..307c6c9 100755 --- a/gdb/configure +++ b/gdb/configure @@ -3,7 +3,7 @@ # Generated by GNU Autoconf 2.64. # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2014 Free Software # Foundation, Inc. # # This configure script is free software; the Free Software Foundation @@ -8750,7 +8750,8 @@ fi -try_guile_versions="guile-2.0" + +try_guile_versions="guile-2.2 guile-2.0" have_libguile=no case "${with_guile}" in no) diff --git a/gdb/configure.ac b/gdb/configure.ac index 494d711..ff84a2e 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -1154,7 +1154,7 @@ AC_MSG_RESULT([$with_guile]) dnl We check guile with pkg-config. AC_PATH_PROG(pkg_config_prog_path, pkg-config, missing) -try_guile_versions="guile-2.0" +try_guile_versions="guile-2.2 guile-2.0" have_libguile=no case "${with_guile}" in no) -- 1.9.1