X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/blobdiff_plain/7193135736bc10779fb74d7258ef54fcb1710144..3f7f229be66662bfb2bab045b3fbc58e87a828b2:/tools/clg-tools.asd diff --git a/tools/clg-tools.asd b/tools/clg-tools.asd index 1e3d01c..8ab71ab 100644 --- a/tools/clg-tools.asd +++ b/tools/clg-tools.asd @@ -1,17 +1,18 @@ ;;; -*- Mode: lisp -*- (defpackage #:clg-tools - (:use #:common-lisp #:asdf) - ) + (:use #:common-lisp #:asdf)) (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 - :depends-on (uffi) - :components ((:file "autoexport") - (:file "config") - (:file "sharedlib") - (:file "asdf-extensions"))) - + :depends-on (#+sbcl sb-posix) + :components ((:file "autoexport") + (:file "utils") + (:file "config" :depends-on ("utils")) + (:file "asdf-extensions" :depends-on ("utils"))))