emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/process.c


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/src/process.c
Date: Mon, 18 Mar 2002 09:09:57 -0500

Index: emacs/src/process.c
diff -c emacs/src/process.c:1.357 emacs/src/process.c:1.358
*** emacs/src/process.c:1.357   Mon Mar 18 06:27:06 2002
--- emacs/src/process.c Mon Mar 18 09:09:57 2002
***************
*** 59,65 ****
  #endif /* NEED_NET_ERRNO_H */
  
  /* Are local (unix) sockets supported?  */
! #ifndef NO_SOCKETS_IN_FILE_SYSTEM
  #if !defined (AF_LOCAL) && defined (AF_UNIX)
  #define AF_LOCAL AF_UNIX
  #endif
--- 59,65 ----
  #endif /* NEED_NET_ERRNO_H */
  
  /* Are local (unix) sockets supported?  */
! #if defined (HAVE_SYS_UN_H) && !defined (NO_SOCKETS_IN_FILE_SYSTEM)
  #if !defined (AF_LOCAL) && defined (AF_UNIX)
  #define AF_LOCAL AF_UNIX
  #endif
***************
*** 216,229 ****
     this system.  We need to read full packets, so we need a
     "non-destructive" select.  So we require either native select,
     or emulation of select using FIONREAD.  */
- 
- #ifdef GNU_LINUX
- /* These are not yet in configure.in (they will be eventually)
-    -- so add them here temporarily.  ++kfs */
- #define HAVE_RECVFROM
- #define HAVE_SENDTO
- #define HAVE_GETSOCKNAME
- #endif
  
  #ifdef BROKEN_DATAGRAM_SOCKETS
  #undef DATAGRAM_SOCKETS
--- 216,221 ----



reply via email to

[Prev in Thread] Current Thread [Next in Thread]