[nio-cvs] CVS nio
CVS User rlaakso
rlaakso at common-lisp.net
Sun Jan 22 12:30:31 UTC 2006
Update of /project/nio/cvsroot/nio
In directory common-lisp:/tmp/cvs-serv739
Modified Files:
event-notification.asd nio.asd
Removed Files:
cffi.lisp
Log Message:
fixed .asd's
--- /project/nio/cvsroot/nio/event-notification.asd 2006/01/13 18:28:15 1.1
+++ /project/nio/cvsroot/nio/event-notification.asd 2006/01/22 12:30:31 1.2
@@ -4,11 +4,11 @@
(defsystem :event-notification
- :components ((:file "package")
- (:file "kqueue-cffi" :depends-on ("package"))
- (:file "epoll-cffi" :depends-on ("package"))
- (:file "kqueue" :depends-on ("package" "kqueue-cffi"))
- (:file "epoll" :depends-on ("package" "epoll-cffi")))
+ :components ((:file "event-notification")
+ (:file "kqueue-cffi" :depends-on ("event-notification"))
+ (:file "epoll-cffi" :depends-on ("event-notification"))
+ (:file "kqueue" :depends-on ("event-notification" "kqueue-cffi"))
+ (:file "epoll" :depends-on ("event-notification" "epoll-cffi")))
:depends-on (:cffi))
--- /project/nio/cvsroot/nio/nio.asd 2006/01/13 18:28:15 1.1
+++ /project/nio/cvsroot/nio/nio.asd 2006/01/22 12:30:31 1.2
@@ -4,9 +4,9 @@
(defsystem :nio
- :components ((:file "package")
- (:file "socket-cffi" :depends-on ("package"))
- (:file "socket" :depends-on ("package" "socket-cffi")))
+ :components ((:file "nio")
+ (:file "socket-cffi" :depends-on ("nio"))
+ (:file "socket" :depends-on ("nio" "socket-cffi")))
:depends-on (:cffi))
More information about the Nio-cvs
mailing list