Index: cxml.asd =================================================================== RCS file: /project/cxml/cvsroot/cxml/cxml.asd,v retrieving revision 1.11 diff -p -u -r1.11 cxml.asd --- cxml.asd 24 Jan 2006 19:35:58 -0000 1.11 +++ cxml.asd 16 Aug 2006 17:47:51 -0000 @@ -31,7 +31,7 @@ (format t "~&;;; Building cxml with (UNSIGNED-BYTE 16) RUNES~%") #+rune-is-character -(format t "~&;;; Building cxml with CHARACTER RUNES~%") +(format t "~&;;; Building cxml with CHARACTER RUNES~%") (defsystem :cxml-runes :default-component-class closure-source-file @@ -44,8 +44,8 @@ (:file "definline") (:file runes :pathname - #-rune-is-character "runes" - #+rune-is-character "characters") + #-rune-is-character "runes.lisp" + #+rune-is-character "characters.lisp") #+rune-is-integer (:file "utf8") (:file "syntax") (:file "encodings") @@ -101,12 +101,12 @@ (make-pathname :name nil :type nil :defaults *load-truename*)) :components ((:file "package") - (:file rune-impl :pathname "dom-impl" :depends-on ("package")) - (:file rune-builder :pathname "dom-builder" :depends-on (rune-impl)) + (:file rune-impl :pathname "dom-impl.lisp" :depends-on ("package")) + (:file rune-builder :pathname "dom-builder.lisp" :depends-on (rune-impl)) #+rune-is-integer - (utf8dom-file utf8-impl :pathname "dom-impl" :depends-on ("package")) + (utf8dom-file utf8-impl :pathname "dom-impl.lisp" :depends-on ("package")) #+rune-is-integer - (utf8dom-file utf8-builder :pathname "dom-builder" :depends-on (utf8-impl)) + (utf8dom-file utf8-builder :pathname "dom-builder.lisp" :depends-on (utf8-impl)) (:file "dom-sax" :depends-on ("package"))) :depends-on (:cxml-xml))