[closure-cvs] CVS update: cxml/README.html cxml/cxml.asd
David Lichteblau
dlichteblau at common-lisp.net
Wed Apr 20 19:58:03 UTC 2005
Update of /project/cxml/cvsroot/cxml
In directory common-lisp.net:/tmp/cvs-serv1210
Modified Files:
README.html cxml.asd
Log Message:
LispWorks port (thanks to Edi Weitz)
Date: Wed Apr 20 21:58:00 2005
Author: dlichteblau
Index: cxml/README.html
diff -u cxml/README.html:1.3 cxml/README.html:1.4
--- cxml/README.html:1.3 Wed Apr 6 23:27:04 2005
+++ cxml/README.html Wed Apr 20 21:57:59 2005
@@ -114,6 +114,8 @@
to <tt>parse-dtd-stream</tt>; SAX proxy class</li>
<li>Minor bugfixes: Workaround for CMUCL problem
with <tt>fd-streams</tt> (can read from cmucl sockets now)</li>
+ <li>Port to OpenMCL (thanks to Rudi Schlatte).</li>
+ <li>Port to LispWorks (thanks to Edi Weitz).</li>
</ul>
<p class="nomargin"><tt>patch-357</tt> (2004-10-10)</p>
<ul class="nomargin">
@@ -190,6 +192,9 @@
CLISP (reported to work with and without <tt>rune-is-character</tt>).
CLISP needs to be run with an option like <tt>-E iso-8869-1</tt>
teaching it to accept cxml's non-ASCII source files.
+ </li>
+ <li>
+ LispWorks
</li>
</ul>
<p>
Index: cxml/cxml.asd
diff -u cxml/cxml.asd:1.2 cxml/cxml.asd:1.3
--- cxml/cxml.asd:1.2 Fri Mar 25 19:16:29 2005
+++ cxml/cxml.asd Wed Apr 20 21:57:59 2005
@@ -53,7 +53,9 @@
#+(and allegro-version>= (version>= 5.0)) "dep-acl5"
#+(and allegro-version>= (not (version>= 5.0))) "dep-acl"
#+openmcl "dep-openmcl"
- #-(or sbcl CLISP CMU allegro openmcl) #.(error "Configure!")
+ #+lispworks "dep-lw"
+ #-(or sbcl CLISP CMU allegro openmcl lispworks)
+ #.(error "unsupported lisp implementation!")
:depends-on ("package"))
(:file runes
:pathname
More information about the Closure-cvs
mailing list