Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!CSVAX.CALTECH.EDU!andy From: andy@CSVAX.CALTECH.EDU (Andy Fyfe) Newsgroups: gnu.bash.bug Subject: bash 1.01 and the unixpc (again) Message-ID: <8906240435.AA28274@csvax.caltech.edu> Date: 24 Jun 89 04:35:33 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 40 Sorry, the diff of config.h was missing an #endif. Here's the corrected diff: *** save/config.h Sun Jun 11 17:27:02 1989 --- config.h Fri Jun 23 21:34:09 1989 *************** *** 14,30 **** #ifdef SUN4 ! #include #endif ! ! /* Define READLINE to get the nifty/glitzy editing features. ! This is on by default. You can turn it off interactively ! with the -nolineediting flag. */ ! #define READLINE #if defined (HPUX) || defined (UNIXPC) #define SYSV - #if defined (UNIXPC) && definded (__GNUC__) - #define alloca __builtin_alloca - #endif #endif --- 14,28 ---- #ifdef SUN4 ! #include /* sparcs are different */ ! #else ! #ifdef __GNUC__ ! #define alloca __builtin_alloca /* use gcc's builtin version */ ! #else ! char *alloca(); /* use the library version */ #endif ! #endif #if defined (HPUX) || defined (UNIXPC) #define SYSV #endif