Hi, Aurelien Chanudet a écrit : > Thank you guys for the tip. > > Unfortunately, the environnement variable set in this way doesn't > appear to be visible from the shell guile was launched from. As a > result, the environnement variable does not appear to be visible to > the dynamic link editor. AFAIK this is a UNIX limitation, using setenv within a program will only change environnement variables for *this* program. Try to execute the script shell:
#!/bin/bash export FOO=bar and FOO won't be set in the "parent" shell. Type directly: export FOO=bar and it will be set. Point is the "export" command is interpreted by this parent shell, so it has means to set in within this shell. No idea how to do this with Guile, except setting your environnement variable from Guile and then launch your program _from_ Guile. The way bash does 8-) Hope this will help. Christian. -- Christian Mauduit <[EMAIL PROTECTED]> __/\__ ___ \~/ ~/(`_ \ ___ http://www.ufoot.org/ /_o _\ \ \_/ _ \_ http://www.ufoot.org/gnupg.pub \/ \___/ \__) _______________________________________________ Guile-user mailing list Guile-user@gnu.org http://lists.gnu.org/mailman/listinfo/guile-user