[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-797
From: |
John Malmberg |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-797-g1f3172a |
Date: |
Sun, 24 Jan 2016 21:04:37 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, gawk-4.1-stable has been updated
via 1f3172a95925b4c2554906f4c35d006c0f5d136f (commit)
from e55b87aacc156799e1063f4bff810fa4730b3962 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=1f3172a95925b4c2554906f4c35d006c0f5d136f
commit 1f3172a95925b4c2554906f4c35d006c0f5d136f
Author: John Malmberg <address@hidden>
Date: Sun Jan 24 14:58:36 2016 -0600
VMS build and kitting fixes.
diff --git a/vms/ChangeLog b/vms/ChangeLog
index ccf12fa..23d3e0b 100644
--- a/vms/ChangeLog
+++ b/vms/ChangeLog
@@ -1,7 +1,16 @@
+2016-01-24 John E. Malmberg <address@hidden>
+ * generate_config_vms_h_gawk.com: supress compiler message
+ about comparing an unsigned value t to be a negative number
+ in w.missing_d/strftime.c.
+ * descrip.mms: Temporary comment out the use of bison or yacc
+ until current ports are known to be available for VMS.
+ * build_gawk_pcsi_desc.com: Remove extra copy of a file being
+ installed.
+
2016-01-21 John E. Malmberg <address@hidden>
* descrip.mms and vmsbuild.com: Remove the unused hand-updated
- version numbers.
+ version numbers.
2016-01-10 John E. Malmberg <address@hidden>
diff --git a/vms/build_gawk_pcsi_desc.com b/vms/build_gawk_pcsi_desc.com
index 298d0ea..162da08 100644
--- a/vms/build_gawk_pcsi_desc.com
+++ b/vms/build_gawk_pcsi_desc.com
@@ -415,11 +415,6 @@ $!
$flst_loop_end:
$ close flst
$!
-$! Add Link alias procedure file (N/A for gawk)
-$!-----------------------------------------------------
-$ write pdsc " file ""[vms_bin]gawk_alias_setup.com"""
-$ write pdsc " source [vms_bin]gawk_alias_setup.com ;"
-$!
$! Add [.SYS$STARTUP]gawk_startup file
$!---------------------------------------
$ write pdsc " file ""[sys$startup]gnv$gawk_startup.com"""
diff --git a/vms/descrip.mms b/vms/descrip.mms
index 03edab7..e47660b 100644
--- a/vms/descrip.mms
+++ b/vms/descrip.mms
@@ -201,28 +201,30 @@ replace.obj : replace.c $(MISSNGD)system.c
$(MISSNGD)memcmp.c \
$(MISSNGD)usleep.c \
$(MISSNGD)setenv.c $(MISSNGD)strcoll.c $(MISSNGD)wcmisc.c
+# bison or yacc have not been ported to current VMS versions
+# When that changes, this can be restored.
# bison or yacc required
-awkgram.c : awkgram.y # foo.y :: yacc => y[_]tab.c, bison => foo_tab.c
- @- if f$search("ytab.c") .nes."" then delete ytab.c;* !POSIX yacc
- @- if f$search("y_tab.c") .nes."" then delete y_tab.c;* !DEC/Shell yacc
- @- if f$search("awkgram_tab.c").nes."" then delete awkgram_tab.c;* !bison
- - $(PARSERINIT)
- $(PARSER) $(YFLAGS) $<
- @- if f$search("ytab.c") .nes."" then rename/new_vers ytab.c $@
- @- if f$search("y_tab.c") .nes."" then rename/new_vers y_tab.c $@
- @- if f$search("awkgram_tab.c").nes."" then \
- rename/new_vers awkgram_tab.c $@
-
-command.c : command.y
- @- if f$search("ytab.c") .nes."" then delete ytab.c;*
- @- if f$search("y_tab.c") .nes."" then delete y_tab.c;*
- @- if f$search("command_tab.c").nes."" then delete command_tab.c;*
- - $(PARSERINIT)
- $(PARSER) $(YFLAGS) $<
- @- if f$search("ytab.c") .nes."" then rename/new_vers ytab.c $@
- @- if f$search("y_tab.c") .nes."" then rename/new_vers y_tab.c $@
- @- if f$search("command_tab.c").nes."" then \
- rename/new_vers command_tab.c $@
+# awkgram.c : awkgram.y # foo.y :: yacc => y[_]tab.c, bison => foo_tab.c
+# @- if f$search("ytab.c") .nes."" then delete ytab.c;* !POSIX yacc
+# @- if f$search("y_tab.c") .nes."" then delete y_tab.c;*
!DEC/Shell yacc
+# @- if f$search("awkgram_tab.c").nes."" then delete awkgram_tab.c;*
!bison
+# - $(PARSERINIT)
+# $(PARSER) $(YFLAGS) $<
+# @- if f$search("ytab.c") .nes."" then rename/new_vers ytab.c $@
+# @- if f$search("y_tab.c") .nes."" then rename/new_vers y_tab.c $@
+# @- if f$search("awkgram_tab.c").nes."" then \
+# rename/new_vers awkgram_tab.c $@
+
+# command.c : command.y
+# @- if f$search("ytab.c") .nes."" then delete ytab.c;*
+# @- if f$search("y_tab.c") .nes."" then delete y_tab.c;*
+# @- if f$search("command_tab.c").nes."" then delete command_tab.c;*
+# - $(PARSERINIT)
+# $(PARSER) $(YFLAGS) $<
+# @- if f$search("ytab.c") .nes."" then rename/new_vers ytab.c $@
+# @- if f$search("y_tab.c") .nes."" then rename/new_vers y_tab.c $@
+# @- if f$search("command_tab.c").nes."" then \
+# rename/new_vers command_tab.c $@
config_vms.h : $(VMSDIR)generate_config_vms_h_gawk.com
$ @$(VMSDIR)generate_config_vms_h_gawk.com
diff --git a/vms/generate_config_vms_h_gawk.com
b/vms/generate_config_vms_h_gawk.com
index eff43d7..16d2d5b 100644
--- a/vms/generate_config_vms_h_gawk.com
+++ b/vms/generate_config_vms_h_gawk.com
@@ -288,6 +288,7 @@ $ write cvh " }"
$ write cvh " decc$exit(vms_status);"
$ write cvh "}"
$ write cvh ""
+$ write cvh "#pragma message disable questcompare
$ write cvh "#include ""custom.h"""
$ write cvh ""
$!
-----------------------------------------------------------------------
Summary of changes:
vms/ChangeLog | 11 ++++++++-
vms/build_gawk_pcsi_desc.com | 5 ----
vms/descrip.mms | 44 ++++++++++++++++++-----------------
vms/generate_config_vms_h_gawk.com | 1 +
4 files changed, 34 insertions(+), 27 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-797-g1f3172a,
John Malmberg <=