From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "John Trammell" Newsgroups: gmane.lisp.guile.user Subject: packaging a guile module, call/cc tutorial Date: Fri, 30 May 2008 14:28:45 -0500 Message-ID: <68dbb6fe0805301228m610dab58o2547427b967abf01@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1212175824 31369 80.91.229.12 (30 May 2008 19:30:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 30 May 2008 19:30:24 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri May 30 21:31:05 2008 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1K2AJa-0002qj-37 for guile-user@m.gmane.org; Fri, 30 May 2008 21:31:02 +0200 Original-Received: from localhost ([127.0.0.1]:36284 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K2AIo-0006h8-9x for guile-user@m.gmane.org; Fri, 30 May 2008 15:30:14 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K2AHQ-00063G-2y for guile-user@gnu.org; Fri, 30 May 2008 15:28:48 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K2AHP-00062n-Ef for guile-user@gnu.org; Fri, 30 May 2008 15:28:47 -0400 Original-Received: from [199.232.76.173] (port=36313 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K2AHP-00062h-4C for guile-user@gnu.org; Fri, 30 May 2008 15:28:47 -0400 Original-Received: from an-out-0708.google.com ([209.85.132.248]:61223) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K2AHO-0003gC-T2 for guile-user@gnu.org; Fri, 30 May 2008 15:28:46 -0400 Original-Received: by an-out-0708.google.com with SMTP id c38so64054ana.84 for ; Fri, 30 May 2008 12:28:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=tC70Ay0UnuE4MS8lrbSsELyXbG1xicP1SovebzXYx8w=; b=bEfHlwPS4uuKA75MLskGzeJRkFbld7TbysCW0u5V42Yv+vn7zzl2rkBRNUhVjhSM2f7ptZk2RL1QcnAAWzA9COEjKZMP05Wv71d2BcqGgS5qX5vyiO98PbQH8jZl2IHf1TnIBTsw+0x0hW25z34Uy2i/KvQ6THLP/amU/l/rGCk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=bmbM71mLIQaodMgoMqUjTkdsoFAMeAng4wL7cOVJHEzh1RW72haF/ajghFiqw3ED619h4acuvspN9w7WCHrAHNIBx13kOOyUoQv5AYuV0++gUKWLwZZZUmByM9ZQQ54iVnbkMO5oKWcKCZdi75wINZQUUMukwYiHdldxpvhGVrA= Original-Received: by 10.100.127.15 with SMTP id z15mr9712672anc.61.1212175725692; Fri, 30 May 2008 12:28:45 -0700 (PDT) Original-Received: by 10.100.106.18 with HTTP; Fri, 30 May 2008 12:28:45 -0700 (PDT) Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:6593 Archived-At: Hi Guile users: I have a guile issue and a scheme issue I'm hoping you can help me with. My guile issue is that I've built a rudimentary module (following the code in http://www.gnu.org/software/guile/manual/html_node/Creating-Guile-Modules.html) that I'd like to tar up and make available as a GPL'ed installable package. Can any of you point me to documentation or an example of how to do that? I have something cobbled together with a Makefile but I'd like to think there's a more sophisticated solution out there. My scheme problem is this: I've been beating my head against the call/cc examples I've been able to dredge up, but not feeling like I've fully mastered the concept. Can anyone interested please chime in on either their favorite resource on call/cc, or an example they found useful when learning the concept? Thanks, JT