[usocket-cvs] r507 - in usocket/trunk: . backend
Chun Tian (binghe)
ctian at common-lisp.net
Sun Jan 3 08:54:59 UTC 2010
Author: ctian
Date: Sun Jan 3 03:54:58 2010
New Revision: 507
Log:
ASDF system definition changes for MCL, also make it smaller
Modified:
usocket/trunk/backend/mcl.lisp
usocket/trunk/usocket.asd
Modified: usocket/trunk/backend/mcl.lisp
==============================================================================
--- usocket/trunk/backend/mcl.lisp (original)
+++ usocket/trunk/backend/mcl.lisp Sun Jan 3 03:54:58 2010
@@ -3,6 +3,9 @@
(in-package :usocket)
+(eval-when (:compile-toplevel :load-toplevel :execute)
+ (require :opentransport))
+
(defun handle-condition (condition &optional socket)
; incomplete, needs to handle additional conditions
(flet ((raise-error (&optional socket-condition)
@@ -93,8 +96,6 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; BASIC MCL SOCKET IMPLEMENTATION
-(require :opentransport)
-
(defclass socket ()
((local-port :reader local-port :initarg :local-port)
(local-host :reader local-host :initarg :local-host)
Modified: usocket/trunk/usocket.asd
==============================================================================
--- usocket/trunk/usocket.asd (original)
+++ usocket/trunk/usocket.asd Sun Jan 3 03:54:58 2010
@@ -24,22 +24,14 @@
:depends-on ("package"))
(:file "condition"
:depends-on ("usocket"))
- #+clisp (:file "clisp" :pathname "backend/clisp"
- :depends-on ("condition"))
- #+cmu (:file "cmucl" :pathname "backend/cmucl"
- :depends-on ("condition"))
- #+scl (:file "scl" :pathname "backend/scl"
- :depends-on ("condition"))
- #+(or sbcl ecl) (:file "sbcl" :pathname "backend/sbcl"
- :depends-on ("condition"))
- #+lispworks (:file "lispworks" :pathname "backend/lispworks"
- :depends-on ("condition"))
- #+openmcl (:file "openmcl" :pathname "backend/openmcl"
- :depends-on ("condition"))
- #+allegro (:file "allegro" :pathname "backend/allegro"
- :depends-on ("condition"))
- #+armedbear (:file "armedbear" :pathname "backend/armedbear"
- :depends-on ("condition"))
- #+mcl (:file "mcl" :pathname "backend/armedbear"
- :depends-on ("condition"))
- ))
+ (:module "backend"
+ :depends-on ("condition")
+ :components (#+clisp (:file "clisp")
+ #+cmu (:file "cmucl")
+ #+scl (:file "scl")
+ #+(or sbcl ecl) (:file "sbcl")
+ #+lispworks (:file "lispworks")
+ #+mcl (:file "mcl")
+ #+openmcl (:file "openmcl")
+ #+allegro (:file "allegro")
+ #+armedbear (:file "armedbear")))))
More information about the usocket-cvs
mailing list