Re: Web services on guile

2010-05-25 Thread Romel Sandoval
I think, I will go for s-expression then. El dom, 23-05-2010 a las 23:16 +0200, Andy Wingo escribió: > On Sun 23 May 2010 11:25, Sascha Ziemann writes: > > > 2010/5/22 Romel R. Sandoval Palomo : > >> I think I have four alternatives: > >> > >> 1. Keep the web service consumption part of the cli

Failing to build g-wrap for guile 1.9.10

2010-05-31 Thread Romel Sandoval
Hello I'm trying to build g-wrap downloaded with git for guile 1.9.10. I have my guile on $HOME/usr. I also have the following environment variables: export LDFLAGS="-L$HOME/usr/lib" export CPPFLAGS="-I$HOME/usr/include -I$HOME/usr/include/guile/2.0" export PKG_CONFIG_PATH="$HOME/usr/lib/pkgconf

Re: Failing to build g-wrap for guile 1.9.10

2010-06-01 Thread Romel Sandoval
11:20 +0200, Andy Wingo escribió: > Hi Romel, > > On Tue 01 Jun 2010 01:38, Romel Sandoval writes: > > > /configure: line 13215: `GUILE_MODULE_AVAILABLE(HAVE_SRFI_34, (srfi > > srfi-34))' > > configure failed > > It seems that aclocal is not finding

Re: Failing to build g-wrap for guile 1.9.10

2010-06-02 Thread Romel Sandoval
I'm trying to build G-Wrap because guile-gnome depends on it. El mié, 02-06-2010 a las 00:21 +0200, Ludovic Courtès escribió: > Hi, > > This won’t answer your question, but if you’re using 1.9, you may want > to look at the dynamic FFI in (system foreign) instead of G-Wrap. > > Thanks, > Ludo’.

Re: Failing to build g-wrap for guile 1.9.10

2010-06-02 Thread Romel Sandoval
Well `--disable-Werror' make it. Thanks! Rottmann, are you going to patch the code on the GIT repository? El mié, 02-06-2010 a las 21:29 +0200, Andreas Rottmann escribió: > Romel Sandoval writes: > > > After configure while trying to build I got this: > > > >

Re: Failing to build g-wrap for guile 1.9.10

2010-06-03 Thread Romel Sandoval
GCC 4.4.1 eglibc 2.10.1 El jue, 03-06-2010 a las 14:00 +0200, Andreas Rottmann escribió: > Romel Sandoval writes: > > > Well `--disable-Werror' make it. Thanks! > > > > Rottmann, are you going to patch the code on the GIT repository? > > > Yes, I'm

Re: Failing to build g-wrap for guile 1.9.10

2010-06-03 Thread Romel Sandoval
My distro is Trisquel 3.5 based on Ubuntu. I pulled the patch and now building works without --disable-Werror. Regards, Romel. El jue, 03-06-2010 a las 16:36 +0200, Andreas Rottmann escribió: > Romel Sandoval writes: > > > GCC 4.4.1 > > eglibc 2.10.1 > > > That

Data Dictionary and Configuration Files with Guile Scheme

2010-08-05 Thread Romel Sandoval
Hi, I'm trying to create a data dictionary [1] to generate code from it. But since I'm a scheme newbie I was wondering if this is the best method: {{{ (define-syntax table (syntax-rules () ((table name ...) (list 'table name ... (define-syntax column (syntax-rules () ((c

Re: Data Dictionary and Configuration Files with Guile Scheme

2010-08-18 Thread Romel Sandoval
El mié, 18-08-2010 a las 09:05 -0700, Andy Wingo escribió: > On Thu 05 Aug 2010 10:15, Romel Sandoval writes: > > > I'm trying to create a data dictionary [1] to generate code from it. > [...] > > This way I can write s-exp as in the example *projects-table* an after

Re: Data Dictionary and Configuration Files with Guile Scheme

2010-08-20 Thread Romel Sandoval
Thanks Thien-Thi that's exactly what I was trying to achieve. El mié, 18-08-2010 a las 20:20 +0200, Thien-Thi Nguyen escribió: > () Romel Sandoval > () Thu, 05 Aug 2010 12:15:44 -0500 > >What do you think? > > I use Guile-PG (several modules) and a homegrown metainfo

Guile base64

2010-09-01 Thread Romel Sandoval
Hi What happened to base64 library on Guile recent versions? I have see that was on Guile 1.4 (ice-9 base64) [1]. Even the code appears to be available [2]. Also I found an old guile project (codesystem base64) [3] Anybody knows if it's going to be reincorporated into Guile libraries or not? [

Re: Guile base64

2010-09-03 Thread Romel Sandoval
El vie, 03-09-2010 a las 01:34 +0200, Andreas Rottmann escribió: > Andy Wingo writes: > > > Greets, > > > > On Thu 02 Sep 2010 01:12, l...@gnu.org (Ludovic Courtès) writes: > > > >> Romel Sandoval writes: > >> > >>> What happened