summaryrefslogtreecommitdiff
path: root/Apps
diff options
context:
space:
mode:
authorEric Timmons <etimmons@mit.edu>2021-09-27 15:44:39 -0400
committerEric Timmons <etimmons@mit.edu>2021-09-27 15:44:39 -0400
commita6fff17fdeb54b7d0eaf4f0dd5c2370f8274f593 (patch)
treebc8101b396844394d0852acf5fa34887af01ce06 /Apps
parent9836a0a3f1328a321fda68d937dc7728b9370c09 (diff)
Update ASDF dependencies and components
Do not use reader macros to hide dependencies. Use ASDF's feature dependency specification. This has been available since before ASDF 3. Do not use the symbol cffi-grovel:grovel-file in component specifications. Use the string "cffi-grovel:grovel-file" instead. This allows the reader to READ the DEFSYSTEM before cffi-grovel has been loaded. ASDF will then load cffi-grovel (it is in the :defsystem-depends-on list) and resolve the string to the symbol. This has been available since ASDF 3.1.1.
Diffstat (limited to 'Apps')
-rw-r--r--Apps/Listener/clim-listener.asd2
1 files changed, 1 insertions, 1 deletions
diff --git a/Apps/Listener/clim-listener.asd b/Apps/Listener/clim-listener.asd
index dfc8b495..a3c5950b 100644
--- a/Apps/Listener/clim-listener.asd
+++ b/Apps/Listener/clim-listener.asd
@@ -15,7 +15,7 @@ experimentation. Present features include:
- Navigation of the filesystem, including a directory stack
- Launching of external programs sensitive to file type (determined by mailcap
and mime.types files)"
- :depends-on (#:mcclim #:clim-debugger #:uiop #:cl-fad #+sbcl #:sb-posix)
+ :depends-on (#:mcclim #:clim-debugger #:uiop #:cl-fad (:feature :sbcl #:sb-posix))
:serial t
:build-operation asdf:program-op
:build-pathname "clim-listener"