[slime-cvs] CVS slime
trittweiler
trittweiler at common-lisp.net
Thu Aug 30 23:20:32 UTC 2007
Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv7794
Modified Files:
swank-cmucl.lisp
Log Message:
* swank-cmucl.lisp: CMUCL now has an x86-Darwin port as well as
the PPC-Darwin version. Changed to conditionalize on the
presence of darwin instead of ppc so that slime works with both
Darwin versions of CMUCL.
--- /project/slime/cvsroot/slime/swank-cmucl.lisp 2007/08/28 22:23:53 1.172
+++ /project/slime/cvsroot/slime/swank-cmucl.lisp 2007/08/30 23:20:31 1.173
@@ -76,7 +76,7 @@
(defimplementation preferred-communication-style ()
:sigio)
-#-(or ppc mips)
+#-(or darwin mips)
(defimplementation create-socket (host port)
(let* ((addr (resolve-hostname host))
(addr (if (not (find-symbol "SOCKET-ERROR" :ext))
@@ -85,7 +85,7 @@
(ext:create-inet-listener port :stream :reuse-address t :host addr)))
;; There seems to be a bug in create-inet-listener on Mac/OSX and Irix.
-#+(or ppc mips)
+#+(or darwin mips)
(defimplementation create-socket (host port)
(declare (ignore host))
(ext:create-inet-listener port :stream :reuse-address t))
More information about the slime-cvs
mailing list