aboutsummaryrefslogtreecommitdiffstats
path: root/README_d
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:52:31 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:52:31 +0300
commit3ba50a15ebd976f7a88393e2e45dc14b6478b9a9 (patch)
tree6a6bbe6bed1141051fefe94b2d39eacd4854235a /README_d
parent6a2caf2157d87b4b582b2494bdd7d6a688dd0b1f (diff)
downloadegawk-3ba50a15ebd976f7a88393e2e45dc14b6478b9a9.tar.gz
egawk-3ba50a15ebd976f7a88393e2e45dc14b6478b9a9.tar.bz2
egawk-3ba50a15ebd976f7a88393e2e45dc14b6478b9a9.zip
Move to gawk-3.1.7.
Diffstat (limited to 'README_d')
-rw-r--r--README_d/README.VMS6
-rw-r--r--README_d/README.beos6
-rw-r--r--README_d/README.cygwin5
-rw-r--r--README_d/README.pc12
-rw-r--r--README_d/README.zos45
5 files changed, 65 insertions, 9 deletions
diff --git a/README_d/README.VMS b/README_d/README.VMS
index 4d193981..b47cb0f7 100644
--- a/README_d/README.VMS
+++ b/README_d/README.VMS
@@ -79,3 +79,9 @@ separated list of directory specifications. When defining it, the
value should be quoted so that it retains a single translation, not a
multi-translation RMS searchlist.
+------------------------------
+Thu Jun 18 05:22:10 IDT 2009
+============================
+
+On OpenVMS V7.3 (Alpha) the "manyfiles" test is known to fail. The reason
+is not (yet) known.
diff --git a/README_d/README.beos b/README_d/README.beos
index e0a8189a..fa346ab3 100644
--- a/README_d/README.beos
+++ b/README_d/README.beos
@@ -1,5 +1,11 @@
+Fri Jul 3 11:21:56 IDT 2009
+============================
+The BeOS port is unsupported.
+
+
README for GNU awk under BeOS
Last updated MCB, Tue Feb 6 10:15:46 GMT 2001
+=============================================
BeOS port contact: Martin C Brown (mc@whoever.com)
diff --git a/README_d/README.cygwin b/README_d/README.cygwin
new file mode 100644
index 00000000..3cbb7f83
--- /dev/null
+++ b/README_d/README.cygwin
@@ -0,0 +1,5 @@
+Tue Jun 23 05:20:51 IDT 2009
+============================
+
+The lc_num1 test is known to fail on current Cygwin systems due to lack of
+full locale support in newlib. All other tests should pass.
diff --git a/README_d/README.pc b/README_d/README.pc
index 9ee2f12f..a95ada64 100644
--- a/README_d/README.pc
+++ b/README_d/README.pc
@@ -366,13 +366,7 @@ please send bug reports (along with the version and compiler used) to
Scott Deifik, scottd.mail@sbcglobal.net (DOS versions)
or
- gawk-maintainer@unixos2.org (OS/2 version)
- Darrel Hankerson, hankedr@mail.auburn.edu
+ andreas.buening@nexgo.de (OS/2 version)
-Support for Windows32 started in gawk-3.0.3. Reports on
-the Visual C++ version (vcWin32) may be sent to
-
- Juan Grigera, juan@biophnet.unlp.edu.ar (Visual C++ version)
-
-with a copy to Scott Deifik. Other Windows32 reports may go to Darrel
-Hankerson.
+Support for Windows32 started in gawk-3.0.3.
+This is no longer supported.
diff --git a/README_d/README.zos b/README_d/README.zos
new file mode 100644
index 00000000..1613330d
--- /dev/null
+++ b/README_d/README.zos
@@ -0,0 +1,45 @@
+Fri Jan 25 12:36:16 2008
+Dave Pitts <dpitts@cozx.com>
+----------------------------
+
+GAWK on z/OS
+
+1. To unpack the tarball:
+
+ $ gunzip -c gawk-3.1.6.tar.gz | pax -rv from=ISO8859-1,to=IBM-1047
+
+ This will extract the files and convert them from ASCII to EBCDIC.
+
+ If you do not have the gunzip program on your system you can perform
+ the operation on another system and copy the tar file to z/OS. Then
+ unpack as follows:
+
+ $ pax -rv from=ISO8859-1,to=IBM-1047 -f gawk-3.1.6.tar
+
+
+2. To Build
+
+ $ ./configure
+ $ make
+
+ You will get compilation warnings of the form:
+
+ WARNING CBC3343 ./dfa.c:332 Redeclaration of dfasyntax differs from
+ previous declaration on line 404 of "./dfa.h".
+
+ Because the IBM compiler complains when a function is decalared using
+ prototypes in the header and is defined without prototypes in the code
+ these warnings can be ignored.
+
+
+3. To Install:
+
+ $ make install
+
+
+4. To Test (optional):
+
+ $ make check
+
+ NOTE: Since the test suite was defined for an ASCII and IEEE floating point
+ environment several of the tests will fail under z/OS.