This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

two more bugs(?)...


Ok, two bugs for now....
First one i found while playing with pipes.
This was on an old CVS version of guile, dunno
which exactly (more about this later):

guile> (define p (pipe))
guile> (write-line "foo" (cdr p))
guile> (force-output (cdr p))
guile> (let loop ()
...        (cond
...            ((char-ready? (car p))
...                (display (read-char (car p)))
...                (loop))))
foo
guile> (define p (pipe))
guile> (write-line "foo" (cdr p))
guile> (force-output (cdr p))
guile> (read-line (car p))
Aborted

Ok, and then a problem with the newest guile snapshots:

guile-core$ ./configure --prefix=/usr --enable-maintainer-mode \
  --enable-dynamic-linking --with-readline --with-threads
guile-core$ make
configure.in:64: warning: AC_TRY_RUN called without default to allow
cross compiling
configure.in:65: warning: AC_TRY_RUN called without default to allow
cross compiling
[...]
make[2]: Entering directory `/usr/src/guile-core/qt'
make[2]: *** No rule to make target `@QTHREAD_LTLIBS@', needed by
`all-am'.  Stop.
make[2]: Leaving directory `/usr/src/guile-core/qt'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/src/guile-core/qt'
make: *** [all-recursive] Error 1
guile-core$ 

I tried a bit to fix this but couldn't get make to run through.
It has been like this for a few versions now - am i the only one to
get these errors?

Aautomake (GNU automake) 1.4
Autoconf version 2.13

	-forcer

-- 
((email . "forcer@mindless.com")       (www . "http://webserver.de/forcer/")
 (irc   . "forcer@#StarWars (IRCnet)") (pgp . "key available on my website"))