chiark / gitweb /
Mde autoexport dependent on asdf-extensions
[clg] / tools / clg-tools.asd
index fac09a5669da3e43169c36764e896d44fb6793ad..65891639a5b7ad7e73f6cbc391064141c98e8ab1 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 (#+sbcl sb-posix)
+  :components ((:file "utils")
+              (:file "config" :depends-on ("utils"))
+              (:file "asdf-extensions" :depends-on ("utils"))
+              (:file "autoexport" :depends-on ("asdf-extensions"))))