diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.in | 7 | ||||
-rw-r--r-- | README | 6 | ||||
-rw-r--r-- | TODO | 10 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | stamp-h.in | 2 |
7 files changed, 25 insertions, 10 deletions
@@ -1,7 +1,11 @@ -Thu Feb 16 12:20:38 1995 Greg McGary <gkm@magilla.cichlid.com> +Thu Feb 16 18:32:44 EST 1995 Greg McGary <gkm@magilla.cichlid.com> * Version 3.0.3 released. + * README.alpha-test: Added. + + * TODO: Updated. + * lid.c (savetty, restoretty, linetty, chartty): Handle POSIX termios properly. diff --git a/Makefile.in b/Makefile.in index a5a826d..55f99b6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -86,10 +86,11 @@ ID_SRC_FILES = $(SRC_HFILES) $(LIB_HFILES) $(SRC_CFILES) $(LIB_CFILES) $(SRC_YFI DIST_SRC_FILES =$(ALL_CFILES) $(SRC_HFILES) $(LIB_HFILES) $(SRC_YFILES) INFO_FILES = mkid.info -DIST_DOC_FILES =mkid.texinfo $(INFO_FILES) fid.1 iid.1 lid.1 mkid.1 -DIST_CONF_FILES=aclocal.m4 acconfig.h configure.in Makefile.in mkdirhier \ +DIST_DOC_FILES =mkid.texinfo $(INFO_FILES) fid.1 iid.1 lid.1 mkid.1 iid.help +DIST_CONF_FILES=aclocal.m4 acconfig.h configure.in Makefile.in mkdirhier install-sh \ stamp-h.in config.h.in configure $(DEPEND) -DIST_MISC_FILES=COPYING README INSTALL NEWS TODO THANKS idtest gid.el install-sh iid.help ChangeLog +DIST_MISC_FILES=COPYING README README.alpha-test INSTALL NEWS TODO THANKS \ + idtest gid.el ChangeLog DIST_FILES = $(DIST_CONF_FILES) $(DIST_SRC_FILES) $(DIST_DOC_FILES) $(DIST_MISC_FILES) @@ -27,3 +27,9 @@ Send bug reports to <gkm@magilla.cichlid.com>. Please describe your problem adequately: your input, what you expected, what you got, and why it is wrong. Diffs are welcome, but please include a description of the problem as well, since this is sometimes difficult to infer. + + +Local Variables: +mode: text +fill-column: 75 +End: @@ -3,13 +3,17 @@ * Bring all code into conformance with GNU project coding standards. - Use command-line arguments, not the name of the program in argv[0] to determine lid's behavior - - Use getopt_long () to parse command-line arguments. + - Revise the command-line argument syntax, in particular the mkid + scanner-arg syntax. + - Use getopt_long () in all programs to parse command-line arguments + - Handle GNU standard arguments: In particular, --version & --help * Portability - - Fix filenames.c to handle non-UNIX file names properly. - - Fix sizeof (int) == sizeof (long) assumptions. - The configure script tests for lots of things, but the code doesn't use all of the results that it should. + - Fix filenames.c to handle non-UNIX file names properly + (notably DOS & OS/2). + - Fix assumption that (sizeof (int) == sizeof (long)) * lid - change the name of the program to something a bit more @@ -402,7 +402,7 @@ fi PRODUCT=mkid MAJOR_VERSION=3 MINOR_VERSION=0 -PATCH_LEVEL=3 +PATCH_LEVEL=4 OLD_PATCH_LEVEL=`expr $PATCH_LEVEL - 1` VERSION=$MAJOR_VERSION.$MINOR_VERSION FULL_VERSION=$VERSION.$PATCH_LEVEL diff --git a/configure.in b/configure.in index 159d3be..c353487 100644 --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ AC_CONFIG_HEADER(config.h) PRODUCT=mkid MAJOR_VERSION=3 MINOR_VERSION=0 -PATCH_LEVEL=3 +PATCH_LEVEL=4 OLD_PATCH_LEVEL=`expr $PATCH_LEVEL - 1` VERSION=$MAJOR_VERSION.$MINOR_VERSION FULL_VERSION=$VERSION.$PATCH_LEVEL @@ -1 +1 @@ -Thu Feb 16 16:33:07 EST 1995 +Thu Feb 16 18:27:22 EST 1995 |