Skip to content

Commit e0fb543

Browse files
committed
Fix vms version stuff. Get the tarball really right.
1 parent 11de2bd commit e0fb543

18 files changed

+51
-10
lines changed

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2011-06-24 Arnold D. Robbins <[email protected]>
2+
3+
* Makefile.am (EXTRA_DIST): Add ChangeLog.0.
4+
* 4.0.0: Remake the tar ball.
5+
16
2011-06-23 Arnold D. Robbins <[email protected]>
27

38
* configure.ac: Update version to 4.0.0.

Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ AM_MAKEFLAGS = 'CFLAGS=$(CFLAGS)' 'LDFLAGS=$(LDFLAGS)'
3636
# Stuff to include in the dist that doesn't need it's own
3737
# Makefile.am files
3838
EXTRA_DIST = \
39+
ChangeLog.0 \
3940
COPYING \
4041
FUTURES \
4142
INSTALL \

Makefile.in

+1
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ AM_MAKEFLAGS = 'CFLAGS=$(CFLAGS)' 'LDFLAGS=$(LDFLAGS)'
312312
# Stuff to include in the dist that doesn't need it's own
313313
# Makefile.am files
314314
EXTRA_DIST = \
315+
ChangeLog.0 \
315316
COPYING \
316317
FUTURES \
317318
INSTALL \

awklib/ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2011-06-24 Arnold D. Robbins <[email protected]>
2+
3+
* Makefile.am (EXTRA_DIST): Add ChangeLog.0.
4+
* 4.0.0: Remake the tar ball.
5+
16
2011-06-23 Arnold D. Robbins <[email protected]>
27

38
* ChangeLog.0: Rotated ChangeLog into this file.

awklib/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
## process this file with automake to produce Makefile.in
2525

26-
EXTRA_DIST = ChangeLog extract.awk eg $(srcdir)/stamp-eg
26+
EXTRA_DIST = ChangeLog ChangeLog.0 extract.awk eg $(srcdir)/stamp-eg
2727
# With some locales, the script extract.awk fails.
2828
# So we fix the locale to some sensible value.
2929
AWKPROG = LC_ALL=C LANG=C $(abs_top_builddir)/gawk$(EXEEXT)

awklib/Makefile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ target_alias = @target_alias@
244244
top_build_prefix = @top_build_prefix@
245245
top_builddir = @top_builddir@
246246
top_srcdir = @top_srcdir@
247-
EXTRA_DIST = ChangeLog extract.awk eg $(srcdir)/stamp-eg
247+
EXTRA_DIST = ChangeLog ChangeLog.0 extract.awk eg $(srcdir)/stamp-eg
248248
# With some locales, the script extract.awk fails.
249249
# So we fix the locale to some sensible value.
250250
AWKPROG = LC_ALL=C LANG=C $(abs_top_builddir)/gawk$(EXEEXT)

doc/ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2011-06-24 Arnold D. Robbins <[email protected]>
2+
3+
* Makefile.am (EXTRA_DIST): Add ChangeLog.0.
4+
* 4.0.0: Remake the tar ball.
5+
16
2011-06-23 Arnold D. Robbins <[email protected]>
27

38
* ChangeLog.0: Rotated ChangeLog into this file.

doc/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ info_TEXINFOS = gawk.texi gawkinet.texi
2828

2929
man_MANS = gawk.1 igawk.1
3030

31-
EXTRA_DIST = ChangeLog README.card ad.block setter.outline \
31+
EXTRA_DIST = ChangeLog ChangeLog.0 README.card ad.block setter.outline \
3232
awkcard.in awkforai.txt texinfo.tex cardfonts \
3333
general-program.eps general-program.fig general-program.pdf \
3434
process-flow.eps process-flow.fig process-flow.pdf \

doc/Makefile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ top_builddir = @top_builddir@
242242
top_srcdir = @top_srcdir@
243243
info_TEXINFOS = gawk.texi gawkinet.texi
244244
man_MANS = gawk.1 igawk.1
245-
EXTRA_DIST = ChangeLog README.card ad.block setter.outline \
245+
EXTRA_DIST = ChangeLog ChangeLog.0 README.card ad.block setter.outline \
246246
awkcard.in awkforai.txt texinfo.tex cardfonts \
247247
general-program.eps general-program.fig general-program.pdf \
248248
process-flow.eps process-flow.fig process-flow.pdf \

