From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: cong gu Newsgroups: gmane.lisp.guile.user Subject: Re: guildhall packages Date: Wed, 29 Aug 2012 08:25:59 -0500 Message-ID: References: <87fw7aa2kn.fsf@Kagami.home> <87pq6dmjfl.fsf@gnu.org> <87d329x3eu.fsf@Kagami.home> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1346246782 31113 80.91.229.3 (29 Aug 2012 13:26:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 29 Aug 2012 13:26:22 +0000 (UTC) To: Ian Price , guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Wed Aug 29 15:26:23 2012 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1T6iHm-00088k-Gq for guile-user@m.gmane.org; Wed, 29 Aug 2012 15:26:22 +0200 Original-Received: from localhost ([::1]:44025 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T6iHk-0003B8-BC for guile-user@m.gmane.org; Wed, 29 Aug 2012 09:26:20 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:45450) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T6iHZ-0003Aj-Ek for guile-user@gnu.org; Wed, 29 Aug 2012 09:26:16 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T6iHQ-0001Im-1k for guile-user@gnu.org; Wed, 29 Aug 2012 09:26:09 -0400 Original-Received: from mail-ob0-f169.google.com ([209.85.214.169]:33995) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T6iHP-0001HL-SW for guile-user@gnu.org; Wed, 29 Aug 2012 09:25:59 -0400 Original-Received: by obhx4 with SMTP id x4so1117367obh.0 for ; Wed, 29 Aug 2012 06:25:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=DAu/FMMAfpAQbrZ43PKPthWPuP+8ej5h8mcot0Cfv1A=; b=whNGY6Qr+RUWdiPUd6eE0fLuJXDIflmlLivyveGwaIpnvMqWCVkwBRb5cY17DemxD8 0r6scdZD+TDvn71Q8jgdi1Z+/psYW3jVNablwlhwCo3k98Jenu/aFi0Qg1B+jpvxEu8r tyf3jxa4eBdDtrtzYEIAqvBLqmnrgeJ/DvchquFHx8oraFSTWoMey0uABlt4+trOU5Wq z18Ty9AqP9JdGWmu2hZavyJW+OK0hfZQyCa2q06AYjL64BisbgX+xgOr/0ol0KK6RPbT eURS6cp71Ms4oe+oVGt3ih9uwRDJdhj05dOa59Yoqhk3sQnzrVHRxH/mrGdizFLZ/K3k 2xKA== Original-Received: by 10.60.154.197 with SMTP id vq5mr758519oeb.124.1346246759134; Wed, 29 Aug 2012 06:25:59 -0700 (PDT) Original-Received: by 10.76.117.5 with HTTP; Wed, 29 Aug 2012 06:25:59 -0700 (PDT) In-Reply-To: <87d329x3eu.fsf@Kagami.home> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.214.169 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:9567 Archived-At: Hi, In guildhall, I can use other packages, but there are two problems with package 'srfi'. The first is I have to add 'sls' to %load-extensions. This is easy. The second is that the filenames seem not compatible with guile's module searching. For example it is 'srfi/%3a41.sls' instead of guile's way like 'srfi/srfi-41.sls' scheme@(guile-user)> (use-modules (srfi srfi-41)) While compiling expression: ERROR: no code for module (srfi srfi-41) How to make them work? -- Cong Gu