From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Linas Vepstas Newsgroups: gmane.lisp.guile.user Subject: Re: [SOLVED] Guile module for sqlite Date: Fri, 21 May 2010 17:30:39 -0500 Message-ID: References: <4BEF34E5.4050705@online.de> <1274147828.1966.0.camel@romel-compaq> <1274210778.2179.134.camel@romel-compaq> Reply-To: linasvepstas@gmail.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: dough.gmane.org 1274481072 16600 80.91.229.12 (21 May 2010 22:31:12 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 21 May 2010 22:31:12 +0000 (UTC) Cc: tantalum , guile-user@gnu.org, Julian Kalbhenn To: Andy Wingo Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sat May 22 00:31:11 2010 connect(): No such file or directory 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.69) (envelope-from ) id 1OFakH-0008TP-Lk for guile-user@m.gmane.org; Sat, 22 May 2010 00:31:09 +0200 Original-Received: from localhost ([127.0.0.1]:44108 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OFakG-0008Uq-Ut for guile-user@m.gmane.org; Fri, 21 May 2010 18:31:08 -0400 Original-Received: from [140.186.70.92] (port=39335 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OFakB-0008Qi-CV for guile-user@gnu.org; Fri, 21 May 2010 18:31:04 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OFak8-0000N4-RQ for guile-user@gnu.org; Fri, 21 May 2010 18:31:03 -0400 Original-Received: from mail-gy0-f169.google.com ([209.85.160.169]:61217) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OFak8-0000Mf-Oi for guile-user@gnu.org; Fri, 21 May 2010 18:31:00 -0400 Original-Received: by gyg4 with SMTP id 4so941250gyg.0 for ; Fri, 21 May 2010 15:30:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:reply-to :in-reply-to:references:from:date:message-id:subject:to:cc :content-type; bh=NazNMIo06uTK0mBq7DvtjKZS+b8ekrVG1hKU4trUjJI=; b=hMeymNMg+iftZPmMvu42U4LSJstzKqfbnqWv+mOcjfC09Cv2BFmYme7T7ktxsH7gOq 2R1nfaw0icXupk2l1MOL1iUHOxl9KX61C7619u2KRrL7dmf6viHHXjqExniPpCvJEgU+ p1QsfcfmQyaBXqzzpdvz8cvQmO+FLjN3QtbRc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; b=PdhfnLDTGRQMSuODfJfArCVbJPoteJDYkk8bPBSJhqlatnDCpwOXoWxLCYAUKYfp+J bMJiWRfRPvernXM7+dLKQZhPtPflBjTLDPHnbx5Ls7j9d5D70EAZNMIkeijx3COsuv3R RsdVG5Cfr3s2Xh4068bzw0PKj6qS3Oycf1KUM= Original-Received: by 10.101.192.24 with SMTP id u24mr3108326anp.181.1274481059413; Fri, 21 May 2010 15:30:59 -0700 (PDT) Original-Received: by 10.100.250.13 with HTTP; Fri, 21 May 2010 15:30:39 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/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:7799 Archived-At: Hi, On 21 May 2010 06:06, Andy Wingo wrote: > Hi, > > On Tue 18 May 2010 21:26, "Romel R. Sandoval Palomo" writes: > >> The only issue was with LIBADD. I edited Makefiles to use -lguile-2.0 >> instead of -lguile > > Linas would you mind looking into this? If you want to maintain back > compatibility, use `guile-config link' or the GUILE_LIBS macro. Done. Curiously, there was a check in ./configure to see if guile_config existed, but then it was never actually used! I also added similar checks for the sqlite3 and mysql backends (postgres doesn't seem to have one) There's now a version 2.1.4 of everything that incorporates this. I hope that the additional mysql/sqlite3 checks don't end up breaking more than they fix ... Let me know if there are any other problems. Again: guile-dbi website: http://home.gna.org/guile-dbi/ -- Linas