[log4cl-cvs] CVS update: log4cl/log4cl.asd
Marco Baringer
mbaringer at common-lisp.net
Mon Mar 1 18:13:10 UTC 2004
Update of /project/log4cl/cvsroot/log4cl
In directory common-lisp.net:/tmp/cvs-serv20842
Modified Files:
log4cl.asd
Log Message:
Split into three systems, a core system and then one system for the
db appender and one for the syslog appender.
Date: Mon Mar 1 13:13:10 2004
Author: mbaringer
Index: log4cl/log4cl.asd
diff -u log4cl/log4cl.asd:1.1.1.1 log4cl/log4cl.asd:1.2
--- log4cl/log4cl.asd:1.1.1.1 Fri Feb 20 03:59:58 2004
+++ log4cl/log4cl.asd Mon Mar 1 13:13:10 2004
@@ -28,7 +28,7 @@
:name "log4cl"
:author "Nicolas Lamirault <lam at perave.org>"
:version "0.3"
- :licence "GNU General Public License"
+ :licence "Lisp Lesser GNU General Public License"
:description "Log tool for Common Lisp"
:properties (((#:author #:email) . "lam at perave.org")
(#:date . "05/11/2003")
@@ -37,13 +37,17 @@
((#:albert #:docbook #:template) . "book")
((#:albert #:docbook #:baseurl) . "http://www.perave.org/tools/log4cl/")
((#:albert #:docbook #:bgcolor) . "white")
- ((#:albert #:docbook #:textcolor) . "black")
- )
+ ((#:albert #:docbook #:textcolor) . "black"))
:components ((:file "package")
(:file "logger")
(:file "appender")
- (:file "layout"))
- :depends-on (:uffi))
-
+ (:file "layout")))
-
+(defsystem :log4cl.syslog
+ :components ((:file "appender-syslog" :depends-on ("cl-syslog"))
+ (:file "cl-syslog"))
+ :depends-on (:log4cl :uffi))
+
+(defsystem :log4cl.db
+ :components ((:file "appender-db"))
+ :depends-on (:log4cl))
More information about the Log4cl-cvs
mailing list