root/branches/sbcl-0.9.x-testing/cl-xml.asd

Revision 12, 1.2 kB (checked in by banderson, 3 years ago)

rest of changes/hacks for CL-XML to work with SBCL 0.9.8

Line 
1;;;; -*- Mode: lisp; indent-tabs-mode: nil -*-
2
3(defpackage #:cl-xml-system
4  (:use #:cl #:asdf))
5
6(in-package #:cl-xml-system)
7
8;; set some options
9(pushnew :xml-symbols *features*)
10(setf *features* (remove :nameset-tokenizer *features*))
11
12;; system
13(defsystem cl-xml
14  :description "Common Lisp support for the 'Extensible Markup Language'"
15  :author "James Anderson <janderson@ravenpack.com>"
16  :version "0.949"
17  :licence "LGPL"
18  :components
19  ((:module
20    :library
21    :components
22    ((:file "define-system")))
23   (:file "sysdcl" :depends-on (:library))
24   (:file "load" :depends-on ("sysdcl"))))
25;;;; -*- Mode: lisp; indent-tabs-mode: nil -*-
26
27(defpackage #:cl-xml-system
28  (:use #:cl #:asdf))
29
30(in-package #:cl-xml-system)
31
32;; set some options
33(pushnew :xml-symbols *features*)
34(setf *features* (remove :nameset-tokenizer *features*))
35
36;; system
37(defsystem cl-xml
38  :description "Common Lisp support for the 'Extensible Markup Language'"
39  :author "James Anderson <janderson@ravenpack.com>"
40  :version "0.949"
41  :licence "LGPL"
42  :components
43  ((:module
44    :library
45    :components
46    ((:file "define-system")))
47   (:file "sysdcl" :depends-on (:library))
48   (:file "load" :depends-on ("sysdcl"))))
Note: See TracBrowser for help on using the browser.