1.0.30.18: undefined variables in contribs
authorNikodemus Siivola <nikodemus@random-state.net>
Thu, 30 Jul 2009 11:02:21 +0000 (11:02 +0000)
committerNikodemus Siivola <nikodemus@random-state.net>
Thu, 30 Jul 2009 11:02:21 +0000 (11:02 +0000)
 * No MSG_NOSIGNAL on Darwin. It was also groveled twice on Linux.

 * Tyop in SB-SIMPLE-STREAMS.

 ...the real question is why ASDF didn't consider these failures,
 though. Grumble.

contrib/sb-bsd-sockets/constants.lisp
contrib/sb-bsd-sockets/sockets.lisp
contrib/sb-simple-streams/iodefs.lisp
version.lisp-expr

index 8d4d3de..2b131f2 100644 (file)
@@ -91,7 +91,6 @@
  (:integer f-getfl "F_GETFL")
  (:integer f-setfl "F_SETFL")
 
- #+linux (:integer msg-nosignal "MSG_NOSIGNAL")
  (:integer msg-oob "MSG_OOB")
  (:integer msg-peek "MSG_PEEK")
  (:integer msg-trunc "MSG_TRUNC")
index e21228f..ce6707e 100644 (file)
@@ -249,7 +249,7 @@ send(2) will be called instead. Returns the number of octets written."))
                   (if eor sockint::MSG-EOR 0)
                   (if dontroute sockint::MSG-DONTROUTE 0)
                   (if dontwait sockint::MSG-DONTWAIT 0)
-                  (if nosignal sockint::MSG-NOSIGNAL 0)
+                  #-darwin (if nosignal sockint::MSG-NOSIGNAL 0)
                   #+linux (if confirm sockint::MSG-CONFIRM 0)
                   #+linux (if more sockint::MSG-MORE 0)))
          (buffer (etypecase buffer
index 43314f8..6925e3d 100644 (file)
@@ -15,7 +15,7 @@
 (in-package "SB-SIMPLE-STREAMS")
 
 (defun file-namestring (pathname)
-  (sb-ext:native-namestring (sb-int:physicalize-pathname pathnane) :as-file t))
+  (sb-ext:native-namestring (sb-int:physicalize-pathname pathname) :as-file t))
 
 (defmacro def-stream-class (name superclasses slots &rest options)
   `(defclass ,name ,superclasses ,slots ,@options))
index 12bd78d..ff6c301 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.30.17"
+"1.0.30.18"