From 2046b6211d8fc70e6191c87728617d4d78751e13 Mon Sep 17 00:00:00 2001 From: hallgren <hallgren> Date: Wed, 29 Jun 1994 21:39:27 +0000 Subject: [PATCH] Updated for the sgi. --- code/internet.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/internet.lisp b/code/internet.lisp index 91c6df755..792e99a11 100644 --- a/code/internet.lisp +++ b/code/internet.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.14 1994/04/06 17:03:51 hallgren Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.15 1994/06/29 21:39:27 hallgren Exp $") ;;; ;;; ********************************************************************** ;;; @@ -30,9 +30,9 @@ send-character-out-of-band)) -(defconstant sock-stream 1) -(defconstant sock-dgram 2) -(defconstant sock-raw 3) +(defconstant sock-stream #-irix 1 #+irix 2) +(defconstant sock-dgram #-irix 2 #+irix 1) +(defconstant sock-raw #-irix 3 #+irix 4) (defconstant af-unix 1) (defconstant af-inet 2) -- GitLab