Autoconf test for site scheme files

2007-08-07 Thread Mike Gran
Hi- I'm setting up the configure.ac and Makefile.in for a project that will install some guile modules. The modules have scheme wrappers and load a shared object file. The shared object library will go into /usr/local/lib Is there a "standard" way to get the site scheme directory? At first gl

displaying a backtrace in the shell

2007-08-07 Thread Erica L Cooper
hello, I am trying to get a guile script that is executed on a port server to display a backtrace if there is an error. as of now I have: (define (backtrace-test args) (catch 'ignore (lambda () (lazy-catch #t (lambda () (throw 'test-error))

Re: Autoconf test for site scheme files

2007-08-07 Thread Greg Troxel
The hard question is whether you want the site directory in guile's prefix, or the corresponding place in your prefix, assuming they are different. I have tended to use the corresponding place in my prefix, and then to either add to load path or symlink my subdir into guile's site directory. ___

Re: Autoconf test for site scheme files

2007-08-07 Thread Mike Gran
--- Greg Troxel <[EMAIL PROTECTED]> wrote: > The hard question is whether you want the site directory in guile's > prefix, or the corresponding place in your prefix, assuming they are > different. I have tended to use the corresponding place in my > prefix, > and then to either add to load path o