aboutsummaryrefslogtreecommitdiffstats
path: root/lib/cuprate.sld
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2025-11-02 15:13:46 -0500
committerGravatar Peter McGoron 2025-11-02 15:13:46 -0500
commit45fc9ba802ad3b393116f52fb10172f61c2d2c81 (patch)
treeb99b159e7e2a4f7f3a4d460018af6221d0db9345 /lib/cuprate.sld
parentadd gauche (diff)
fix chicken build, support STKLOS
Diffstat (limited to 'lib/cuprate.sld')
-rw-r--r--lib/cuprate.sld10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/cuprate.sld b/lib/cuprate.sld
index 4123074..91df5ff 100644
--- a/lib/cuprate.sld
+++ b/lib/cuprate.sld
@@ -54,11 +54,11 @@
(newline)))))
;; Better containers for the test info than alists, if available.
(cond-expand
- (chicken (import (srfi 128) (srfi 146 hash))
- (begin
- (define default-test-dto hash-mapping-dto)
- (define (alist->default-dictionary x)
- (alist->hashmap (make-default-comparator) x))))
+ ((or chicken skint) (import (srfi 128) (srfi 146 hash))
+ (begin
+ (define default-test-dto hash-mapping-dto)
+ (define (alist->default-dictionary x)
+ (alist->hashmap (make-default-comparator) x))))
(else (begin
(define default-test-dto eqv-alist-dto)
(define (alist->default-dictionary x) x))))