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
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))
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.
___
--- 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