po/ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2011-06-23 Arnold D. Robbins <[email protected]>
2+
3+
* Makefile.in.in (dist2): Add README to list of files checked for
4+
manually.
5+
* 4.0.0: Remake the tar ball.
6+
17
2011-06-23 Arnold D. Robbins <[email protected]>
28

39
* ChangeLog.0: Rotated ChangeLog into this file.

po/Makefile.in.in

+3
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,9 @@ dist2: stamp-po $(DISTFILES)
363363
if test -f $(srcdir)/$(DOMAIN).pot; then \
364364
dists="$$dists $(DOMAIN).pot stamp-po"; \
365365
fi; \
366+
if test -f $(srcdir)/README; then \
367+
dists="$$dists README"; \
368+
fi; \
366369
if test -f $(srcdir)/ChangeLog; then \
367370
dists="$$dists ChangeLog"; \
368371
fi; \

test/ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2011-06-24 Arnold D. Robbins <[email protected]>
2+
3+
* Makefile.am (EXTRA_DIST): Add ChangeLog.0.
4+
* 4.0.0: Remake the tar ball.
5+
16
2011-06-23 Arnold D. Robbins <[email protected]>
27

38
* ChangeLog.0: Rotated ChangeLog into this file.

test/Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
EXTRA_DIST = \
2727
reg \
2828
lib \
29+
ChangeLog.0 \
2930
Gentests \
3031
Gentests.vms \
3132
Maketests \

test/Makefile.in

+1
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ top_srcdir = @top_srcdir@
211211
EXTRA_DIST = \
212212
reg \
213213
lib \
214+
ChangeLog.0 \
214215
Gentests \
215216
Gentests.vms \
216217
Maketests \

vms/ChangeLog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2011-06-24 Arnold D. Robbins <[email protected]>
2+
3+
* vmsbuild.com (REL, PATCHLVL): Move to 4.0.0.
4+
* descrip.mms (REL, PATCHLVL): Move to 4.0.0.
5+
* vms-conf.h (VERSION, PACKAGE_VERSION): Move to 4.0.0.
6+
* 4.0.0: Remake the tar ball.
7+
18
2011-06-23 Arnold D. Robbins <[email protected]>
29

310
* ChangeLog.0: Rotated ChangeLog into this file.

vms/descrip.mms

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ VMSOTHR = $(VMSDIR)descrip.mms,$(VMSDIR)vmsbuild.com,$(VMSDIR)version.com,\
138138
DOCS= $(DOCDIR)gawk.1,$(DOCDIR)gawk.texi,$(DOCDIR)texinfo.tex
139139

140140
# Release of gawk
141-
REL=3.1
142-
PATCHLVL=8
141+
REL=4.0
142+
PATCHLVL=0
143143

144144
# generic target
145145
all : gawk,pgawk,dgawk

vms/vms-conf.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@
402402
#undef PACKAGE_URL
403403

404404
/* Define to the version of this package. */
405-
#define PACKAGE_VERSION "3.1.8"
405+
#define PACKAGE_VERSION "4.0.0"
406406

407407
/* Define to 1 if *printf supports %F format */
408408
#undef PRINTF_HAS_F_FORMAT
@@ -435,7 +435,7 @@
435435
#define USE_INCLUDED_STRFTIME 1
436436

437437
/* Version number of package */
438-
#define VERSION "3.1.8"
438+
#define VERSION "4.0.0"
439439

440440
/* Define to 1 if on AIX 3.
441441
System headers sometimes define this.

vms/vmsbuild.com

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ $! gawk 3.1.0 revised, Mar'01
99
$! gawk 3.1.1 revised, Apr'02
1010
$! gawk 3.1.6 revised, Mar'07
1111
$! gawk-bytecode revd, Jan'10
12+
$! gawk 4.0.0 revd, May'11
1213
$!
13-
$ REL = "3.1" !release version number
14-
$ PATCHLVL = "8"
14+
$ REL = "4.0" !release version number
15+
$ PATCHLVL = "0"
1516
$!
1617
$!
1718
$ CCFLAGS = "/noList" ! "/noOpt/Debug"

0 commit comments

Comments
 (0)