aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--consfigurator.asd5
1 files changed, 3 insertions, 2 deletions
diff --git a/consfigurator.asd b/consfigurator.asd
index 4239950..8c48e8d 100644
--- a/consfigurator.asd
+++ b/consfigurator.asd
@@ -12,7 +12,7 @@
#:cl-interpol
#:named-readtables
#:cffi
- #+sbcl #:sb-posix
+ (:feature :sbcl (:require #:sb-posix))
#:closer-mop
#:trivial-backtrace
#:trivial-macroexpand-all)
@@ -72,7 +72,8 @@
:licence "GPL-3+"
:serial t
:depends-on (#:consfigurator
- #+sbcl #:sb-rt #-sbcl #:rt)
+ (:feature :sbcl (:require #:sb-rt))
+ (:feature (:not :sbcl) #:rt))
:components ((:file "tests/package")
(:file "tests/property/file"))
:perform (test-op (o c) (symbol-call :consfigurator/tests '#:do-tests)))