mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-28 16:00:22 +02:00
* boot-9.scm: Added conditional loading of threads.scm.
This commit is contained in:
parent
c275ddc708
commit
90895e5c8f
1 changed files with 13 additions and 2 deletions
|
@ -3560,5 +3560,16 @@
|
|||
;;;
|
||||
|
||||
(if (memq 'debug-extensions *features*)
|
||||
(define-module (guile) :use-module (ice-9 debug))
|
||||
(define-module (guile)))
|
||||
(define-module (guile) :use-module (ice-9 debug)))
|
||||
|
||||
|
||||
|
||||
;;; {Load thread code if threads are present.}
|
||||
;;;
|
||||
;;; *fixme* This is a temporary solution.
|
||||
;;;
|
||||
|
||||
(if (memq 'threads *features*)
|
||||
(define-module (guile) :use-module (ice-9 threads)))
|
||||
|
||||
(define-module (guile))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue