[gnu.bash.bug] bash 1.01 and the unixpc

andy@CSVAX.CALTECH.EDU (Andy Fyfe) (06/24/89)

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 <alloca.h>
  #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 <alloca.h>			/* 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