Modified GVALUE-TYPE to return NIL on uninitialized gvalues
[clg] / tools / clg-tools.asd
index 1e3d01c..bbe1628 100644 (file)
@@ -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")))
+                (:file "utils")
+                (:file "config" :depends-on ("utils"))
+                (:file "asdf-extensions" :depends-on ("utils"))))