(unofficial) Guile 1.4.1.106 available

2005-07-30 Thread Thien-Thi Nguyen
release notes: a little elisp slinging this time around, plus the usual stuff. w/ this release, all distributed modules are finally documented in one way or another (there is always room for improvement). if you discover a module and it's not in the module index, that's a bug! thi NE

Re: setting env variable from Guile

2005-07-30 Thread Mike Gran
There are four things that should work, but, that I haven't tried out yet. You could call "dynamic-link" with the explicit pathname plus filename to your library. If your app is a pure guile script, you could write a wrapper shell script that exports the environment variable you need and then cal

Re: setting env variable from Guile

2005-07-30 Thread Thien-Thi Nguyen
From: Mike Gran <[EMAIL PROTECTED]> Date: Sat, 30 Jul 2005 06:47:57 -0700 (PDT) You could wrap the function lt_dladdsearchdir as a Guile function and call it from your script. fyi, this is the approach taken in Guile 1.4.x, as implemented in libguile/lt.c, below. works fine. thi