summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--Makefile.in7
-rw-r--r--README6
-rw-r--r--TODO10
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
-rw-r--r--stamp-h.in2
7 files changed, 25 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 08172bf..cf4f72d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
diff --git a/README b/README
index 0762487..9a2a98f 100644
--- a/README
+++ b/README
@@ -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:
diff --git a/TODO b/TODO
index 31c772f..867d9ed 100644
--- a/TODO
+++ b/TODO
@@ -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
diff --git a/configure b/configure
index 12d78d5..37555b9 100755
--- a/configure
+++ b/configure
@@ -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
diff --git a/stamp-h.in b/stamp-h.in
index 3cf01ff..aa6add2 100644
--- a/stamp-h.in
+++ b/stamp-h.in
@@ -1 +1 @@
-Thu Feb 16 16:33:07 EST 1995
+Thu Feb 16 18:27:22 EST 1995