From c6c7366bf4321c17b27bf4cecfe0342ddff833a2 Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Mon, 7 Feb 2005 00:47:45 +0000
Subject: [PATCH] * code/internet.lisp, code/unix.lisp:   o Make inet-recvfrom
 and friends available on Darwin again.

* lisp/linux-stubs.S
  o Oops. Forgot to fix up #if with !defined(DARWIN)
  o Add recvfrom and friends to the stubs.
---
 code/internet.lisp |  6 ++----
 code/unix.lisp     |  5 +----
 lisp/linux-stubs.S | 10 +++++-----
 3 files changed, 8 insertions(+), 13 deletions(-)

diff --git a/code/internet.lisp b/code/internet.lisp
index c6e189403..66085ff97 100644
--- a/code/internet.lisp
+++ b/code/internet.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.45 2005/02/06 19:26:13 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.46 2005/02/07 00:47:44 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -688,8 +688,6 @@ struct in_addr {
 	     fd
 	     (unix:get-unix-error-msg)))))
 
-#-darwin
-(progn
 (defun inet-recvfrom (fd buffer size &key (flags 0))
   "A packaging of the unix recvfrom call.  Returns three values:
 bytecount, source address as integer, and source port.  bytecount
@@ -724,4 +722,4 @@ can of course be negative, to indicate faults."
 	   :format-control "Error on shutdown of socket: ~A"
 	   :format-arguments (list (unix:get-unix-error-msg))
 	   :errno (unix:unix-errno))))
-)
+
diff --git a/code/unix.lisp b/code/unix.lisp
index 1b42405d8..1ea99155f 100644
--- a/code/unix.lisp
+++ b/code/unix.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.101 2005/02/06 19:26:13 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.102 2005/02/07 00:47:44 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -2969,8 +2969,6 @@
 
 ;; Datagram support
 
-#-darwin
-(progn
 (def-alien-routine ("recvfrom" unix-recvfrom) int
   (fd int)
   (buffer c-string)
@@ -2990,7 +2988,6 @@
 (def-alien-routine ("shutdown" unix-shutdown) int
   (socket int)
   (level int))
-)
 
 
 ;;;
diff --git a/lisp/linux-stubs.S b/lisp/linux-stubs.S
index 98b38705a..fb53f821f 100644
--- a/lisp/linux-stubs.S
+++ b/lisp/linux-stubs.S
@@ -1,6 +1,6 @@
 /*	linux-stubs.S
 
-	$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/linux-stubs.S,v 1.18 2004/09/21 11:59:17 emarsden Exp $
+	$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/linux-stubs.S,v 1.19 2005/02/07 00:47:45 rtoy Exp $
 
 	These are needed because the locations of the
 	libraries are filled in by ld.so at runtime.
@@ -43,7 +43,7 @@ PVE_stub_ ## fct: ;\
 
 #endif
 
-#if defined(LINKAGE_TABLE) && !defined(__FreeBSD__)
+#if defined(LINKAGE_TABLE) && !defined(__FreeBSD__) && !defined(DARWIN)
  /* This is a workaround for glibc braindamage.  These symbols are
     magically transformed by the preprocessor and linker so that
     these symbols of don't appear in libc.so.  These stubs
@@ -705,7 +705,7 @@ PVE_stub_ ## fct: ;\
 /*  doe(realpath) */
 /*  doe(reboot) */
 /*  doe(recv) */
-/*  doe(recvfrom) */
+  doe(recvfrom)
 /*  doe(recvmsg) */
 /*  doe(regcomp) */
 /*  doe(regerror) */
@@ -751,7 +751,7 @@ PVE_stub_ ## fct: ;\
 /*  doe(semop) */
 /*  doe(send) */
 /*  doe(sendmsg) */
-/*  doe(sendto) */
+  doe(sendto)
 /*  doe(set_new_handler) */
 /*  doe(setbuf) */
 /*  doe(setbuffer) */
@@ -798,7 +798,7 @@ PVE_stub_ ## fct: ;\
 /*  doe(shmctl) */
 /*  doe(shmdt) */
 /*  doe(shmget) */
-/*  doe(shutdown) */
+  doe(shutdown)
 /*  doe(sigaction) */
 /*  doe(sigaddset) */
 /*  doe(sigblock) */
-- 
GitLab