unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* Problem with slib
@ 2012-12-16 23:56 Germán A. Arias
  2012-12-17  7:46 ` Mark H Weaver
  0 siblings, 1 reply; 4+ messages in thread
From: Germán A. Arias @ 2012-12-16 23:56 UTC (permalink / raw)
  To: Guile

I install slib as described in manual, but I have a problem. First I
type:

(use-modules (ice-9 slib))

And get:

scheme@(guile-user)> (use-modules (ice-9 slib))
;;; note: source file /usr/local/share/guile/2.0/slib/guile.init
;;;       newer than
compiled /home/german/.cache/guile/ccache/2.0-LE-4-2.0/usr/local/lib/slib/guile.init.go
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling /usr/local/share/guile/2.0/slib/guile.init
;;; /usr/local/share/guile/2.0/slib/guile.init:447:17: warning: possibly
unbound variable `read-line'
;;; /usr/local/share/guile/2.0/slib/guile.init:724:12: warning: possibly
unbound variable `dimensions->uniform-array'
;;; /usr/local/share/guile/2.0/slib/guile.init:724:44: warning: possibly
unbound variable `array-prototype'
;;; /usr/local/share/guile/2.0/slib/guile.init:725:12: warning: possibly
unbound variable `dimensions->uniform-array'
;;; /usr/local/share/guile/2.0/slib/guile.init:725:44: warning: possibly
unbound variable `array-prototype'
;;; /usr/local/share/guile/2.0/slib/guile.init:791:26: warning: possibly
unbound variable `list->uniform-array'
;;; /usr/local/share/guile/2.0/slib/guile.init:792:26: warning: possibly
unbound variable `list->uniform-array'
;;; /usr/local/share/guile/2.0/slib/guile.init:794:26: warning: possibly
unbound variable `list->uniform-array'
;;; /usr/local/share/guile/2.0/slib/guile.init:795:26: warning: possibly
unbound variable `list->uniform-array'
;;; /usr/local/share/guile/2.0/slib/guile.init:868:29: warning: possibly
unbound variable `object->limited-string'
;;;
compiled /home/german/.cache/guile/ccache/2.0-LE-4-2.0/usr/local/lib/slib/guile.init.go
;;; ERROR: In procedure stat: No such file or directory:
"/usr/local/share/guile/2.0/slib/require"
;;; note: source file /usr/local/share/guile/2.0/slib/require.scm
;;;       newer than
compiled /home/german/.cache/guile/ccache/2.0-LE-4-2.0/usr/local/lib/slib/require.scm.go
;;; compiling /usr/local/share/guile/2.0/slib/require.scm
;;; /usr/local/share/guile/2.0/slib/require.scm:155:20: warning:
possibly unbound variable `synclo:load'
;;; /usr/local/share/guile/2.0/slib/require.scm:155:20: warning:
possibly unbound variable `syncase:load'
;;; /usr/local/share/guile/2.0/slib/require.scm:155:20: warning:
possibly unbound variable `macwork:load'
;;; /usr/local/share/guile/2.0/slib/require.scm:155:20: warning:
possibly unbound variable `load-ciexyz'
;;; /usr/local/share/guile/2.0/slib/require.scm:169:25: warning:
possibly unbound variable `load-color-dictionary'
;;; /usr/local/share/guile/2.0/slib/require.scm:237:9: warning: possibly
unbound variable `transcript-on'
;;; /usr/local/share/guile/2.0/slib/require.scm:239:9: warning: possibly
unbound variable `transcript-off'
;;;
compiled /home/german/.cache/guile/ccache/2.0-LE-4-2.0/usr/local/lib/slib/require.scm.go
scheme@(guile-user)>


