Sebastian Tennant <[EMAIL PROTECTED]> writes:

> Quoth Greg Troxel <[EMAIL PROTECTED]>:
>>   but...
>>
>>   "To build Guile-PG you need to have installed both the PostgreSQL
>>    frontend library libpq, and a version of Guile that can load binary
>>    module (a b c) from file a/b/c.so or a/b/c/libc.la under `%load-path'."
>>
>>   I believe the last bit means it'll work with guile-1.4 or guile-1.6
>>   (because the ability was only deprecated at this stage), but guile-1.8
>>   definitely no longer has this ability.
>>
>> True, but to make this work in 1.8 you just have to write a single .scm
>> file for the module which loads the shlib and re-exports all the right
>> symbols.  And maybe a little else, but I am pretty sure not much.
>
> Easy for a C programmer no doubt, but not so easy for a lowly scripter
> like myself.

  (define-module (pg whatever)
    #:export (guile-pg symbols ...))
  
  (load-extension "libwhateverpg" "guile_pg_init")

Is roughly what you need. Assuming that there is an init function in
guile-pg that creates all of bindings for the library which, if I am
remembering how the autoloading magic works, it has to. This is
definitely something that anyone could do (just find the guile-pg init
function and export every scm_define_gsubr etc.).
 
-- 
Lindsay (Carlton): nighttime baker! sounds a little iffy


Reply via email to