From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Andy Wingo Newsgroups: gmane.lisp.guile.devel,gmane.lisp.guile.user,gmane.lisp.guile.sources Subject: Re: GNU Guile 2.9.8 Released [beta] Date: Sun, 05 Jan 2020 11:41:26 +0100 Message-ID: <87sgkuyyll.fsf@pobox.com> References: <87woaa3rq4.fsf@pobox.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="209625"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) Cc: Andy Wingo , Guile User , guile-sources@gnu.org, guile-devel To: Nala Ginrut Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sun Jan 05 11:41:53 2020 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1io3M0-000sR7-4K for guile-devel@m.gmane.org; Sun, 05 Jan 2020 11:41:52 +0100 Original-Received: from localhost ([::1]:40886 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1io3Ly-00043g-D3 for guile-devel@m.gmane.org; Sun, 05 Jan 2020 05:41:50 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:43845) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1io3Lt-00043O-76 for guile-devel@gnu.org; Sun, 05 Jan 2020 05:41:47 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1io3Lr-0000mR-Pe for guile-devel@gnu.org; Sun, 05 Jan 2020 05:41:45 -0500 Original-Received: from fanzine.igalia.com ([178.60.130.6]:33608) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1io3Lr-0000ZP-7h; Sun, 05 Jan 2020 05:41:43 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date:References:Subject:Cc:To:From; bh=gJlP6XP8Pm94UzxU7Q/aSkKPxP226lk9dLftcc1BXac=; b=l/u9fzvITaHx4dfsRAUcg7CWdozhIW2luZxD06D2eDyy+iHYGfM9mjX+p/2AKbn3IgnzKcZMMXrEy0sf8hkSRhFVxPvwDCBlCt+HUbQWEb6qhATu/wzqrKkL1gPNU4hsRY1ELy6ZdAy55X8XNTVj56oPGK3aljYRTZLo2DZk+G+8fEc55LEOirHuidOCLik3JQZfeJRPVyGd6oHtCeUVL5OdvUIkgY5ivbkRrC7Atmorvm/REtpjKTbuIQOcrA2NQhbhaucBl3RCRS/gALI+sX4h503z5fBhoCel22iaSLNzxqJ1JC3bomFlfHdWCkjnnzMjyLBg1OIHf02tgzti5w==; Original-Received: from [88.123.12.110] (helo=sparrow) by fanzine.igalia.com with esmtpsa (Cipher TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim) id 1io3Ll-0007zl-TZ; Sun, 05 Jan 2020 11:41:38 +0100 In-Reply-To: (Nala Ginrut's message of "Fri, 3 Jan 2020 13:34:59 +0800") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] [fuzzy] X-Received-From: 178.60.130.6 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.org gmane.lisp.guile.devel:20217 gmane.lisp.guile.user:15988 gmane.lisp.guile.sources:521 Archived-At: On Fri 03 Jan 2020 06:34, Nala Ginrut writes: > When I was trying to compile Artanis, the configure threw an error: > ---------------------------- > checking for Guile version >= 3.0... configure: error: Guile 3.0 required, but 2.9.8 found > ---------------------------- > > Here's what I put in configure.ac: > GUILE_PKG(2.2 2.3 2.9 3.0) > > My question is "what's the correct config here"? There was a bug in guile.m4 from a few years ago doesn't do the right thing for major version changes. I think you need to update guile.m4 from git, then do: GUILE_PKG([2.2 3.0]) Also note that it's not meaningful to put in alpha releases to GUILE_PKG -- 2.9.7's effective version is 3.0. FWIW I would encourage doing GUILE_PKG([3.0 2.2]) instead, as it's generally the right thing to default to newer Guile release series. Cheers, Andy