Skip to content

Commit f426214

Browse files
committed
Merge branch 'release/v1.5.1J'
2 parents 831502c + 1ea8103 commit f426214

27 files changed

+139
-106
lines changed

ChangeLog

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
2015-05-11 OSS Consortium <[email protected]>
1+
2016-12-09 OSS Consortium <[email protected]>
2+
3+
* opensource COBOL Version 1.5.1J released.
4+
5+
2016-05-11 OSS Consortium <[email protected]>
26

37
* opensource COBOL Version 1.5.0J released.
48

NEWS

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
NEWS - user visible changes -*- outline -*-
22

3+
* Changes in opensource COBOL 1.5.1J
4+
5+
** Bug fixes
6+
7+
*** build error on Windows.
8+
9+
*** test failure caused by missing inline-function declarations on gcc5.
10+
11+
*** compiler warnings on v1.3 or later.
12+
13+
** Changes
14+
15+
*** update solution file in Visual Studio to 2015.
16+
17+
-----------------------------------------------------------------------
18+
319
* Changes in opensource COBOL 1.5.0J
420

521
** New features

cobc/cobc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ cobc_sig_handler (int sig)
817817
static void
818818
cobc_print_version (void)
819819
{
820-
puts ("opensource COBOL 1.5J");
820+
puts ("opensource COBOL 1.5.1J");
821821
puts ("OSS Consortium's patched version of OpenCOBOL1.1(Feb.06 2009)");
822822
#ifdef I18N_UTF8
823823
puts ("[unicode/utf-8 support]");

cobc/codegen.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -998,6 +998,7 @@ output_param (cb_tree x, int id)
998998
int extrefs;
999999
int sav_stack_id;
10001000
char fname[12];
1001+
COB_UNUSED(extrefs);
10011002

10021003
param_id = id;
10031004

cobc/pplex.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3797,6 +3797,7 @@ check_dollar_directive (char *buff, int *line_size)
37973797
char sbuff[5][256];
37983798
int isDEFINED, isNOT;
37993799
int i;
3800+
COB_UNUSED(n);
38003801

38013802
if (cb_source_format == CB_FORMAT_FIXED) {
38023803
if (*line_size < 8) {

cobc/pplex.l

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -743,6 +743,7 @@ check_dollar_directive (char *buff, int *line_size)
743743
char sbuff[5][256];
744744
int isDEFINED, isNOT;
745745
int i;
746+
COB_UNUSED(n);
746747

747748
if (cb_source_format == CB_FORMAT_FIXED) {
748749
if (*line_size < 8) {

cobc/pplex.l.m4

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,7 @@ check_dollar_directive (char *buff, int *line_size)
758758
char sbuff[5][256];
759759
int isDEFINED, isNOT;
760760
int i;
761+
COB_UNUSED(n);
761762

762763
if (cb_source_format == CB_FORMAT_FIXED) {
763764
if (*line_size < 8) {

cobc/tree.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,6 +1275,7 @@ cb_build_picture (const char *str)
12751275
unsigned char lastonechar = 0;
12761276
unsigned char lasttwochar = 0;
12771277
unsigned char buff[COB_SMALL_BUFF];
1278+
COB_UNUSED(flg);
12781279

12791280
pic = make_tree (CB_TAG_PICTURE, CB_CATEGORY_UNKNOWN, sizeof (struct cb_picture));
12801281
if (strlen (str) > 50) {

cobc/typeck.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -832,6 +832,7 @@ cb_reference_type_check (cb_tree ref, cb_tree x, const char *name, int size, int
832832
char strbuf[256];
833833
int offset = 0 ;
834834
int ret = 0;
835+
COB_UNUSED(r);
835836

836837
r = CB_REFERENCE (ref);
837838
switch (CB_TREE_TAG (x)) {

configure

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -421,11 +421,11 @@ SHELL=${CONFIG_SHELL-/bin/sh}
421421
: ${ac_max_here_lines=38}
422422

423423
# Identity of this package.
424-
PACKAGE_NAME='OpenCOBOL'
425-
PACKAGE_TARNAME='opensource-cobol-1.5.0J'
426-
PACKAGE_VERSION='1.1'
427-
PACKAGE_STRING='OpenCOBOL 1.1'
428-
PACKAGE_BUGREPORT='open-cobol-[email protected]'
424+
PACKAGE_NAME='opensource COBOL'
425+
PACKAGE_TARNAME='opensource-cobol-1.5.1J'
426+
PACKAGE_VERSION='1.5.1'
427+
PACKAGE_STRING='opensource COBOL 1.5.1J'
428+
PACKAGE_BUGREPORT='ws-opensource-cobol-[email protected]'
429429

430430
ac_unique_file="libcob.h"
431431
# Factoring default headers for most tests.
@@ -1858,8 +1858,8 @@ fi
18581858

18591859

18601860
# Define the identity of the package.
1861-
PACKAGE='opensource-cobol-1.5.0J'
1862-
VERSION='1.1'
1861+
PACKAGE='opensource-cobol-1.5.1J'
1862+
VERSION='1.5.1'
18631863

18641864

18651865
cat >>confdefs.h <<_ACEOF

0 commit comments

Comments
 (0)