1This directory was copied from bash-3.2.
2
3The header file bashansi.h has been added, copied from bash-3.2 as well.
4The headers ansi_stdlib.h and xmalloc.h are from the readline lib of bash-3.2.
5
6These files need the following autoconf macros,
7
8AC_CONFIG_HEADERS(config.h)			For HAVE_CONFIG_H
9AC_CHECK_FUNCS(getpwent getpwnam getpwuid)	For HAVE_GETPWENT, HAVE_GETPWNAM and HAVE_GETPWUID.
10AC_CHECK_HEADERS(unistd.h stdlib.h string.h memory.h pwd.h strings.h)
11BASH_CHECK_GETPW_FUNCS				For HAVE_GETPW_DECLS
12
13I then added the files Makefile.am and generated Makefile.in from it.
14
15The original README reads:
16
17-------------------------------------------------------------------------
18If you're building this separately from bash or the readline library, add
19$(srcdir)/shell.c to the CSOURCES variable and shell.o to the OBJECTS
20variable in Makefile.in.  (Not that this is very useful without readline
21or bash.)
22
23