Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Some patches to beta8



Hi,

The following are some minor patches intended to clean up compilation.

- Eskandar

*** init.c.old	Mon May 22 15:38:29 1995
--- init.c	Mon May 22 15:47:39 1995
***************
*** 705,713 ****
  getbaudrate(struct ttyinfo *shttyinfo)
  {
      int speedcode;
      long tempbaud;
  
- #ifdef HAS_TIO
  # if defined(HAVE_TCGETATTR) && defined(HAVE_TERMIOS_H)
      tempbaud = cfgetospeed(&shttyinfo->tio);
      if (tempbaud >= 100)
--- 705,713 ----
  getbaudrate(struct ttyinfo *shttyinfo)
  {
      int speedcode;
+ #ifdef HAS_TIO
      long tempbaud;
  
  # if defined(HAVE_TCGETATTR) && defined(HAVE_TERMIOS_H)
      tempbaud = cfgetospeed(&shttyinfo->tio);
      if (tempbaud >= 100)
*** signals.c.old	Mon May 22 15:40:39 1995
--- signals.c	Mon May 22 15:47:39 1995
***************
*** 402,410 ****
  # define  WAIT(pid, statusp, options) waitpid(pid, statusp, options)
  #else
  # ifdef HAVE_WAIT3
! #  define WAIT(pid, statusp, options) wait3(statusp, options, NULL)
  # else
! #  define WAIT(pid, statusp, options) wait(statusp)
  # endif
  #endif
  
--- 402,410 ----
  # define  WAIT(pid, statusp, options) waitpid(pid, statusp, options)
  #else
  # ifdef HAVE_WAIT3
! #  define WAIT(pid, statusp, options) wait3((void *)statusp, options, NULL)
  # else
! #  define WAIT(pid, statusp, options) wait((void *)statusp)
  # endif
  #endif
  
*** system.h.old	Mon May 22 15:35:38 1995
--- system.h	Mon May 22 15:38:13 1995
***************
*** 40,45 ****
--- 40,46 ----
  #ifdef __NeXT__
  # undef HAVE_TERMIOS_H
  # undef HAVE_SYS_UTSNAME_H
+ extern pid_t getppid(void);
  #endif
  
  #ifdef PROTOTYPES



Messages sorted by: Reverse Date, Date, Thread, Author