[nio-cvs] r16 - in branches/home/psmith/restructure/src: . compat io

psmith at common-lisp.net psmith at common-lisp.net
Thu Dec 28 00:37:51 UTC 2006


Author: psmith
Date: Wed Dec 27 19:37:50 2006
New Revision: 16

Added:
   branches/home/psmith/restructure/src/compat/
   branches/home/psmith/restructure/src/compat/errno.lisp
      - copied unchanged from r14, branches/home/psmith/restructure/src/errno.lisp
   branches/home/psmith/restructure/src/io/packet.lisp
      - copied unchanged from r15, branches/home/psmith/restructure/src/packet.lisp
Removed:
   branches/home/psmith/restructure/src/errno.lisp
   branches/home/psmith/restructure/src/packet.lisp
Modified:
   branches/home/psmith/restructure/src/io/nio.asd
   branches/home/psmith/restructure/src/io/nio.lisp
Log:
more tidy

Modified: branches/home/psmith/restructure/src/io/nio.asd
==============================================================================
--- branches/home/psmith/restructure/src/io/nio.asd	(original)
+++ branches/home/psmith/restructure/src/io/nio.asd	Wed Dec 27 19:37:50 2006
@@ -4,12 +4,11 @@
 
 (defsystem :nio
 
-    :components ((:file "src/nio")
-		 (:file "src/fd-helper" :depends-on ("src/nio"))
-		 (:file "src/async-fd" :depends-on ("src/nio" "src/fd-helper"))
-		 (:file "src/http-state-machine" :depends-on ("src/async-fd"))
-		 (:file "src/async-socket" :depends-on ("src/async-fd"))
+    :components ((:file "nio")
+		 (:file "fd-helper" :depends-on ("nio"))
+		 (:file "async-fd" :depends-on ("nio" "fd-helper"))
+		 (:file "async-socket" :depends-on ("async-fd"))
 		 )
 
-    :depends-on (:cffi :event-notification :nio-buffer :http-protocol))
+    :depends-on (:cffi :event-notification :nio-buffer))
 

Modified: branches/home/psmith/restructure/src/io/nio.lisp
==============================================================================
--- branches/home/psmith/restructure/src/io/nio.lisp	(original)
+++ branches/home/psmith/restructure/src/io/nio.lisp	Wed Dec 27 19:37:50 2006
@@ -24,7 +24,7 @@
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 |#
-(defpackage :nio (:use :cl :cffi :event-notification :nio-buffer :packets)
+(defpackage :nio (:use :cl :cffi :event-notification :nio-buffer)
 	    
 	    (:export
 



More information about the Nio-cvs mailing list