commit 0415699153be7beae0af2a2c375075cecc64794b
parent 5df77bab6d3324c2b9dc696e38ccac9317b1ff70
Author: tgoodwin <tgoodwin>
Date: Wed, 28 Oct 1998 14:27:40 +0000
towards another snapshot
Diffstat:
3 files changed, 33 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -437,3 +437,33 @@ Changes since rc-1.5b2
include it explicitly.
Documentation: document the ^A bug.
+
+1998-10-22
+
+ Tidiness: makenonblock() was a rather poor choice of name for
+ a function which makes a file descriptor *not* nonblocking :-).
+
+1998-10-26
+
+ Portability: apparently some systems declare `char *basename(const
+ char *)' in system header files. Changing our basename() (in
+ history.c) to match this prototype allows it to be compiled on such
+ systems, and is harmless. (Harmless, that is, if no system declares
+ `char *basename(char *)'.)
+
+1998-10-28
+
+ Bug: system-bsd.c needs to include "wait.h".
+
+ Warnings: some versions of gcc warn about "ambiguous" `else' clauses.
+
+ Portability: assigning va_list objects doesn't work everywhere (Linux
+ on the PowerPC, specifically). Use the C 9x invention va_copy()
+ instead, if it exists, otherwise fall back to assignment.
+
+ Documentation: help HP-UX users by mentioning that you need `cc -Ae'.
+ Also, HP-UX make will build rc in a separate directory.
+
+ Tidiness: remove unused functions from print.c. Anybody wanting to
+ use this library in another project should follow the pointer in the
+ documentation to an improved version.
diff --git a/README b/README
@@ -1,4 +1,4 @@
-This is snapshot release rc-1.5s19981021 of rc.
+This is snapshot release rc-1.5s19981028 of rc.
See COPYING for copying information. All files are
diff --git a/configure.ac b/configure.ac
@@ -4,12 +4,12 @@ dnl eventually into the automake distribution...
AC_INIT(rc.h)
dnl Automake stuff.
-AM_INIT_AUTOMAKE(rc, 1.5s19981021)
+AM_INIT_AUTOMAKE(rc, 1.5s19981028)
AM_CONFIG_HEADER(config.h)
AC_ARG_PROGRAM
-AC_DEFINE(RELDATE, "1998-10-21")
+AC_DEFINE(RELDATE, "1998-10-28")
dnl If we're using gcc, specify `-Wall'. I've also checked the code
dnl with `-pedantic -W -Wall -Wpointer-arith -Wstrict-prototypes