aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-05-15 16:26:39 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-05-15 16:29:31 -0700
commitf36c6a7e5cdea412a32a5c164007285c29bfbf41 (patch)
tree8a29460b39eeaefcc111067098ffdbb91c807a31
parentd3a3352ba05c58d4f1de798767b9853f05b65f98 (diff)
downloadconsfigurator-f36c6a7e5cdea412a32a5c164007285c29bfbf41.tar.gz
avoid using reader macros when can use ASDF feature dependencies
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-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)))