• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.amH A D16-Jan-2008205 75

Makefile.inH A D20-Mar-201515.5 KiB523443

READMEH A D16-Jan-2008906 2315

ansi_stdlib.hH A D16-Jan-20081.5 KiB5520

bashansi.hH A D16-Jan-20081.3 KiB4217

shell.cH A D16-Jan-20081.8 KiB7140

tilde.cH A D16-Jan-200812.9 KiB503339

tilde.hH A D16-Jan-20083.1 KiB8224

xmalloc.hH A D11-Mar-20081.3 KiB4113

README

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