From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from gatech.edu (gatech.edu [128.61.1.1]) by werple.mira.net.au (8.6.10/8.6.9) with SMTP id JAA04687 for ; Tue, 23 May 1995 09:05:30 +1000 Received: from math (math.skiles.gatech.edu) by gatech.edu with SMTP id AA15641 (5.65c/Gatech-10.0-IDA for ); Mon, 22 May 1995 19:01:00 -0400 Received: by math (5.x/SMI-SVR4) id AA05571; Mon, 22 May 1995 18:58:30 -0400 Resent-Date: Mon, 22 May 95 15:52:28 -0700 Old-Return-Path: Date: Mon, 22 May 95 15:52:28 -0700 From: esky@CS.UCLA.EDU (Eskandar Ensafi) Message-Id: <9505222252.AA10106@marathon.cs.ucla.edu> To: zsh-workers@math.gatech.edu Subject: Some patches to beta8 Resent-Message-Id: <"1l_JE.0.zM1.LSHml"@math> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/23 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu 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