## ------------------------------------------ ## ## GnuCOBOL 3.1.2 test suite: GnuCOBOL Tests. ## ## ------------------------------------------ ## testsuite: command line was: $ ./testsuite ## ---------- ## ## ChangeLog. ## ## ---------- ## | | 2020-12-23 Simon Sobisch | | * configure.ac: version 3.1.2 | | 2020-12-15 Simon Sobisch | | * configure.ac: fixed use of MPIR_LIBS | | 2020-12-08 Simon Sobisch ## --------- ## ## Platform. ## ## --------- ## hostname = michael-desktop uname -m = x86_64 uname -r = 5.4.0-132-generic uname -s = Linux uname -v = #148-Ubuntu SMP Mon Oct 17 16:02:06 UTC 2022 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /home/michael/Downloads/gnucobol-3.1.2/tests PATH: /home/michael/Downloads/gnucobol-3.1.2/cobc PATH: /home/michael/Downloads/gnucobol-3.1.2/bin PATH: /home/michael/Downloads/gnucobol-3.1.2/libcob/.libs PATH: /home/michael/.local/bin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin PATH: /usr/games PATH: /usr/local/games PATH: /snap/bin testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2012 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/home/michael/Downloads/gnucobol-3.1.2/tests' | at_srcdir='.' | abs_srcdir='/home/michael/Downloads/gnucobol-3.1.2/tests' | at_top_srcdir='..' | abs_top_srcdir='/home/michael/Downloads/gnucobol-3.1.2' | at_top_build_prefix='../' | abs_top_builddir='/home/michael/Downloads/gnucobol-3.1.2' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/bash'} testsuite: atlocal: | # | # atlocal gnucobol/tests | # | # Copyright (C) 2003-2012, 2014-2020 Free Software Foundation, Inc. | # Written by Keisuke Nishida, Roger While, Simon Sobisch, Edward Hart | # | # This file is part of GnuCOBOL. | # | # The GnuCOBOL compiler is free software: you can redistribute it | # and/or modify it under the terms of the GNU General Public License | # as published by the Free Software Foundation, either version 3 of the | # License, or (at your option) any later version. | # | # GnuCOBOL is distributed in the hope that it will be useful, | # but WITHOUT ANY WARRANTY; without even the implied warranty of | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | # GNU General Public License for more details. | # | # You should have received a copy of the GNU General Public License | # along with GnuCOBOL. If not, see . | | | TEMPLATE="${abs_srcdir}/testsuite.src" | | # TODO: add missing parts for installcheck | | if test "$GNUCOBOL_ENV_SETUP" != "1" -a "$GNUCOBOL_TEST_LOCAL" != "1"; then | COBC="cobc" | COBCRUN="cobcrun" | COBCRUN_DIRECT="" # used for running created executables through tools | # prepend PATH with the actual binaries to let the testsuite find them for | # general check and version output, otherwise not needed | PATH="${abs_top_builddir}/libcob/.libs:${PATH}" | PATH="${abs_top_builddir}/cobc:${abs_top_builddir}/bin:${PATH}" | export PATH | LOCAL_ENV="${abs_top_builddir}/pre-inst-env" | else | if test "x${COBC}" = "x"; then | COBC="cobc" | fi | if test "x${COBCRUN}" = "x"; then | COBCRUN="cobcrun" | fi | if test "x${COBCRUN_DIRECT}" = "x"; then | COBCRUN_DIRECT="" | fi | LOCAL_ENV="" | fi | | if test "$GNUCOBOL_TEST_LOCAL" != "1"; then | ABS_COBC="${abs_top_builddir}/cobc/cobc" | ABS_COBCRUN="${abs_top_builddir}/bin/cobcrun" | else | ABS_COBC="$(which cobc)" | ABS_COBCRUN="$(which cobcrun)" | fi | | AWK=mawk | GREP=/bin/grep | SED=/bin/sed | export AWK GREP SED | | # be sure to use the English messages | LC_ALL=C | export LC_ALL | unset LANG | | # workaround to adjust the testsuite later: | # FLAGS="-debug -Wall ${COBOL_FLAGS}" | FLAGS="-debug -Wall ${COBOL_FLAGS} -fno-diagnostics-show-option" | COMPILE="${COBC} -x ${FLAGS}" | COMPILE_ONLY="${COBC} -fsyntax-only ${FLAGS}" | COMPILE_MODULE="${COBC} -m ${FLAGS}" | | # Helper script to unify listings (replace version, date, time) | UNIFY_LISTING="${abs_srcdir}/listings-sed.sh" | | # test runner for manual tests, content may be changed by the user | RUN_PROG_MANUAL="${abs_builddir}/run_prog_manual.sh" | | # unset option if not internally set in this script | _unset_option () { | if test "$1" != "COB_CONFIG_DIR" \ | -a "$1" != "COB_COPY_DIR" \ | -a "$1" != "COB_RUNTIME_CONFIG" \ | -a "$1" != "COB_LIBRARY_PATH" \ | -a "$1" != "COB_CFLAGS" \ | -a "$1" != "COB_LIBS" \ | -a "$1" != "COB_UNIX_LF"; then | unset $1 | fi | } | | # possible path conversion for running the testsuite in an environment | # that doesn't match the one where the tested binaries were built | # Note: not needed for running the testsuite with MSYS as this translates the path | _return_path () { | echo "$1" | } | | # Fix for testcases where cobc translates path to win32 equivalents | if test "x$MSYSTEM" != "x"; then | PATHSEP=";" | else | PATHSEP=':'; | fi | export PATHSEP | | # entries likely referenced in the LIBS entries below | prefix="/usr/local" | exec_prefix="${prefix}" | | # options that are also used in pre-inst-env (always add to both) | # but not directly in the testsuite | if test "$GNUCOBOL_ENV_SETUP" != "1" -a "$GNUCOBOL_TEST_LOCAL" != "1"; then | COB_CFLAGS="-I${abs_top_srcdir} -pipe -I /usr/local/include -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign" | COB_LIBS="-L${abs_top_builddir}/libcob/.libs -L${exec_prefix}/lib -lcob -lm" | COB_CONFIG_DIR="${abs_top_srcdir}/config" | COB_COPY_DIR="${abs_top_srcdir}/copy" | LD_LIBRARY_PATH="${abs_top_builddir}/libcob/.libs:$LD_LIBRARY_PATH" | DYLD_LIBRARY_PATH="${abs_top_builddir}/libcob/.libs:$DYLD_LIBRARY_PATH" | SHLIB_PATH="${abs_top_builddir}/libcob/.libs:$SHLIB_PATH" | LIBPATH="${abs_top_builddir}/libcob/.libs:$LIBPATH" | COB_LIBRARY_PATH="${abs_top_builddir}/extras" | | export COB_CFLAGS COB_LIBS | export COB_CONFIG_DIR COB_COPY_DIR | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH | export COB_LIBRARY_PATH | fi | COB_UNIX_LF=1 | export COB_UNIX_LF | | # unset all environment variables that are used in libcob | # for runtime configuration ... | COB_RUNTIME_CONFIG="${abs_top_srcdir}/config/runtime_empty.cfg" | export COB_RUNTIME_CONFIG | for cobenv in $(${LOCAL_ENV} ${ABS_COBCRUN} --runtime-conf \ | | grep " env:" | cut -d: -f2 | cut -d= -f1 \ | | grep -v "PATH" | grep -v "TERM"); \ | do _unset_option $cobenv; \ | done | | # prevent multiple calls by caching the output | ${LOCAL_ENV} ${ABS_COBC} --info > info.out | | # ... and also unset for the compiler | if test "$GNUCOBOL_TEST_LOCAL" != "1"; then | for cobenv in $(grep "env:" info.out | cut -d: -f2 | cut -d= -f1 \ | | grep -v "PATH"); \ | do _unset_option $cobenv; \ | done | fi | | COB_STACKTRACE=0 | export COB_STACKTRACE | | | # different flags checked in the testsuite | if test "$GNUCOBOL_TEST_LOCAL" != "1"; then | COB_OBJECT_EXT="o" | COB_EXE_EXT="" | COB_BIGENDIAN="no" | COB_HAS_64_BIT_POINTER="yes" | COB_HAS_ISAM="vbisam" | COB_HAS_XML2="no" | COB_HAS_JSON="no" | COB_HAS_CURSES="yes" | else | | COB_OBJECT_EXT="$(grep COB_OBJECT_EXT info.out | cut -d: -f2 | cut -b2-)" | COB_EXE_EXT="$(grep COB_EXE_EXT info.out | cut -d: -f2 | cut -b2-)" | | if test $(grep -i -c "little-endian" info.out) = 0; then | COB_BIGENDIAN="yes" | else | COB_BIGENDIAN="no" | fi | COB_HAS_64_BIT_POINTER=$(grep "64bit-mode" info.out | cut -d: -f2 | cut -b2-) | | cob_indexed=$(grep -i "indexed file" info.out | cut -d: -f2) | if test "x$cob_indexed" = "x"; then | cob_indexed=$(grep ISAM info.out | cut -d: -f2) | fi | case "$cob_indexed" in | " disabled") COB_HAS_ISAM="no";; | " BDB") COB_HAS_ISAM="db";; | " VBISAM"*) COB_HAS_ISAM="vbisam";; | " D-ISAM") COB_HAS_ISAM="disam";; | " C-ISAM") COB_HAS_ISAM="cisam";; | " EXTFH") COB_HAS_ISAM="index_extfh";; | *) echo "unknown entry for indexed handler: '"$cob_indexed"' please report" && exit 1;; | esac | | if test $(grep -i -c "XML library.*disabled" info.out) = 0; then | COB_HAS_XML2="yes" | else | COB_HAS_XML2="no" | fi | if test $(grep -i -c "JSON library.*disabled" info.out) = 0; then | COB_HAS_JSON="yes" | else | COB_HAS_JSON="no" | fi | # see note below | if test $(grep -i -c " screen .*disabled" info.out) = 0; then | COB_HAS_CURSES="yes" | else | COB_HAS_CURSES="no" | fi | fi | if test "x$MSYSTEM" != "x" -o "$OSTYPE" = "cygwin"; then | # running MSYS builds as not-visible child processes result in | # "Redirection is not supported" (at least old PDCurses) | # --> disabling the tests for this feature | # ncurses is known to work as long as TERM is appropriate | if test $(grep -i -c "ncurses" info.out) != 0; then | if test "x$MSYSTEM" != "x"; then | TERM="" | else | TERM="xterm" | fi | export TERM | # no change here... COB_HAS_CURSES="yes" | else | COB_HAS_CURSES="no" | fi | fi | | rm -rf info.out | | # NIST tests (tests/cobol85) are executed in a separate perl process with a new environment --> export needed | export COB_HAS_ISAM COB_HAS_XML2 COB_HAS_JSON COB_HAS_CURSES COB_HAS_64_BIT_POINTER | export COBC COBCRUN COBCRUN_DIRECT RUN_PROG_MANUAL | export COB_OBJECT_EXT COB_EXE_EXT | | # to ensure that no external DB_HOME is polluted: unset | DB_HOME="" && export DB_HOME | | # For the very rare cases where cobc/libcob may need to know if they're running in test mode: | COB_IS_RUNNING_IN_TESTMODE=1 && export COB_IS_RUNNING_IN_TESTMODE ## ---------------- ## ## Tested programs. ## ## ---------------- ## ./testsuite.at:26: /home/michael/Downloads/gnucobol-3.1.2/cobc/cobc --version cobc (GnuCOBOL) 3.1.2.0 Copyright (C) 2020 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Keisuke Nishida, Roger While, Ron Norman, Simon Sobisch, Edward Hart Built Nov 30 2022 09:44:42 Packaged Dec 23 2020 12:04:58 UTC C version "9.4.0" ./testsuite.at:26: /home/michael/Downloads/gnucobol-3.1.2/bin/cobcrun --version cobcrun (GnuCOBOL) 3.1.2.0 Copyright (C) 2020 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Roger While, Simon Sobisch, Brian Tiffin Built Nov 30 2022 09:44:41 Packaged Dec 23 2020 12:04:58 UTC libcob (GnuCOBOL) 3.1.2.0 Copyright (C) 2020 Free Software Foundation, Inc. License LGPLv3+: GNU LGPL version 3 or later This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Keisuke Nishida, Roger While, Ron Norman, Simon Sobisch, Edward Hart Built Nov 30 2022 09:44:05 Packaged Dec 23 2020 12:04:58 UTC ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Wed Nov 30 09:47:59 MST 2022 1. compiler help and information (used_binaries.at:27): ok (0m0.408s 0m0.188s) 2. compiler warnings (used_binaries.at:50): ok (0m0.609s 0m0.293s) 3. compiler outputs (general) (used_binaries.at:178): ok (0m0.500s 0m0.249s) 4. compiler outputs (file specified) (used_binaries.at:218): ok (0m0.641s 0m0.284s) 5. compiler outputs (path specified) (used_binaries.at:263): ok (0m0.517s 0m0.203s) 6. compiler outputs (assembler) (used_binaries.at:292): ok (0m0.326s 0m0.133s) 7. source file not found (used_binaries.at:327): ok (0m0.012s 0m0.020s) 8. temporary path invalid (used_binaries.at:337): ok (0m0.246s 0m0.109s) 9. use of full path for cobc (used_binaries.at:372): ok (0m0.136s 0m0.049s) 10. C Compiler optimizations (used_binaries.at:390): ok (0m1.088s 0m0.373s) 11. invalid cobc option (used_binaries.at:427): ok (0m0.045s 0m0.016s) 12. cobcrun help and information (used_binaries.at:447): ok (0m0.111s 0m0.075s) 13. cobcrun validation (used_binaries.at:462): ok (0m0.243s 0m0.116s) 14. cobcrun -M DSO entry argument (used_binaries.at:502): ok (0m0.269s 0m0.094s) 15. cobcrun -M directory/ default (used_binaries.at:562): ok (0m0.258s 0m0.097s) 16. cobcrun -M directory/dso alternate (used_binaries.at:601): ok (0m0.258s 0m0.119s) 17. cobcrun -M DSO entry multiple arguments (used_binaries.at:652): ok (0m0.238s 0m0.103s) 18. cobcrun error messages (used_binaries.at:698): ok (0m0.078s 0m0.054s) 19. run job after compilation (used_binaries.at:721): ok (0m0.257s 0m0.116s) 20. run job after compilation (path specified) (used_binaries.at:740): ok (0m0.291s 0m0.089s) 21. run job with optional arguments (used_binaries.at:760): ok (0m0.418s 0m0.158s) 22. compile from stdin (used_binaries.at:782): ok (0m0.267s 0m0.105s) 23. run job after compilation from stdin (used_binaries.at:812): ok (0m0.246s 0m0.141s) 24. cobc with standard configuration file (configuration.at:22): ok (0m0.032s 0m0.018s) 25. cobc dialect features for all -std (configuration.at:43): ok (0m0.637s 0m0.293s) 26. cobc with configuration file via -std (configuration.at:101): ok (0m0.029s 0m0.011s) 27. cobc with standard configuration file via -conf (configuration.at:122): ok (0m0.021s 0m0.022s) 28. cobc with own configuration file via -conf (configuration.at:143): ok (0m0.061s 0m0.034s) 29. cobc configuration: recursive include (configuration.at:172): ok (0m0.029s 0m0.009s) 30. cobc with -std and -conf (configuration.at:210): ok (0m0.054s 0m0.017s) 31. cobc compiler flag on command line (configuration.at:237): ok (0m0.033s 0m0.013s) 32. cobc compiler flag on command line (priority) (configuration.at:256): ok (0m0.091s 0m0.055s) 33. cobc configuration: entries (configuration.at:289): ok (0m0.128s 0m0.096s) 34. cobc configuration: conf missing (configuration.at:336): ok (0m0.066s 0m0.035s) 35. cobc configuration: conf optional (configuration.at:364): ok (0m0.077s 0m0.029s) 36. cobc configuration: incomplete (configuration.at:400): ok (0m0.022s 0m0.013s) 37. runtime configuration (configuration.at:524): ok (0m0.060s 0m0.047s) 38. runtime configuration file (configuration.at:543): ok (0m0.153s 0m0.119s) 39. runtime configuration: recursive include (configuration.at:586): ok (0m0.028s 0m0.009s) 40. runtime configuration: environment priority (configuration.at:615): ok (0m0.015s 0m0.022s) 41. runtime configuration: entries (configuration.at:628): ok (0m0.020s 0m0.013s) 42. runtime configuration: conf missing (configuration.at:709): ok (0m0.048s 0m0.050s) 43. runtime configuration: conf optional (configuration.at:738): ok (0m0.018s 0m0.015s) 44. runtime configuration: strings and environment (configuration.at:751): ok (0m0.049s 0m0.026s) 45. validation of COB_CONFIG_DIR (configuration.at:765): ok (0m0.016s 0m0.021s) 46. COPY: IN / OF / -I (syn_copy.at:21): ok (0m0.254s 0m0.105s) 48. COPY: extension (syn_copy.at:168): ok (0m0.214s 0m0.094s) 49. COPY: within comment (syn_copy.at:255): ok (0m0.072s 0m0.032s) 50. COPY: file not found (syn_copy.at:284): ok (0m0.149s 0m0.061s) 51. COPY: recursive (syn_copy.at:340): ok (0m0.035s 0m0.019s) 52. COPY: replacement order (syn_copy.at:380): ok (0m0.137s 0m0.042s) 53. COPY: separators (syn_copy.at:407): ok (0m0.119s 0m0.061s) 54. COPY: partial replacement (syn_copy.at:436): ok (0m0.136s 0m0.042s) 55. COPY: LEADING replacement (syn_copy.at:466): ok (0m0.112s 0m0.057s) 56. COPY: TRAILING replacement (syn_copy.at:496): ok (0m0.122s 0m0.065s) 57. COPY: recursive replacement (syn_copy.at:526): ok (0m0.134s 0m0.048s) 58. COPY: fixed/free format (syn_copy.at:556): ok (0m0.107s 0m0.060s) 59. Invalid source name (syn_definition.at:25): ok (0m0.022s 0m0.009s) 60. Invalid PROGRAM-ID (syn_definition.at:37): ok (0m0.028s 0m0.021s) 61. Invalid PROGRAM-ID type clause (1) (syn_definition.at:54): ok (0m0.038s 0m0.013s) 62. invalid PROGRAM-ID type clause (2) (syn_definition.at:71): ok (0m0.040s 0m0.008s) 63. INITIAL / RECURSIVE before COMMON (syn_definition.at:88): ok (0m0.029s 0m0.024s) 64. Undefined data name (syn_definition.at:120): ok (0m0.022s 0m0.022s) 65. Undefined group name (syn_definition.at:139): ok (0m0.033s 0m0.015s) 66. Undefined data name in group (syn_definition.at:161): ok (0m0.026s 0m0.020s) 67. Reference not a group name (syn_definition.at:185): ok (0m0.036s 0m0.011s) 68. Incomplete 01 definition (syn_definition.at:207): ok (0m0.040s 0m0.017s) 69. error handling in conditions (syn_definition.at:225): ok (0m0.043s 0m0.011s) 70. Same labels in different sections (syn_definition.at:298): ok (0m0.033s 0m0.018s) 71. Redefinition of 01 items (syn_definition.at:322): ok (0m0.177s 0m0.062s) 72. Redefinition of 01 and 02 items (syn_definition.at:351): ok (0m0.045s 0m0.009s) 73. Redefinition of 02 items (syn_definition.at:371): ok (0m0.031s 0m0.016s) 74. Redefinition of 77 items (syn_definition.at:392): ok (0m0.034s 0m0.019s) 75. Redefinition of 01 and 77 items (syn_definition.at:412): ok (0m0.035s 0m0.010s) 76. Redefinition of 88 items (syn_definition.at:432): ok (0m0.037s 0m0.010s) 77. Redefinition of program-name by other programs (syn_definition.at:453): ok (0m0.077s 0m0.032s) 78. Redefinition of program-name within program (syn_definition.at:533): ok (0m0.078s 0m0.022s) 79. Redefinition of function-prototype name (syn_definition.at:563): ok (0m0.030s 0m0.016s) 80. PROCEDURE DIVISION RETURNING OMITTED: main (syn_definition.at:588): ok (0m0.152s 0m0.050s) 81. PROCEDURE DIVISION RETURNING OMITTED: FUNCTION (syn_definition.at:608): ok (0m0.044s 0m0.006s) 82. PROCEDURE DIVISION RETURNING item (syn_definition.at:627): ok (0m0.172s 0m0.087s) 83. Data item with same name as program-name (syn_definition.at:722): ok (0m0.024s 0m0.020s) 84. Ambiguous reference to 02 items (syn_definition.at:749): ok (0m0.028s 0m0.019s) 85. Ambiguous reference to 02 and 03 items (syn_definition.at:776): ok (0m0.027s 0m0.021s) 86. Ambiguous reference with qualification (syn_definition.at:802): ok (0m0.037s 0m0.016s) 87. Unique reference with ambiguous qualifiers (syn_definition.at:831): ok (0m0.036s 0m0.007s) 88. Undefined procedure name (syn_definition.at:867): ok (0m0.032s 0m0.016s) 89. Redefinition of section names (syn_definition.at:887): ok (0m0.043s 0m0.006s) 90. Redefinition of section and paragraph names (syn_definition.at:912): ok (0m0.024s 0m0.020s) 92. Redefinition of paragraph names (syn_definition.at:975): ok (0m0.032s 0m0.017s) 93. Ambiguous reference to paragraph name (syn_definition.at:1001): ok (0m0.034s 0m0.015s) 94. Non-matching level numbers (extension) (syn_definition.at:1027): ok (0m0.042s 0m0.011s) 95. CALL BY VALUE alphanumeric item (extension) (syn_definition.at:1051): ok (0m0.033s 0m0.018s) 96. CALL BY VALUE national item (extension) (syn_definition.at:1073): ok (0m0.041s 0m0.012s) 97. CALL BY VALUE figurative constants (syn_definition.at:1096): ok (0m0.030s 0m0.017s) 98. Duplicate identification division header (syn_definition.at:1130): ok (0m0.029s 0m0.022s) 99. RETURNING in STOP RUN / GOBACK / EXIT PROGRAM (syn_definition.at:1145): ok (0m0.359s 0m0.138s) 100. Invalid ENVIRONMENT DIVISION order (syn_definition.at:1196): ok (0m0.028s 0m0.021s) 101. Function without END FUNCTION (syn_definition.at:1221): ok (0m0.039s 0m0.012s) 102. Nested programs without END PROGRAM (syn_definition.at:1235): ok (0m0.035s 0m0.011s) 103. Nested programs not in procedure division (syn_definition.at:1257): ok (0m0.042s 0m0.011s) 104. Screen section starts with 78-level (syn_definition.at:1276): ok (0m0.043s 0m0.006s) 105. Invalid PICTURE strings (syn_definition.at:1292): ok (0m0.061s 0m0.038s) 106. PICTURE string with control character (syn_definition.at:1552): ok (0m0.030s 0m0.018s) 107. PICTURE strings invalid with BLANK WHEN ZERO (syn_definition.at:1570): ok (0m0.030s 0m0.019s) 108. PICTURE strings invalid with USAGE (syn_definition.at:1593): ok (0m0.031s 0m0.019s) 109. ALPHABET definition (syn_definition.at:1613): ok (0m0.032s 0m0.017s) 110. PROGRAM COLLATING SEQUENCE (syn_definition.at:1636): ok (0m0.095s 0m0.067s) 111. RENAMES item (syn_definition.at:1819): ok (0m0.021s 0m0.019s) 112. RENAMES of 01-, 66- and 77-level items (syn_definition.at:1893): ok (0m0.064s 0m0.029s) 113. SAME AS clause (syn_definition.at:1919): ok (0m0.088s 0m0.052s) 114. TYPEDEF clause (syn_definition.at:1983): ok (0m0.234s 0m0.124s) 116. APPLY COMMIT clause (syn_definition.at:2272): ok (0m0.039s 0m0.008s) 117. Non-numeric subscript (syn_subscripts.at:23): ok (0m0.034s 0m0.018s) 118. Subscript range check (syn_subscripts.at:50): ok (0m0.070s 0m0.026s) 119. Subscript bounds with OCCURS DEPENDING ON (syn_subscripts.at:98): ok (0m0.034s 0m0.015s) 120. Subscripted item requires OCCURS clause (syn_subscripts.at:125): ok (0m0.029s 0m0.013s) 121. Number of subscripts (syn_subscripts.at:151): ok (0m0.077s 0m0.023s) 122. SET SSRANGE syntax (syn_subscripts.at:195): ok (0m0.032s 0m0.015s) 123. OCCURS with level 01 and 77 (syn_occurs.at:29): ok (0m0.087s 0m0.037s) 124. OCCURS with level 66 (syn_occurs.at:84): ok (0m0.033s 0m0.016s) 125. OCCURS with level 78 (syn_occurs.at:103): ok (0m0.037s 0m0.012s) 126. OCCURS with level 88 (syn_occurs.at:121): ok (0m0.033s 0m0.017s) 127. OCCURS with variable-occurrence data item (syn_occurs.at:141): ok (0m0.133s 0m0.069s) 128. OCCURS data-items for INDEXED and KEY (syn_occurs.at:189): ok (0m0.034s 0m0.016s) 129. Nested OCCURS clause (syn_occurs.at:229): ok (0m0.027s 0m0.017s) 130. OCCURS DEPENDING with wrong size (syn_occurs.at:266): ok (0m0.039s 0m0.008s) 131. OCCURS DEPENDING followed by another field (syn_occurs.at:305): ok (0m0.075s 0m0.017s) 132. OCCURS with unmatched DEPENDING / TO phrases (syn_occurs.at:347): ok (0m0.091s 0m0.044s) 133. OCCURS INDEXED before KEY (syn_occurs.at:390): ok (0m0.063s 0m0.032s) 134. OCCURS size check (syn_occurs.at:428): ok (0m0.086s 0m0.021s) 135. REDEFINES: not following entry-name (syn_redefines.at:28): ok (0m0.067s 0m0.035s) 136. REDEFINES: level 02 by 01 (syn_redefines.at:53): ok (0m0.034s 0m0.006s) 137. REDEFINES: level 03 by 02 (syn_redefines.at:74): ok (0m0.033s 0m0.017s) 138. REDEFINES: level 66 (syn_redefines.at:96): ok (0m0.030s 0m0.016s) 139. REDEFINES: level 88 (syn_redefines.at:118): ok (0m0.038s 0m0.012s) 140. REDEFINES: lower level number (syn_redefines.at:147): ok (0m0.031s 0m0.020s) 141. REDEFINES: with OCCURS (syn_redefines.at:173): ok (0m0.033s 0m0.016s) 142. REDEFINES: with subscript (syn_redefines.at:194): ok (0m0.028s 0m0.021s) 143. REDEFINES: with variable occurrence (syn_redefines.at:216): ok (0m0.034s 0m0.016s) 144. REDEFINES: with qualification (syn_redefines.at:251): ok (0m0.032s 0m0.019s) 145. REDEFINES: multiple redefinition (syn_redefines.at:277): ok (0m0.079s 0m0.037s) 146. REDEFINES: size exceeds (syn_redefines.at:305): ok (0m0.042s 0m0.006s) 147. REDEFINES: with VALUE (syn_redefines.at:338): ok (0m0.151s 0m0.061s) 148. REDEFINES: with intervention (syn_redefines.at:370): ok (0m0.041s 0m0.008s) 149. REDEFINES: within REDEFINES (syn_redefines.at:399): ok (0m0.038s 0m0.010s) 150. REDEFINES: non-referenced ambiguous item (syn_redefines.at:420): ok (0m0.037s 0m0.010s) 151. Numeric item (integer) (syn_value.at:43): ok (0m0.032s 0m0.017s) 152. Numeric item (non-integer) (syn_value.at:70): ok (0m0.039s 0m0.009s) 153. Numeric item with picture P (syn_value.at:94): ok (0m0.032s 0m0.022s) 154. Signed numeric literal (syn_value.at:126): ok (0m0.043s 0m0.006s) 155. Alphabetic item (syn_value.at:152): ok (0m0.036s 0m0.018s) 156. Alphanumeric item (syn_value.at:179): ok (0m0.042s 0m0.009s) 157. Alphanumeric group item (syn_value.at:204): ok (0m0.033s 0m0.019s) 158. Numeric-edited item (syn_value.at:239): ok (0m0.098s 0m0.057s) 159. Alphanumeric-edited item (syn_value.at:272): ok (0m0.033s 0m0.016s) 160. Implicit picture from value (syn_value.at:340): ok (0m0.067s 0m0.032s) 161. Missing SELECT (syn_file.at:23): ok (0m0.032s 0m0.023s) 162. Duplicated SELECT (syn_file.at:50): ok (0m0.033s 0m0.019s) 163. Missing FD (syn_file.at:82): ok (0m0.033s 0m0.017s) 164. Duplicated FD (syn_file.at:108): ok (0m0.032s 0m0.018s) 165. ASSIGN to device-name (syn_file.at:137): ok (0m0.173s 0m0.040s) 166. ASSIGN to printer-name (syn_file.at:204): ok (0m0.169s 0m0.042s) 167. ASSIGN to lsq-device-name (syn_file.at:271): ok (0m0.061s 0m0.005s) 168. ASSIGN to variable (syn_file.at:326): ok (0m0.075s 0m0.033s) 169. SELECT without ASSIGN (syn_file.at:431): ok (0m0.030s 0m0.020s) 170. START on SEQUENTIAL file (syn_file.at:459): ok (0m0.034s 0m0.015s) 171. OPEN SEQUENTIAL file REVERSED (syn_file.at:496): ok (0m0.082s 0m0.015s) 172. OPEN SEQUENTIAL file NO REWIND (syn_file.at:544): ok (0m0.035s 0m0.014s) 173. valid key items (syn_file.at:583): ok (0m0.031s 0m0.015s) 174. INDEXED file invalid key items (syn_file.at:633): ok (0m0.042s 0m0.008s) 175. variable record length (syn_file.at:697): ok (0m0.156s 0m0.091s) 176. variable record length DEPENDING item (syn_file.at:808): ok (0m0.069s 0m0.034s) 177. DECLARATIVES invalid procedure reference (1) (syn_file.at:882): ok (0m0.171s 0m0.056s) 178. DECLARATIVES invalid procedure reference (2) (syn_file.at:971): ok (0m0.037s 0m0.013s) 179. EXTERNAL file (syn_file.at:1012): ok (0m0.028s 0m0.021s) 180. RECORDING MODE (syn_file.at:1040): ok (0m0.034s 0m0.015s) 181. CODE-SET clause (syn_file.at:1069): ok (0m0.037s 0m0.013s) 182. CODE-SET FOR clause (syn_file.at:1103): ok (0m0.033s 0m0.019s) 183. WRITE / REWRITE FROM clause and FILE (syn_file.at:1137): ok (0m0.042s 0m0.009s) 184. Clauses following invalid ACCESS clause (syn_file.at:1198): ok (0m0.036s 0m0.020s) 185. RELATIVE KEY type checks (syn_file.at:1222): ok (0m0.040s 0m0.011s) 186. Mismatched KEY clause (syn_file.at:1282): ok (0m0.038s 0m0.014s) 187. RECORD DELIMITER (syn_file.at:1309): ok (0m0.037s 0m0.014s) 188. FILE STATUS (syn_file.at:1417): ok (0m0.033s 0m0.021s) 189. VSAM status (syn_file.at:1516): ok (0m0.101s 0m0.060s) 190. INDEXED file PASSWORD clause (syn_file.at:1562): ok (0m0.038s 0m0.010s) 191. RECORD clause equal limits (syn_file.at:1613): ok (0m0.028s 0m0.018s) 192. FILE ... FROM literal (syn_file.at:1653): ok (0m0.110s 0m0.037s) 193. WRITE / REWRITE on LINE SEQUENTIAL files (syn_file.at:1712): ok (0m0.042s 0m0.006s) 194. WRITE / REWRITE on REPORT files (syn_file.at:1747): ok (0m0.037s 0m0.012s) 195. SELECT without fd-name (syn_file.at:1784): ok (0m0.029s 0m0.019s) 196. Undeclared FILE-ID variable (syn_file.at:1805): ok (0m0.039s 0m0.015s) 197. Undeclared ASSIGN variable (syn_file.at:1830): ok (0m0.037s 0m0.016s) 198. OPEN I-O with LINE SEQUENTIAL (syn_file.at:1909): ok (0m0.028s 0m0.017s) 199. ACCESS RANDOM with ORG SEQUENTIAL (syn_file.at:1934): ok (0m0.038s 0m0.013s) 200. ALTERNATE RECORD KEY SUPPRESS WHEN (syn_file.at:1961): ok (0m0.049s 0m0.014s) 201. RECORD definition with SOURCE IS / = (syn_file.at:2006): ok (0m0.037s 0m0.009s) 204. SELECT/OPEN syntax extensions (syn_file.at:2116): ok (0m0.061s 0m0.040s) 205. GLOBAL FD nested progam (syn_file.at:2211): ok (0m0.131s 0m0.046s) 206. Invalid file name in SELECT (syn_file.at:2249): ok (0m0.043s 0m0.006s) 207. REPORT error/warning (syn_reportwriter.at:23): ok (0m0.033s 0m0.026s) 208. REPORT not positive integers in COL / LINE PLUS (syn_reportwriter.at:124): ok (0m0.028s 0m0.019s) 209. Missing DETAIL line (syn_reportwriter.at:177): ok (0m0.037s 0m0.012s) 210. REPORT LINE PLUS ZERO (syn_reportwriter.at:220): ok (0m0.037s 0m0.013s) 211. Incorrect REPORT NAME (syn_reportwriter.at:270): ok (0m0.051s 0m0.035s) 212. REPORT with PLUS RIGHT/CENTER (syn_reportwriter.at:387): ok (0m0.036s 0m0.016s) 213. PAGE LIMITS clause (syn_reportwriter.at:480): ok (0m0.032s 0m0.021s) 214. Report FD without period (syn_reportwriter.at:515): ok (0m0.036s 0m0.017s) 215. REPORT with unreferenced control field (syn_reportwriter.at:548): ok (0m0.132s 0m0.036s) 216. Incorrect USAGE clause (syn_reportwriter.at:576): ok (0m0.030s 0m0.021s) 217. valid reference modification (syn_refmod.at:25): ok (0m0.133s 0m0.039s) 218. Static out of bounds (syn_refmod.at:51): ok (0m0.030s 0m0.018s) 219. constant-folding out of bounds (syn_refmod.at:95): ok (0m0.070s 0m0.031s) 220. ambiguous AND/OR (syn_misc.at:23): ok (0m0.035s 0m0.017s) 221. warn constant expressions (syn_misc.at:54): ok (0m0.036s 0m0.015s) 222. warn literal size (syn_misc.at:87): ok (0m0.035s 0m0.023s) 223. warn literal size in constant expr. (level 88) (syn_misc.at:352): ok (0m0.033s 0m0.017s) 224. Invalid conditional expression (1) (syn_misc.at:402): ok (0m0.031s 0m0.019s) 225. Invalid conditional expression (2) (syn_misc.at:515): ok (0m0.036s 0m0.015s) 226. Invalid conditional expression (3) (syn_misc.at:571): ok (0m0.039s 0m0.016s) 227. Valid conditional expression (syn_misc.at:635): ok (0m0.068s 0m0.026s) 228. missing headers (syn_misc.at:668): ok (0m0.083s 0m0.015s) 229. one line program (syn_misc.at:718): ok (0m0.062s 0m0.047s) 230. empty program (syn_misc.at:737): ok (0m0.741s 0m0.246s) 231. INITIALIZE constant (syn_misc.at:783): ok (0m0.035s 0m0.010s) 232. CLASS duplicate values (syn_misc.at:810): ok (0m0.036s 0m0.016s) 233. INSPECT invalid size (syn_misc.at:843): ok (0m0.028s 0m0.025s) 234. INSPECT invalid target (syn_misc.at:884): ok (0m0.032s 0m0.018s) 235. INSPECT missing keyword (syn_misc.at:907): ok (0m0.039s 0m0.010s) 236. INSPECT repeated keywords (syn_misc.at:928): ok (0m0.036s 0m0.010s) 237. INSPECT incomplete clause (syn_misc.at:964): ok (0m0.033s 0m0.016s) 238. INSPECT multiple BEFORE/AFTER clauses (syn_misc.at:986): ok (0m0.039s 0m0.008s) 239. maximum data size (syn_misc.at:1009): ok (0m0.029s 0m0.021s) 240. unreachable statement (syn_misc.at:1038): ok (0m0.045s 0m0.010s) 241. CRT STATUS (syn_misc.at:1088): ok (0m0.067s 0m0.034s) 242. SPECIAL-NAMES clause (syn_misc.at:1130): ok (0m0.185s 0m0.068s) 243. CURRENCY SIGN (syn_misc.at:1219): ok (0m0.278s 0m0.085s) 244. SWITCHES (syn_misc.at:1331): ok (0m0.065s 0m0.035s) 245. unexpected mnemonic-name location (syn_misc.at:1457): ok (0m0.039s 0m0.012s) 246. wrong device for mnemonic-name (syn_misc.at:1484): ok (0m0.040s 0m0.011s) 247. missing mnemonic-name declaration (syn_misc.at:1509): ok (0m0.032s 0m0.017s) 248. unknown device in dialect (syn_misc.at:1530): ok (0m0.074s 0m0.029s) 249. ACCEPT WITH ( NO ) UPDATE / DEFAULT (syn_misc.at:1560): ok (0m0.029s 0m0.022s) 250. ACCEPT WITH AUTO / TAB (syn_misc.at:1585): ok (0m0.039s 0m0.004s) 251. ACCEPT WITH LOWER / UPPER (syn_misc.at:1610): ok (0m0.027s 0m0.020s) 252. ACCEPT WITH SIZE (syn_misc.at:1632): ok (0m0.033s 0m0.015s) 253. DISPLAY WITH SIZE (syn_misc.at:1661): ok (0m0.034s 0m0.015s) 254. source text after program-text area (syn_misc.at:1686): ok (0m0.026s 0m0.018s) 255. line overflow in fixed-form / free-form (syn_misc.at:1707): ok (0m0.087s 0m0.074s) 256. missing newline in fixed-form / free-form (syn_misc.at:1755): ok (0m0.134s 0m0.071s) 257. continuation Indicator - too many lines (syn_misc.at:1788): ok (0m0.219s 0m0.038s) 258. continuation of COBOL words (syn_misc.at:2345): ok (0m0.050s 0m0.034s) 259. literal too long (syn_misc.at:2366): ok (0m0.191s 0m0.085s) 260. line and floating comments (syn_misc.at:2601): ok (0m0.727s 0m0.306s) 261. word length (syn_misc.at:2766): ok (0m0.248s 0m0.105s) 262. Segmentation Module (syn_misc.at:2929): ok (0m0.063s 0m0.021s) 263. ACCEPT FROM ESCAPE KEY (syn_misc.at:3021): ok (0m0.041s 0m0.007s) 264. Numeric literals (syn_misc.at:3046): ok (0m0.114s 0m0.043s) 265. floating-point literals (syn_misc.at:3225): ok (0m0.063s 0m0.037s) 266. X literals (syn_misc.at:3332): ok (0m0.039s 0m0.015s) 267. national literals (syn_misc.at:3359): ok (0m0.055s 0m0.030s) 268. NX literals (syn_misc.at:3397): ok (0m0.063s 0m0.026s) 269. binary literals (syn_misc.at:3435): ok (0m0.070s 0m0.035s) 270. binary-hexadecimal literals (syn_misc.at:3471): ok (0m0.050s 0m0.040s) 271. HP COBOL octal literals (syn_misc.at:3500): ok (0m0.058s 0m0.028s) 272. ACUCOBOL literals (syn_misc.at:3536): ok (0m0.091s 0m0.024s) 273. ACUCOBOL 32bit literal size (syn_misc.at:3598): skipped (syn_misc.at:3600) 274. ACUCOBOL USAGE FLOAT / DOUBLE (syn_misc.at:3629): ok (0m0.090s 0m0.048s) 275. ACUCOBOL USAGE HANDLE (syn_misc.at:3658): ok (0m0.056s 0m0.030s) 276. ACUCOBOL WINDOW statements (syn_misc.at:3766): ok (0m0.060s 0m0.040s) 277. ACUCOBOL GRAPHICAL controls (syn_misc.at:3851): ok (0m0.034s 0m0.012s) 278. DISPLAY MESSAGE BOX (syn_misc.at:3930): ok (0m0.023s 0m0.033s) 279. DISPLAY OMITTED (syn_misc.at:3973): ok (0m0.031s 0m0.019s) 280. CGI: EXTERNAL-FORM (syn_misc.at:3994): ok (0m0.036s 0m0.010s) 281. adding/removing reserved words (syn_misc.at:4049): ok (0m0.073s 0m0.028s) 282. adding aliases (syn_misc.at:4079): ok (0m0.138s 0m0.055s) 283. overriding default words (syn_misc.at:4113): ok (0m0.058s 0m0.039s) 284. complete specified word list (syn_misc.at:4143): ok (0m0.082s 0m0.053s) 285. ANY LENGTH item as formal parameter (syn_misc.at:4163): ok (0m0.074s 0m0.022s) 286. ANY LENGTH item as BY VALUE formal parameter (syn_misc.at:4198): ok (0m0.045s 0m0.005s) 287. swapped SOURCE- and OBJECT-COMPUTER (syn_misc.at:4221): ok (0m0.084s 0m0.031s) 288. CONF. SECTION paragraphs in wrong order (syn_misc.at:4243): ok (0m0.119s 0m0.041s) 289. NOT ON EXCEPTION with STATIC CALL convention (syn_misc.at:4315): ok (0m0.155s 0m0.049s) 290. NOT ON EXCEPTION phrases before ON EXCEPTION (syn_misc.at:4363): ok (0m0.046s 0m0.035s) 291. wrong dialect hints (syn_misc.at:4427): ok (0m0.018s 0m0.023s) 292. redundant periods (syn_misc.at:4451): ok (0m0.033s 0m0.018s) 293. IF-ELSE statement list with invalid syntax (syn_misc.at:4481): ok (0m0.035s 0m0.017s) 294. EVALUATE statement with invalid syntax (syn_misc.at:4514): ok (0m0.032s 0m0.018s) 295. MF reserved word directives (syn_misc.at:4564): ok (0m0.035s 0m0.014s) 296. TURN directive (syn_misc.at:4620): ok (0m0.039s 0m0.009s) 297. STRING / UNSTRING with invalid syntax (syn_misc.at:4653): ok (0m0.033s 0m0.019s) 298. UNSTRING COUNT clause (syn_misc.at:4718): ok (0m0.032s 0m0.019s) 299. use of program-prototypes (syn_misc.at:4766): ok (0m0.042s 0m0.005s) 300. invalid INSPECT/TRANSFORM operands (syn_misc.at:4793): ok (0m0.034s 0m0.018s) 301. SIGN clause checks (syn_misc.at:4837): ok (0m0.042s 0m0.009s) 302. conflicting entry conventions (syn_misc.at:4862): ok (0m0.105s 0m0.038s) 303. conflicting call conventions (syn_misc.at:4931): ok (0m0.055s 0m0.037s) 304. dangling LINKAGE items (syn_misc.at:4960): ok (0m0.038s 0m0.010s) 305. duplicate PROCEDURE DIVISION/ENTRY USING items (syn_misc.at:5016): ok (0m0.039s 0m0.010s) 306. duplicate CALL USING BY REFERENCE items (syn_misc.at:5037): ok (0m0.035s 0m0.012s) 307. ADD / SUBTRACT TABLE (syn_misc.at:5063): ok (0m0.032s 0m0.016s) 308. USE FOR DEBUGGING invalid ref-mod / subscripts (syn_misc.at:5106): ok (0m0.044s 0m0.007s) 309. USE FOR DEBUGGING duplicate targets (syn_misc.at:5151): ok (0m0.026s 0m0.024s) 310. USE FOR DEBUGGING implicit statements (syn_misc.at:5204): ok (0m0.038s 0m0.013s) 312. Empty PERFORM with DEBUGGING MODE (syn_misc.at:5323): ok (0m0.034s 0m0.011s) 313. whitespace handling (syn_misc.at:5351): ok (0m0.072s 0m0.029s) 314. STOP identifier (syn_misc.at:5439): ok (0m0.051s 0m0.046s) 315. 01 CONSTANT (syn_misc.at:5465): ok (0m0.157s 0m0.051s) 316. 78 VALUE (syn_misc.at:5513): ok (0m0.121s 0m0.036s) 317. level 78 NEXT / START OF (syn_misc.at:5560): ok (0m0.024s 0m0.022s) 318. SYMBOLIC CONSTANT (syn_misc.at:5619): ok (0m0.103s 0m0.032s) 319. Constant Expressions (1) (syn_misc.at:5668): ok (0m0.030s 0m0.027s) 320. Constant Expressions (2) (syn_misc.at:5793): ok (0m0.034s 0m0.015s) 321. Constant Expressions (3) (syn_misc.at:5849): ok (0m0.172s 0m0.094s) 322. Constant Expressions (4) (syn_misc.at:5940): ok (0m0.040s 0m0.015s) 323. Constant Expressions (5) (syn_misc.at:5973): ok (0m0.068s 0m0.033s) 324. Missing imperative statements (syn_misc.at:6073): ok (0m0.071s 0m0.035s) 326. CONSTANT LENGTH / BYTE-LENGTH (syn_misc.at:6203): ok (0m0.031s 0m0.018s) 327. ANY LENGTH/NUMERIC with incorrect PIC (syn_misc.at:6227): ok (0m0.041s 0m0.009s) 328. VOLATILE clause (syn_misc.at:6273): ok (0m0.029s 0m0.016s) 329. SET SOURCEFORMAT syntax checks (syn_misc.at:6316): ok (0m0.019s 0m0.014s) 330. WHEN-COMPILED register in dialect (syn_misc.at:6349): ok (0m0.208s 0m0.099s) 331. LIN / COL register (syn_misc.at:6375): ok (0m0.168s 0m0.049s) 332. tokens consisting of multiple words (syn_misc.at:6407): ok (0m0.032s 0m0.015s) 333. zero-length literals (syn_misc.at:6434): ok (0m0.067s 0m0.036s) 334. @OPTIONS parsing (syn_misc.at:6495): ok (0m0.041s 0m0.014s) 335. system routines with wrong number of parameters (syn_misc.at:6537): ok (0m0.033s 0m0.016s) 336. invalid use of condition-name (syn_misc.at:6566): ok (0m0.032s 0m0.020s) 337. XML GENERATE syntax checks (syn_misc.at:6630): ok (0m0.035s 0m0.015s) 338. BASED clause, ALLOCATE / FREE statements (syn_misc.at:6848): ok (0m0.043s 0m0.008s) 339. CONTINUE statement (syn_misc.at:6906): ok (0m0.073s 0m0.029s) 340. conflict markers (syn_misc.at:6950): ok (0m0.083s 0m0.023s) 341. SORT syntax (syn_misc.at:7009): ok (0m0.046s 0m0.011s) 342. OSVS I/O extensions (syn_misc.at:7063): ok (0m0.039s 0m0.013s) 343. long literal in error message (syn_misc.at:7130): ok (0m0.043s 0m0.005s) 344. literal missing terminating character (syn_misc.at:7162): ok (0m0.040s 0m0.011s) 345. EQUALS in expressions (syn_misc.at:7183): ok (0m0.126s 0m0.045s) 346. Invalid parentheses around condition (syn_misc.at:7209): ok (0m0.033s 0m0.011s) 347. DISPLAY directive (1) (syn_misc.at:7232): ok (0m0.026s 0m0.019s) 348. DISPLAY directive (2) (syn_misc.at:7255): ok (0m0.033s 0m0.011s) 349. DISPLAY directive (3) (syn_misc.at:7275): ok (0m0.040s 0m0.014s) 350. conditional / define directives (1) (syn_misc.at:7294): ok (0m0.040s 0m0.008s) 351. conditional / define directives (2) (syn_misc.at:7319): ok (0m0.058s 0m0.040s) 352. conditional / define directives (3) (syn_misc.at:7347): ok (0m0.034s 0m0.015s) 353. conditional / define directives (4) (syn_misc.at:7377): ok (0m0.034s 0m0.009s) 354. error handling in conditional directives (syn_misc.at:7399): ok (0m0.037s 0m0.015s) 357. MOVE SPACE TO numeric or numeric-edited item (syn_move.at:37): ok (0m0.036s 0m0.010s) 358. MOVE ZERO TO alphabetic item (syn_move.at:63): ok (0m0.028s 0m0.025s) 359. MOVE alphabetic TO x (syn_move.at:89): ok (0m0.043s 0m0.009s) 360. MOVE alphanumeric TO x (syn_move.at:120): ok (0m0.032s 0m0.009s) 361. MOVE alphanumeric-edited TO x (syn_move.at:148): ok (0m0.032s 0m0.019s) 362. MOVE numeric (integer) TO x (syn_move.at:179): ok (0m0.036s 0m0.019s) 363. MOVE numeric (non-integer) TO x (syn_move.at:209): ok (0m0.029s 0m0.017s) 364. MOVE numeric-edited TO x (syn_move.at:241): ok (0m0.048s 0m0.008s) 365. CORRESPONDING - Operands must be groups (syn_move.at:276): ok (0m0.037s 0m0.021s) 366. CORRESPONDING - Target has no matching items (syn_move.at:306): ok (0m0.044s 0m0.006s) 367. MOVE to erroneous field (syn_move.at:332): ok (0m0.038s 0m0.014s) 368. Overlapping MOVE (syn_move.at:355): ok (0m0.458s 0m0.134s) 369. invalid source for MOVE (syn_move.at:454): ok (0m0.033s 0m0.017s) 370. invalid target for MOVE (syn_move.at:484): ok (0m0.044s 0m0.003s) 371. SET error (syn_move.at:520): ok (0m0.050s 0m0.002s) 372. MOVE FIGURATIVE to NUMERIC (syn_move.at:552): ok (0m0.160s 0m0.061s) 373. Category check of Format 1 (syn_multiply.at:28): ok (0m0.029s 0m0.023s) 374. Category check of Format 2 (syn_multiply.at:64): ok (0m0.040s 0m0.009s) 375. Category check of literals (syn_multiply.at:102): ok (0m0.045s 0m0.006s) 376. Flexible ACCEPT/DISPLAY syntax (syn_screen.at:24): ok (0m0.034s 0m0.013s) 377. Duplicate ACCEPT/DISPLAY clauses (syn_screen.at:92): ok (0m0.034s 0m0.015s) 378. AT clause (syn_screen.at:121): ok (0m0.041s 0m0.016s) 379. ACCEPT/DISPLAY extensions detection (syn_screen.at:165): ok (0m0.038s 0m0.012s) 380. FROM clause (syn_screen.at:211): ok (0m0.041s 0m0.012s) 381. Incorrect USAGE clause (syn_screen.at:237): ok (0m0.034s 0m0.015s) 382. SCREEN SECTION clause numbers (syn_screen.at:268): ok (0m0.035s 0m0.020s) 383. Screen clauses (syn_screen.at:300): ok (0m0.033s 0m0.017s) 384. ACCEPT ON EXCEPTION/ESCAPE (syn_screen.at:326): ok (0m0.037s 0m0.010s) 385. Referencing 88-level (syn_screen.at:356): ok (0m0.038s 0m0.011s) 386. Conflicting screen clauses (syn_screen.at:387): ok (0m0.078s 0m0.024s) 387. Redundant screen clauses (syn_screen.at:448): ok (0m0.035s 0m0.012s) 388. Screen item OCCURS w-/wo relative LINE/COL (syn_screen.at:481): ok (0m0.119s 0m0.043s) 389. VALUE clause missing (syn_screen.at:541): ok (0m0.028s 0m0.022s) 390. FULL on numeric item (syn_screen.at:565): ok (0m0.033s 0m0.016s) 391. Compiler-specific SCREEN SECTION clause rules (syn_screen.at:589): ok (0m0.244s 0m0.071s) 392. MS-COBOL position-spec (syn_screen.at:747): ok (0m0.063s 0m0.031s) 393. Screen with invalid FROM clause (syn_screen.at:795): ok (0m0.085s 0m0.013s) 394. SET ADDRESS OF item (syn_set.at:24): ok (0m0.036s 0m0.022s) 395. SET item TO 88-level (syn_set.at:53): ok (0m0.039s 0m0.008s) 396. ANY LENGTH / NUMERIC as function RETURNING item (syn_functions.at:22): ok (0m0.064s 0m0.043s) 397. REPOSITORY INTRINSIC phrase (syn_functions.at:64): ok (0m0.037s 0m0.009s) 398. REPOSITORY FUNCTION phrase (syn_functions.at:87): ok (0m0.043s 0m0.006s) 399. Redundant REPOSITORY entries (syn_functions.at:135): ok (0m0.045s 0m0.009s) 400. Missing prototype/definition (syn_functions.at:174): ok (0m0.033s 0m0.014s) 401. Empty function (syn_functions.at:205): ok (0m0.033s 0m0.015s) 402. Function definition inside program (syn_functions.at:232): ok (0m0.027s 0m0.019s) 403. Intrinsic functions: dialect (syn_functions.at:255): ok (0m0.062s 0m0.033s) 404. Intrinsic functions: replaced (syn_functions.at:280): ok (0m0.080s 0m0.022s) 405. Intrinsic functions: number of arguments (syn_functions.at:324): ok (0m0.025s 0m0.027s) 406. Intrinsic functions: reference modification (syn_functions.at:364): ok (0m0.037s 0m0.018s) 407. Intrinsic functions: argument type (syn_functions.at:412): ok (0m0.038s 0m0.011s) 408. invalid formatted date/time args (syn_functions.at:435): ok (0m0.045s 0m0.006s) 409. invalid formats w/ DECIMAL-POINT IS COMMA (syn_functions.at:516): ok (0m0.028s 0m0.023s) 410. Specified offset and SYSTEM-OFFSET (syn_functions.at:550): ok (0m0.036s 0m0.015s) 411. FUNCTION LENGTH / BYTE-LENGTH (syn_functions.at:574): ok (0m0.035s 0m0.021s) 412. Minimal lines per listing pages (listings.at:21): ok (0m0.049s 0m0.012s) 413. COPY within comment (listings.at:85): ok (0m0.090s 0m0.039s) 414. Replacement w/o strings (listings.at:161): ok (0m0.049s 0m0.015s) 415. COPY replacement order (listings.at:224): ok (0m0.103s 0m0.049s) 416. COPY separators (listings.at:327): ok (0m0.049s 0m0.015s) 417. COPY partial replacement (listings.at:393): ok (0m0.101s 0m0.031s) 418. COPY LEADING replacement (listings.at:609): ok (0m0.031s 0m0.034s) 419. COPY TRAILING replacement (listings.at:679): ok (0m0.051s 0m0.010s) 420. COPY recursive replacement (listings.at:750): ok (0m0.042s 0m0.026s) 421. COPY multiple files (listings.at:816): ok (0m0.052s 0m0.026s) 422. Error/Warning messages (listings.at:1037): ok (0m0.308s 0m0.164s) 423. Two source files (listings.at:1423): ok (0m0.042s 0m0.020s) 424. Multiple programs in one file (listings.at:1491): ok (0m0.459s 0m0.193s) 425. Multiple programs in one compilation group (listings.at:1710): ok (0m0.229s 0m0.101s) 426. Wide listing (listings.at:1898): ok (0m0.081s 0m0.044s) 427. Symbols: simple (listings.at:1986): ok (0m0.257s 0m0.122s) 428. Symbols: pointer (listings.at:2140): ok (0m0.048s 0m0.022s) 429. Symbols: multiple programs/functions (listings.at:2420): ok (0m0.045s 0m0.020s) 430. Symbols: OCCURS/REDEFINES (listings.at:2547): ok (0m0.044s 0m0.017s) 431. Conditional compilation (listings.at:2660): ok (0m0.078s 0m0.052s) 432. File descriptions (listings.at:2771): ok (0m0.046s 0m0.022s) 433. Invalid PICTURE strings (listings.at:3127): ok (0m0.054s 0m0.021s) 434. Variable format (listings.at:3631): ok (0m0.045s 0m0.023s) 435. LISTING directive (listings.at:3675): ok (0m0.056s 0m0.011s) 436. Listing-directive statements (listings.at:3776): ok (0m0.057s 0m0.017s) 437. Eject page (listings.at:3845): ok (0m0.172s 0m0.082s) 438. Cross reference (listings.at:4043): ok (0m0.095s 0m0.056s) 439. Report Writer (listings.at:5570): ok (0m0.041s 0m0.029s) 440. huge REPLACE (listings.at:5879): ok (0m0.088s 0m0.046s) 441. Long concatenated literal (listings.at:6801): ok (0m0.040s 0m0.020s) 442. DISPLAY literals (run_fundamental.at:24): ok (0m0.140s 0m0.044s) 443. DISPLAY literals, DECIMAL-POINT is COMMA (run_fundamental.at:86): ok (0m0.125s 0m0.050s) 444. Hexadecimal literal (run_fundamental.at:125): ok (0m0.229s 0m0.078s) 445. DISPLAY data items with VALUE clause (run_fundamental.at:166): ok (0m0.125s 0m0.061s) 446. DISPLAY data items with MOVE statement (run_fundamental.at:213): ok (0m0.145s 0m0.039s) 447. MOVE to edited item (1) (run_fundamental.at:267): ok (0m0.149s 0m0.042s) 448. MOVE to edited item (2) (run_fundamental.at:316): ok (0m0.122s 0m0.057s) 449. MOVE to item with simple and floating insertion (run_fundamental.at:365): ok (0m0.120s 0m0.056s) 450. MOVE to JUSTIFIED item (run_fundamental.at:400): ok (0m0.146s 0m0.041s) 451. MOVE integer literal to alphanumeric (run_fundamental.at:445): ok (0m0.121s 0m0.057s) 452. Compare FLOAT-LONG with floating-point literal (run_fundamental.at:470): ok (0m0.144s 0m0.040s) 453. Check for equality of FLOAT-SHORT / FLOAT-LONG (run_fundamental.at:523): ok (0m0.146s 0m0.047s) 454. Overlapping MOVE (run_fundamental.at:646): ok (0m0.385s 0m0.165s) 455. Overlapping MOVE (run_fundamental.at:747): ok (0m0.138s 0m0.042s) 456. IBM MOVE (run_fundamental.at:789): ok (0m0.113s 0m0.059s) 457. ALPHABETIC test (run_fundamental.at:828): ok (0m0.122s 0m0.054s) 458. ALPHABETIC-UPPER test (run_fundamental.at:860): ok (0m0.148s 0m0.031s) 459. ALPHABETIC-LOWER test (run_fundamental.at:892): ok (0m0.130s 0m0.042s) 460. GLOBAL at same level (run_fundamental.at:924): ok (0m0.148s 0m0.048s) 461. GLOBAL at lower level (run_fundamental.at:973): ok (0m0.134s 0m0.059s) 462. GLOBAL CONSTANT (run_fundamental.at:1022): ok (0m0.154s 0m0.052s) 463. GLOBAL identifiers from ENVIRONMENT DIVISION (run_fundamental.at:1106): ok (0m0.164s 0m0.070s) 464. function with variable-length RETURNING item (run_fundamental.at:1187): skipped (run_fundamental.at:1196) 465. Entry point visibility (1) (run_fundamental.at:1270): ok (0m0.238s 0m0.105s) 466. Entry point visibility (2) (run_fundamental.at:1302): ok (0m0.199s 0m0.098s) 467. Contained program visibility (1) (run_fundamental.at:1336): ok (0m0.140s 0m0.058s) 468. Contained program visibility (2) (run_fundamental.at:1391): ok (0m0.129s 0m0.074s) 469. Contained program visibility (3) (run_fundamental.at:1444): ok (0m0.138s 0m0.051s) 470. Contained program visibility (4) (run_fundamental.at:1495): ok (0m0.161s 0m0.058s) 471. CALL/CANCEL with program-prototype-name (run_fundamental.at:1550): ok (0m0.154s 0m0.049s) 472. GLOBAL FD (1) (run_fundamental.at:1623): ok (0m0.124s 0m0.064s) 473. GLOBAL FD (2) (run_fundamental.at:1673): ok (0m0.166s 0m0.028s) 474. GLOBAL FD (3) (run_fundamental.at:1723): ok (0m0.145s 0m0.056s) 475. GLOBAL FD (4) (run_fundamental.at:1773): ok (0m0.130s 0m0.055s) 476. CANCEL test (1) (run_fundamental.at:1823): ok (0m0.127s 0m0.063s) 477. CANCEL test (2) (run_fundamental.at:1850): ok (0m0.257s 0m0.096s) 478. CANCEL test (3) (run_fundamental.at:1890): ok (0m0.268s 0m0.097s) 479. Separate sign positions (1) (run_fundamental.at:1933): ok (0m0.121s 0m0.057s) 480. Separate sign positions (2) (run_fundamental.at:1957): ok (0m0.276s 0m0.098s) 481. Context sensitive words (1) (run_fundamental.at:1990): ok (0m0.130s 0m0.055s) 482. Context sensitive words (2) (run_fundamental.at:2013): ok (0m0.122s 0m0.051s) 483. Context sensitive words (3) (run_fundamental.at:2037): ok (0m0.117s 0m0.060s) 484. Context sensitive words (4) (run_fundamental.at:2061): ok (0m0.127s 0m0.051s) 485. Context sensitive words (5) (run_fundamental.at:2086): ok (0m0.128s 0m0.052s) 486. Context sensitive words (6) (run_fundamental.at:2109): ok (0m0.107s 0m0.069s) 487. Context sensitive words (7) (run_fundamental.at:2131): ok (0m0.120s 0m0.070s) 488. Context sensitive words (8) (run_fundamental.at:2158): ok (0m0.111s 0m0.054s) 489. ROUNDED AWAY-FROM-ZERO (run_fundamental.at:2185): ok (0m0.149s 0m0.042s) 490. ROUNDED NEAREST-AWAY-FROM-ZERO (run_fundamental.at:2248): ok (0m0.142s 0m0.052s) 491. ROUNDED NEAREST-EVEN (run_fundamental.at:2311): ok (0m0.122s 0m0.077s) 492. ROUNDED NEAREST-TOWARD-ZERO (run_fundamental.at:2374): ok (0m0.144s 0m0.050s) 493. ROUNDED TOWARD-GREATER (run_fundamental.at:2437): ok (0m0.164s 0m0.036s) 494. ROUNDED TOWARD-LESSER (run_fundamental.at:2500): ok (0m0.131s 0m0.063s) 495. ROUNDED TRUNCATION (run_fundamental.at:2563): ok (0m0.138s 0m0.056s) 496. Numeric operations (1) (run_fundamental.at:2626): ok (0m0.142s 0m0.046s) 497. Numeric operations (2) (run_fundamental.at:2670): ok (0m0.174s 0m0.060s) 498. Numeric operations (3) (run_fundamental.at:2976): ok (0m0.178s 0m0.067s) 499. Numeric operations (4) (run_fundamental.at:3282): ok (0m0.173s 0m0.078s) 500. Numeric operations (5) (run_fundamental.at:3588): ok (0m0.187s 0m0.050s) 501. Numeric operations (6) (run_fundamental.at:3894): ok (0m0.221s 0m0.096s) 502. Numeric operations (7) (run_fundamental.at:3963): ok (0m0.134s 0m0.065s) 503. Numeric operations (8) (run_fundamental.at:4255): ok (0m0.138s 0m0.051s) 504. ADD CORRESPONDING (run_fundamental.at:4305): ok (0m0.136s 0m0.043s) 505. ADD CORRESPONDING no match (run_fundamental.at:4353): ok (0m0.114s 0m0.080s) 506. SYNC in OCCURS (run_fundamental.at:4403): ok (0m0.120s 0m0.071s) 507. 88 level with THRU (run_fundamental.at:4443): ok (0m0.137s 0m0.054s) 508. 88 level with FILLER (run_fundamental.at:4538): ok (0m0.142s 0m0.038s) 509. 88 level with FALSE IS clause (run_fundamental.at:4567): ok (0m0.134s 0m0.037s) 510. BLANK WHEN ZERO (run_fundamental.at:4595): ok (0m0.142s 0m0.037s) 511. MULTIPLY BY literal in INITIAL program (run_fundamental.at:4625): ok (0m0.133s 0m0.052s) 512. debugging lines (not active) (run_fundamental.at:4649): ok (0m0.135s 0m0.040s) 513. debugging lines (-fdebugging-line) (run_fundamental.at:4672): ok (0m0.125s 0m0.047s) 514. debugging lines (WITH DEBUGGING MODE) (run_fundamental.at:4695): ok (0m0.129s 0m0.052s) 515. debugging lines, free format (not active) (run_fundamental.at:4721): ok (0m0.115s 0m0.066s) 516. debugging lines, free format (-fdebugging-line) (run_fundamental.at:4744): ok (0m0.110s 0m0.061s) 517. USE FOR DEBUGGING (no DEBUGGING MODE) (run_fundamental.at:4767): ok (0m0.137s 0m0.047s) 518. USE FOR DEBUGGING (COB_SET_DEBUG deactivated) (run_fundamental.at:4812): ok (0m0.126s 0m0.065s) 519. USE FOR DEBUGGING ON ALL PROCEDURES (run_fundamental.at:4857): ok (0m0.131s 0m0.063s) 520. USE FOR DEBUGGING ON procedure (run_fundamental.at:4908): ok (0m0.143s 0m0.046s) 521. USE FOR DEBUGGING (COB_SET_DEBUG switched) (run_fundamental.at:4956): ok (0m0.150s 0m0.051s) 522. USE FOR DEBUGGING ON [ALL] REFERENCES OF field (run_fundamental.at:5005): ok (0m0.144s 0m0.049s) 523. USE FOR DEBUGGING, reference within DEBUGGING (run_fundamental.at:5073): ok (0m0.159s 0m0.042s) 525. USE FOR DEBUGGING, reference with OCCURS (run_fundamental.at:5164): ok (0m0.137s 0m0.058s) 527. USE FOR DEBUGGING file (run_fundamental.at:5234): ok (0m0.152s 0m0.045s) 528. Abbreviated Expressions (run_fundamental.at:5277): ok (0m0.149s 0m0.065s) 529. integer arithmetic on floating-point var (run_fundamental.at:5383): ok (0m0.124s 0m0.052s) 530. TYPEDEF application (run_fundamental.at:5425): ok (0m0.256s 0m0.090s) 531. Subscript out of bounds (run_subscripts.at:26): ok (0m0.266s 0m0.108s) 532. Value of DEPENDING ON N out of bounds (run_subscripts.at:71): ok (0m0.248s 0m0.123s) 533. Subscript bounds with OCCURS DEPENDING ON (1) (run_subscripts.at:122): ok (0m0.143s 0m0.040s) 534. Subscript bounds with OCCURS DEPENDING ON (2) (run_subscripts.at:148): ok (0m0.119s 0m0.063s) 535. Subscript bounds with OCCURS DEPENDING ON (3) (run_subscripts.at:176): ok (0m0.126s 0m0.066s) 536. Subscript by arithmetic expression (run_subscripts.at:211): ok (0m0.126s 0m0.055s) 537. length of ODO w/- reference modification (run_subscripts.at:242): ok (0m0.146s 0m0.048s) 538. SEARCH ALL with OCCURS DEPENDING ON (run_subscripts.at:298): ok (0m0.153s 0m0.033s) 539. enable / disable subscript check (run_subscripts.at:351): ok (0m0.653s 0m0.244s) 540. BOUND and NOBOUND directives (run_subscripts.at:396): ok (0m0.398s 0m0.151s) 541. SSRANGE and NOSSRANGE directives (run_subscripts.at:465): ok (0m0.149s 0m0.038s) 542. CALL with OCCURS DEPENDING ON (run_subscripts.at:501): ok (0m0.124s 0m0.068s) 543. Static reference modification (run_refmod.at:25): ok (0m0.117s 0m0.059s) 544. Dynamic reference modification (run_refmod.at:57): ok (0m0.136s 0m0.051s) 545. Offset underflow (run_refmod.at:94): ok (0m0.133s 0m0.053s) 546. Offset overflow (run_refmod.at:118): ok (0m0.262s 0m0.099s) 547. Length underflow (run_refmod.at:145): ok (0m0.248s 0m0.111s) 548. Length overflow (run_refmod.at:189): ok (0m0.266s 0m0.100s) 549. Length overflow with offset (1) (run_refmod.at:231): ok (0m0.135s 0m0.048s) 550. Length overflow with offset (2) (run_refmod.at:254): ok (0m0.132s 0m0.049s) 551. Length overflow with offset (3) (run_refmod.at:280): ok (0m0.141s 0m0.048s) 552. enable / disable ref-mod check (run_refmod.at:313): ok (0m0.804s 0m0.296s) 553. MF SSRANGE and NOSSRANGE directives (run_refmod.at:388): ok (0m0.792s 0m0.233s) 554. ACCEPT OMITTED (simple) (run_accept.at:28): ok (0m0.142s 0m0.033s) 555. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (1) (run_accept.at:50): ok (0m0.127s 0m0.056s) 556. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (2) (run_accept.at:117): ok (0m0.146s 0m0.042s) 557. ACCEPT DATE / DAY and intrinsic functions (1) (run_accept.at:200): ok (0m0.126s 0m0.055s) 558. ACCEPT DATE / DAY and intrinsic functions (2) (run_accept.at:237): ok (0m0.118s 0m0.052s) 559. ACCEPT OMITTED (SCREEN) (run_accept.at:284): ok (0m0.121s 0m0.064s) 560. INITIALIZE group entry with OCCURS (run_initialize.at:27): ok (0m0.111s 0m0.053s) 561. INITIALIZE OCCURS with numeric edited (run_initialize.at:55): ok (0m0.141s 0m0.039s) 562. INITIALIZE OCCURS with SIGN LEADING / TRAILING (run_initialize.at:88): ok (0m0.138s 0m0.058s) 563. INITIALIZE complex group (1) (run_initialize.at:159): ok (0m0.118s 0m0.057s) 564. INITIALIZE complex group (2) (run_initialize.at:187): ok (0m0.125s 0m0.052s) 565. INITIALIZE group item (run_initialize.at:215): ok (0m0.273s 0m0.105s) 566. INITIALIZE with REDEFINES (run_initialize.at:325): ok (0m0.141s 0m0.031s) 567. INITIALIZE with FILLER (run_initialize.at:352): ok (0m0.137s 0m0.046s) 568. INITIALIZE of EXTERNAL data items (run_initialize.at:419): ok (0m0.131s 0m0.051s) 569. INITIALIZE with reference modification (run_initialize.at:470): ok (0m0.131s 0m0.046s) 570. Comma separator without space (run_misc.at:23): ok (0m0.113s 0m0.057s) 571. DECIMAL-POINT is COMMA (1) (run_misc.at:44): ok (0m0.108s 0m0.064s) 572. DECIMAL-POINT is COMMA (2) (run_misc.at:72): ok (0m0.129s 0m0.050s) 573. DECIMAL-POINT is COMMA (3) (run_misc.at:100): ok (0m0.120s 0m0.047s) 574. DECIMAL-POINT is COMMA (4) (run_misc.at:128): ok (0m0.113s 0m0.056s) 575. DECIMAL-POINT is COMMA (5) (run_misc.at:156): ok (0m0.130s 0m0.063s) 576. CURRENCY SIGN (run_misc.at:190): ok (0m0.122s 0m0.052s) 578. LOCAL-STORAGE (1) (run_misc.at:268): ok (0m0.225s 0m0.111s) 579. LOCAL-STORAGE (2) (run_misc.at:304): ok (0m0.364s 0m0.149s) 580. EXTERNAL data item (run_misc.at:352): ok (0m0.235s 0m0.111s) 581. EXTERNAL AS data item (run_misc.at:394): ok (0m0.271s 0m0.067s) 583. MOVE to itself (run_misc.at:528): ok (0m0.128s 0m0.053s) 584. MOVE with refmod (run_misc.at:554): ok (0m0.139s 0m0.044s) 585. MOVE with refmod (variable) (run_misc.at:578): ok (0m0.116s 0m0.061s) 586. MOVE with group refmod (run_misc.at:604): ok (0m0.143s 0m0.036s) 587. MOVE indexes (run_misc.at:629): ok (0m0.129s 0m0.053s) 588. MOVE X'00' (run_misc.at:655): ok (0m0.221s 0m0.088s) 589. MOVE Z'literal' (run_misc.at:690): ok (0m0.127s 0m0.053s) 590. Floating continuation indicator (run_misc.at:732): ok (0m0.108s 0m0.061s) 591. Fixed continuation indicator (run_misc.at:754): ok (0m0.113s 0m0.065s) 592. Concatenation operator (run_misc.at:796): ok (0m0.127s 0m0.051s) 593. SOURCE FIXED/FREE directives (run_misc.at:820): ok (0m0.113s 0m0.068s) 594. TURN directive (run_misc.at:856): ok (0m0.143s 0m0.045s) 595. Level 01 subscripts (run_misc.at:897): ok (0m0.033s 0m0.007s) 596. Class check with reference modification (run_misc.at:919): ok (0m0.122s 0m0.053s) 597. Index and parenthesized expression (run_misc.at:943): ok (0m0.142s 0m0.028s) 598. Alphanumeric and binary numeric (run_misc.at:967): ok (0m0.129s 0m0.049s) 599. Non-numeric data in numeric items (run_misc.at:992): ok (0m0.539s 0m0.171s) 600. Dynamic call with static linking (run_misc.at:1066): ok (0m0.433s 0m0.149s) 601. Static call with static linking (run_misc.at:1095): ok (0m0.581s 0m0.218s) 602. Dynamic CALL with ON EXCEPTION (run_misc.at:1126): ok (0m0.223s 0m0.111s) 603. Static CALL with ON EXCEPTION (run_misc.at:1158): ok (0m0.547s 0m0.301s) 604. CALL m1. CALL m2. CALL m1. (run_misc.at:1198): ok (0m0.378s 0m0.134s) 605. Recursive CALL of RECURSIVE program (run_misc.at:1253): ok (0m0.352s 0m0.163s) 606. Recursive CALL of INITIAL program (run_misc.at:1311): ok (0m0.349s 0m0.158s) 607. Recursive CALL with RECURSIVE assumed (run_misc.at:1362): ok (0m0.339s 0m0.171s) 608. Recursive CALL with ON EXCEPTION (run_misc.at:1408): ok (0m0.383s 0m0.117s) 609. Multiple calls of INITIAL program (run_misc.at:1465): ok (0m0.261s 0m0.086s) 610. CALL binary literal parameter/LENGTH OF (run_misc.at:1522): ok (0m0.345s 0m0.155s) 611. INSPECT REPLACING LEADING ZEROS BY SPACES (run_misc.at:1576): ok (0m0.139s 0m0.037s) 612. INSPECT No repeat conversion check (run_misc.at:1598): ok (0m0.125s 0m0.054s) 613. INSPECT CONVERTING alphabet (run_misc.at:1624): ok (0m0.122s 0m0.053s) 614. INSPECT CONVERTING TO figurative constant (run_misc.at:1659): ok (0m0.139s 0m0.035s) 615. INSPECT CONVERTING NULL (run_misc.at:1683): ok (0m0.103s 0m0.072s) 616. INSPECT CONVERTING TO NULL (run_misc.at:1707): ok (0m0.119s 0m0.051s) 617. INSPECT REPLACING figurative constant (run_misc.at:1731): ok (0m0.109s 0m0.068s) 618. INSPECT TALLYING BEFORE (run_misc.at:1755): ok (0m0.136s 0m0.047s) 619. INSPECT TALLYING AFTER (run_misc.at:1790): ok (0m0.121s 0m0.050s) 620. INSPECT REPLACING TRAILING ZEROS BY SPACES (run_misc.at:1825): ok (0m0.144s 0m0.039s) 621. INSPECT REPLACING complex (run_misc.at:1849): ok (0m0.131s 0m0.054s) 622. SWITCHES (environment COB_SWITCH_n and SET) (run_misc.at:1875): ok (0m0.148s 0m0.048s) 623. Nested PERFORM (run_misc.at:1972): ok (0m0.135s 0m0.053s) 624. PERFORM VARYING BY -0.2 (run_misc.at:1996): ok (0m0.135s 0m0.053s) 625. PERFORM VARYING BY phrase omitted (run_misc.at:2023): ok (0m0.127s 0m0.089s) 626. EXIT PERFORM (run_misc.at:2054): ok (0m0.127s 0m0.050s) 627. EXIT PERFORM CYCLE (run_misc.at:2079): ok (0m0.117s 0m0.062s) 628. EXIT PARAGRAPH (run_misc.at:2104): ok (0m0.120s 0m0.051s) 629. EXIT SECTION (run_misc.at:2136): ok (0m0.124s 0m0.063s) 630. PERFORM FOREVER / PERFORM UNTIL EXIT (run_misc.at:2170): ok (0m0.116s 0m0.050s) 631. PERFORM inline (1) (run_misc.at:2211): ok (0m0.111s 0m0.063s) 632. PERFORM inline (2) (run_misc.at:2238): ok (0m0.121s 0m0.057s) 633. Non-overflow after overflow (run_misc.at:2263): ok (0m0.128s 0m0.058s) 634. PERFORM ... CONTINUE (run_misc.at:2293): ok (0m0.031s 0m0.017s) 635. STRING with subscript reference (run_misc.at:2310): ok (0m0.133s 0m0.048s) 636. STRING / UNSTRING NOT ON OVERFLOW (run_misc.at:2337): ok (0m0.145s 0m0.050s) 637. UNSTRING DELIMITED ALL LOW-VALUE (run_misc.at:2454): ok (0m0.123s 0m0.058s) 638. UNSTRING DELIMITED ALL SPACE-2 (run_misc.at:2489): ok (0m0.147s 0m0.040s) 639. UNSTRING DELIMITED POINTER (run_misc.at:2554): ok (0m0.137s 0m0.044s) 640. UNSTRING DELIMITER IN (run_misc.at:2608): ok (0m0.124s 0m0.056s) 641. UNSTRING with FUNCTION / literal (run_misc.at:2650): ok (0m0.151s 0m0.044s) 642. SORT: table sort (run_misc.at:2720): ok (0m0.128s 0m0.049s) 643. SORT: table sort (2) (run_misc.at:2762): ok (0m0.176s 0m0.052s) 644. SORT: table sort (3) (run_misc.at:2887): ok (0m0.260s 0m0.125s) 645. SORT: EBCDIC table sort (run_misc.at:2980): ok (0m0.248s 0m0.108s) 646. PIC ZZZ-, ZZZ+ (run_misc.at:3047): ok (0m0.132s 0m0.047s) 647. PERFORM type OSVS (run_misc.at:3100): ok (0m0.157s 0m0.027s) 648. Sticky LINKAGE (run_misc.at:3137): ok (0m0.246s 0m0.097s) 649. COB_PRE_LOAD (run_misc.at:3184): ok (0m0.267s 0m0.068s) 650. COB_PRE_LOAD with entry points (run_misc.at:3210): ok (0m0.392s 0m0.115s) 651. Lookup ENTRY from main executable (run_misc.at:3281): ok (0m0.132s 0m0.051s) 652. COB_LOAD_CASE=UPPER test (run_misc.at:3322): ok (0m0.266s 0m0.081s) 653. ALLOCATE / FREE with BASED item (1) (run_misc.at:3348): ok (0m0.140s 0m0.042s) 654. ALLOCATE / FREE with BASED item (2) (run_misc.at:3375): ok (0m0.268s 0m0.110s) 655. ALLOCATE CHARACTERS INITIALIZED TO (run_misc.at:3422): ok (0m0.138s 0m0.042s) 656. Initialized value with defaultbyte (run_misc.at:3463): ok (0m0.131s 0m0.050s) 657. CALL with OMITTED parameter (run_misc.at:3488): ok (0m0.247s 0m0.098s) 658. CALL in from C, cob_call_params explicitly set (run_misc.at:3527): ok (0m0.193s 0m0.049s) 659. CALL in from C, cob_call_params unknown (run_misc.at:3588): ok (0m0.178s 0m0.056s) 660. CALL C with callback, PROCEDURE DIVISION EXTERN (run_misc.at:3646): ok (0m0.189s 0m0.065s) 661. CALL C with callback, ENTRY-CONVENTION EXTERN (run_misc.at:3713): ok (0m0.537s 0m0.231s) 662. CALL in from C with init missing / implicit (run_misc.at:3864): ok (0m0.329s 0m0.114s) 663. CALL STATIC C from COBOL (run_misc.at:3916): ok (0m0.165s 0m0.070s) 664. ANY LENGTH (1) (run_misc.at:3972): ok (0m0.252s 0m0.093s) 665. ANY LENGTH (2) (run_misc.at:4015): ok (0m0.252s 0m0.091s) 666. ANY LENGTH (3) (run_misc.at:4059): ok (0m0.141s 0m0.057s) 667. ANY LENGTH (4) (run_misc.at:4102): ok (0m0.137s 0m0.051s) 668. ANY LENGTH (5) (run_misc.at:4145): ok (0m0.141s 0m0.052s) 669. access to BASED item without allocation (run_misc.at:4170): ok (0m0.267s 0m0.097s) 670. access to OPTIONAL LINKAGE item not passed (run_misc.at:4211): ok (0m0.268s 0m0.078s) 671. STOP RUN WITH NORMAL STATUS (run_misc.at:4253): ok (0m0.120s 0m0.055s) 672. STOP RUN WITH ERROR STATUS (run_misc.at:4271): ok (0m0.119s 0m0.047s) 673. SYMBOLIC clause (run_misc.at:4289): ok (0m0.113s 0m0.057s) 674. OCCURS clause with 1 entry (run_misc.at:4326): ok (0m0.143s 0m0.032s) 675. Computing of different USAGEs w/o decimal point (run_misc.at:4375): ok (0m0.590s 0m0.117s) 676. Computing of different USAGEs w/- decimal point (run_misc.at:5011): ok (0m0.519s 0m0.147s) 677. C/C++ reserved words/predefined identifiers (run_misc.at:5646): ok (0m0.389s 0m0.162s) 678. ON EXCEPTION clause of DISPLAY (run_misc.at:6106): ok (0m0.114s 0m0.062s) 679. EC-SCREEN-LINE-NUMBER and -STARTING-COLUMN (run_misc.at:6131): ok (0m0.146s 0m0.045s) 680. LINE/COLUMN 0 exceptions (run_misc.at:6172): ok (0m0.113s 0m0.068s) 681. SET LAST EXCEPTION TO OFF (run_misc.at:6210): ok (0m0.135s 0m0.056s) 682. void PROCEDURE (run_misc.at:6246): ok (0m0.278s 0m0.064s) 683. Figurative constants to numeric field (run_misc.at:6275): ok (0m0.333s 0m0.082s) 684. MF FIGURATIVE to NUMERIC (run_misc.at:6337): ok (0m0.216s 0m0.074s) 685. CALL RETURNING (run_misc.at:6472): ok (0m0.429s 0m0.163s) 686. void PROCEDURE, NOTHING return (run_misc.at:6511): ok (0m0.407s 0m0.176s) 687. READY TRACE / RESET TRACE (run_misc.at:6546): ok (0m1.509s 0m0.578s) 688. Trace feature with subroutine (run_misc.at:6908): ok (0m0.791s 0m0.229s) 689. stack and dump feature (run_misc.at:8977): ok (0m1.263s 0m0.326s) 690. Test dump feature (2) (run_misc.at:9700): ok (0m0.210s 0m0.053s) 691. CALL with program prototypes (run_misc.at:9965): ok (0m0.154s 0m0.057s) 692. REDEFINES values on FILLER and INITIALIZE (run_misc.at:10021): ok (0m0.131s 0m0.054s) 693. PICTURE with constant-name (run_misc.at:10076): ok (0m0.186s 0m0.041s) 694. Quote marks in comment paragraphs (run_misc.at:10104): ok (0m0.257s 0m0.096s) 695. Numeric MOVE with/without -fbinary-truncate (run_misc.at:10130): ok (0m0.278s 0m0.127s) 696. Alphanumeric MOVE with truncation (run_misc.at:10190): ok (0m0.146s 0m0.035s) 697. PROGRAM-ID / CALL literal/variable with spaces (run_misc.at:10241): ok (0m0.172s 0m0.048s) 698. C-API Test (param based) (run_misc.at:10309): ok (0m0.216s 0m0.070s) 699. C-API Test (field based) (run_misc.at:10544): ok (0m0.220s 0m0.078s) 700. DEFAULT ROUNDED MODE (run_misc.at:10771): ok (0m0.144s 0m0.039s) 701. OCCURS INDEXED ASCENDING (run_misc.at:10801): ok (0m0.129s 0m0.060s) 702. ZERO unsigned and negative binary subscript (run_misc.at:10899): ok (0m0.291s 0m0.099s) 703. Default Arithmetic (1) (run_misc.at:10963): ok (0m0.154s 0m0.072s) 704. Default Arithmetic Test (2) (run_misc.at:11067): ok (0m0.163s 0m0.041s) 705. OSVS Arithmetic (1) (run_misc.at:11118): ok (0m0.153s 0m0.080s) 706. OSVS Arithmetic Test (2) (run_misc.at:11235): ok (0m0.171s 0m0.055s) 707. SET CONSTANT directive (run_misc.at:11292): ok (0m0.421s 0m0.151s) 708. DEFINE OVERRIDE (run_misc.at:11395): ok (0m0.125s 0m0.061s) 709. DEFINE Defaults (run_misc.at:11461): ok (0m0.129s 0m0.049s) 710. 78 VALUE (run_misc.at:11527): ok (0m0.134s 0m0.057s) 711. 01 CONSTANT (run_misc.at:11595): ok (0m0.118s 0m0.074s) 712. DISPLAY UPON (run_misc.at:11675): ok (0m0.174s 0m0.064s) 713. FLOAT-DECIMAL w/o SIZE ERROR (run_misc.at:11767): ok (0m3.900s 0m0.080s) 714. FLOAT-SHORT / FLOAT-LONG w/o SIZE ERROR (run_misc.at:11941): ok (0m0.188s 0m0.059s) 715. FLOAT-SHORT with SIZE ERROR (run_misc.at:12140): ok (0m0.136s 0m0.057s) 716. FLOAT-LONG with SIZE ERROR (run_misc.at:12191): ok (0m0.154s 0m0.054s) 717. EC-SIZE-ZERO-DIVIDE (run_misc.at:12248): ok (0m0.146s 0m0.046s) 718. EC-SIZE-OVERFLOW (run_misc.at:12291): ok (0m0.139s 0m0.050s) 719. Constant Expressions (run_misc.at:12322): ok (0m0.135s 0m0.057s) 720. ENTRY FOR GO TO / GO TO ENTRY (run_misc.at:12408): ok (0m0.174s 0m0.065s) 721. runtime checks within conditions (run_misc.at:12498): ok (0m0.625s 0m0.290s) 722. libcob version check (run_misc.at:12612): ok (0m0.610s 0m0.318s) 723. OPEN EXTEND and CLOSE, SEQUENTIAL (run_file.at:23): ok (0m0.148s 0m0.055s) 724. DELETE FILE, SEQUENTIAL (run_file.at:89): ok (0m0.143s 0m0.047s) 725. OUTPUT on SEQUENTIAL file to missing directory (run_file.at:159): ok (0m0.125s 0m0.059s) 726. OPEN EXTEND and CLOSE, INDEXED (run_file.at:195): ok (0m0.137s 0m0.055s) 727. DELETE FILE, INDEXED (run_file.at:267): ok (0m0.131s 0m0.055s) 729. READ INTO data item AT-END sequence (run_file.at:379): ok (0m0.121s 0m0.059s) 730. First READ on empty SEQUENTIAL INDEXED file (run_file.at:416): ok (0m0.131s 0m0.057s) 731. READ NEXT without previous START (run_file.at:456): ok (0m0.144s 0m0.054s) 732. REWRITE a RELATIVE file with RANDOM access (run_file.at:534): ok (0m0.128s 0m0.074s) 733. File SORT, SEQUENTIAL (run_file.at:601): ok (0m0.154s 0m0.047s) 734. File SORT, SEQUENTIAL variable records (run_file.at:651): ok (0m0.141s 0m0.065s) 735. File SORT, LINE SEQUENTIAL (run_file.at:733): ok (0m0.137s 0m0.059s) 736. LINAGE and LINAGE-COUNTER sample (run_file.at:792): ok (0m0.158s 0m0.059s) 737. File SORT, LINE SEQUENTIAL same file (run_file.at:1078): ok (0m0.123s 0m0.062s) 738. File SORT, LINE SEQUENTIAL variable records (run_file.at:1125): ok (0m0.127s 0m0.063s) 739. File MERGE, LINE SEQUENTIAL variable records (run_file.at:1189): ok (0m0.153s 0m0.047s) 740. SORT nonexistent file (run_file.at:1280): ok (0m0.143s 0m0.048s) 741. SORT with INPUT/OUTPUT PROCEDUREs (run_file.at:1315): ok (0m0.155s 0m0.045s) 742. SORT with key1 ASCENDING, key2 DESCENDING (run_file.at:1405): ok (0m0.123s 0m0.068s) 743. ASSIGN DYNAMIC and EXTERNAL (run_file.at:1472): ok (0m0.416s 0m0.155s) 744. ASSIGN EXTERNAL parsing (run_file.at:1520): ok (0m0.137s 0m0.054s) 745. ASSIGN directive (run_file.at:1554): ok (0m0.151s 0m0.033s) 746. ASSIGNfilename expansion (run_file.at:1597): ok (0m0.146s 0m0.041s) 747. ASSIGN filename mapping (run_file.at:1624): ok (0m0.586s 0m0.234s) 748. ASSIGN with COB_FILE_PATH (run_file.at:1796): ok (0m0.179s 0m0.042s) 749. ASSIGN DYNAMIC with LOCAL-STORAGE item (run_file.at:1833): ok (0m0.148s 0m0.040s) 750. ASSIGN DYNAMIC with LOCAL-STORAGE item and INITIAL prog (run_file.at:1870): ok (0m0.128s 0m0.059s) 751. ASSIGN DYNAMIC with BASED data item (run_file.at:1910): ok (0m0.394s 0m0.168s) 752. ASSIGN DYNAMIC with data item in LINKAGE (run_file.at:1996): ok (0m0.328s 0m0.105s) 753. ASSIGN DYNAMIC with empty data item (run_file.at:2168): ok (0m0.120s 0m0.077s) 754. ASSIGN DYNAMIC with unset implicit data item (run_file.at:2208): ok (0m0.152s 0m0.041s) 755. INDEXED file key-name (run_file.at:2240): ok (0m0.125s 0m0.061s) 756. INDEXED file sparse/split keys (run_file.at:2282): ok (0m0.279s 0m0.061s) 757. INDEXED file split keys WITH DUPLICATES (run_file.at:2802): ok (0m0.159s 0m0.064s) 758. INDEXED file variable length record (run_file.at:2960): ok (0m0.168s 0m0.064s) 759. INDEXED sample (run_file.at:3236): ok (0m0.235s 0m0.039s) 760. WRITE + REWRITE FILE name (run_file.at:3639): ok (0m0.178s 0m0.054s) 761. START RELATIVE (1) (run_file.at:3792): ok (0m0.132s 0m0.053s) 762. START RELATIVE (2) (run_file.at:3841): ok (0m0.156s 0m0.042s) 763. START RELATIVE (3) (run_file.at:3917): ok (0m0.162s 0m0.052s) 764. READ on OPTIONAL missing RELATIVE / SEQUENTIAL (run_file.at:3993): ok (0m0.160s 0m0.055s) 765. READ on OPTIONAL missing INDEXED file (run_file.at:4115): ok (0m0.137s 0m0.056s) 766. EXTERNAL RELATIVE file (run_file.at:4165): ok (0m0.122s 0m0.063s) 767. DECLARATIVES procedure referencing (run_file.at:4201): ok (0m0.125s 0m0.048s) 768. DECLARATIVES procedure referencing (multiple) (run_file.at:4241): ok (0m0.129s 0m0.059s) 769. System routines for directories (1) (run_file.at:4285): ok (0m0.146s 0m0.034s) 770. System routines for directories (2) (run_file.at:4327): ok (0m0.130s 0m0.064s) 771. System routines for files (run_file.at:4424): ok (0m0.459s 0m0.264s) 772. System routine CBL_COPY_FILE (run_file.at:4698): ok (0m0.125s 0m0.056s) 773. Default file external name (run_file.at:4733): ok (0m0.225s 0m0.099s) 774. SEQUENTIAL basic I/O (run_file.at:4807): ok (0m0.125s 0m0.061s) 775. LINE SEQUENTIAL basic I/O (run_file.at:4841): ok (0m0.157s 0m0.049s) 776. LINE SEQUENTIAL record truncation (run_file.at:4907): ok (0m0.149s 0m0.049s) 777. SEQUENTIAL file I/O with variable records (run_file.at:4954): ok (0m0.146s 0m0.050s) 778. LINE SEQUENTIAL file I/O with variable records (run_file.at:5029): ok (0m0.159s 0m0.033s) 779. SEQUENTIAL file REWRITE (run_file.at:5103): ok (0m0.152s 0m0.068s) 783. SEQUENTIAL file with SHARING READ ONLY (run_file.at:5417): ok (0m0.269s 0m0.104s) 785. RELATIVE SEQUENTIAL basic I/O (run_file.at:5561): ok (0m0.142s 0m0.041s) 786. RELATIVE RANDOM basic I/O (run_file.at:5595): ok (0m0.162s 0m0.025s) 787. RELATIVE SEQUENTIAL with variable records (run_file.at:5645): ok (0m0.151s 0m0.051s) 788. INDEXED SEQUENTIAL basic I/O (run_file.at:5719): ok (0m0.146s 0m0.046s) 789. INDEXED SEQUENTIAL with variable records (run_file.at:5757): ok (0m0.181s 0m0.040s) 790. INDEXED file with LOCK MODE EXCLUSIVE (run_file.at:5839): UNEXPECTED PASS (0m0.278s 0m0.101s) 791. INDEXED file with OPEN WITH LOCK (run_file.at:5916): UNEXPECTED PASS (0m0.264s 0m0.107s) 792. INDEXED file with SHARING NO (run_file.at:5992): UNEXPECTED PASS (0m0.291s 0m0.082s) 793. INDEXED file with SHARING READ ONLY (run_file.at:6069): UNEXPECTED PASS (0m0.258s 0m0.128s) 794. INDEXED file with blocked lock (run_file.at:6153): UNEXPECTED PASS (0m0.272s 0m0.104s) 796. INDEXED file with LOCK AUTOMATIC (2) (run_file.at:6322): ok (0m0.263s 0m0.121s) 798. START INDEXED (run_file.at:6500): ok (0m0.162s 0m0.050s) 800. INDEXED undeclared keys (run_file.at:6726): skipped (run_file.at:6734) 802. EXTFH: using ISAM callback (run_file.at:6995): ok (0m0.362s 0m0.111s) 803. EXTFH: SEQUENTIAL files (run_file.at:7695): ok (0m0.266s 0m0.066s) 804. EXTFH: LINE SEQUENTIAL files, direct EXTFH (run_file.at:8105): ok (0m0.176s 0m0.067s) 805. INDEXED File READ/DELETE/READ (run_file.at:8287): ok (0m0.367s 0m0.070s) 807. Report Line Order (run_reportwriter.at:23): ok (0m0.146s 0m0.043s) 808. REPORT COL PLUS (run_reportwriter.at:120): ok (0m0.138s 0m0.056s) 809. Report Overlapping Fields (run_reportwriter.at:189): ok (0m0.150s 0m0.039s) 810. EMPTY REPORT (run_reportwriter.at:258): ok (0m0.141s 0m0.051s) 811. PAGE LIMIT REPORT (run_reportwriter.at:327): ok (0m0.126s 0m0.061s) 812. PAGE LIMIT REPORT 2 (run_reportwriter.at:389): ok (0m0.161s 0m0.036s) 813. Sample Customer Report (run_reportwriter.at:461): ok (0m0.153s 0m0.049s) 814. Sample Charge Report (run_reportwriter.at:776): ok (0m0.187s 0m0.051s) 815. Sample Charge Report 2 (run_reportwriter.at:1129): ok (0m0.163s 0m0.078s) 816. Sample Charge Report 3 (run_reportwriter.at:1499): ok (0m0.189s 0m0.047s) 817. Sample Charge Report 4 (run_reportwriter.at:1799): ok (0m0.179s 0m0.054s) 818. Sample Payroll Report (run_reportwriter.at:2215): ok (0m0.356s 0m0.066s) 819. Sample REPORT with RIGHT/CENTER (run_reportwriter.at:2900): ok (0m0.242s 0m0.054s) 820. STUDENT REPORT with INITIAL (run_reportwriter.at:3068): ok (0m0.141s 0m0.070s) 821. ORDER REPORT; Test substring (run_reportwriter.at:3220): ok (0m0.178s 0m0.058s) 822. Sample Control Break (run_reportwriter.at:3568): ok (0m0.140s 0m0.068s) 823. Sample Inventory Report (run_reportwriter.at:3797): ok (0m0.167s 0m0.050s) 824. Duplicate Detail Line (run_reportwriter.at:3990): ok (0m0.140s 0m0.062s) 825. Report with OCCURS (run_reportwriter.at:4118): ok (0m0.157s 0m0.053s) 826. Report CODE and LIMIT COLUMNS (run_reportwriter.at:4223): ok (0m0.284s 0m0.135s) 827. Duplicate INITIATE (run_reportwriter.at:4444): ok (0m0.145s 0m0.047s) 828. Missing INITIATE and GENERATE (run_reportwriter.at:4511): ok (0m0.147s 0m0.047s) 829. Missing INITIATE and TERMINATE (run_reportwriter.at:4571): ok (0m0.146s 0m0.050s) 830. Next Group Next Page (run_reportwriter.at:4625): ok (0m0.175s 0m0.050s) 831. Report PRESENT AFTER (run_reportwriter.at:8948): ok (0m0.168s 0m0.052s) 832. RETURN-CODE moving (run_returncode.at:23): ok (0m0.125s 0m0.060s) 833. RETURN-CODE passing (run_returncode.at:49): ok (0m0.333s 0m0.176s) 834. RETURN-CODE nested (run_returncode.at:101): ok (0m0.127s 0m0.064s) 835. FUNCTION ABS (run_functions.at:24): ok (0m0.146s 0m0.037s) 836. FUNCTION ACOS (run_functions.at:46): ok (0m0.120s 0m0.062s) 837. FUNCTION ANNUITY (run_functions.at:70): ok (0m0.138s 0m0.048s) 838. FUNCTION ASIN (run_functions.at:94): ok (0m0.139s 0m0.036s) 839. FUNCTION ATAN (run_functions.at:118): ok (0m0.127s 0m0.051s) 840. FUNCTION BYTE-LENGTH (run_functions.at:142): ok (0m0.136s 0m0.050s) 841. FUNCTION CHAR (run_functions.at:212): ok (0m0.139s 0m0.036s) 842. FUNCTION COMBINED-DATETIME (run_functions.at:250): ok (0m0.136s 0m0.035s) 843. FUNCTION CONCAT / CONCATENATE (run_functions.at:275): ok (0m0.126s 0m0.051s) 844. FUNCTION CONCATENATE with reference modding (run_functions.at:322): ok (0m0.144s 0m0.043s) 845. FUNCTION CONTENT-LENGTH (run_functions.at:350): ok (0m0.115s 0m0.066s) 846. FUNCTION CONTENT-OF (run_functions.at:384): ok (0m0.135s 0m0.053s) 847. FUNCTION as CALL parameter BY CONTENT (run_functions.at:459): ok (0m0.133s 0m0.064s) 848. FUNCTION COS (run_functions.at:495): ok (0m0.135s 0m0.042s) 849. FUNCTION CURRENCY-SYMBOL (run_functions.at:519): ok (0m0.122s 0m0.065s) 850. FUNCTION CURRENT-DATE (run_functions.at:542): ok (0m0.147s 0m0.040s) 851. FUNCTION DATE-OF-INTEGER (run_functions.at:613): ok (0m0.116s 0m0.055s) 852. FUNCTION DATE-TO-YYYYMMDD (run_functions.at:638): ok (0m0.130s 0m0.046s) 853. FUNCTION DAY-OF-INTEGER (run_functions.at:663): ok (0m0.118s 0m0.054s) 854. FUNCTION DAY-TO-YYYYDDD (run_functions.at:688): ok (0m0.118s 0m0.058s) 855. FUNCTION E (run_functions.at:713): ok (0m0.131s 0m0.044s) 856. FUNCTION EXCEPTION-FILE (run_functions.at:737): ok (0m0.146s 0m0.041s) 857. FUNCTION EXCEPTION-LOCATION (run_functions.at:772): ok (0m0.102s 0m0.084s) 858. FUNCTION EXCEPTION-STATEMENT (run_functions.at:811): ok (0m0.126s 0m0.060s) 859. FUNCTION EXCEPTION-STATUS (run_functions.at:846): ok (0m0.141s 0m0.034s) 860. FUNCTION EXP (run_functions.at:881): ok (0m0.122s 0m0.052s) 861. FUNCTION EXP10 (run_functions.at:905): ok (0m0.131s 0m0.044s) 862. FUNCTION FACTORIAL (run_functions.at:930): ok (0m0.124s 0m0.054s) 863. FUNCTION FORMATTED-CURRENT-DATE (run_functions.at:955): ok (0m0.103s 0m0.069s) 864. FUNCTION FORMATTED-DATE (run_functions.at:983): ok (0m0.146s 0m0.038s) 865. FUNCTION FORMATTED-DATE with ref modding (run_functions.at:1046): ok (0m0.125s 0m0.050s) 866. FUNCTION FORMATTED-DATETIME (run_functions.at:1071): ok (0m0.113s 0m0.062s) 867. FUNCTION FORMATTED-DATETIME with ref modding (run_functions.at:1128): ok (0m0.116s 0m0.057s) 868. FUNCTION FORMATTED-TIME (run_functions.at:1154): ok (0m0.152s 0m0.037s) 869. FUNCTION FORMATTED-TIME DP.COMMA (run_functions.at:1241): ok (0m0.129s 0m0.043s) 870. FUNCTION FORMATTED-TIME with ref modding (run_functions.at:1272): ok (0m0.138s 0m0.045s) 871. FUNCTION FRACTION-PART (run_functions.at:1297): ok (0m0.131s 0m0.053s) 872. FUNCTION HIGHEST-ALGEBRAIC (run_functions.at:1328): ok (0m0.129s 0m0.061s) 873. FUNCTION INTEGER (run_functions.at:1396): ok (0m0.127s 0m0.051s) 874. FUNCTION INTEGER-OF-DATE (run_functions.at:1429): ok (0m0.119s 0m0.062s) 875. FUNCTION INTEGER-OF-DAY (run_functions.at:1454): ok (0m0.119s 0m0.059s) 876. FUNCTION INTEGER-OF-FORMATTED-DATE (run_functions.at:1479): ok (0m0.117s 0m0.060s) 877. FUNCTION INTEGER-PART (run_functions.at:1529): ok (0m0.134s 0m0.047s) 878. FUNCTION LENGTH (run_functions.at:1555): ok (0m0.130s 0m0.061s) 879. FUNCTION LOCALE-COMPARE (run_functions.at:1623): ok (0m0.115s 0m0.068s) 880. FUNCTION LOCALE-DATE (run_functions.at:1653): ok (0m0.127s 0m0.049s) 881. FUNCTION LOCALE-TIME (run_functions.at:1679): ok (0m0.127s 0m0.047s) 882. FUNCTION LOCALE-TIME-FROM-SECONDS (run_functions.at:1705): ok (0m0.117s 0m0.066s) 883. FUNCTION LOG (run_functions.at:1731): ok (0m0.107s 0m0.068s) 884. FUNCTION LOG10 (run_functions.at:1755): ok (0m0.133s 0m0.049s) 885. FUNCTION LOWER-CASE (run_functions.at:1779): ok (0m0.135s 0m0.049s) 886. FUNCTION LOWER-CASE with reference modding (run_functions.at:1807): ok (0m0.122s 0m0.061s) 887. FUNCTION LOWEST-ALGEBRAIC (run_functions.at:1833): ok (0m0.130s 0m0.059s) 888. FUNCTION MAX (run_functions.at:1886): ok (0m0.124s 0m0.049s) 889. FUNCTION MEAN (run_functions.at:1908): ok (0m0.120s 0m0.062s) 890. FUNCTION MEDIAN (run_functions.at:1930): ok (0m0.136s 0m0.047s) 891. FUNCTION MIDRANGE (run_functions.at:1952): ok (0m0.152s 0m0.027s) 892. FUNCTION MIN (run_functions.at:1974): ok (0m0.121s 0m0.059s) 893. FUNCTION MOD (valid) (run_functions.at:1996): ok (0m0.126s 0m0.056s) 894. FUNCTION MOD (invalid) (run_functions.at:2026): ok (0m0.116s 0m0.058s) 895. FUNCTION MODULE-CALLER-ID (run_functions.at:2057): ok (0m0.231s 0m0.101s) 896. FUNCTION MODULE-DATE (run_functions.at:2091): ok (0m0.137s 0m0.044s) 897. FUNCTION MODULE-FORMATTED-DATE (run_functions.at:2116): ok (0m0.133s 0m0.053s) 898. FUNCTION MODULE-ID (run_functions.at:2141): ok (0m0.130s 0m0.052s) 899. FUNCTION MODULE-PATH (run_functions.at:2162): ok (0m0.141s 0m0.040s) 900. FUNCTION MODULE-SOURCE (run_functions.at:2187): ok (0m0.132s 0m0.049s) 901. FUNCTION MODULE-TIME (run_functions.at:2208): ok (0m0.136s 0m0.053s) 902. FUNCTION MONETARY-DECIMAL-POINT (run_functions.at:2233): ok (0m0.141s 0m0.039s) 903. FUNCTION MONETARY-THOUSANDS-SEPARATOR (run_functions.at:2256): ok (0m0.130s 0m0.053s) 904. FUNCTION NUMERIC-DECIMAL-POINT (run_functions.at:2279): ok (0m0.121s 0m0.059s) 905. FUNCTION NUMERIC-THOUSANDS-SEPARATOR (run_functions.at:2302): ok (0m0.107s 0m0.075s) 906. FUNCTION NUMVAL (run_functions.at:2325): ok (0m0.117s 0m0.066s) 907. FUNCTION NUMVAL-C (run_functions.at:2356): ok (0m0.128s 0m0.046s) 908. FUNCTION NUMVAL-C DP.COMMA (run_functions.at:2387): ok (0m0.113s 0m0.068s) 909. FUNCTION NUMVAL-F (run_functions.at:2417): ok (0m0.132s 0m0.046s) 910. FUNCTION ORD (run_functions.at:2440): ok (0m0.148s 0m0.037s) 911. FUNCTION ORD-MAX (run_functions.at:2462): ok (0m0.127s 0m0.054s) 912. FUNCTION ORD-MIN (run_functions.at:2484): ok (0m0.131s 0m0.052s) 913. FUNCTION PI (run_functions.at:2506): ok (0m0.110s 0m0.062s) 914. FUNCTION PRESENT-VALUE (run_functions.at:2530): ok (0m0.131s 0m0.049s) 915. FUNCTION RANDOM (run_functions.at:2552): ok (0m0.117s 0m0.055s) 916. FUNCTION RANGE (run_functions.at:2576): ok (0m0.143s 0m0.035s) 917. FUNCTION REM (valid) (run_functions.at:2600): ok (0m0.140s 0m0.041s) 918. FUNCTION REM (invalid) (run_functions.at:2623): ok (0m0.135s 0m0.047s) 919. FUNCTION REVERSE (run_functions.at:2654): ok (0m0.125s 0m0.052s) 920. FUNCTION REVERSE with reference modding (run_functions.at:2679): ok (0m0.125s 0m0.053s) 921. FUNCTION SECONDS-FROM-FORMATTED-TIME (run_functions.at:2704): ok (0m0.140s 0m0.047s) 922. FUNCTION SECONDS-PAST-MIDNIGHT (run_functions.at:2771): ok (0m0.120s 0m0.054s) 923. FUNCTION SIGN (run_functions.at:2795): ok (0m0.147s 0m0.036s) 924. FUNCTION SIN (run_functions.at:2834): ok (0m0.129s 0m0.051s) 925. FUNCTION SQRT (run_functions.at:2858): ok (0m0.122s 0m0.057s) 926. FUNCTION STANDARD-DEVIATION (run_functions.at:2882): ok (0m0.125s 0m0.055s) 927. FUNCTION STORED-CHAR-LENGTH (run_functions.at:2906): ok (0m0.125s 0m0.060s) 928. FUNCTION SUBSTITUTE (run_functions.at:2932): ok (0m0.128s 0m0.052s) 929. FUNCTION SUBSTITUTE with reference modding (run_functions.at:2961): ok (0m0.130s 0m0.045s) 930. FUNCTION SUBSTITUTE-CASE (run_functions.at:2989): ok (0m0.101s 0m0.073s) 931. FUNCTION SUBSTITUTE-CASE with reference mod (run_functions.at:3016): ok (0m0.121s 0m0.061s) 932. FUNCTION SUM (run_functions.at:3044): ok (0m0.132s 0m0.047s) 933. FUNCTION TAN (run_functions.at:3068): ok (0m0.133s 0m0.043s) 934. FUNCTION TEST-DATE-YYYYMMDD (run_functions.at:3092): ok (0m0.122s 0m0.054s) 935. FUNCTION TEST-DAY-YYYYDDD (run_functions.at:3114): ok (0m0.140s 0m0.042s) 936. FUNCTION TEST-FORMATTED-DATETIME with dates (run_functions.at:3136): ok (0m0.114s 0m0.090s) 937. FUNCTION TEST-FORMATTED-DATETIME with times (run_functions.at:3263): ok (0m0.134s 0m0.053s) 938. FUNCTION TEST-FORMATTED-DATETIME with datetimes (run_functions.at:3344): ok (0m0.131s 0m0.050s) 939. FUNCTION TEST-FORMATTED-DATETIME DP.COMMA (run_functions.at:3397): ok (0m0.125s 0m0.057s) 940. FUNCTION TEST-NUMVAL (run_functions.at:3438): ok (0m0.128s 0m0.063s) 941. FUNCTION TEST-NUMVAL-C (run_functions.at:3536): ok (0m0.148s 0m0.042s) 942. FUNCTION TEST-NUMVAL-F (run_functions.at:3634): ok (0m0.148s 0m0.051s) 943. FUNCTION TRIM (run_functions.at:3732): ok (0m0.150s 0m0.039s) 944. FUNCTION TRIM with reference modding (run_functions.at:3758): ok (0m0.133s 0m0.050s) 945. FUNCTION TRIM zero length (run_functions.at:3784): ok (0m0.120s 0m0.061s) 946. FUNCTION UPPER-CASE (run_functions.at:3811): ok (0m0.123s 0m0.052s) 947. FUNCTION UPPER-CASE with reference modding (run_functions.at:3836): ok (0m0.122s 0m0.047s) 948. FUNCTION VARIANCE (run_functions.at:3861): ok (0m0.125s 0m0.048s) 949. FUNCTION WHEN-COMPILED (run_functions.at:3885): ok (0m0.128s 0m0.049s) 950. FUNCTION YEAR-TO-YYYY (run_functions.at:3939): ok (0m0.124s 0m0.052s) 951. Formatted funcs w/ invalid variable format (run_functions.at:3963): ok (0m0.126s 0m0.070s) 952. FORMATTED-(DATE)TIME with SYSTEM-OFFSET (run_functions.at:4044): ok (0m0.139s 0m0.047s) 953. Intrinsics without FUNCTION keyword (1) (run_functions.at:4082): ok (0m0.131s 0m0.045s) 954. Intrinsics without FUNCTION keyword (2) (run_functions.at:4103): ok (0m0.117s 0m0.058s) 955. User-Defined FUNCTION with/without parameter (run_functions.at:4126): ok (0m0.151s 0m0.063s) 956. UDF in COMPUTE (run_functions.at:4177): ok (0m0.152s 0m0.047s) 957. UDF replacing intrinsic function (run_functions.at:4220): ok (0m0.116s 0m0.083s) 958. UDF with recursion (run_functions.at:4263): skipped (run_functions.at:4266) 959. CALL BY CONTENT binary and literal (run_extensions.at:25): ok (0m0.225s 0m0.088s) 960. Numeric Boolean literals (run_extensions.at:72): ok (0m0.148s 0m0.034s) 961. ACUCOBOL literals (run_extensions.at:101): ok (0m0.147s 0m0.031s) 963. Hexadecimal numeric literals (run_extensions.at:188): ok (0m0.114s 0m0.060s) 964. Semi-parenthesized condition (run_extensions.at:217): ok (0m0.114s 0m0.060s) 965. ADDRESS OF (run_extensions.at:237): ok (0m0.125s 0m0.057s) 966. LENGTH OF (run_extensions.at:287): ok (0m0.144s 0m0.070s) 967. SET TO SIZE OF (run_extensions.at:451): ok (0m0.138s 0m0.041s) 968. WHEN-COMPILED (run_extensions.at:488): ok (0m0.123s 0m0.056s) 969. Complex OCCURS DEPENDING ON (1) (run_extensions.at:517): ok (0m0.138s 0m0.054s) 970. Complex OCCURS DEPENDING ON (2) (run_extensions.at:546): ok (0m0.176s 0m0.040s) 971. Complex OCCURS DEPENDING ON (3) (run_extensions.at:609): ok (0m0.158s 0m0.045s) 972. Complex OCCURS DEPENDING ON (4) (run_extensions.at:672): ok (0m0.132s 0m0.066s) 973. Complex OCCURS DEPENDING ON (5) (run_extensions.at:738): ok (0m0.150s 0m0.055s) 974. Complex OCCURS DEPENDING ON (6) (run_extensions.at:804): ok (0m0.141s 0m0.043s) 975. OCCURS UNBOUNDED (1) (run_extensions.at:845): ok (0m0.268s 0m0.113s) 977. INITIALIZE OCCURS UNBOUNDED (run_extensions.at:1060): ok (0m0.149s 0m0.051s) 978. INITIALIZE OCCURS ODOSLIDE (run_extensions.at:1134): ok (0m0.172s 0m0.033s) 979. DEPENDING ON with ODOSLIDE (run_extensions.at:1231): ok (0m0.196s 0m0.053s) 980. DEPENDING ON with ODOSLIDE for IBM (run_extensions.at:1446): ok (0m0.163s 0m0.063s) 981. INITIALIZE level 01 (run_extensions.at:1551): ok (0m0.157s 0m0.030s) 982. MOVE of non-integer to alphanumeric (run_extensions.at:1603): ok (0m0.163s 0m0.053s) 983. CALL USING file-name (run_extensions.at:1693): ok (0m0.207s 0m0.111s) 984. CALL unusual PROGRAM-ID. (run_extensions.at:1738): ok (0m0.551s 0m0.264s) 985. CALL / GOBACK with LOCAL-STORAGE (run_extensions.at:1802): ok (0m0.228s 0m0.125s) 986. CALL BY VALUE alphanumeric item (run_extensions.at:1852): ok (0m0.151s 0m0.045s) 987. CALL BY VALUE numeric literal WITH SIZE (run_extensions.at:1889): ok (0m0.157s 0m0.060s) 988. Case-sensitive PROGRAM-ID (run_extensions.at:1993): ok (0m0.128s 0m0.053s) 989. Quoted PROGRAM-ID (run_extensions.at:2018): ok (0m0.142s 0m0.043s) 990. PROGRAM-ID AS clause (run_extensions.at:2041): ok (0m0.123s 0m0.061s) 991. NUMBER-OF-CALL-PARAMETERS (run_extensions.at:2064): ok (0m0.227s 0m0.117s) 992. TALLY register (run_extensions.at:2119): ok (0m0.168s 0m0.077s) 993. Redefining TALLY (run_extensions.at:2153): ok (0m0.147s 0m0.068s) 994. PROCEDURE DIVISION USING BY ... (run_extensions.at:2189): ok (0m0.263s 0m0.077s) 995. PROCEDURE DIVISION CHAINING (run_extensions.at:2242): ok (0m0.795s 0m0.311s) 996. STOP RUN RETURNING/GIVING (run_extensions.at:2365): ok (0m0.546s 0m0.168s) 997. GOBACK/EXIT PROGRAM RETURNING/GIVING (run_extensions.at:2421): ok (0m0.238s 0m0.077s) 998. ENTRY (run_extensions.at:2471): ok (0m0.246s 0m0.106s) 999. LINE SEQUENTIAL write (run_extensions.at:2517): ok (0m0.119s 0m0.066s) 1000. LINE SEQUENTIAL read (run_extensions.at:2563): ok (0m0.134s 0m0.063s) 1001. ASSIGN to KEYBOARD/DISPLAY (run_extensions.at:2630): ok (0m0.130s 0m0.060s) 1003. Environment/Argument variable (run_extensions.at:2750): ok (0m0.145s 0m0.036s) 1004. 78 Level (1) (run_extensions.at:2796): ok (0m0.124s 0m0.053s) 1005. 78 Level (2) (run_extensions.at:2819): ok (0m0.126s 0m0.053s) 1006. 78 Level (3) (run_extensions.at:2845): ok (0m0.138s 0m0.037s) 1007. SWITCHES with non-standard names (run_extensions.at:2869): ok (0m0.147s 0m0.057s) 1008. Larger REDEFINES lengths (run_extensions.at:2982): ok (0m0.138s 0m0.050s) 1009. REDEFINES: non-referenced ambiguous item (run_extensions.at:3066): ok (0m0.135s 0m0.039s) 1010. Obsolete 2002 keywords with COBOL2014 (run_extensions.at:3092): ok (0m0.145s 0m0.054s) 1011. System routine with wrong number of parameters (run_extensions.at:3122): ok (0m0.156s 0m0.085s) 1012. System routine C$NARG (run_extensions.at:3165): ok (0m0.362s 0m0.176s) 1013. System routine C$PARAMSIZE (run_extensions.at:3242): ok (0m0.252s 0m0.077s) 1014. System routine C$CALLEDBY (run_extensions.at:3284): ok (0m0.236s 0m0.105s) 1015. System routine C$JUSTIFY (run_extensions.at:3330): ok (0m0.144s 0m0.037s) 1016. System routine C$PRINTABLE (run_extensions.at:3355): ok (0m0.124s 0m0.051s) 1017. System routine C$MAKEDIR (run_extensions.at:3384): ok (0m0.131s 0m0.051s) 1018. System routine C$GETPID (run_extensions.at:3405): ok (0m0.106s 0m0.065s) 1019. System routine C$TOUPPER (run_extensions.at:3430): ok (0m0.134s 0m0.046s) 1020. System routine C$TOLOWER (run_extensions.at:3455): ok (0m0.123s 0m0.056s) 1021. System routine CBL_OR (run_extensions.at:3480): ok (0m0.120s 0m0.055s) 1022. System routine CBL_NOR (run_extensions.at:3507): ok (0m0.136s 0m0.043s) 1023. System routine CBL_AND (run_extensions.at:3534): ok (0m0.131s 0m0.049s) 1024. System routine CBL_XOR (run_extensions.at:3561): ok (0m0.138s 0m0.042s) 1025. System routine CBL_IMP (run_extensions.at:3588): ok (0m0.127s 0m0.044s) 1026. System routine CBL_NIMP (run_extensions.at:3615): ok (0m0.126s 0m0.046s) 1027. System routine CBL_NOT (run_extensions.at:3642): ok (0m0.114s 0m0.058s) 1028. System routine CBL_EQ (run_extensions.at:3668): ok (0m0.124s 0m0.050s) 1029. System routine CBL_GC_GETOPT (run_extensions.at:3695): ok (0m0.735s 0m0.257s) 1030. System routine CBL_GC_FORK (run_extensions.at:4132): ok (0m0.140s 0m0.053s) 1031. System routine CBL_GC_WAITPID (run_extensions.at:4200): ok (0m0.136s 0m0.055s) 1032. System routine CBL_GC_HOSTED (run_extensions.at:4252): ok (0m0.316s 0m0.158s) 1033. System routine SYSTEM, parameter handling (run_extensions.at:4382): ok (0m0.185s 0m0.061s) 1034. System routine CBL_ERROR_PROC (1) (run_extensions.at:4493): ok (0m0.275s 0m0.140s) 1035. System routine CBL_ERROR_PROC (2) (run_extensions.at:4592): ok (0m0.163s 0m0.059s) 1036. DISPLAY DIRECTIVE and $DISPLAY (run_extensions.at:4673): ok (0m0.113s 0m0.057s) 1037. Conditional / define directives (1) (run_extensions.at:4706): ok (0m0.129s 0m0.048s) 1038. Conditional / define directives (2) (run_extensions.at:4731): ok (0m0.126s 0m0.053s) 1039. Conditional / define directives (3) (run_extensions.at:4756): ok (0m0.114s 0m0.065s) 1040. Conditional / define directives (4) (run_extensions.at:4784): ok (0m0.145s 0m0.030s) 1041. Variable format (run_extensions.at:4810): ok (0m0.125s 0m0.060s) 1042. Binary COMP-1 (1) (run_extensions.at:4832): ok (0m0.288s 0m0.105s) 1043. Binary COMP-1 (2) (run_extensions.at:4863): ok (0m0.302s 0m0.096s) 1044. EXHIBIT statement (run_extensions.at:4899): ok (0m0.139s 0m0.047s) 1045. XML GENERATE general (run_ml.at:19): skipped (run_ml.at:22) 1046. XML GENERATE SUPPRESS (run_ml.at:127): skipped (run_ml.at:130) 1047. XML GENERATE exceptions (run_ml.at:204): skipped (run_ml.at:207) 1048. XML GENERATE record selection (run_ml.at:300): skipped (run_ml.at:303) 1049. XML GENERATE trimming (run_ml.at:344): skipped (run_ml.at:347) 1050. XML DPC-IN-DATA directive (run_ml.at:441): skipped (run_ml.at:444) 1051. XML dpc-in-data config option (run_ml.at:472): skipped (run_ml.at:475) 1052. JSON GENERATE general (run_ml.at:516): skipped (run_ml.at:519) 1053. JSON GENERATE SUPPRESS (run_ml.at:573): skipped (run_ml.at:576) 1054. JSON GENERATE exceptions (run_ml.at:612): skipped (run_ml.at:615) 1055. JSON GENERATE record selection (run_ml.at:677): skipped (run_ml.at:680) 1056. JSON GENERATE trimming (run_ml.at:721): skipped (run_ml.at:724) 1057. JSON DPC-IN-DATA directive (run_ml.at:821): skipped (run_ml.at:824) 1058. JSON dpc-in-data config option (run_ml.at:852): skipped (run_ml.at:855) 1059. BINARY: 2-4-8 big-endian (data_binary.at:23): ok (0m0.555s 0m0.187s) 1060. BINARY: 2-4-8 native (data_binary.at:205): ok (0m0.565s 0m0.166s) 1061. BINARY: 1-2-4-8 big-endian (data_binary.at:393): ok (0m0.552s 0m0.180s) 1062. BINARY: 1-2-4-8 native (data_binary.at:575): ok (0m0.574s 0m0.163s) 1063. BINARY: 1--8 big-endian (data_binary.at:763): ok (0m0.568s 0m0.150s) 1064. BINARY: 1--8 native (data_binary.at:945): ok (0m0.570s 0m0.162s) 1065. BINARY: full-print (data_binary.at:1133): ok (0m0.159s 0m0.045s) 1066. BINARY: 64bit unsigned compare (data_binary.at:1185): ok (0m0.129s 0m0.047s) 1067. BINARY: 64bit unsigned arithmetic notrunc (data_binary.at:1210): ok (0m0.128s 0m0.069s) 1068. BINARY: 64bit signed negative constant range (data_binary.at:1240): ok (0m0.138s 0m0.041s) 1069. COMP-4 Truncate (data_binary.at:1261): ok (0m0.124s 0m0.070s) 1070. COMP-4 No Truncate (data_binary.at:1322): ok (0m0.154s 0m0.030s) 1071. DISPLAY: Sign ASCII (data_display.at:21): ok (0m0.146s 0m0.047s) 1072. DISPLAY: Sign ASCII (2) (data_display.at:80): ok (0m0.131s 0m0.063s) 1073. DISPLAY: Sign EBCDIC (data_display.at:126): ok (0m0.128s 0m0.061s) 1074. DISPLAY: unsigned (data_display.at:171): ok (0m0.149s 0m0.046s) 1075. PACKED-DECIMAL dump (data_packed.at:25): ok (0m0.402s 0m0.122s) 1076. PACKED-DECIMAL used with DISPLAY (data_packed.at:161): ok (0m0.129s 0m0.055s) 1077. PACKED-DECIMAL used with MOVE (data_packed.at:216): ok (0m0.144s 0m0.046s) 1078. PACKED-DECIMAL used with INITIALIZE (data_packed.at:273): ok (0m0.142s 0m0.036s) 1079. PACKED-DECIMAL arithmetic (data_packed.at:312): ok (0m0.151s 0m0.054s) 1080. PACKED-DECIMAL numeric test (1) (data_packed.at:348): ok (0m0.130s 0m0.069s) 1081. PACKED-DECIMAL numeric test (2) (data_packed.at:490): ok (0m0.156s 0m0.058s) 1082. COMP-6 used with DISPLAY (data_packed.at:606): ok (0m0.130s 0m0.048s) 1083. COMP-6 used with MOVE (data_packed.at:643): ok (0m0.133s 0m0.047s) 1084. COMP-6 arithmetic (data_packed.at:690): ok (0m0.135s 0m0.055s) 1085. COMP-6 numeric test (data_packed.at:722): ok (0m0.122s 0m0.065s) 1086. POINTER: display (data_pointer.at:21): ok (0m0.128s 0m0.044s) testsuite: ending at: Wed Nov 30 09:51:55 MST 2022 testsuite: test suite duration: 0h 3m 56s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 1068 tests were run, 5 passed unexpectedly, 26 failed (24 expected failures). 18 tests were skipped. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Failed tests: GnuCOBOL 3.1.2 test suite: GnuCOBOL Tests test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 728: run_file.at:340 OUTPUT on INDEXED file to missing directory runfile open assign 799: run_file.at:6579 INDEXED partial keys runfile Skipped tests: GnuCOBOL 3.1.2 test suite: GnuCOBOL Tests test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 273: syn_misc.at:3598 ACUCOBOL 32bit literal size extensions literals 464: run_fundamental.at:1187 function with variable-length RETURNING item fundamental udf 800: run_file.at:6726 INDEXED undeclared keys runfile 958: run_functions.at:4263 UDF with recursion functions local-storage 1045: run_ml.at:19 XML GENERATE general extensions 1046: run_ml.at:127 XML GENERATE SUPPRESS extensions 1047: run_ml.at:204 XML GENERATE exceptions extensions xml-code 1048: run_ml.at:300 XML GENERATE record selection extensions 1049: run_ml.at:344 XML GENERATE trimming extensions 1050: run_ml.at:441 XML DPC-IN-DATA directive extensions 1051: run_ml.at:472 XML dpc-in-data config option extensions 1052: run_ml.at:516 JSON GENERATE general extensions 1053: run_ml.at:573 JSON GENERATE SUPPRESS extensions 1054: run_ml.at:612 JSON GENERATE exceptions extensions json-code 1055: run_ml.at:677 JSON GENERATE record selection extensions 1056: run_ml.at:721 JSON GENERATE trimming extensions 1057: run_ml.at:821 JSON DPC-IN-DATA directive extensions 1058: run_ml.at:852 JSON dpc-in-data config option extensions Unexpected passes: GnuCOBOL 3.1.2 test suite: GnuCOBOL Tests test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 790: run_file.at:5839 INDEXED file with LOCK MODE EXCLUSIVE runfile 791: run_file.at:5916 INDEXED file with OPEN WITH LOCK runfile 792: run_file.at:5992 INDEXED file with SHARING NO runfile 793: run_file.at:6069 INDEXED file with SHARING READ ONLY runfile 794: run_file.at:6153 INDEXED file with blocked lock runfile ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## # -*- compilation -*- 728. run_file.at:340: testing OUTPUT on INDEXED file to missing directory ... ./run_file.at:371: $COMPILE prog.cob ./run_file.at:372: $COBCRUN_DIRECT ./prog --- /dev/null 2022-11-15 08:56:43.981133684 -0700 +++ /home/michael/Downloads/gnucobol-3.1.2/tests/testsuite.dir/at-groups/728/stdout 2022-11-30 09:50:21.454508833 -0700 @@ -0,0 +1 @@ +STATUS OPENO 35 728. run_file.at:340: 728. OUTPUT on INDEXED file to missing directory (run_file.at:340): FAILED (run_file.at:372) # -*- compilation -*- 799. run_file.at:6579: testing INDEXED partial keys ... ./run_file.at:6717: $COMPILE prog.cob ./run_file.at:6718: $COBCRUN_DIRECT ./prog --- /dev/null 2022-11-15 08:56:43.981133684 -0700 +++ /home/michael/Downloads/gnucobol-3.1.2/tests/testsuite.dir/at-groups/799/stdout 2022-11-30 09:50:41.540919724 -0700 @@ -0,0 +1,2 @@ +FAILED 2: status 00-serial: 04 +FAILED 5: status 00-serial: 04 799. run_file.at:6579: 799. INDEXED partial keys (run_file.at:6579): FAILED (run_file.at:6718) ## ------------- ## ## ../config.log ## ## ------------- ## | This file contains any messages produced by compilers while | running configure, to aid debugging if configure makes a mistake. | | It was created by GnuCOBOL configure 3.1.2, which was | generated by GNU Autoconf 2.69. Invocation command line was | | $ ./configure --with-vbisam CPPFLAGS=-I /usr/local/include LDFLAGS=-L/usr/local/lib -Wl,-rpath=/usr/local/lib | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = michael-desktop | uname -m = x86_64 | uname -r = 5.4.0-132-generic | uname -s = Linux | uname -v = #148-Ubuntu SMP Mon Oct 17 16:02:06 UTC 2022 | | /usr/bin/uname -p = unknown | /bin/uname -X = unknown | | /bin/arch = unknown | /usr/bin/arch -k = unknown | /usr/convex/getsysinfo = unknown | /usr/bin/hostinfo = unknown | /bin/machine = unknown | /usr/bin/oslevel = unknown | /bin/universe = unknown | | PATH: /home/michael/.local/bin | PATH: /usr/local/sbin | PATH: /usr/local/bin | PATH: /usr/sbin | PATH: /usr/bin | PATH: /sbin | PATH: /bin | PATH: /usr/games | PATH: /usr/local/games | PATH: /snap/bin | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:2615: checking for a BSD-compatible install | configure:2683: result: /usr/bin/install -c | configure:2694: checking whether build environment is sane | configure:2749: result: yes | configure:2898: checking for a thread-safe mkdir -p | configure:2937: result: /bin/mkdir -p | configure:2944: checking for gawk | configure:2974: result: no | configure:2944: checking for mawk | configure:2960: found /usr/bin/mawk | configure:2971: result: mawk | configure:2982: checking whether make sets $(MAKE) | configure:3004: result: yes | configure:3033: checking whether make supports nested variables | configure:3050: result: yes | configure:3357: checking for make | configure:3373: found /usr/bin/make | configure:3384: result: make | configure:3444: checking whether make supports order-only prerequisites | configure:3459: make -f confmf.mk && make -f confmf.mk && cat confinc.out | target am__prereq. | target confprereq. | target am__doit. | target am__prereq. | target am__doit. | configure:3462: $? = 0 | configure:3473: result: yes | configure:3487: checking whether CFLAGS -O can be modified | configure:3495: result: yes | configure:3555: checking for gcc | configure:3571: found /usr/bin/gcc | configure:3582: result: gcc | configure:3613: checking for C compiler version | configure:3622: gcc --version >&5 | gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 | Copyright (C) 2019 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:3633: $? = 0 | configure:3622: gcc -v >&5 | Using built-in specs. | COLLECT_GCC=gcc | COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper | OFFLOAD_TARGET_NAMES=nvptx-none:hsa | OFFLOAD_TARGET_DEFAULT=1 | Target: x86_64-linux-gnu | Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu | Thread model: posix | gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) | configure:3633: $? = 0 | configure:3622: gcc -V >&5 | gcc: error: unrecognized command line option '-V' | gcc: fatal error: no input files | compilation terminated. | configure:3633: $? = 1 | configure:3622: gcc -qversion >&5 | gcc: error: unrecognized command line option '-qversion'; did you mean '--version'? | gcc: fatal error: no input files | compilation terminated. | configure:3633: $? = 1 | configure:3653: checking whether the C compiler works | configure:3675: gcc -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:3679: $? = 0 | configure:3727: result: yes | configure:3730: checking for C compiler default output file name | configure:3732: result: a.out | configure:3738: checking for suffix of executables | configure:3745: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:3749: $? = 0 | configure:3771: result: | configure:3793: checking whether we are cross compiling | configure:3801: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:3805: $? = 0 | configure:3812: ./conftest | configure:3816: $? = 0 | configure:3804: result: no | configure:3809: checking for suffix of object files | configure:3831: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:3835: $? = 0 | configure:3856: result: o | configure:3860: checking whether we are using the GNU C compiler | configure:3879: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:3879: $? = 0 | configure:3888: result: yes | configure:3897: checking whether gcc accepts -g | configure:3917: gcc -c -g -I /usr/local/include conftest.c >&5 | configure:3917: $? = 0 | configure:3958: result: yes | configure:3975: checking for gcc option to accept ISO C89 | configure:4038: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:4038: $? = 0 | configure:4051: result: none needed | configure:4076: checking whether gcc understands -c and -o together | configure:4098: gcc -c conftest.c -o conftest2.o | configure:4101: $? = 0 | configure:4098: gcc -c conftest.c -o conftest2.o | configure:4101: $? = 0 | configure:4113: result: yes | configure:4133: checking whether make supports the include directive | configure:4148: make -f confmf.GNU && cat confinc.out | this is the am__doit target | configure:4151: $? = 0 | configure:4170: result: yes (GNU style) | configure:4195: checking dependency style of gcc | configure:4306: result: gcc3 | configure:4325: checking for gcc option to accept ISO C99 | configure:4474: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:4474: $? = 0 | configure:4487: result: none needed | configure:4595: checking for gcc option to accept ISO Standard C | configure:4606: result: none needed | configure:4619: checking how to run the C preprocessor | configure:4650: gcc -E -I /usr/local/include conftest.c | configure:4650: $? = 0 | configure:4664: gcc -E -I /usr/local/include conftest.c | conftest.c:13:10: fatal error: ac_nonexistent.h: No such file or directory | 13 | #include | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:4664: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | /* end confdefs.h. */ | | #include | configure:4689: result: gcc -E | configure:4709: gcc -E -I /usr/local/include conftest.c | configure:4709: $? = 0 | configure:4723: gcc -E -I /usr/local/include conftest.c | conftest.c:13:10: fatal error: ac_nonexistent.h: No such file or directory | 13 | #include | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:4723: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | /* end confdefs.h. */ | | #include | configure:4754: checking for grep that handles long lines and -e | configure:4812: result: /bin/grep | configure:4817: checking for egrep | configure:4879: result: /bin/grep -E | configure:4884: checking for ANSI C header files | configure:4904: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:4904: $? = 0 | configure:4977: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:4977: $? = 0 | configure:4977: ./conftest | configure:4977: $? = 0 | configure:4988: result: yes | configure:5001: checking for sys/types.h | configure:5001: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:5001: $? = 0 | configure:5001: result: yes | configure:5001: checking for sys/stat.h | configure:5001: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:5001: $? = 0 | configure:5001: result: yes | configure:5001: checking for stdlib.h | configure:5001: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:5001: $? = 0 | configure:5001: result: yes | configure:5001: checking for string.h | configure:5001: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:5001: $? = 0 | configure:5001: result: yes | configure:5001: checking for memory.h | configure:5001: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:5001: $? = 0 | configure:5001: result: yes | configure:5001: checking for strings.h | configure:5001: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:5001: $? = 0 | configure:5001: result: yes | configure:5001: checking for inttypes.h | configure:5001: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:5001: $? = 0 | configure:5001: result: yes | configure:5001: checking for stdint.h | configure:5001: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:5001: $? = 0 | configure:5001: result: yes | configure:5001: checking for unistd.h | configure:5001: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:5001: $? = 0 | configure:5001: result: yes | configure:5014: checking minix/config.h usability | configure:5014: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c:56:10: fatal error: minix/config.h: No such file or directory | 56 | #include | | ^~~~~~~~~~~~~~~~ | compilation terminated. | configure:5014: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:5014: result: no | configure:5014: checking minix/config.h presence | configure:5014: gcc -E -I /usr/local/include conftest.c | conftest.c:23:10: fatal error: minix/config.h: No such file or directory | 23 | #include | | ^~~~~~~~~~~~~~~~ | compilation terminated. | configure:5014: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | /* end confdefs.h. */ | | #include | configure:5014: result: no | configure:5014: checking for minix/config.h | configure:5014: result: no | configure:5035: checking whether it is safe to define __EXTENSIONS__ | configure:5053: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:5053: $? = 0 | configure:5060: result: yes | configure:5199: checking build system type | configure:5213: result: x86_64-pc-linux-gnu | configure:5233: checking host system type | configure:5246: result: x86_64-pc-linux-gnu | configure:5287: checking how to print strings | configure:5314: result: printf | configure:5335: checking for a sed that does not truncate output | configure:5399: result: /bin/sed | configure:5417: checking for fgrep | configure:5479: result: /bin/grep -F | configure:5514: checking for ld used by gcc | configure:5581: result: /usr/bin/ld | configure:5588: checking if the linker (/usr/bin/ld) is GNU ld | configure:5603: result: yes | configure:5615: checking for BSD- or MS-compatible name lister (nm) | configure:5669: result: /usr/bin/nm -B | configure:5799: checking the name lister (/usr/bin/nm -B) interface | configure:5806: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:5809: /usr/bin/nm -B "conftest.o" | configure:5812: output | 0000000000000000 B some_variable | configure:5813: result: BSD nm | configure:5816: checking whether ln -s works | configure:5820: result: yes | configure:5828: checking the maximum length of command line arguments | configure:5959: result: 1572864 | configure:6007: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format | configure:6047: result: func_convert_file_noop | configure:6054: checking how to convert x86_64-pc-linux-gnu file names to toolchain format | configure:6074: result: func_convert_file_noop | configure:6081: checking for /usr/bin/ld option to reload object files | configure:6088: result: -r | configure:6162: checking for objdump | configure:6178: found /usr/bin/objdump | configure:6189: result: objdump | configure:6218: checking how to recognize dependent libraries | configure:6418: result: pass_all | configure:6503: checking for dlltool | configure:6533: result: no | configure:6560: checking how to associate runtime and link libraries | configure:6587: result: printf %s\n | configure:6647: checking for ar | configure:6663: found /usr/bin/ar | configure:6674: result: ar | configure:6711: checking for archiver @FILE support | configure:6728: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:6728: $? = 0 | configure:6731: ar cru libconftest.a @conftest.lst >&5 | ar: `u' modifier ignored since `D' is the default (see `U') | configure:6734: $? = 0 | configure:6739: ar cru libconftest.a @conftest.lst >&5 | ar: `u' modifier ignored since `D' is the default (see `U') | ar: conftest.o: No such file or directory | configure:6742: $? = 1 | configure:6741: result: @ | configure:6799: checking for strip | configure:6815: found /usr/bin/strip | configure:6826: result: strip | configure:6898: checking for ranlib | configure:6914: found /usr/bin/ranlib | configure:6925: result: ranlib | configure:7027: checking command to parse /usr/bin/nm -B output from gcc object | configure:7180: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:7183: $? = 0 | configure:7187: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm | configure:7190: $? = 0 | configure:7256: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c conftstm.o >&5 | configure:7259: $? = 0 | configure:7297: result: ok | configure:7344: checking for sysroot | configure:7374: result: no | configure:7381: checking for a working dd | configure:7419: result: /bin/dd | configure:7423: checking how to truncate binary pipes | configure:7438: result: /bin/dd bs=4096 count=1 | configure:7574: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:7577: $? = 0 | configure:7767: checking for mt | configure:7783: found /bin/mt | configure:7794: result: mt | configure:7817: checking if mt is a manifest tool | configure:7823: mt '-?' | configure:7831: result: no | configure:8505: checking for dlfcn.h | configure:8505: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:8505: $? = 0 | configure:8505: result: yes | configure:9058: checking for objdir | configure:9073: result: .libs | configure:9337: checking if gcc supports -fno-rtti -fno-exceptions | configure:9355: gcc -c -O2 -I /usr/local/include -fno-rtti -fno-exceptions conftest.c >&5 | cc1: warning: command line option '-fno-rtti' is valid for C++/D/ObjC++ but not for C | configure:9359: $? = 0 | configure:9372: result: no | configure:9730: checking for gcc option to produce PIC | configure:9737: result: -fPIC -DPIC | configure:9745: checking if gcc PIC flag -fPIC -DPIC works | configure:9763: gcc -c -O2 -I /usr/local/include -fPIC -DPIC -DPIC conftest.c >&5 | configure:9767: $? = 0 | configure:9780: result: yes | configure:9809: checking if gcc static flag -static works | configure:9837: result: yes | configure:9852: checking if gcc supports -c -o file.o | configure:9873: gcc -c -O2 -I /usr/local/include -o out/conftest2.o conftest.c >&5 | configure:9877: $? = 0 | configure:9899: result: yes | configure:9907: checking if gcc supports -c -o file.o | configure:9954: result: yes | configure:9987: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries | configure:11246: result: yes | configure:11283: checking whether -lc should be explicitly linked in | configure:11291: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:11294: $? = 0 | configure:11309: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 | configure:11312: $? = 0 | configure:11326: result: no | configure:11486: checking dynamic linker characteristics | configure:12067: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib -Wl,-rpath -Wl,/foo conftest.c >&5 | configure:12067: $? = 0 | configure:12304: result: GNU/Linux ld.so | configure:12426: checking how to hardcode library paths into programs | configure:12451: result: immediate | configure:12553: checking for shl_load | configure:12553: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | /usr/bin/ld: /tmp/cck1c7iO.o: in function `main': | conftest.c:(.text.startup+0xb): undefined reference to `shl_load' | collect2: error: ld returned 1 exit status | configure:12553: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | /* Define shl_load to an innocuous variant, in case declares shl_load. | | For example, HP-UX 11i declares gettimeofday. */ | | #define shl_load innocuous_shl_load | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char shl_load (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef shl_load | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char shl_load (); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub_shl_load || defined __stub___shl_load | | choke me | | #endif | | | | int | | main () | | { | | return shl_load (); | | ; | | return 0; | | } | configure:12553: result: no | configure:12557: checking for shl_load in -ldld | configure:12582: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -ldld >&5 | /usr/bin/ld: cannot find -ldld | collect2: error: ld returned 1 exit status | configure:12582: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char shl_load (); | | int | | main () | | { | | return shl_load (); | | ; | | return 0; | | } | configure:12591: result: no | configure:12596: checking for dlopen | configure:12596: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | /usr/bin/ld: /tmp/ccDvg4xV.o: in function `main': | conftest.c:(.text.startup+0xb): undefined reference to `dlopen' | collect2: error: ld returned 1 exit status | configure:12596: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | /* Define dlopen to an innocuous variant, in case declares dlopen. | | For example, HP-UX 11i declares gettimeofday. */ | | #define dlopen innocuous_dlopen | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char dlopen (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef dlopen | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char dlopen (); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub_dlopen || defined __stub___dlopen | | choke me | | #endif | | | | int | | main () | | { | | return dlopen (); | | ; | | return 0; | | } | configure:12596: result: no | configure:12600: checking for dlopen in -ldl | configure:12625: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -ldl >&5 | configure:12625: $? = 0 | configure:12634: result: yes | configure:12753: checking whether a program can dlopen itself | configure:12833: gcc -o conftest -O2 -I /usr/local/include -DHAVE_DLFCN_H -L/usr/local/lib -Wl,-rpath=/usr/local/lib -Wl,--export-dynamic conftest.c -ldl >&5 | configure:12836: $? = 0 | configure:12854: result: yes | configure:12859: checking whether a statically linked program can dlopen itself | configure:12939: gcc -o conftest -O2 -I /usr/local/include -DHAVE_DLFCN_H -L/usr/local/lib -Wl,-rpath=/usr/local/lib -Wl,--export-dynamic -static conftest.c -ldl >&5 | /usr/bin/ld: /tmp/ccfnIXtp.o: in function `main': | conftest.c:(.text.startup+0xd): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking | configure:12942: $? = 0 | conftest: undefined symbol: _fnord | configure:12960: result: no | configure:12999: checking whether stripping libraries is possible | configure:13004: result: yes | configure:13039: checking if libtool supports shared libraries | configure:13041: result: yes | configure:13044: checking whether to build shared libraries | configure:13069: result: yes | configure:13072: checking whether to build static libraries | configure:13076: result: yes | configure:9906: checking for egrep | configure:9968: result: /bin/grep -E | configure:9979: checking for flex | configure:10009: result: no | configure:9979: checking for lex | configure:10009: result: no | configure:10141: checking for bison | configure:10171: result: no | configure:10141: checking for byacc | configure:10171: result: no | configure:10224: checking for windres | configure:10254: result: no | configure:10354: checking how to disable yacc compatibility warnings | configure:10376: result: not supported | configure:10383: checking for diff arguments | configure:10398: result: --strip-trailing-cr | configure:10411: checking whether ln -s works | configure:10415: result: yes | configure:10424: checking whether make sets $(MAKE) | configure:10446: result: yes | configure:10480: checking for ld used by gcc | configure:10547: result: /usr/bin/ld -m elf_x86_64 | configure:10554: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld | configure:10569: result: yes | configure:10576: checking for shared library run path origin | configure:10589: result: done | configure:10611: checking for ANSI C header files | configure:10715: result: yes | configure:10727: checking for stdint.h | configure:10727: result: yes | configure:10727: checking for sys/types.h | configure:10727: result: yes | configure:10727: checking signal.h usability | configure:10727: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking signal.h presence | configure:10727: gcc -E -I /usr/local/include conftest.c | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking for signal.h | configure:10727: result: yes | configure:10727: checking fcntl.h usability | configure:10727: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking fcntl.h presence | configure:10727: gcc -E -I /usr/local/include conftest.c | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking for fcntl.h | configure:10727: result: yes | configure:10727: checking malloc.h usability | configure:10727: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking malloc.h presence | configure:10727: gcc -E -I /usr/local/include conftest.c | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking for malloc.h | configure:10727: result: yes | configure:10727: checking locale.h usability | configure:10727: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking locale.h presence | configure:10727: gcc -E -I /usr/local/include conftest.c | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking for locale.h | configure:10727: result: yes | configure:10727: checking stddef.h usability | configure:10727: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking stddef.h presence | configure:10727: gcc -E -I /usr/local/include conftest.c | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking for stddef.h | configure:10727: result: yes | configure:10727: checking wchar.h usability | configure:10727: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking wchar.h presence | configure:10727: gcc -E -I /usr/local/include conftest.c | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking for wchar.h | configure:10727: result: yes | configure:10727: checking for dlfcn.h | configure:10727: result: yes | configure:10727: checking sys/time.h usability | configure:10727: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking sys/time.h presence | configure:10727: gcc -E -I /usr/local/include conftest.c | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking for sys/time.h | configure:10727: result: yes | configure:10727: checking sys/wait.h usability | configure:10727: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking sys/wait.h presence | configure:10727: gcc -E -I /usr/local/include conftest.c | configure:10727: $? = 0 | configure:10727: result: yes | configure:10727: checking for sys/wait.h | configure:10727: result: yes | configure:10740: checking for an ANSI C-conforming const | configure:10806: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:10806: $? = 0 | configure:10813: result: yes | configure:10821: checking whether byte ordering is bigendian | configure:10836: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c:43:9: error: unknown type name 'not' | 43 | not a universal capable compiler | | ^~~ | conftest.c:43:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' | 43 | not a universal capable compiler | | ^~~~~~~~~ | conftest.c:43:15: error: unknown type name 'universal' | configure:10836: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | /* end confdefs.h. */ | | #ifndef __APPLE_CC__ | | not a universal capable compiler | | #endif | | typedef int dummy; | | | configure:10881: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:10881: $? = 0 | configure:10899: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c: In function 'main': | conftest.c:49:4: error: unknown type name 'not'; did you mean 'ino_t'? | 49 | not big endian | | ^~~ | | ino_t | conftest.c:49:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' | 49 | not big endian | | ^~~~~~ | configure:10899: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main () | | { | | #if BYTE_ORDER != BIG_ENDIAN | | not big endian | | #endif | | | | ; | | return 0; | | } | configure:11027: result: no | configure:11045: checking for size_t | configure:11045: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:11045: $? = 0 | configure:11045: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c: In function 'main': | conftest.c:78:21: error: expected expression before ')' token | 78 | if (sizeof ((size_t))) | | ^ | configure:11045: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | int | | main () | | { | | if (sizeof ((size_t))) | | return 0; | | ; | | return 0; | | } | configure:11045: result: yes | configure:11056: checking whether struct tm is in sys/time.h or time.h | configure:11076: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:11076: $? = 0 | configure:11083: result: time.h | configure:11091: checking for sig_atomic_t | configure:11091: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:11091: $? = 0 | configure:11091: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c: In function 'main': | conftest.c:47:27: error: expected expression before ')' token | 47 | if (sizeof ((sig_atomic_t))) | | ^ | configure:11091: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | if (sizeof ((sig_atomic_t))) | | return 0; | | ; | | return 0; | | } | configure:11091: result: yes | configure:11105: checking for inline keyword | configure:11129: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:11129: $? = 0 | configure:11137: result: __inline | configure:11145: checking for vprintf | configure:11145: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | conftest.c:67:6: warning: conflicting types for built-in function 'vprintf'; expected 'int(const char *, __va_list_tag *)' [-Wbuiltin-declaration-mismatch] | 67 | char vprintf (); | | ^~~~~~~ | conftest.c:55:1: note: 'vprintf' is declared in header '' | 54 | # include | 55 | #else | configure:11145: $? = 0 | configure:11145: result: yes | configure:11151: checking for _doprnt | configure:11151: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | /usr/bin/ld: /tmp/ccTDnRLH.o: in function `main': | conftest.c:(.text.startup+0xb): undefined reference to `_doprnt' | collect2: error: ld returned 1 exit status | configure:11151: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | /* end confdefs.h. */ | | /* Define _doprnt to an innocuous variant, in case declares _doprnt. | | For example, HP-UX 11i declares gettimeofday. */ | | #define _doprnt innocuous__doprnt | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char _doprnt (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef _doprnt | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char _doprnt (); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub__doprnt || defined __stub____doprnt | | choke me | | #endif | | | | int | | main () | | { | | return _doprnt (); | | ; | | return 0; | | } | configure:11151: result: no | configure:11168: checking for memmove | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | conftest.c:68:6: warning: conflicting types for built-in function 'memmove'; expected 'void *(void *, const void *, long unsigned int)' [-Wbuiltin-declaration-mismatch] | 68 | char memmove (); | | ^~~~~~~ | conftest.c:56:1: note: 'memmove' is declared in header '' | 55 | # include | 56 | #else | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for memset | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | conftest.c:69:6: warning: conflicting types for built-in function 'memset'; expected 'void *(void *, int, long unsigned int)' [-Wbuiltin-declaration-mismatch] | 69 | char memset (); | | ^~~~~~ | conftest.c:57:1: note: 'memset' is declared in header '' | 56 | # include | 57 | #else | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for setlocale | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for fcntl | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for strerror | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for strcasecmp | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | conftest.c:73:6: warning: conflicting types for built-in function 'strcasecmp'; expected 'int(const char *, const char *)' [-Wbuiltin-declaration-mismatch] | 73 | char strcasecmp (); | | ^~~~~~~~~~ | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for strchr | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | conftest.c:74:6: warning: conflicting types for built-in function 'strchr'; expected 'char *(const char *, int)' [-Wbuiltin-declaration-mismatch] | 74 | char strchr (); | | ^~~~~~ | conftest.c:62:1: note: 'strchr' is declared in header '' | 61 | # include | 62 | #else | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for strrchr | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | conftest.c:75:6: warning: conflicting types for built-in function 'strrchr'; expected 'char *(const char *, int)' [-Wbuiltin-declaration-mismatch] | 75 | char strrchr (); | | ^~~~~~~ | conftest.c:63:1: note: 'strrchr' is declared in header '' | 62 | # include | 63 | #else | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for strdup | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | conftest.c:76:6: warning: conflicting types for built-in function 'strdup'; expected 'char *(const char *)' [-Wbuiltin-declaration-mismatch] | 76 | char strdup (); | | ^~~~~~ | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for strstr | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | conftest.c:77:6: warning: conflicting types for built-in function 'strstr'; expected 'char *(const char *, const char *)' [-Wbuiltin-declaration-mismatch] | 77 | char strstr (); | | ^~~~~~ | conftest.c:65:1: note: 'strstr' is declared in header '' | 64 | # include | 65 | #else | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for strtol | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for gettimeofday | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for localeconv | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for getexecname | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | /usr/bin/ld: /tmp/cc8O3Zok.o: in function `main': | conftest.c:(.text.startup+0xb): undefined reference to `getexecname' | collect2: error: ld returned 1 exit status | configure:11168: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | /* end confdefs.h. */ | | /* Define getexecname to an innocuous variant, in case declares getexecname. | | For example, HP-UX 11i declares gettimeofday. */ | | #define getexecname innocuous_getexecname | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char getexecname (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef getexecname | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char getexecname (); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub_getexecname || defined __stub___getexecname | | choke me | | #endif | | | | int | | main () | | { | | return getexecname (); | | ; | | return 0; | | } | configure:11168: result: no | configure:11168: checking for canonicalize_file_name | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for popen | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for raise | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for readlink | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for realpath | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for setenv | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for strcoll | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11168: checking for flockfile | configure:11168: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:11168: $? = 0 | configure:11168: result: yes | configure:11179: checking for timezone variable access | configure:11192: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:11192: $? = 0 | configure:11195: result: yes | configure:11204: checking for designated initializers | configure:11220: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:11220: $? = 0 | configure:11222: result: yes | configure:11238: checking for __GNUC__ | configure:11247: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:11247: $? = 0 | configure:11249: result: yes | configure:11257: checking for __INTEL_COMPILER | configure:11266: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c:70:4: error: #error macro not defined | 70 | # error macro not defined | | ^~~~~ | configure:11266: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __INTEL_COMPILER | | # error macro not defined | | #endif | configure:11274: result: no | configure:11280: checking for __clang__ | configure:11289: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c:70:4: error: #error macro not defined | 70 | # error macro not defined | | ^~~~~ | configure:11289: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __clang__ | | # error macro not defined | | #endif | configure:11294: result: no | configure:11299: checking for __xlc__ | configure:11308: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c:70:4: error: #error macro not defined | 70 | # error macro not defined | | ^~~~~ | configure:11308: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __xlc__ | | # error macro not defined | | #endif | configure:11313: result: no | configure:11318: checking for __WATCOMC__ | configure:11327: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c:70:4: error: #error macro not defined | 70 | # error macro not defined | | ^~~~~ | configure:11327: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __WATCOMC__ | | # error macro not defined | | #endif | configure:11332: result: no | configure:11394: checking whether to build with code coverage support | configure:11414: result: no | configure:11777: checking for pkg-config | configure:11795: found /usr/bin/pkg-config | configure:11807: result: /usr/bin/pkg-config | configure:11832: checking pkg-config is at least version 0.9.0 | configure:11835: result: yes | configure:11846: Checks for GMP/MPIR ... | configure:11882: checking for gmp | configure:11889: $PKG_CONFIG --exists --print-errors "gmp" | configure:11892: $? = 0 | configure:11906: $PKG_CONFIG --exists --print-errors "gmp" | configure:11909: $? = 0 | configure:12095: result: yes | configure:12108: checking gmp.h usability | configure:12108: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:12108: $? = 0 | configure:12108: result: yes | configure:12108: checking gmp.h presence | configure:12108: gcc -E -I /usr/local/include conftest.c | configure:12108: $? = 0 | configure:12108: result: yes | configure:12108: checking for gmp.h | configure:12108: result: yes | configure:12114: checking if linking against libgmp with "-lgmp" works | configure:12127: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lgmp >&5 | configure:12127: $? = 0 | configure:12128: result: yes | configure:12298: checking matching GMP version | configure:12330: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lgmp >&5 | configure:12330: $? = 0 | configure:12330: ./conftest | configure:12330: $? = 0 | configure:12367: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lgmp >&5 | configure:12367: $? = 0 | configure:12367: ./conftest | configure:12367: $? = 0 | configure:12384: result: yes (6.2) | configure:12396: checking for __gmp_get_memory_functions in -lgmp | configure:12421: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lgmp >&5 | configure:12421: $? = 0 | configure:12431: result: yes | configure:12454: checking for libxml-2.0 | configure:12461: $PKG_CONFIG --exists --print-errors "libxml-2.0" | Package libxml-2.0 was not found in the pkg-config search path. | Perhaps you should add the directory containing `libxml-2.0.pc' | to the PKG_CONFIG_PATH environment variable | No package 'libxml-2.0' found | configure:12464: $? = 1 | configure:12478: $PKG_CONFIG --exists --print-errors "libxml-2.0" | Package libxml-2.0 was not found in the pkg-config search path. | Perhaps you should add the directory containing `libxml-2.0.pc' | to the PKG_CONFIG_PATH environment variable | No package 'libxml-2.0' found | configure:12481: $? = 1 | configure:12495: result: no | No package 'libxml-2.0' found | configure:12515: checking for xml2-config | configure:12545: result: no | configure:12628: checking libxml/xmlversion.h usability | configure:12628: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c:103:10: fatal error: libxml/xmlversion.h: No such file or directory | 103 | #include | | ^~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:12628: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:12628: result: no | configure:12628: checking libxml/xmlversion.h presence | configure:12628: gcc -E -I /usr/local/include conftest.c | conftest.c:70:10: fatal error: libxml/xmlversion.h: No such file or directory | 70 | #include | | ^~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:12628: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | /* end confdefs.h. */ | | #include | configure:12628: result: no | configure:12628: checking for libxml/xmlversion.h | configure:12628: result: no | configure:12725: WARNING: Headers for libxml2 missing, you may adjust XML2_CFLAGS | configure:12736: Checks for JSON handler | configure:12766: Checks for local cJSON ... | configure:12770: checking for ./libcob/cJSON.c | configure:12783: result: no | configure:12824: checking for ./libcob/cJSON.c | configure:12838: result: no | configure:12881: using local cJSON: no | configure:12888: checking for libcjson | configure:12895: $PKG_CONFIG --exists --print-errors "libcjson" | Package libcjson was not found in the pkg-config search path. | Perhaps you should add the directory containing `libcjson.pc' | to the PKG_CONFIG_PATH environment variable | No package 'libcjson' found | configure:12898: $? = 1 | configure:12912: $PKG_CONFIG --exists --print-errors "libcjson" | Package libcjson was not found in the pkg-config search path. | Perhaps you should add the directory containing `libcjson.pc' | to the PKG_CONFIG_PATH environment variable | No package 'libcjson' found | configure:12915: $? = 1 | configure:12929: result: no | No package 'libcjson' found | configure:12968: checking cJSON.h usability | configure:12968: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c:103:10: fatal error: cJSON.h: No such file or directory | 103 | #include | | ^~~~~~~~~ | compilation terminated. | configure:12968: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:12968: result: no | configure:12968: checking cJSON.h presence | configure:12968: gcc -E -I /usr/local/include conftest.c | conftest.c:70:10: fatal error: cJSON.h: No such file or directory | 70 | #include | | ^~~~~~~~~ | compilation terminated. | configure:12968: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | /* end confdefs.h. */ | | #include | configure:12968: result: no | configure:12968: checking for cJSON.h | configure:12968: result: no | configure:12977: checking cjson/cJSON.h usability | configure:12977: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c:103:10: fatal error: cjson/cJSON.h: No such file or directory | 103 | #include | | ^~~~~~~~~~~~~~~ | compilation terminated. | configure:12977: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:12977: result: no | configure:12977: checking cjson/cJSON.h presence | configure:12977: gcc -E -I /usr/local/include conftest.c | conftest.c:70:10: fatal error: cjson/cJSON.h: No such file or directory | 70 | #include | | ^~~~~~~~~~~~~~~ | compilation terminated. | configure:12977: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | /* end confdefs.h. */ | | #include | configure:12977: result: no | configure:12977: checking for cjson/cJSON.h | configure:12977: result: no | configure:12987: WARNING: Headers for libcjson missing, you may adjust CJSON_CFLAGS or put cJSON sources in "libcob" | configure:13061: checking for json-c | configure:13068: $PKG_CONFIG --exists --print-errors "json-c" | Package json-c was not found in the pkg-config search path. | Perhaps you should add the directory containing `json-c.pc' | to the PKG_CONFIG_PATH environment variable | No package 'json-c' found | configure:13071: $? = 1 | configure:13085: $PKG_CONFIG --exists --print-errors "json-c" | Package json-c was not found in the pkg-config search path. | Perhaps you should add the directory containing `json-c.pc' | to the PKG_CONFIG_PATH environment variable | No package 'json-c' found | configure:13088: $? = 1 | configure:13102: result: no | No package 'json-c' found | configure:13141: checking json.h usability | configure:13141: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c:103:10: fatal error: json.h: No such file or directory | 103 | #include | | ^~~~~~~~ | compilation terminated. | configure:13141: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:13141: result: no | configure:13141: checking json.h presence | configure:13141: gcc -E -I /usr/local/include conftest.c | conftest.c:70:10: fatal error: json.h: No such file or directory | 70 | #include | | ^~~~~~~~ | compilation terminated. | configure:13141: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | /* end confdefs.h. */ | | #include | configure:13141: result: no | configure:13141: checking for json.h | configure:13141: result: no | configure:13186: WARNING: Headers for libjson-c missing, you may adjust JSON_C_CFLAGS" | configure:13272: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:13272: $? = 0 | configure:13381: checking for clock_gettime and CLOCK_REALTIME | configure:13394: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:13394: $? = 0 | configure:13396: result: yes | configure:13405: checking for isfinite | configure:13418: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:13418: $? = 0 | configure:13420: result: yes | configure:13478: checking for fdatasync | configure:13478: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:13478: $? = 0 | configure:13478: result: yes | configure:13478: checking for sigaction | configure:13478: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:13478: $? = 0 | configure:13478: result: yes | configure:13478: checking for fmemopen | configure:13478: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:13478: $? = 0 | configure:13478: result: yes | configure:13487: checking whether fdatasync is declared | configure:13487: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:13487: $? = 0 | configure:13487: result: yes | configure:13498: checking whether fmemopen is declared | configure:13498: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:13498: $? = 0 | configure:13498: result: yes | configure:13522: Checks for curses ... | configure:13550: checking for initscr in -lncursesw | configure:13575: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lncursesw >&5 | configure:13575: $? = 0 | configure:13584: result: yes | configure:13598: checking ncursesw/ncurses.h usability | configure:13598: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:13598: $? = 0 | configure:13598: result: yes | configure:13598: checking ncursesw/ncurses.h presence | configure:13598: gcc -E -I /usr/local/include conftest.c | configure:13598: $? = 0 | configure:13598: result: yes | configure:13598: checking for ncursesw/ncurses.h | configure:13598: result: yes | configure:13930: checking for ncurses _nc_freeall function | configure:13944: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lncursesw >&5 | configure:13944: $? = 0 | configure:13946: result: yes | configure:13954: checking for ncurses use_legacy_coding function | configure:13968: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lncursesw >&5 | configure:13968: $? = 0 | configure:13970: result: yes | configure:13981: checking for curses color_set function | configure:14009: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lncursesw >&5 | configure:14009: $? = 0 | configure:14011: result: yes | configure:14020: checking for curses define_key function | configure:14048: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lncursesw >&5 | configure:14048: $? = 0 | configure:14050: result: yes | configure:14059: checking for curses mouseinterval function | configure:14087: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lncursesw >&5 | configure:14087: $? = 0 | configure:14089: result: yes | configure:14098: checking for curses has_mouse function | configure:14126: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lncursesw >&5 | configure:14126: $? = 0 | configure:14128: result: yes | configure:14307: checking vbisam.h usability | configure:14307: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:14307: $? = 0 | configure:14307: result: yes | configure:14307: checking vbisam.h presence | configure:14307: gcc -E -I /usr/local/include conftest.c | configure:14307: $? = 0 | configure:14307: result: yes | configure:14307: checking for vbisam.h | configure:14307: result: yes | configure:14320: checking for isfullclose in -lvbisam | configure:14345: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lvbisam >&5 | configure:14345: $? = 0 | configure:14354: result: yes | configure:14589: checking for _WIN32 | configure:14598: gcc -c -O2 -I /usr/local/include conftest.c >&5 | conftest.c:93:4: error: #error macro not defined | 93 | # error macro not defined | | ^~~~~ | configure:14598: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define WITH_JSON "not found" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_HAS_MOUSE 1 | | #define HAVE_VBISAM_H 1 | | #define WITH_VBISAM 1 | | /* end confdefs.h. */ | | | | #ifndef _WIN32 | | # error macro not defined | | #endif | configure:14603: result: no | configure:14610: checking for dlopen in -lc | configure:14635: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -lc >&5 | /usr/bin/ld: /tmp/cc4N3kYg.o: in function `main': | conftest.c:(.text.startup+0xb): undefined reference to `dlopen' | collect2: error: ld returned 1 exit status | configure:14635: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define WITH_JSON "not found" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_HAS_MOUSE 1 | | #define HAVE_VBISAM_H 1 | | #define WITH_VBISAM 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char dlopen (); | | int | | main () | | { | | return dlopen (); | | ; | | return 0; | | } | configure:14644: result: no | configure:14651: checking for dlopen in -ldl | configure:14685: result: yes | configure:14695: checking for dladdr in -ldl | configure:14720: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -ldl >&5 | configure:14720: $? = 0 | configure:14729: result: yes | configure:14932: checking for support of computed gotos | configure:14949: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:14949: $? = 0 | configure:14952: result: yes | configure:14961: checking if size of long int = size of long long | configure:14997: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:14997: $? = 0 | configure:14997: ./conftest | configure:14997: $? = 0 | configure:14999: result: yes | configure:15010: checking if long is 32 bits | configure:15046: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:15046: $? = 0 | configure:15046: ./conftest | configure:15046: $? = 1 | configure: program exited with status 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define WITH_JSON "not found" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_HAS_MOUSE 1 | | #define HAVE_VBISAM_H 1 | | #define WITH_VBISAM 1 | | #define USE_LIBDL 1 | | #define HAVE_DLADDR 1 | | #define COB_COMPUTED_GOTO 1 | | #define COB_LI_IS_LL 1 | | /* end confdefs.h. */ | | | | int | | main () | | { | | | | if (sizeof (long) == 4) | | return 0; | | return 1; | | | | ; | | return 0; | | } | configure:15051: result: no | configure:15063: checking if pointer is longer than 32 bits | configure:15105: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:15105: $? = 0 | configure:15105: ./conftest | configure:15105: $? = 0 | configure:15109: result: yes | configure:15137: checking for aligned attribute | configure:15150: gcc -c -O2 -I /usr/local/include conftest.c >&5 | configure:15150: $? = 0 | configure:15152: result: yes | configure:15173: checking whether NLS is requested | configure:15182: result: yes | configure:15222: checking for msgfmt | configure: trying /usr/bin/msgfmt... | 0 translated messages. | configure:15254: result: /usr/bin/msgfmt | configure:15263: checking for gmsgfmt | configure:15294: result: /usr/bin/msgfmt | configure:15339: checking for xgettext | configure: trying /usr/bin/xgettext... | /usr/bin/xgettext: warning: file '/dev/null' extension '' is unknown; will try C | configure:15371: result: /usr/bin/xgettext | configure:15416: checking for msgmerge | configure: trying /usr/bin/msgmerge... | configure:15447: result: /usr/bin/msgmerge | configure:16040: checking for CFPreferencesCopyAppValue | configure:16067: result: no | configure:16074: checking for CFLocaleCopyPreferredLanguages | configure:16092: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c -Wl,-framework -Wl,CoreFoundation >&5 | conftest.c:97:10: fatal error: CoreFoundation/CFLocale.h: No such file or directory | 97 | #include | | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:16092: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define WITH_JSON "not found" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_HAS_MOUSE 1 | | #define HAVE_VBISAM_H 1 | | #define WITH_VBISAM 1 | | #define USE_LIBDL 1 | | #define HAVE_DLADDR 1 | | #define COB_COMPUTED_GOTO 1 | | #define COB_LI_IS_LL 1 | | #define COB_64_BIT_POINTER 1 | | #define HAVE_ATTRIBUTE_ALIGNED 1 | | /* end confdefs.h. */ | | #include | | int | | main () | | { | | CFLocaleCopyPreferredLanguages(); | | ; | | return 0; | | } | configure:16101: result: no | configure:16151: checking for GNU gettext in libc | configure:16180: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:16180: $? = 0 | configure:16189: result: yes | configure:17048: checking whether to use NLS | configure:17050: result: yes | configure:17053: checking where the gettext function comes from | configure:17064: result: libc | configure:17134: checking for nl_langinfo and CODESET | configure:17150: gcc -o conftest -O2 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:17150: $? = 0 | configure:17159: result: yes | configure:17212: checking for debug option -ggdb3 | configure:17225: gcc -o conftest -O2 -ggdb3 -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:17225: $? = 0 | configure:17226: result: yes | configure:17265: checking for debug option -fasynchronous-unwind-tables | configure:17278: gcc -o conftest -O2 -fasynchronous-unwind-tables -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib conftest.c >&5 | configure:17278: $? = 0 | configure:17279: result: yes | configure:17451: checking for gcc pointer sign option | configure:17464: gcc -c -O2 -pipe -Wno-pointer-sign -I /usr/local/include conftest.c >&5 | configure:17464: $? = 0 | configure:17465: result: yes | configure:17632: checking for ld bind now option | configure:17645: gcc -o conftest -O2 -pipe -I /usr/local/include -L/usr/local/lib -Wl,-rpath=/usr/local/lib -Wl,-z,relro,-z,now,-O1 conftest.c >&5 | configure:17645: $? = 0 | configure:17646: result: yes | configure:18071: checking that generated files are newer than configure | configure:18077: result: done | configure:18121: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GnuCOBOL config.status 3.1.2, which was | generated by GNU Autoconf 2.69. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on michael-desktop | | config.status:1334: creating Makefile | config.status:1334: creating libcob/Makefile | config.status:1334: creating lib/Makefile | config.status:1334: creating cobc/Makefile | config.status:1334: creating bin/Makefile | config.status:1334: creating po/Makefile.in | config.status:1334: creating doc/Makefile | config.status:1334: creating config/Makefile | config.status:1334: creating copy/Makefile | config.status:1334: creating tests/Makefile | config.status:1334: creating tests/cobol85/Makefile | config.status:1334: creating extras/Makefile | config.status:1334: creating bin/cob-config | config.status:1334: creating pre-inst-env | config.status:1334: creating tests/atlocal | config.status:1334: creating tests/run_prog_manual.sh | config.status:1334: creating config.h | config.status:1563: executing tests/atconfig commands | config.status:1563: executing depfiles commands | config.status:1667: cd libcob && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | make: Nothing to be done for 'am--depfiles'. | config.status:1672: $? = 0 | config.status:1667: cd lib && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | make: Nothing to be done for 'am--depfiles'. | config.status:1672: $? = 0 | config.status:1667: cd cobc && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | make: Nothing to be done for 'am--depfiles'. | config.status:1672: $? = 0 | config.status:1667: cd bin && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | make: Nothing to be done for 'am--depfiles'. | config.status:1672: $? = 0 | config.status:1563: executing libtool commands | config.status:1563: executing po-directories commands | config.status:1563: executing chmod commands | configure:20651: GnuCOBOL Configuration: | configure:20653: CC gcc | configure:20655: CFLAGS -O2 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k | configure:20657: LDFLAGS -L/usr/local/lib -Wl,-rpath=/usr/local/lib -Wl,-z,relro,-z,now,-O1 | configure:20663: COB_CC gcc | configure:20665: COB_CFLAGS -pipe -I /usr/local/include -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign | configure:20667: COB_LDFLAGS -L/usr/local/lib -Wl,-rpath=/usr/local/lib | configure:20669: COB_DEBUG_FLAGS -ggdb3 -fasynchronous-unwind-tables | configure:20671: COB_LIBS -L${exec_prefix}/lib -lcob -lm | configure:20673: COB_CONFIG_DIR ${datarootdir}/gnucobol/config | configure:20675: COB_COPY_DIR ${datarootdir}/gnucobol/copy | configure:20677: COB_LIBRARY_PATH ${exec_prefix}/lib/gnucobol | configure:20679: COB_OBJECT_EXT o | configure:20681: COB_MODULE_EXT so | configure:20683: COB_EXE_EXT | configure:20685: COB_SHARED_OPT -shared | configure:20687: COB_PIC_FLAGS -fPIC -DPIC | configure:20689: COB_EXPORT_DYN -Wl,--export-dynamic | configure:20692: COB_STRIP_CMD strip --strip-unneeded | configure:20696: Dynamic loading: System | configure:20702: Use gettext for international messages: yes | configure:20704: Use fcntl for file locking: yes | configure:20706: Use math multiple precision library: gmp | configure:20718: Use curses library for screen I/O: ncursesw | configure:20744: Use VBISAM for INDEXED I/O: yes | configure:20756: XML I/O (no handler found): NO | configure:20770: JSON I/O (no handler found): NO | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=x86_64-pc-linux-gnu | ac_cv_c_bigendian=no | ac_cv_c_compiler_gnu=yes | ac_cv_c_const=yes | ac_cv_env_CC_set= | ac_cv_env_CC_value= | ac_cv_env_CFLAGS_set= | ac_cv_env_CFLAGS_value= | ac_cv_env_CJSON_CFLAGS_set= | ac_cv_env_CJSON_CFLAGS_value= | ac_cv_env_CJSON_LIBS_set= | ac_cv_env_CJSON_LIBS_value= | ac_cv_env_CPPFLAGS_set=set | ac_cv_env_CPPFLAGS_value='-I /usr/local/include' | ac_cv_env_CPP_set= | ac_cv_env_CPP_value= | ac_cv_env_DIFF_FLAGS_set= | ac_cv_env_DIFF_FLAGS_value= | ac_cv_env_GMP_CFLAGS_set= | ac_cv_env_GMP_CFLAGS_value= | ac_cv_env_GMP_LIBS_set= | ac_cv_env_GMP_LIBS_value= | ac_cv_env_JSON_C_CFLAGS_set= | ac_cv_env_JSON_C_CFLAGS_value= | ac_cv_env_JSON_C_LIBS_set= | ac_cv_env_JSON_C_LIBS_value= | ac_cv_env_LDFLAGS_set=set | ac_cv_env_LDFLAGS_value='-L/usr/local/lib -Wl,-rpath=/usr/local/lib' | ac_cv_env_LIBCOB_CPPFLAGS_set= | ac_cv_env_LIBCOB_CPPFLAGS_value= | ac_cv_env_LIBCOB_LIBS_set= | ac_cv_env_LIBCOB_LIBS_value= | ac_cv_env_LIBS_set= | ac_cv_env_LIBS_value= | ac_cv_env_LT_SYS_LIBRARY_PATH_set= | ac_cv_env_LT_SYS_LIBRARY_PATH_value= | ac_cv_env_MPIR_CFLAGS_set= | ac_cv_env_MPIR_CFLAGS_value= | ac_cv_env_MPIR_LIBS_set= | ac_cv_env_MPIR_LIBS_value= | ac_cv_env_PKG_CONFIG_LIBDIR_set= | ac_cv_env_PKG_CONFIG_LIBDIR_value= | ac_cv_env_PKG_CONFIG_PATH_set= | ac_cv_env_PKG_CONFIG_PATH_value= | ac_cv_env_PKG_CONFIG_set= | ac_cv_env_PKG_CONFIG_value= | ac_cv_env_PROGRAMS_LIBS_set= | ac_cv_env_PROGRAMS_LIBS_value= | ac_cv_env_XML2_CFLAGS_set= | ac_cv_env_XML2_CFLAGS_value= | ac_cv_env_XML2_LIBS_set= | ac_cv_env_XML2_LIBS_value= | ac_cv_env_YACC_set= | ac_cv_env_YACC_value= | ac_cv_env_YFLAGS_set= | ac_cv_env_YFLAGS_value= | ac_cv_env_build_alias_set= | ac_cv_env_build_alias_value= | ac_cv_env_host_alias_set= | ac_cv_env_host_alias_value= | ac_cv_env_target_alias_set= | ac_cv_env_target_alias_value= | ac_cv_file___libcob_cJSON_c=no | ac_cv_func__doprnt=no | ac_cv_func_canonicalize_file_name=yes | ac_cv_func_dlopen=no | ac_cv_func_fcntl=yes | ac_cv_func_fdatasync=yes | ac_cv_func_flockfile=yes | ac_cv_func_fmemopen=yes | ac_cv_func_getexecname=no | ac_cv_func_gettimeofday=yes | ac_cv_func_localeconv=yes | ac_cv_func_memmove=yes | ac_cv_func_memset=yes | ac_cv_func_popen=yes | ac_cv_func_raise=yes | ac_cv_func_readlink=yes | ac_cv_func_realpath=yes | ac_cv_func_setenv=yes | ac_cv_func_setlocale=yes | ac_cv_func_shl_load=no | ac_cv_func_sigaction=yes | ac_cv_func_strcasecmp=yes | ac_cv_func_strchr=yes | ac_cv_func_strcoll=yes | ac_cv_func_strdup=yes | ac_cv_func_strerror=yes | ac_cv_func_strrchr=yes | ac_cv_func_strstr=yes | ac_cv_func_strtol=yes | ac_cv_func_vprintf=yes | ac_cv_have_decl_fdatasync=yes | ac_cv_have_decl_fmemopen=yes | ac_cv_header_cJSON_h=no | ac_cv_header_cjson_cJSON_h=no | ac_cv_header_dlfcn_h=yes | ac_cv_header_fcntl_h=yes | ac_cv_header_gmp_h=yes | ac_cv_header_inttypes_h=yes | ac_cv_header_json_h=no | ac_cv_header_libxml_xmlversion_h=no | ac_cv_header_locale_h=yes | ac_cv_header_malloc_h=yes | ac_cv_header_memory_h=yes | ac_cv_header_minix_config_h=no | ac_cv_header_ncursesw_ncurses_h=yes | ac_cv_header_signal_h=yes | ac_cv_header_stdc=yes | ac_cv_header_stddef_h=yes | ac_cv_header_stdint_h=yes | ac_cv_header_stdlib_h=yes | ac_cv_header_string_h=yes | ac_cv_header_strings_h=yes | ac_cv_header_sys_stat_h=yes | ac_cv_header_sys_time_h=yes | ac_cv_header_sys_types_h=yes | ac_cv_header_sys_wait_h=yes | ac_cv_header_unistd_h=yes | ac_cv_header_vbisam_h=yes | ac_cv_header_wchar_h=yes | ac_cv_host=x86_64-pc-linux-gnu | ac_cv_lib_c_dlopen=no | ac_cv_lib_dl_dladdr=yes | ac_cv_lib_dl_dlopen=yes | ac_cv_lib_dld_shl_load=no | ac_cv_lib_gmp_____gmp_get_memory_functions=yes | ac_cv_lib_ncursesw_initscr=yes | ac_cv_lib_vbisam_isfullclose=yes | ac_cv_objext=o | ac_cv_path_EGREP='/bin/grep -E' | ac_cv_path_FGREP='/bin/grep -F' | ac_cv_path_GMSGFMT=/usr/bin/msgfmt | ac_cv_path_GREP=/bin/grep | ac_cv_path_MSGFMT=/usr/bin/msgfmt | ac_cv_path_MSGMERGE=/usr/bin/msgmerge | ac_cv_path_SED=/bin/sed | ac_cv_path_XGETTEXT=/usr/bin/xgettext | ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config | ac_cv_path_install='/usr/bin/install -c' | ac_cv_path_lt_DD=/bin/dd | ac_cv_path_mkdir=/bin/mkdir | ac_cv_prog_AWK=mawk | ac_cv_prog_CPP='gcc -E' | ac_cv_prog_ac_ct_AR=ar | ac_cv_prog_ac_ct_CC=gcc | ac_cv_prog_ac_ct_MANIFEST_TOOL=mt | ac_cv_prog_ac_ct_OBJDUMP=objdump | ac_cv_prog_ac_ct_RANLIB=ranlib | ac_cv_prog_ac_ct_STRIP=strip | ac_cv_prog_cc_c89= | ac_cv_prog_cc_c99= | ac_cv_prog_cc_g=yes | ac_cv_prog_cc_stdc= | ac_cv_prog_configured_make=make | ac_cv_prog_make_make_set=yes | ac_cv_safe_to_define___extensions__=yes | ac_cv_struct_tm=time.h | ac_cv_type_sig_atomic_t=yes | ac_cv_type_size_t=yes | acl_cv_hardcode_direct=no | acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' | acl_cv_hardcode_libdir_separator= | acl_cv_hardcode_minus_L=no | acl_cv_libext=a | acl_cv_libname_spec='lib$name' | acl_cv_library_names_spec='$libname$shrext' | acl_cv_path_LD='/usr/bin/ld -m elf_x86_64' | acl_cv_prog_gnu_ld=yes | acl_cv_rpath=done | acl_cv_shlibext=so | acl_cv_wl=-Wl, | am_cv_CC_dependencies_compiler_type=gcc3 | am_cv_langinfo_codeset=yes | am_cv_make_support_nested_variables=yes | am_cv_prog_cc_c_o=yes | gt_cv_func_CFLocaleCopyCurrent=no | gt_cv_func_CFLocaleCopyPreferredLanguages=no | gt_cv_func_CFPreferencesCopyAppValue=no | gt_cv_func_gnugettext1_libc=yes | lt_cv_ar_at_file=@ | lt_cv_archive_cmds_need_lc=no | lt_cv_deplibs_check_method=pass_all | lt_cv_dlopen=dlopen | lt_cv_dlopen_libs=-ldl | lt_cv_dlopen_self=yes | lt_cv_dlopen_self_static=no | lt_cv_file_magic_cmd='$MAGIC_CMD' | lt_cv_file_magic_test_file= | lt_cv_ld_reload_flag=-r | lt_cv_nm_interface='BSD nm' | lt_cv_objdir=.libs | lt_cv_path_LD=/usr/bin/ld | lt_cv_path_NM='/usr/bin/nm -B' | lt_cv_path_mainfest_tool=no | lt_cv_prog_compiler_c_o=yes | lt_cv_prog_compiler_c_o_RC=yes | lt_cv_prog_compiler_pic='-fPIC -DPIC' | lt_cv_prog_compiler_pic_works=yes | lt_cv_prog_compiler_rtti_exceptions=no | lt_cv_prog_compiler_static_works=yes | lt_cv_prog_gnu_ld=yes | lt_cv_sharedlib_from_linklib_cmd='printf %s\n' | lt_cv_shlibpath_overrides_runpath=yes | lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' | lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' | lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' | lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' | lt_cv_sys_global_symbol_to_import= | lt_cv_sys_max_cmd_len=1572864 | lt_cv_to_host_file_cmd=func_convert_file_noop | lt_cv_to_tool_file_cmd=func_convert_file_noop | lt_cv_truncate_bin='/bin/dd bs=4096 count=1' | pkg_cv_GMP_CFLAGS= | pkg_cv_GMP_LIBS=-lgmp | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | ACLOCAL='${SHELL} /home/michael/Downloads/gnucobol-3.1.2/build_aux/missing aclocal-1.16' | AMDEPBACKSLASH='\' | AMDEP_FALSE='#' | AMDEP_TRUE='' | AMTAR='$${TAR-tar}' | AM_BACKSLASH='\' | AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | AM_DEFAULT_VERBOSITY='1' | AM_V='$(V)' | AR='ar' | AS='as' | AUTOCONF='${SHELL} /home/michael/Downloads/gnucobol-3.1.2/build_aux/missing autoconf' | AUTOHEADER='${SHELL} /home/michael/Downloads/gnucobol-3.1.2/build_aux/missing autoheader' | AUTOMAKE='${SHELL} /home/michael/Downloads/gnucobol-3.1.2/build_aux/missing automake-1.16' | AWK='mawk' | CC='gcc' | CCDEPMODE='depmode=gcc3' | CFLAGS='-O2 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k' | CJSON_CFLAGS='' | CJSON_LIBS='-lcjson' | COB_BIGENDIAN='no' | COB_CC='gcc' | COB_CFLAGS=' -pipe -I /usr/local/include -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign' | COB_CONFIG_DIR='${datarootdir}/gnucobol/config' | COB_COPY_DIR='${datarootdir}/gnucobol/copy' | COB_EXE_EXT='' | COB_FIX_LIBTOOL='' | COB_HAS_64_BIT_POINTER='yes' | COB_HAS_CURSES='yes' | COB_HAS_ISAM='vbisam' | COB_HAS_JSON='no' | COB_HAS_XML2='no' | COB_LDFLAGS='-L/usr/local/lib -Wl,-rpath=/usr/local/lib' | COB_LIBRARY_PATH='${exec_prefix}/lib/gnucobol' | COB_LIBS='-L${exec_prefix}/lib -lcob -lm' | COB_MAKE_IX_FALSE='#' | COB_MAKE_IX_TRUE='' | COB_MAKE_RUN_BINARIES_FALSE='#' | COB_MAKE_RUN_BINARIES_TRUE='' | COB_MODULE_EXT='so' | COB_OBJECT_EXT='o' | COB_PATCH_LEVEL='0' | CODE_COVERAGE_CFLAGS='' | CODE_COVERAGE_CPPFLAGS='' | CODE_COVERAGE_CXXFLAGS='' | CODE_COVERAGE_ENABLED='no' | CODE_COVERAGE_ENABLED_FALSE='' | CODE_COVERAGE_ENABLED_TRUE='#' | CODE_COVERAGE_LIBS='' | CPP='gcc -E' | CPPFLAGS='-I /usr/local/include' | CYGPATH_W='echo' | DEFS='-DHAVE_CONFIG_H' | DEPDIR='.deps' | DIFF_FLAGS='--strip-trailing-cr' | DLLTOOL='false' | DSYMUTIL='' | DUMPBIN='' | ECHO_C='' | ECHO_N='-n' | ECHO_T='' | EGREP='/bin/grep -E' | EXEEXT='' | FGREP='/bin/grep -F' | GCOV='' | GENHTML='' | GETTEXT_MACRO_VERSION='0.20' | GMP_CFLAGS='' | GMP_LIBS='-lgmp' | GMSGFMT='/usr/bin/msgfmt' | GMSGFMT_015='/usr/bin/msgfmt' | GREP='/bin/grep' | HELP2MAN='${SHELL} /home/michael/Downloads/gnucobol-3.1.2/build_aux/missing help2man' | INSTALL_DATA='${INSTALL} -m 644' | INSTALL_PROGRAM='${INSTALL}' | INSTALL_SCRIPT='${INSTALL}' | INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' | INTLLIBS='' | INTL_MACOSX_LIBS='' | JSON_C_CFLAGS='' | JSON_C_LIBS='-ljson-c' | LCOV='' | LD='/usr/bin/ld -m elf_x86_64' | LDFLAGS='-L/usr/local/lib -Wl,-rpath=/usr/local/lib -Wl,-z,relro,-z,now,-O1' | LEX='${SHELL} /home/michael/Downloads/gnucobol-3.1.2/build_aux/missing flex' | LEXLIB='' | LEX_OUTPUT_ROOT='' | LIBCOB_CPPFLAGS='' | LIBCOB_LIBS='-lm -lgmp -lncursesw -lvbisam -ldl' | LIBICONV='-liconv' | LIBINTL='' | LIBOBJS='' | LIBS='' | LIBTOOL='$(SHELL) $(top_builddir)/libtool' | LIPO='' | LN_S='ln -s' | LOCAL_CJSON_FALSE='' | LOCAL_CJSON_TRUE='#' | LTLIBICONV='-liconv' | LTLIBINTL='' | LTLIBOBJS='' | LT_SYS_LIBRARY_PATH='' | MAKE='make' | MAKEINFO='${SHELL} /home/michael/Downloads/gnucobol-3.1.2/build_aux/missing makeinfo' | MAKE_HAS_PREREQ_ONLY_FALSE='#' | MAKE_HAS_PREREQ_ONLY_TRUE='' | MANIFEST_TOOL=':' | MKDIR_P='/bin/mkdir -p' | MPIR_CFLAGS='' | MPIR_LIBS='' | MSGFMT='/usr/bin/msgfmt' | MSGMERGE='/usr/bin/msgmerge' | MSGMERGE_FOR_MSGFMT_OPTION='--no-fuzzy-matching --no-location --quiet' | NM='/usr/bin/nm -B' | NMEDIT='' | OBJDUMP='objdump' | OBJEXT='o' | OTOOL64='' | OTOOL='' | PACKAGE='gnucobol' | PACKAGE_BUGREPORT='bug-gnucobol@gnu.org' | PACKAGE_NAME='GnuCOBOL' | PACKAGE_STRING='GnuCOBOL 3.1.2' | PACKAGE_TARNAME='gnucobol' | PACKAGE_URL='https://www.gnu.org/software/gnucobol/' | PACKAGE_VERSION='3.1.2' | PATH_SEPARATOR=':' | PKG_CONFIG='/usr/bin/pkg-config' | PKG_CONFIG_LIBDIR='' | PKG_CONFIG_PATH='' | POSUB='po' | PROGRAMS_LIBS='' | RANLIB='ranlib' | RC='' | SED='/bin/sed' | SET_MAKE='' | SHELL='/bin/bash' | STRIP='strip' | USE_NLS='yes' | VERSION='3.1.2' | XGETTEXT='/usr/bin/xgettext' | XGETTEXT_015='/usr/bin/xgettext' | XGETTEXT_EXTRA_OPTIONS='' | XML2_CFLAGS='' | XML2_LIBS='-lxml2' | YACC='yacc' | YFLAGS='' | ac_ct_AR='ar' | ac_ct_CC='gcc' | ac_ct_DUMPBIN='' | am__EXEEXT_FALSE='' | am__EXEEXT_TRUE='#' | am__fastdepCC_FALSE='#' | am__fastdepCC_TRUE='' | am__include='include' | am__isrc='' | am__leading_dot='.' | am__nodep='_no' | am__quote='' | am__tar='$${TAR-tar} chof - "$$tardir"' | am__untar='$${TAR-tar} xf -' | bindir='${exec_prefix}/bin' | build='x86_64-pc-linux-gnu' | build_alias='' | build_cpu='x86_64' | build_os='linux-gnu' | build_vendor='pc' | configured_make='make' | datadir='${datarootdir}' | datarootdir='${prefix}/share' | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' | dvidir='${docdir}' | exec_prefix='${prefix}' | host='x86_64-pc-linux-gnu' | host_alias='' | host_cpu='x86_64' | host_os='linux-gnu' | host_vendor='pc' | htmldir='${docdir}' | ifGNUmake='' | ifnGNUmake='' | includedir='${prefix}/include' | infodir='${datarootdir}/info' | install_sh='${SHELL} /home/michael/Downloads/gnucobol-3.1.2/build_aux/install-sh' | libdir='${exec_prefix}/lib' | libexecdir='${exec_prefix}/libexec' | localedir='${datarootdir}/locale' | localstatedir='${prefix}/var' | mandir='${datarootdir}/man' | mkdir_p='$(MKDIR_P)' | oldincludedir='/usr/include' | pdfdir='${docdir}' | prefix='/usr/local' | program_transform_name='s,x,x,' | psdir='${docdir}' | runstatedir='${localstatedir}/run' | sbindir='${exec_prefix}/sbin' | sharedstatedir='${prefix}/com' | sysconfdir='${prefix}/etc' | target_alias='' | xml2_config_found='' | | ## ----------- ## | ## confdefs.h. ## | ## ----------- ## | | /* confdefs.h */ | #define PACKAGE_NAME "GnuCOBOL" | #define PACKAGE_TARNAME "gnucobol" | #define PACKAGE_VERSION "3.1.2" | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | #define PACKAGE "gnucobol" | #define VERSION "3.1.2" | #define PATCH_LEVEL 0 | #define MAX_CALL_FIELD_PARAMS 192 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define STDC_HEADERS 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_DLFCN_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SIG_ATOMIC_T 1 | #define COB_KEYWORD_INLINE __inline | #define HAVE_VPRINTF 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETLOCALE 1 | #define HAVE_FCNTL 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_LOCALECONV 1 | #define HAVE_CANONICALIZE_FILE_NAME 1 | #define HAVE_POPEN 1 | #define HAVE_RAISE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_SETENV 1 | #define HAVE_STRCOLL 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_TIMEZONE 1 | #define HAVE_DESIGNATED_INITS 1 | #define HAVE_GMP_H 1 | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | #define WITH_JSON "not found" | #define WITH_VARSEQ 0 | #define HAVE_NANO_SLEEP 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_ISFINITE 1 | #define HAVE_FDATASYNC 1 | #define HAVE_SIGACTION 1 | #define HAVE_FMEMOPEN 1 | #define HAVE_DECL_FDATASYNC 1 | #define HAVE_DECL_FMEMOPEN 1 | #define HAVE_LIBNCURSESW 1 | #define HAVE_NCURSESW_NCURSES_H 1 | #define WITH_CURSES "ncursesw" | #define HAVE_CURSES_FREEALL 1 | #define HAVE_USE_LEGACY_CODING 1 | #define HAVE_COLOR_SET 1 | #define HAVE_DEFINE_KEY 1 | #define HAVE_MOUSEINTERVAL 1 | #define HAVE_HAS_MOUSE 1 | #define HAVE_VBISAM_H 1 | #define WITH_VBISAM 1 | #define USE_LIBDL 1 | #define HAVE_DLADDR 1 | #define COB_COMPUTED_GOTO 1 | #define COB_LI_IS_LL 1 | #define COB_64_BIT_POINTER 1 | #define HAVE_ATTRIBUTE_ALIGNED 1 | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_LANGINFO_CODESET 1 | #define COB_CC "gcc" | #define COB_CFLAGS "-pipe -I /usr/local/include -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign" | #define COB_LDFLAGS "-L/usr/local/lib -Wl,-rpath=/usr/local/lib" | #define COB_LIBS "-L/usr/local/lib -lcob -lm" | #define COB_PIC_FLAGS "-fPIC -DPIC" | #define COB_DEBUG_FLAGS "-ggdb3 -fasynchronous-unwind-tables" | #define COB_EXPORT_DYN "-Wl,--export-dynamic" | #define COB_SHARED_OPT "-shared" | #define COB_MODULE_EXT "so" | #define COB_OBJECT_EXT "o" | #define COB_EXE_EXT "" | #define COB_LIBRARY_PATH "/usr/local/lib/gnucobol" | #define COB_STRIP_CMD "strip --strip-unneeded" | #define COB_CONFIG_DIR "/usr/local/share/gnucobol/config" | #define COB_COPY_DIR "/usr/local/share/gnucobol/copy" | #define COBCRUN_NAME "cobcrun" | #define COB_BLD_CC "gcc" | #define COB_BLD_CFLAGS "-O2 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k" | #define COB_BLD_CPPFLAGS "-I /usr/local/include" | #define COB_BLD_LD "/usr/bin/ld -m elf_x86_64" | #define COB_BLD_LDFLAGS "-L/usr/local/lib -Wl,-rpath=/usr/local/lib -Wl,-z,relro,-z,now,-O1" | #define COB_BLD_BUILD "x86_64-pc-linux-gnu" | | configure: exit 0