chiark / gitweb /
Added missing dependency for sb-posix
[clg] / tools / clg-tools.asd
index c019843a7a421d08ea76f3528bc353ebee7eb095..8ab71ab0a09846cb246cc1348f92cacaa96d8eda 100644 (file)
@@ -6,10 +6,13 @@
 
 (in-package #:clg-tools)
 
+#+clisp
+(unless custom:*parse-namestring-ansi*
+  (error "Standard behaviour of PARSE-NAMESTRING must be enabled by setting CUSTOM:*PARSE-NAMESTRING-ANSI* to non-NIL or running clisp with the -ansi option"))
 
 (defsystem clg-tools
-    :components ((:file "autoexport")
-                (:file "utils")
-                (:file "config" :depends-on ("utils"))
-                (:file "asdf-extensions" :depends-on ("utils"))))
-
+  :depends-on (#+sbcl sb-posix)
+  :components ((:file "autoexport")
+              (:file "utils")
+              (:file "config" :depends-on ("utils"))
+              (:file "asdf-extensions" :depends-on ("utils"))))