Skip to content

Commit 761ecca

Browse files
Release v1.0.11 (#101)
1 parent 2451d2e commit 761ecca

File tree

7 files changed

+127
-116
lines changed

7 files changed

+127
-116
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2023-05-31 OSS Consortium <[email protected]>
2+
3+
* opensource COBOL 4J v1.0.11 released.
4+
15
2023-04-28 OSS Consortium <[email protected]>
26

37
* opensource COBOL 4J v1.0.10 released.

NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@ NEWS - user visible changes -*- outline -*-
22

33
-----------------------------------------------------------------------
44

5+
* opensource COBOL 4J 1.0.11
6+
7+
** New Features
8+
(1) Add -j and -java-source-dir options to control the file paths where Java files are generated
9+
(2) Add -o and -class-file-dir options to control the file paths where class files are generated
10+
11+
** Bug fixes
12+
(1) Fix a bug related to RELATIVE files
13+
(2) Fix a minor bug
14+
15+
-----------------------------------------------------------------------
16+
517
* opensource COBOL 4J 1.0.10
618

719
** Bug fixes

cobj/cobj.c

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -765,10 +765,8 @@ static void cobc_print_usage(void) {
765765
puts(_(" -free_1col_aster Use free(1col_aster) source "
766766
"format"));
767767
puts(_(" -g Enable Java compiler debug"));
768-
puts(_(" -o <dir> Place class files into <dir>"));
769-
puts(_(" -class-file-dir=<dir> Place class files into <dir>"));
770-
puts(_(" -j <dir> Place java files into <dir>"));
771-
puts(_(" -java-source-dir=<dir> Place java files into <dir>"));
768+
puts(_(" -o <dir>, -class-file-dir=<dir> Place class files into <dir>"));
769+
puts(_(" -j <dir>, -java-source-dir=<dir> Place Java files into <dir>"));
772770
puts(_(" -E Preprocess only; do not compile "
773771
"or link"));
774772
puts(_(" -C Translation only; convert COBOL "
@@ -834,18 +832,6 @@ static int process_command_line(const int argc, char *argv[]) {
834832
}
835833
}
836834

837-
/*while(c = getopt(argc, argv, short_options)) {
838-
switch(c) {
839-
case 'o':
840-
output_name = strdup(optarg);
841-
break;
842-
843-
case 'j':
844-
java_source_dir = strdup(optarg);
845-
break;
846-
}
847-
}*/
848-
849835
while ((c = getopt_long_only(argc, argv, short_options, long_options,
850836
&idx)) >= 0) {
851837
switch (c) {
@@ -942,7 +928,7 @@ static int process_command_line(const int argc, char *argv[]) {
942928

943929
case 'j':
944930
/* -j : the directory where java files are stored */
945-
/* -java-file-dir : the directory where java files are stored */
931+
/* -java-source-dir : the directory where java files are stored */
946932
java_source_dir = strdup(optarg);
947933
break;
948934

configure

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.71 for opensource COBOL 4J 1.0.10.
3+
# Generated by GNU Autoconf 2.71 for opensource COBOL 4J 1.0.11.
44
#
55
# Report bugs to <[email protected]>.
66
#
@@ -620,9 +620,9 @@ MAKEFLAGS=
620620

621621
# Identity of this package.
622622
PACKAGE_NAME='opensource COBOL 4J'
623-
PACKAGE_TARNAME='opensource-cobol-4j-1.0.10'
624-
PACKAGE_VERSION='1.0.10'
625-
PACKAGE_STRING='opensource COBOL 4J 1.0.10'
623+
PACKAGE_TARNAME='opensource-cobol-4j-1.0.11'
624+
PACKAGE_VERSION='1.0.11'
625+
PACKAGE_STRING='opensource COBOL 4J 1.0.11'
626626
PACKAGE_BUGREPORT='[email protected]'
627627
PACKAGE_URL=''
628628

@@ -1414,7 +1414,7 @@ if test "$ac_init_help" = "long"; then
14141414
# Omit some internal or obsolete options to make the list less imposing.
14151415
# This message is too long to be a string in the A/UX 3.1 sh.
14161416
cat <<_ACEOF
1417-
\`configure' configures opensource COBOL 4J 1.0.10 to adapt to many kinds of systems.
1417+
\`configure' configures opensource COBOL 4J 1.0.11 to adapt to many kinds of systems.
14181418

14191419
Usage: $0 [OPTION]... [VAR=VALUE]...
14201420

@@ -1464,7 +1464,7 @@ Fine tuning of the installation directories:
14641464
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
14651465
--mandir=DIR man documentation [DATAROOTDIR/man]
14661466
--docdir=DIR documentation root
1467-
[DATAROOTDIR/doc/opensource-cobol-4j-1.0.10]
1467+
[DATAROOTDIR/doc/opensource-cobol-4j-1.0.11]
14681468
--htmldir=DIR html documentation [DOCDIR]
14691469
--dvidir=DIR dvi documentation [DOCDIR]
14701470
--pdfdir=DIR pdf documentation [DOCDIR]
@@ -1486,7 +1486,7 @@ fi
14861486

14871487
if test -n "$ac_init_help"; then
14881488
case $ac_init_help in
1489-
short | recursive ) echo "Configuration of opensource COBOL 4J 1.0.10:";;
1489+
short | recursive ) echo "Configuration of opensource COBOL 4J 1.0.11:";;
14901490
esac
14911491
cat <<\_ACEOF
14921492

@@ -1617,7 +1617,7 @@ fi
16171617
test -n "$ac_init_help" && exit $ac_status
16181618
if $ac_init_version; then
16191619
cat <<\_ACEOF
1620-
opensource COBOL 4J configure 1.0.10
1620+
opensource COBOL 4J configure 1.0.11
16211621
generated by GNU Autoconf 2.71
16221622

16231623
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2105,7 +2105,7 @@ cat >config.log <<_ACEOF
21052105
This file contains any messages produced by compilers while
21062106
running configure, to aid debugging if configure makes a mistake.
21072107

2108-
It was created by opensource COBOL 4J $as_me 1.0.10, which was
2108+
It was created by opensource COBOL 4J $as_me 1.0.11, which was
21092109
generated by GNU Autoconf 2.71. Invocation command line was
21102110

21112111
$ $0$ac_configure_args_raw
@@ -3403,8 +3403,8 @@ fi
34033403

34043404

34053405
# Define the identity of the package.
3406-
PACKAGE='opensource-cobol-4j-1.0.10'
3407-
VERSION='1.0.10'
3406+
PACKAGE='opensource-cobol-4j-1.0.11'
3407+
VERSION='1.0.11'
34083408

34093409

34103410
printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -25367,7 +25367,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2536725367
# report actual input values of CONFIG_FILES etc. instead of their
2536825368
# values after options handling.
2536925369
ac_log="
25370-
This file was extended by opensource COBOL 4J $as_me 1.0.10, which was
25370+
This file was extended by opensource COBOL 4J $as_me 1.0.11, which was
2537125371
generated by GNU Autoconf 2.71. Invocation command line was
2537225372

2537325373
CONFIG_FILES = $CONFIG_FILES
@@ -25435,7 +25435,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
2543525435
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2543625436
ac_cs_config='$ac_cs_config_escaped'
2543725437
ac_cs_version="\\
25438-
opensource COBOL 4J config.status 1.0.10
25438+
opensource COBOL 4J config.status 1.0.11
2543925439
configured by $0, generated by GNU Autoconf 2.71,
2544025440
with options \\"\$ac_cs_config\\"
2544125441

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
AC_PREREQ(2.59)
2121

22-
AC_INIT([opensource COBOL 4J],[1.0.10],[[email protected]],[opensource-cobol-4j-1.0.10])
22+
AC_INIT([opensource COBOL 4J],[1.0.11],[[email protected]],[opensource-cobol-4j-1.0.11])
2323
AC_CONFIG_SRCDIR([libcob.h])
2424
AC_CONFIG_HEADERS([config.h])
2525
AC_CONFIG_TESTDIR([tests])

0 commit comments

Comments
 (0)