And then with: (require 'primes)

scheme@(guile-user)> (require 'primes)
;;; ERROR: In procedure stat: No such file or directory:
"/usr/local/share/guile/2.0/slib/mklibcat"
;;; note: source file /usr/local/share/guile/2.0/slib/mklibcat.scm
;;;       newer than
compiled /home/german/.cache/guile/ccache/2.0-LE-4-2.0/usr/local/lib/slib/mklibcat.scm.go
;;; compiling /usr/local/share/guile/2.0/slib/mklibcat.scm
;;;
compiled /home/german/.cache/guile/ccache/2.0-LE-4-2.0/usr/local/lib/slib/mklibcat.scm.go
ice-9/boot-9.scm:2131:4: In procedure save-module-excursion:
ice-9/boot-9.scm:2131:4: In procedure open-file: No such file or
directory: "/usr/local/share/guile/2.0/slib/mklibcat"

Entering a new prompt.  Type `,bt' for a backtrace or `,q' to continue.
scheme@(ice-9 slib) [1]> (quit)



All those files are there (require, mklibcat) so I don't know where is
the problem. Any advice? Thanks.






^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Problem with slib
  2012-12-16 23:56 Problem with slib Germán A. Arias
@ 2012-12-17  7:46 ` Mark H Weaver
  2012-12-17 22:21   ` Germán A. Arias
  0 siblings, 1 reply; 4+ messages in thread
From: Mark H Weaver @ 2012-12-17  7:46 UTC (permalink / raw)
  To: Germán A. Arias; +Cc: Guile

Germán "A. Arias" <german@xelalug.org> writes:
> I install slib as described in manual, but I have a problem.

Unfortunately, the slib interface for Guile has been broken for quite
some time.  There has been some recent discussion [1] of fixing it,
including some preliminary patches, but that work seems to have stalled.
The main problem seems to be that none of the active Guile developers
use slib.  If someone would like to finish this work, it would be much
appreciated.

[1] http://lists.gnu.org/archive/html/guile-devel/2012-10/msg00095.html

     Mark



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Problem with slib
  2012-12-17  7:46 ` Mark H Weaver
@ 2012-12-17 22:21   ` Germán A. Arias
  2012-12-17 23:06     ` Mike Gran
  0 siblings, 1 reply; 4+ messages in thread
From: Germán A. Arias @ 2012-12-17 22:21 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: Guile

El lun, 17-12-2012 a las 02:46 -0500, Mark H Weaver escribió:
> Germán "A. Arias" <german@xelalug.org> writes:
> > I install slib as described in manual, but I have a problem.
> 
> Unfortunately, the slib interface for Guile has been broken for quite
> some time.  There has been some recent discussion [1] of fixing it,
> including some preliminary patches, but that work seems to have stalled.
> The main problem seems to be that none of the active Guile developers
> use slib.  If someone would like to finish this work, it would be much
> appreciated.
> 
> [1] http://lists.gnu.org/archive/html/guile-devel/2012-10/msg00095.html
> 
>      Mark

I will see if this solve my problem. Thanks.




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Problem with slib
  2012-12-17 22:21   ` Germán A. Arias
@ 2012-12-17 23:06     ` Mike Gran
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Gran @ 2012-12-17 23:06 UTC (permalink / raw)
  To: Germán A. Arias, Mark H Weaver; +Cc: Guile

> From: Germán A. Arias <german@xelalug.org>
>>  > I install slib as described in manual, but I have a problem.
>> 
>>  Unfortunately, the slib interface for Guile has been broken for quite
>>  some time.  There has been some recent discussion [1] of fixing it,
>>  including some preliminary patches, but that work seems to have stalled.
>>  The main problem seems to be that none of the active Guile developers
>>  use slib.  If someone would like to finish this work, it would be much
>>  appreciated.

Hi.  I noticed that the gsrc has an install recipe for slib to make
it work for Guile.  So that might be a solved problem for those that
use gsrc.  But I haven't tried it out personally.
 
http://bzr.savannah.gnu.org/lh/gsrc/trunk/files/1503?file_id=slib-20120901151027-txggwlqv9dc193cg-1
 
-Mike



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-12-17 23:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-16 23:56 Problem with slib Germán A. Arias
2012-12-17  7:46 ` Mark H Weaver
2012-12-17 22:21   ` Germán A. Arias
2012-12-17 23:06     ` Mike Gran

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).