rc

[fork] interactive rc shell
Log | Files | Refs | README | LICENSE

commit 6bc6c587f8d5af799526551e1056f1a1f15e0009
parent 3f9565c766c909258ec8035d00df19e33c4226e5
Author: tgoodwin <tgoodwin>
Date:   Mon, 27 Jul 1998 13:34:35 +0000

more changes

Diffstat:
MChangeLog | 21+++++++++++++++++++++
1 file changed, 21 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -399,3 +399,24 @@ Changes since rc-1.5b2 Configuration: `--with-vrl' added to support Gert-Jan Vons's readline library. + +1998-07-24 + + Portability: the autoconf macro AC_FUNC_SETPGRP doesn't work on OSF1: that + system supports arguments to setpgrp(), but also has a prototype in + <unistd.h> to say that it is void. Fix this by defining our own + RC_FUNC_SETPGRP for now. + + Bug: <sys/wait.h> was included twice in some source files. + + Configuration: automake wants `make distclean' to remove *.tab.c. + Rename y.tab.[ch] to parse.[ch] to avoid this. + +1998-07-27 + + Portability: on Ultrix, `make trip' fails with `malloc: Invalid + argument'. Problem is that getgroups(0, NULL) in which.c returns -1. + Add new configure test to check for POSIX getgroups() and fall back to + NGROUPS if it's not available. The magic is done by "getgroups.h". + + Tidiness: extract <sys/wait.h> magic into "wait.h".