From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.lisp.guile.bugs Subject: Re: guile-www uses obsolete optargs-kw Date: Tue, 12 Apr 2005 05:31:59 +0200 Message-ID: Reply-To: ttn@glug.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1113276560 30766 80.91.229.2 (12 Apr 2005 03:29:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 12 Apr 2005 03:29:20 +0000 (UTC) Cc: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Tue Apr 12 05:29:17 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DLC4o-0003ts-L9 for guile-bugs@m.gmane.org; Tue, 12 Apr 2005 05:28:35 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DLBf2-0002JQ-Vg for guile-bugs@m.gmane.org; Mon, 11 Apr 2005 23:01:57 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DLBeT-0002BH-9V for bug-guile@gnu.org; Mon, 11 Apr 2005 23:01:22 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DLBeH-00026E-NC for bug-guile@gnu.org; Mon, 11 Apr 2005 23:01:14 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DLBeG-00023w-8E for bug-guile@gnu.org; Mon, 11 Apr 2005 23:01:08 -0400 Original-Received: from [151.37.162.249] (helo=surf.glug.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DLC1y-00055t-W8 for bug-guile@gnu.org; Mon, 11 Apr 2005 23:25:39 -0400 Original-Received: from ttn by surf.glug.org with local (Exim 3.35 #1 (Debian)) id 1DLC87-0000Lb-00; Tue, 12 Apr 2005 05:31:59 +0200 Original-To: Alan Grover In-reply-to: message from Alan Grover on Mon, 11 Apr 2005 20:45:23 -0400 Original-References: X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:2735 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.bugs:2735 From: Alan Grover Date: Mon, 11 Apr 2005 20:45:23 -0400 It appears that module (ice-9 optargs-kw) is renamed (ice-9 optargs) in guile 1.6.4? originally, (ice-9 optargs) used #& style keywords. at some point, someone changed it to use #: style keywords, which broke all the code using the old style. in 1.4.x, there is both (ice-9 optargs) and (ice-9 optargs-kw), so as to be able to support both #& and #: style (perhaps "uncleanly" but nonetheless). to accomodate 1.6.x and other forgetful guiles, the guile-www configure script checks the behavior of the installed "(ice-9 optargs)" module; if it seems to support #: then during guile-www installation, the references to "(ice-9 optargs-kw)" are rewritten without the "-kw". see script "module-install" for gory details. the upshot is that if you are using guile 1.6.x, guile-www "make install" should DTRT. that has worked for awhile because "make check" doesn't do anything; there has been no need to use pre-installed modules. however, i see that you are doing some testing (cool!), so perhaps we need to move this particular kludge to "make all" time, to support pre-installed usage on those systems w/o (ice-9 optargs-kw). thi _______________________________________________ Bug-guile mailing list Bug-guile@gnu.org http://lists.gnu.org/mailman/listinfo/bug-guile