Re: how to write a 'configure.ac' for an* optional* support of libguile.

2017-12-15 Thread Ludovic Courtès
Hello, Pierre Lindenbaum skribis: >     AC_MSG_CHECKING(for Guile) >     guile-config link > /dev/null || { >     echo "configure: cannot find guile-config; is Guile installed?" 1>&2 >     exit 1 >   } >     CFLAGS="$CFLAGS `guile-config compile`" >     LDFLAGS="$LDFLAGS `guile-confi

Re: Introducing GNUPaste

2017-12-15 Thread Mike Gerwitz
Key, Kristofer: On Thu, Dec 14, 2017 at 13:37:30 -0500, Kristofer Buffington wrote: > I am excited to share GNUPaste! This is a really simple web app > similar to paste.lisp.org built with Guile. I have a linode running it > from git on GuixSD. Please reconsider the use of "GNU" in the program na

Re: function registered with scm_c_define_gsubr: how can i handle an optional parameter?

2017-12-15 Thread Alex Vong
Mark H Weaver writes: > Hi Alex, > > Alex Vong writes: > >> Oh, I didn't really think too much about this. I always thought immediate >> objects like SCM_EOL, SCM_BOOL_T, ..., SCM_UNDEFINED can be compared >> using '=='. Is this an implementation detail that I should not depend >> on? > > That's

Re: Website translations with Haunt

2017-12-15 Thread pelzflorian (Florian Pelz)
On Fri, Dec 15, 2017 at 12:06:28PM +, ng0 wrote: > Christopher Lemmer Webber transcribed 1.4K bytes: > > pelzflorian (Florian Pelz) writes: > > > > > I want to ask for your thoughts on my new solution since translations > > > are probably important to many Haunt users. In particular, I believ

Re: Website translations with Haunt

2017-12-15 Thread pelzflorian (Florian Pelz)
On Thu, Dec 14, 2017 at 10:16:04AM +0100, Ludovic Courtès wrote: > Hi! > > "pelzflorian (Florian Pelz)" skribis: > > > I want to ask for your thoughts on my new solution since translations > > are probably important to many Haunt users. In particular, I believe > > there was some discussion on

Re: Website translations with Haunt

2017-12-15 Thread ng0
Christopher Lemmer Webber transcribed 1.4K bytes: > pelzflorian (Florian Pelz) writes: > > > I want to ask for your thoughts on my new solution since translations > > are probably important to many Haunt users. In particular, I believe > > there was some discussion on Website translation on the G

Re: Website translations with Haunt

2017-12-15 Thread pelzflorian (Florian Pelz)
On Thu, Dec 14, 2017 at 08:23:50AM -0500, Thompson, David wrote: > Hey everyone! > > On Thu, Dec 14, 2017 at 4:16 AM, Ludovic Courtès wrote: > > Hi! > > > > "pelzflorian (Florian Pelz)" skribis: > > > >> I want to ask for your thoughts on my new solution since translations > >> are probably impo

Re: Introducing GNUPaste

2017-12-15 Thread Ludovic Courtès
Hi Kristofer, Kristofer Buffington skribis: > I am excited to share GNUPaste! This is a really simple web app > similar to paste.lisp.org built with Guile. I have a linode running it > from git on GuixSD. > > https://paste.freshbakedyams.com (Please use it!) > Source: https://github.com/kristofe

Re: Introducing GNUPaste

2017-12-15 Thread ng0
Hi Kristofer, Kristofer Buffington transcribed 1.1K bytes: > Hello! > > I am excited to share GNUPaste! This is a really simple web app > similar to paste.lisp.org built with Guile. I have a linode running it > from git on GuixSD. great start, I like it. What would be really good is if there cou

how to write a 'configure.ac' for an* optional* support of libguile.

2017-12-15 Thread Pierre Lindenbaum
(Cross-posted https://stackoverflow.com/questions/47819563/how-to-configure-ac-with-optional-gnu-guile-library-with-guile ) Hi all, I'm looking for a simple example of configure.ac for an optional support of libguile I'm a complete beginner with configure.ac, I'm trying to create a simple p

Re: Website translations with Haunt

2017-12-15 Thread pelzflorian (Florian Pelz)
On Thu, Dec 14, 2017 at 09:48:40PM -0600, Christopher Lemmer Webber wrote: > At one point Mark Weaver and I were talking about something like a > special quasiquote that could be used for translations with gettext, > since many translations are very tricky in situations like: > > `(p "Download fro

Re: function registered with scm_c_define_gsubr: how can i handle an optional parameter?

2017-12-15 Thread Mark H Weaver
Hi Alex, Alex Vong writes: > Oh, I didn't really think too much about this. I always thought immediate > objects like SCM_EOL, SCM_BOOL_T, ..., SCM_UNDEFINED can be compared > using '=='. Is this an implementation detail that I should not depend > on? That's right. You should not rely on SCM b