From: Kevin M. Rosenberg Date: Wed, 9 Oct 2002 23:04:48 +0000 (+0000) Subject: r2960: *** empty log message *** X-Git-Tag: v1.96~337 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=80eb0884949a138edba1e468e904728caf083264 r2960: *** empty log message *** --- diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..ca8d09f --- /dev/null +++ b/.cvsignore @@ -0,0 +1 @@ +.bin diff --git a/README b/README new file mode 100644 index 0000000..9ecc16e --- /dev/null +++ b/README @@ -0,0 +1,5 @@ +KMRCL is a collection of utility functions. It is used as a base for +some of Kevin M. Rosenberg's Common Lisp packages. + +The web site for KMRCL is http://lisp.b9.com/ + diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README diff --git a/kmrcl.asd b/kmrcl.asd index 04124bc..9db79eb 100644 --- a/kmrcl.asd +++ b/kmrcl.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: kmrcl.asd,v 1.1 2002/10/06 13:21:47 kevin Exp $ +;;;; $Id: kmrcl.asd,v 1.2 2002/10/09 23:03:27 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,7 +16,7 @@ ;;;; ************************************************************************* #+allegro (require :pxml) -#+allegro (require :aserve) +#+(or allegro lispworks cmu) (require :aserve) (in-package :asdf) @@ -35,5 +35,6 @@ (:file "xml-utils" :depends-on ("package")) #+(or allegro lispworks) (:file "ml-class" :depends-on ("package")) #+(or allegro aserve) (:file "web-utils-aserve" :depends-on ("package")) - )) + ) + )