bug#64723: [PATCH] Improve DLL search strategy for load-foreign-library

2023-09-08 Thread Janneke Nieuwenhuizen
Mike Gran via Bug reports for GUILE, GNU's Ubiquitous Extension Language writes: Hello Mike, >> The new non-libltdl foreign library loading algorithm from 3.0.6 >> fails to cover common cases regarding how libtool names and installs >> DLL files.  Notably, it fails to recognize when libtool has a

bug#43364: with-output-to-port works with file ports

2023-09-08 Thread Ricardo Wurmus
Felix Lechner via "Bug reports for GUILE, GNU's Ubiquitous Extension Language" writes: > Hi, > > In an interesting (or perhaps maddening) inconsistency, > 'with-output-to-port' captures stdout from system* here > > (call-with-output-file "/tmp/test.log" > (lambda (port) > (with-output-to

bug#43364: with-output-to-port works with file ports

2023-09-08 Thread Bug reports for GUILE, GNU's Ubiquitous Extension Language
Hi, In an interesting (or perhaps maddening) inconsistency, 'with-output-to-port' captures stdout from system* here (call-with-output-file "/tmp/test.log" (lambda (port) (with-output-to-port port (lambda () (system* "mktemp" "-d") but 'with-output-to-string' does no