## -------------------------------------------------- ## ## GnuCOBOL 3.2-early-dev test suite: GnuCOBOL Tests. ## ## -------------------------------------------------- ## testsuite: command line was: $ ./testsuite ## ---------- ## ## ChangeLog. ## ## ---------- ## | | 2019-12-01 Simon Sobisch | | * configure.ac: new options --with-indexed=odbc/oci, supporting | ODBC_CFLAGS ODBC_LIBS OCI_CFLAGS OCI_LIBS | | 2019-10-24 Ron Norman | | * configure.ac: The -with-indexed now check that the handler had | also been include via -with-db|lmdb|cisam|disam|vbisam ## --------- ## ## Platform. ## ## --------- ## hostname = muskat.skogtun.org uname -m = x86_64 uname -r = 5.5.0-rc3_muskat uname -s = Linux uname -v = #7 SMP PREEMPT Wed Dec 25 17:19:28 CET 2019 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = x86_64 /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/harald/src/gnucobol/trunk/tests PATH: /home/harald/src/gnucobol/trunk/libcob/.libs PATH: /home/harald/src/gnucobol/trunk/cobc PATH: /home/harald/src/gnucobol/trunk/bin PATH: /home/harald/bin PATH: /opt/bin PATH: /usr/local/bin PATH: /usr/bin PATH: /bin PATH: /usr/local/sbin PATH: /usr/sbin PATH: /sbin PATH: /usr/games PATH: /usr/local/games 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/harald/src/gnucobol/trunk/tests' | at_srcdir='.' | abs_srcdir='/home/harald/src/gnucobol/trunk/tests' | at_top_srcdir='..' | abs_top_srcdir='/home/harald/src/gnucobol/trunk' | at_top_build_prefix='../' | abs_top_builddir='/home/harald/src/gnucobol/trunk' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/sh'} testsuite: atlocal: | # | # atlocal gnucobol/tests | # | # Copyright (C) 2003-2012, 2014-2019 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 . | | if test "$GNUCOBOL_ENV_SETUP" != "1" -a "$GNUCOBOL_TEST_LOCAL" != "1"; then | ABS_COBC="${abs_top_builddir}/cobc/cobc" | ABS_COBCRUN="${abs_top_builddir}/bin/cobcrun" | # prepend PATH with the actual binaries to let the testsuite find them for | # general check and version output, nomally not needed | PATH="${abs_top_builddir}/libcob/.libs:${abs_top_builddir}/cobc:${abs_top_builddir}/bin:${PATH}" | export PATH | fi | COBC="cobc" | COBCRUN="cobcrun" | COBCRUN_DIRECT="" # used for running created executables through tools | | # be sure to use the English messages | LC_ALL=C | export LC_ALL | | | TEMPLATE="${abs_srcdir}/testsuite.src" | | FLAGS="-debug -Wall ${COBOL_FLAGS}" | 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 | _unset_option () { | if test "$1" != "COB_CONFIG_DIR" \ | -a "$1" != "COB_RUNTIME_CONFIG"; then | unset $1 | fi | } | | # 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 `"${abs_top_builddir}/pre-inst-env" cobcrun --runtime-conf | grep COB_ | cut -d: -f2 | cut -d= -f1`; \ | do _unset_option $cobenv; \ | done | | # different flags checked in the testsuite | COB_UNIX_LF=1 | export COB_UNIX_LF | | if test "$GNUCOBOL_TEST_LOCAL" != "1"; then | COB_OBJECT_EXT="o" | COB_EXE_EXT="" | COB_BIGENDIAN="no" | COB_HAS_ISAM="db" | COB_HAS_XML2="yes" | COB_HAS_CJSON="yes" | COB_HAS_CURSES="yes" | COB_HAS_64_BIT_POINTER="yes" | else | COB_OBJECT_EXT="$($COBC --info | grep COB_OBJECT_EXT | cut -d: -f2 | cut -b2-)" | COB_EXE_EXT="$($COBC --info | grep COB_EXE_EXT | cut -d: -f2 | cut -b2-)" | | COB_HAS_64_BIT_POINTER=`$COBCRUN --info | grep "64bit-mode" | cut -d: -f2 | cut -b2-` | if test $($COBC --info | grep -i -c "ISAM.*disabled") = 0; then | COB_HAS_ISAM="yes" | else | COB_HAS_ISAM="no" | fi | if test $($COBC --info | grep -i -c "XML library.*disabled") = 0; then | COB_HAS_XML2="yes" | else | COB_HAS_XML2="no" | fi | if test $($COBC --info | grep -i -c "JSON library.*disabled") = 0; then | COB_HAS_CJSON="yes" | else | COB_HAS_CJSON="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" (old PDcurses) and exit 127 (NCurses) | # --> disabling the tests for this feature | COB_HAS_CURSES="no" | fi | export COB_HAS_ISAM COB_HAS_XML2 COB_HAS_CJSON COB_HAS_CURSES COB_HAS_64_BIT_POINTER | export COBC COBCRUN COBCRUN_DIRECT RUN_PROG_MANUAL | export COB_OBJECT_EXT COB_EXE_EXT | | | # 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" | } | | # 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} -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign -pipe" | COB_LDFLAGS="" | COB_LIBS="-L${abs_top_builddir}/libcob/.libs -lcob -lm -lxml2 -lcjson -lgmp -lncurses -ldb-5.3 -ldl" | 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:$COB_LIBRARY_PATH" | | export COB_CFLAGS COB_LDFLAGS COB_LIBS | export COB_CONFIG_DIR COB_COPY_DIR | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH | export COB_LIBRARY_PATH | fi | | # Fix for testcases where cobc translates path to win32 equivalents | if test "x$MSYSTEM" != "x"; then | PATHSEP=";" | else | PATHSEP=':'; | fi | export PATHSEP | | # 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/harald/src/gnucobol/trunk/cobc/cobc --version cobc (GnuCOBOL) 3.2-early-dev.0 Copyright (C) 2019 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 Dec 29 2019 17:17:43 Packaged Dec 05 2019 15:14:56 UTC C version "9.2.0" ./testsuite.at:26: /home/harald/src/gnucobol/trunk/bin/cobcrun --version cobcrun (GnuCOBOL) 3.2-early-dev.0 Copyright (C) 2019 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 Dec 29 2019 17:17:40 Packaged Dec 05 2019 15:14:56 UTC libcob (GnuCOBOL) 3.2-early-dev.0 Copyright (C) 2019 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 Dec 29 2019 17:16:06 Packaged Dec 05 2019 15:14:56 UTC ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Sun Dec 29 17:33:17 CET 2019 1. Compiler help and information (used_binaries.at:27): ok (0m0.460000s 0m0.170000s) 2. Compiler outputs (general) (used_binaries.at:46): ok (0m1.700000s 0m0.380000s) 3. Compiler outputs (file specified) (used_binaries.at:86): ok (0m1.660000s 0m0.370000s) 4. Compiler outputs (path specified) (used_binaries.at:114): ok (0m1.700000s 0m0.350000s) 5. Compiler outputs (assembler) (used_binaries.at:143): ok (0m0.990000s 0m0.240000s) 6. Source file not found (used_binaries.at:178): ok (0m0.020000s 0m0.010000s) 7. Temporary path invalid (used_binaries.at:188): ok (0m1.200000s 0m0.190000s) 8. Using full path for cobc (used_binaries.at:223): ok (0m0.610000s 0m0.090000s) 9. C Compiler optimizations (used_binaries.at:241): ok (0m4.300000s 0m0.730000s) 10. Invalid cobc option (used_binaries.at:278): ok (0m0.060000s 0m0.040000s) 11. cobcrun help and information (used_binaries.at:302): ok (0m0.080000s 0m0.020000s) 12. cobcrun validation (used_binaries.at:312): ok (0m0.710000s 0m0.170000s) 13. cobcrun -M DSO entry argument (used_binaries.at:352): ok (0m0.760000s 0m0.150000s) 14. cobcrun -M directory/ default (used_binaries.at:412): ok (0m0.690000s 0m0.180000s) 15. cobcrun -M directory/dso alternate (used_binaries.at:451): ok (0m0.720000s 0m0.180000s) 16. cobcrun -M DSO entry multiple arguments (used_binaries.at:502): ok (0m0.500000s 0m0.160000s) 17. cobcrun error messages (used_binaries.at:547): ok (0m0.080000s 0m0.060000s) 18. Compile from stdin (used_binaries.at:570): ok (0m1.010000s 0m0.150000s) 19. Run job after compilation (used_binaries.at:591): ok (0m1.010000s 0m0.160000s) 20. Run job after compilation (path specified) (used_binaries.at:610): ok (0m0.970000s 0m0.200000s) 21. Run job with optional arguments (used_binaries.at:630): ok (0m1.600000s 0m0.300000s) 22. cobc with standard configuration file (configuration.at:22): ok (0m0.070000s 0m0.010000s) 23. cobc dialect features for all -std (configuration.at:43): ok (0m1.300000s 0m0.290000s) 24. cobc with configuration file via -std (configuration.at:101): ok (0m0.040000s 0m0.010000s) 25. cobc with standard configuration file via -conf (configuration.at:122): ok (0m0.030000s 0m0.020000s) 26. cobc with own configuration file via -conf (configuration.at:143): ok (0m0.130000s 0m0.040000s) 27. cobc configuration: recursive include (configuration.at:172): ok (0m0.010000s 0m0.020000s) 28. cobc with -std and -conf (configuration.at:210): ok (0m0.120000s 0m0.020000s) 29. cobc compiler flag on command line (configuration.at:237): ok (0m0.060000s 0m0.010000s) 30. cobc compiler flag on command line (priority) (configuration.at:256): ok (0m0.210000s 0m0.040000s) 31. cobc configuration: entries (configuration.at:289): ok (0m0.190000s 0m0.080000s) 32. cobc configuration: conf missing (configuration.at:336): ok (0m0.050000s 0m0.060000s) 33. cobc configuration: conf optional (configuration.at:364): ok (0m0.120000s 0m0.050000s) 34. cobc configuration: incomplete (configuration.at:400): ok (0m0.020000s 0m0.020000s) 35. runtime configuration (configuration.at:518): ok (0m0.060000s 0m0.050000s) 36. runtime configuration file (configuration.at:537): ok (0m0.150000s 0m0.140000s) 37. runtime configuration: recursive include (configuration.at:580): ok (0m0.010000s 0m0.020000s) 38. runtime configuration: environment priority (configuration.at:609): ok (0m0.030000s 0m0.010000s) 39. runtime configuration: entries (configuration.at:622): ok (0m0.020000s 0m0.010000s) 40. runtime configuration: conf missing (configuration.at:703): ok (0m0.060000s 0m0.050000s) 41. runtime configuration: conf optional (configuration.at:732): ok (0m0.010000s 0m0.020000s) 42. runtime configuration: strings and environment (configuration.at:745): ok (0m0.040000s 0m0.040000s) 43. validation of COB_CONFIG_DIR (configuration.at:757): ok (0m0.020000s 0m0.010000s) 44. COPY: within comment (syn_copy.at:21): ok (0m0.120000s 0m0.040000s) 45. COPY: file not found (syn_copy.at:50): ok (0m0.280000s 0m0.070000s) 46. COPY: recursive (syn_copy.at:106): ok (0m0.080000s 0m0.010000s) 47. COPY: replacement order (syn_copy.at:146): ok (0m0.600000s 0m0.100000s) 48. COPY: separators (syn_copy.at:173): ok (0m0.610000s 0m0.100000s) 49. COPY: partial replacement (syn_copy.at:202): ok (0m0.600000s 0m0.100000s) 50. COPY: LEADING replacement (syn_copy.at:232): ok (0m0.610000s 0m0.090000s) 51. COPY: TRAILING replacement (syn_copy.at:262): ok (0m0.610000s 0m0.090000s) 52. COPY: recursive replacement (syn_copy.at:292): ok (0m0.610000s 0m0.100000s) 53. COPY: fixed/free format (syn_copy.at:322): ok (0m0.610000s 0m0.090000s) 54. Invalid source name (syn_definition.at:25): ok (0m0.020000s 0m0.010000s) 55. Invalid PROGRAM-ID (syn_definition.at:37): ok (0m0.060000s 0m0.020000s) 56. Invalid PROGRAM-ID type clause (1) (syn_definition.at:54): ok (0m0.070000s 0m0.010000s) 57. invalid PROGRAM-ID type clause (2) (syn_definition.at:71): ok (0m0.060000s 0m0.020000s) 58. INITIAL / RECURSIVE before COMMON (syn_definition.at:88): ok (0m0.060000s 0m0.020000s) 59. Undefined data name (syn_definition.at:120): ok (0m0.060000s 0m0.020000s) 60. Undefined group name (syn_definition.at:139): ok (0m0.070000s 0m0.010000s) 61. Undefined data name in group (syn_definition.at:161): ok (0m0.070000s 0m0.010000s) 62. Reference not a group name (syn_definition.at:185): ok (0m0.060000s 0m0.020000s) 63. Incomplete 01 definition (syn_definition.at:207): ok (0m0.070000s 0m0.020000s) 64. error handling in conditions (syn_definition.at:225): ok (0m0.070000s 0m0.010000s) 65. Same labels in different sections (syn_definition.at:299): ok (0m0.070000s 0m0.010000s) 66. Redefinition of 01 items (syn_definition.at:324): ok (0m0.150000s 0m0.010000s) 67. Redefinition of 01 and 02 items (syn_definition.at:346): ok (0m0.070000s 0m0.010000s) 68. Redefinition of 02 items (syn_definition.at:366): ok (0m0.070000s 0m0.010000s) 69. Redefinition of 77 items (syn_definition.at:387): ok (0m0.070000s 0m0.010000s) 70. Redefinition of 01 and 77 items (syn_definition.at:407): ok (0m0.060000s 0m0.020000s) 71. Redefinition of 88 items (syn_definition.at:427): ok (0m0.070000s 0m0.020000s) 72. Redefinition of program-name by other programs (syn_definition.at:448): ok (0m0.130000s 0m0.040000s) 73. Redefinition of program-name within program (syn_definition.at:528): ok (0m0.130000s 0m0.040000s) 74. Redefinition of function-prototype name (syn_definition.at:558): ok (0m0.050000s 0m0.030000s) 75. PROCEDURE DIVISION RETURNING OMITTED: main (syn_definition.at:583): ok (0m0.390000s 0m0.100000s) 76. PROCEDURE DIVISION RETURNING OMITTED: FUNCTION (syn_definition.at:603): ok (0m0.070000s 0m0.010000s) 77. PROCEDURE DIVISION RETURNING item (syn_definition.at:622): ok (0m0.360000s 0m0.080000s) 78. Data item with same name as program-name (syn_definition.at:717): ok (0m0.070000s 0m0.000000s) 79. Ambiguous reference to 02 items (syn_definition.at:744): ok (0m0.070000s 0m0.010000s) 80. Ambiguous reference to 02 and 03 items (syn_definition.at:771): ok (0m0.070000s 0m0.010000s) 81. Ambiguous reference with qualification (syn_definition.at:797): ok (0m0.070000s 0m0.010000s) 82. Unique reference with ambiguous qualifiers (syn_definition.at:826): ok (0m0.070000s 0m0.010000s) 83. SYNCHRONIZED clause (syn_definition.at:851): ok (0m0.060000s 0m0.020000s) 84. Undefined procedure name (syn_definition.at:893): ok (0m0.060000s 0m0.020000s) 85. Redefinition of section names (syn_definition.at:913): ok (0m0.060000s 0m0.020000s) 86. Redefinition of section and paragraph names (syn_definition.at:938): ok (0m0.070000s 0m0.010000s) 88. Redefinition of paragraph names (syn_definition.at:1001): ok (0m0.060000s 0m0.010000s) 89. Ambiguous reference to paragraph name (syn_definition.at:1027): ok (0m0.070000s 0m0.010000s) 90. Non-matching level numbers (extension) (syn_definition.at:1053): ok (0m0.060000s 0m0.020000s) 91. CALL BY VALUE alphanumeric item (extension) (syn_definition.at:1077): ok (0m0.060000s 0m0.020000s) 92. CALL BY VALUE national item (extension) (syn_definition.at:1099): ok (0m0.070000s 0m0.010000s) 93. CALL BY VALUE figurative constants (syn_definition.at:1122): ok (0m0.070000s 0m0.010000s) 94. Duplicate identification division header (syn_definition.at:1156): ok (0m0.070000s 0m0.010000s) 95. RETURNING in STOP RUN / GOBACK / EXIT PROGRAM (syn_definition.at:1171): ok (0m1.040000s 0m0.240000s) 96. Invalid ENVIRONMENT DIVISION order (syn_definition.at:1222): ok (0m0.070000s 0m0.010000s) 97. Function without END FUNCTION (syn_definition.at:1247): ok (0m0.070000s 0m0.010000s) 98. Nested programs without END PROGRAM (syn_definition.at:1261): ok (0m0.070000s 0m0.000000s) 99. Nested programs not in procedure division (syn_definition.at:1283): ok (0m0.060000s 0m0.020000s) 100. Screen section starts with 78-level (syn_definition.at:1302): ok (0m0.060000s 0m0.020000s) 101. Invalid PICTURE strings (syn_definition.at:1318): ok (0m0.110000s 0m0.030000s) 102. PICTURE strings invalid with BLANK WHEN ZERO (syn_definition.at:1578): ok (0m0.060000s 0m0.020000s) 103. PICTURE strings invalid with USAGE (syn_definition.at:1601): ok (0m0.070000s 0m0.010000s) 104. ALPHABET definition (syn_definition.at:1621): ok (0m0.060000s 0m0.020000s) 105. PROGRAM COLLATING SEQUENCE (syn_definition.at:1644): ok (0m0.220000s 0m0.050000s) 106. RENAMES item (syn_definition.at:1827): ok (0m0.030000s 0m0.020000s) 107. RENAMES of 01-, 66- and 77-level items (syn_definition.at:1894): ok (0m0.090000s 0m0.040000s) 108. APPLY COMMIT clause (syn_definition.at:1920): ok (0m0.070000s 0m0.010000s) 109. Non-numeric subscript (syn_subscripts.at:23): ok (0m0.070000s 0m0.010000s) 110. Subscript range check (syn_subscripts.at:50): ok (0m0.070000s 0m0.010000s) 111. Subscript bounds with OCCURS DEPENDING ON (syn_subscripts.at:91): ok (0m0.070000s 0m0.010000s) 112. Subscripted item requires OCCURS clause (syn_subscripts.at:118): ok (0m0.070000s 0m0.010000s) 113. Number of subscripts (syn_subscripts.at:144): ok (0m0.140000s 0m0.030000s) 114. OCCURS with level 01 and 77 (syn_occurs.at:29): ok (0m0.170000s 0m0.050000s) 115. OCCURS with level 66 (syn_occurs.at:84): ok (0m0.070000s 0m0.010000s) 116. OCCURS with level 78 (syn_occurs.at:103): ok (0m0.070000s 0m0.010000s) 117. OCCURS with level 88 (syn_occurs.at:121): ok (0m0.070000s 0m0.010000s) 118. OCCURS with variable-occurrence data item (syn_occurs.at:141): ok (0m0.290000s 0m0.050000s) 119. OCCURS data-items for INDEXED and KEY (syn_occurs.at:189): ok (0m0.060000s 0m0.020000s) 120. Nested OCCURS clause (syn_occurs.at:229): ok (0m0.070000s 0m0.010000s) 121. OCCURS DEPENDING with wrong size (syn_occurs.at:266): ok (0m0.050000s 0m0.030000s) 122. OCCURS DEPENDING followed by another field (syn_occurs.at:305): ok (0m0.130000s 0m0.030000s) 123. OCCURS with unmatched DEPENDING / TO phrases (syn_occurs.at:347): ok (0m0.170000s 0m0.060000s) 124. OCCURS INDEXED before KEY (syn_occurs.at:390): ok (0m0.140000s 0m0.030000s) 125. OCCURS size check (syn_occurs.at:428): ok (0m0.150000s 0m0.020000s) 126. ODO not Fixed Loc (syn_occurs.at:454): ok (0m0.240000s 0m0.030000s) 127. REDEFINES: not following entry-name (syn_redefines.at:28): ok (0m0.150000s 0m0.020000s) 128. REDEFINES: level 02 by 01 (syn_redefines.at:53): ok (0m0.070000s 0m0.010000s) 129. REDEFINES: level 03 by 02 (syn_redefines.at:74): ok (0m0.060000s 0m0.010000s) 130. REDEFINES: level 66 (syn_redefines.at:96): ok (0m0.060000s 0m0.010000s) 131. REDEFINES: level 88 (syn_redefines.at:118): ok (0m0.060000s 0m0.020000s) 132. REDEFINES: lower level number (syn_redefines.at:147): ok (0m0.060000s 0m0.020000s) 133. REDEFINES: with OCCURS (syn_redefines.at:173): ok (0m0.070000s 0m0.000000s) 134. REDEFINES: with subscript (syn_redefines.at:194): ok (0m0.060000s 0m0.020000s) 135. REDEFINES: with variable occurrence (syn_redefines.at:216): ok (0m0.070000s 0m0.010000s) 136. REDEFINES: with qualification (syn_redefines.at:251): ok (0m0.070000s 0m0.010000s) 137. REDEFINES: multiple redefinition (syn_redefines.at:277): ok (0m0.170000s 0m0.030000s) 138. REDEFINES: size exceeds (syn_redefines.at:305): ok (0m0.070000s 0m0.010000s) 139. REDEFINES: with VALUE (syn_redefines.at:338): ok (0m0.660000s 0m0.110000s) 140. REDEFINES: with intervention (syn_redefines.at:370): ok (0m0.070000s 0m0.010000s) 141. REDEFINES: within REDEFINES (syn_redefines.at:399): ok (0m0.060000s 0m0.020000s) 142. REDEFINES: non-referenced ambiguous item (syn_redefines.at:419): ok (0m0.070000s 0m0.010000s) 143. Numeric item (integer) (syn_value.at:43): ok (0m0.070000s 0m0.010000s) 144. Numeric item (non-integer) (syn_value.at:70): ok (0m0.070000s 0m0.010000s) 145. Numeric item with picture P (syn_value.at:94): ok (0m0.070000s 0m0.010000s) 146. Signed numeric literal (syn_value.at:126): ok (0m0.070000s 0m0.010000s) 147. Alphabetic item (syn_value.at:152): ok (0m0.060000s 0m0.020000s) 148. Alphanumeric item (syn_value.at:179): ok (0m0.060000s 0m0.020000s) 149. Alphanumeric group item (syn_value.at:204): ok (0m0.070000s 0m0.010000s) 150. Numeric-edited item (syn_value.at:239): ok (0m0.210000s 0m0.060000s) 151. Alphanumeric-edited item (syn_value.at:272): ok (0m0.070000s 0m0.010000s) 152. Implicit picture from value (syn_value.at:340): ok (0m0.120000s 0m0.040000s) 153. Missing SELECT (syn_file.at:22): ok (0m0.070000s 0m0.010000s) 154. Duplicated SELECT (syn_file.at:49): ok (0m0.080000s 0m0.000000s) 155. Missing FD (syn_file.at:80): ok (0m0.060000s 0m0.020000s) 156. Duplicated FD (syn_file.at:106): ok (0m0.070000s 0m0.010000s) 157. ASSIGN to device-name (syn_file.at:135): ok (0m0.410000s 0m0.040000s) 158. ASSIGN to printer-name (syn_file.at:202): ok (0m0.400000s 0m0.050000s) 159. ASSIGN to lsq-device-name (syn_file.at:269): ok (0m0.130000s 0m0.010000s) 160. SELECT without ASSIGN (syn_file.at:324): ok (0m0.060000s 0m0.020000s) 161. START on SEQUENTIAL file (syn_file.at:352): ok (0m0.060000s 0m0.020000s) 162. OPEN SEQUENTIAL file REVERSED (syn_file.at:389): ok (0m0.140000s 0m0.020000s) 163. OPEN SEQUENTIAL file NO REWIND (syn_file.at:437): ok (0m0.070000s 0m0.010000s) 164. valid key items (syn_file.at:476): ok (0m0.070000s 0m0.010000s) 165. INDEXED file invalid key items (syn_file.at:526): ok (0m0.060000s 0m0.020000s) 166. variable record length (syn_file.at:590): ok (0m0.320000s 0m0.080000s) 167. variable record length DEPENDING item (syn_file.at:701): ok (0m0.130000s 0m0.040000s) 168. DECLARATIVES invalid procedure reference (1) (syn_file.at:775): ok (0m0.290000s 0m0.080000s) 169. DECLARATIVES invalid procedure reference (2) (syn_file.at:864): ok (0m0.070000s 0m0.010000s) 170. EXTERNAL file (syn_file.at:905): ok (0m0.060000s 0m0.010000s) 171. RECORDING MODE (syn_file.at:933): ok (0m0.060000s 0m0.020000s) 172. CODE-SET clause (syn_file.at:962): ok (0m0.070000s 0m0.010000s) 173. CODE-SET FOR clause (syn_file.at:998): ok (0m0.060000s 0m0.020000s) 174. WRITE / REWRITE FROM clause and FILE (syn_file.at:1032): ok (0m0.070000s 0m0.010000s) 175. Clauses following invalid ACCESS clause (syn_file.at:1093): ok (0m0.060000s 0m0.010000s) 176. RELATIVE KEY type checks (syn_file.at:1118): ok (0m0.060000s 0m0.020000s) 177. Mismatched KEY clause (syn_file.at:1178): ok (0m0.070000s 0m0.010000s) 178. RECORD DELIMITER (syn_file.at:1205): ok (0m0.070000s 0m0.010000s) 179. FILE STATUS (syn_file.at:1317): ok (0m0.170000s 0m0.050000s) 180. INDEXED file PASSWORD clause (syn_file.at:1367): ok (0m0.070000s 0m0.010000s) 181. RECORD clause equal limits (syn_file.at:1418): ok (0m0.070000s 0m0.010000s) 182. FILE ... FROM literal (syn_file.at:1458): ok (0m0.190000s 0m0.050000s) 183. WRITE / REWRITE on LINE SEQUENTIAL files (syn_file.at:1517): ok (0m0.060000s 0m0.020000s) 184. WRITE / REWRITE on REPORT files (syn_file.at:1552): ok (0m0.070000s 0m0.020000s) 185. SELECT without fd-name (syn_file.at:1589): ok (0m0.060000s 0m0.020000s) 186. Undeclared FILE-ID variable (syn_file.at:1608): ok (0m0.060000s 0m0.020000s) 187. Undeclared FILE STATUS variable (syn_file.at:1633): ok (0m0.070000s 0m0.010000s) 190. OPEN I-O with LINE SEQUENTIAL (syn_file.at:1726): ok (0m0.070000s 0m0.010000s) 191. ACCESS RANDOM with ORG SEQUENTIAL (syn_file.at:1751): ok (0m0.070000s 0m0.010000s) 192. ALTERNATE RECORD KEY SUPPRESS WHEN (syn_file.at:1778): ok (0m0.130000s 0m0.000000s) 193. RECORD definition with SOURCE IS / = (syn_file.at:1823): ok (0m0.070000s 0m0.010000s) 196. SELECT/OPEN syntax extensions (syn_file.at:1938): ok (0m0.130000s 0m0.030000s) 197. GLOBAL FD nested progam (syn_file.at:2033): ok (0m0.580000s 0m0.100000s) 198. REPORT error/warning (syn_reportwriter.at:23): ok (0m0.060000s 0m0.020000s) 199. REPORT not positive integers in COL / LINE PLUS (syn_reportwriter.at:125): ok (0m0.120000s 0m0.010000s) 200. Missing DETAIL line (syn_reportwriter.at:178): ok (0m0.070000s 0m0.010000s) 201. REPORT LINE PLUS ZERO (syn_reportwriter.at:221): ok (0m0.070000s 0m0.010000s) 202. Incorrect REPORT NAME (syn_reportwriter.at:271): ok (0m0.080000s 0m0.040000s) 203. REPORT with PLUS RIGHT/CENTER (syn_reportwriter.at:388): ok (0m0.080000s 0m0.000000s) 204. PAGE LIMITS clause (syn_reportwriter.at:481): ok (0m0.070000s 0m0.020000s) 205. Report FD without period (syn_reportwriter.at:516): ok (0m0.070000s 0m0.010000s) 206. REPORT with unreferenced control field (syn_reportwriter.at:549): ok (0m0.600000s 0m0.090000s) 207. Incorrect USAGE clause (syn_reportwriter.at:577): ok (0m0.070000s 0m0.010000s) 208. valid reference modification (syn_refmod.at:25): ok (0m0.610000s 0m0.080000s) 209. Static out of bounds (syn_refmod.at:51): ok (0m0.030000s 0m0.020000s) 210. constant-folding out of bounds (syn_refmod.at:95): ok (0m0.140000s 0m0.020000s) 211. Reference Bounds check (syn_refmod.at:133): ok (0m0.030000s 0m0.020000s) 212. ambiguous AND/OR (syn_misc.at:23): ok (0m0.070000s 0m0.010000s) 213. warn constant expressions (syn_misc.at:54): ok (0m0.080000s 0m0.000000s) 214. warn literal size (syn_misc.at:87): ok (0m0.080000s 0m0.010000s) 215. warn literal size in constant expr. (level 88) (syn_misc.at:352): ok (0m0.070000s 0m0.010000s) 216. Invalid conditional expression (1) (syn_misc.at:402): ok (0m0.070000s 0m0.020000s) 217. Invalid conditional expression (2) (syn_misc.at:515): ok (0m0.070000s 0m0.010000s) 218. Invalid conditional expression (3) (syn_misc.at:571): ok (0m0.060000s 0m0.020000s) 219. Valid conditional expression (syn_misc.at:635): ok (0m0.130000s 0m0.040000s) 220. missing headers (syn_misc.at:668): ok (0m0.140000s 0m0.030000s) 221. one line program (syn_misc.at:718): ok (0m0.140000s 0m0.030000s) 222. empty program (syn_misc.at:737): ok (0m2.720000s 0m0.530000s) 223. INITIALIZE constant (syn_misc.at:783): ok (0m0.070000s 0m0.010000s) 224. CLASS duplicate values (syn_misc.at:810): ok (0m0.070000s 0m0.010000s) 225. INSPECT invalid size (syn_misc.at:843): ok (0m0.070000s 0m0.010000s) 226. INSPECT invalid target (syn_misc.at:884): ok (0m0.070000s 0m0.010000s) 227. INSPECT missing keyword (syn_misc.at:907): ok (0m0.060000s 0m0.020000s) 228. INSPECT repeated keywords (syn_misc.at:928): ok (0m0.060000s 0m0.020000s) 229. INSPECT incomplete clause (syn_misc.at:960): ok (0m0.070000s 0m0.010000s) 230. INSPECT multiple BEFORE/AFTER clauses (syn_misc.at:982): ok (0m0.070000s 0m0.010000s) 231. maximum data size (syn_misc.at:1005): ok (0m0.060000s 0m0.020000s) 232. unreachable statement (syn_misc.at:1034): ok (0m0.060000s 0m0.020000s) 233. CRT STATUS (syn_misc.at:1084): ok (0m0.140000s 0m0.030000s) 234. CURRENCY SIGN (syn_misc.at:1126): ok (0m0.490000s 0m0.130000s) 235. SWITCHES (syn_misc.at:1238): ok (0m0.130000s 0m0.030000s) 236. unexpected mnemonic-name location (syn_misc.at:1365): ok (0m0.060000s 0m0.020000s) 237. wrong device for mnemonic-name (syn_misc.at:1392): ok (0m0.070000s 0m0.010000s) 238. missing mnemonic-name declaration (syn_misc.at:1417): ok (0m0.060000s 0m0.020000s) 239. unknown device in dialect (syn_misc.at:1438): ok (0m0.150000s 0m0.020000s) 240. ACCEPT WITH ( NO ) UPDATE / DEFAULT (syn_misc.at:1468): ok (0m0.070000s 0m0.010000s) 241. ACCEPT WITH AUTO / TAB (syn_misc.at:1493): ok (0m0.060000s 0m0.020000s) 242. ACCEPT WITH LOWER / UPPER (syn_misc.at:1518): ok (0m0.060000s 0m0.010000s) 243. ACCEPT WITH SIZE (syn_misc.at:1540): ok (0m0.070000s 0m0.010000s) 244. DISPLAY WITH SIZE (syn_misc.at:1569): ok (0m0.070000s 0m0.010000s) 245. source text after program-text area (syn_misc.at:1594): ok (0m0.070000s 0m0.010000s) 246. line overflow in Fixed-form / Free-form (syn_misc.at:1615): ok (0m0.200000s 0m0.050000s) 247. continuation Indicator - too many lines (syn_misc.at:1663): ok (0m0.500000s 0m0.030000s) 248. continuation of COBOL words (syn_misc.at:2220): ok (0m0.110000s 0m0.030000s) 249. literal too long (syn_misc.at:2241): ok (0m0.390000s 0m0.090000s) 250. line and floating comments (syn_misc.at:2476): ok (0m2.930000s 0m0.440000s) 251. word length (syn_misc.at:2641): ok (0m0.500000s 0m0.120000s) 252. Segmentation Module (syn_misc.at:2804): ok (0m0.100000s 0m0.030000s) 253. ACCEPT FROM ESCAPE KEY (syn_misc.at:2896): ok (0m0.060000s 0m0.010000s) 254. Numeric literals (syn_misc.at:2921): ok (0m0.230000s 0m0.030000s) 255. floating-point literals (syn_misc.at:3100): ok (0m0.150000s 0m0.020000s) 256. X literals (syn_misc.at:3207): ok (0m0.060000s 0m0.020000s) 257. national literals (syn_misc.at:3234): ok (0m0.080000s 0m0.040000s) 258. NX literals (syn_misc.at:3272): ok (0m0.100000s 0m0.020000s) 259. binary literals (syn_misc.at:3310): ok (0m0.150000s 0m0.030000s) 260. binary-hexadecimal literals (syn_misc.at:3346): ok (0m0.100000s 0m0.030000s) 261. HP COBOL octal literals (syn_misc.at:3375): ok (0m0.100000s 0m0.030000s) 262. ACUCOBOL literals (syn_misc.at:3411): ok (0m0.170000s 0m0.030000s) 263. ACUCOBOL 32bit literal size (syn_misc.at:3473): skipped (syn_misc.at:3475) 264. ACUCOBOL USAGE FLOAT / DOUBLE (syn_misc.at:3504): ok (0m0.180000s 0m0.040000s) 265. ACUCOBOL USAGE HANDLE (syn_misc.at:3533): ok (0m0.100000s 0m0.030000s) 266. ACUCOBOL WINDOW statements (syn_misc.at:3642): ok (0m0.130000s 0m0.030000s) 267. ACUCOBOL GRAPHICAL controls (syn_misc.at:3727): ok (0m0.060000s 0m0.020000s) 268. DISPLAY MESSAGE BOX (syn_misc.at:3806): ok (0m0.060000s 0m0.010000s) 269. DISPLAY OMITTED (syn_misc.at:3849): ok (0m0.070000s 0m0.010000s) 270. CGI: EXTERNAL-FORM (syn_misc.at:3870): ok (0m0.060000s 0m0.020000s) 271. adding/removing reserved words (syn_misc.at:3925): ok (0m0.140000s 0m0.030000s) 272. adding aliases (syn_misc.at:3955): ok (0m0.270000s 0m0.070000s) 273. overriding default words (syn_misc.at:3989): ok (0m0.140000s 0m0.030000s) 274. complete specified word list (syn_misc.at:4019): ok (0m0.170000s 0m0.060000s) 275. ANY LENGTH item as BY VALUE formal parameter (syn_misc.at:4039): skipped (syn_misc.at:4041) 276. swapped SOURCE- and OBJECT-COMPUTER (syn_misc.at:4062): ok (0m0.200000s 0m0.040000s) 277. CONF. SECTION paragraphs in wrong order (syn_misc.at:4084): ok (0m0.230000s 0m0.060000s) 278. NOT ON EXCEPTION with STATIC CALL convention (syn_misc.at:4156): ok (0m0.270000s 0m0.070000s) 279. NOT ON EXCEPTION phrases before ON EXCEPTION (syn_misc.at:4204): ok (0m0.090000s 0m0.030000s) 280. wrong dialect hints (syn_misc.at:4268): ok (0m0.030000s 0m0.010000s) 281. redundant periods (syn_misc.at:4292): ok (0m0.060000s 0m0.020000s) 282. IF-ELSE statement list with invalid syntax (syn_misc.at:4322): ok (0m0.070000s 0m0.010000s) 283. EVALUATE statement with invalid syntax (syn_misc.at:4355): ok (0m0.060000s 0m0.020000s) 284. MF reserved word directives (syn_misc.at:4405): ok (0m0.060000s 0m0.020000s) 285. STRING / UNSTRING with invalid syntax (syn_misc.at:4461): ok (0m0.070000s 0m0.010000s) 286. use of program-prototypes (syn_misc.at:4526): ok (0m0.060000s 0m0.020000s) 287. invalid INSPECT/TRANSFORM operands (syn_misc.at:4553): ok (0m0.070000s 0m0.010000s) 288. SIGN clause checks (syn_misc.at:4597): ok (0m0.070000s 0m0.010000s) 289. conflicting entry conventions (syn_misc.at:4622): ok (0m0.210000s 0m0.050000s) 290. conflicting call conventions (syn_misc.at:4691): ok (0m0.100000s 0m0.020000s) 291. dangling LINKAGE items (syn_misc.at:4720): ok (0m0.070000s 0m0.010000s) 292. ADD / SUBTRACT TABLE (syn_misc.at:4776): ok (0m0.060000s 0m0.020000s) 293. USE FOR DEBUGGING invalid ref-mod / subscripts (syn_misc.at:4819): ok (0m0.070000s 0m0.010000s) 294. USE FOR DEBUGGING duplicate targets (syn_misc.at:4864): ok (0m0.080000s 0m0.010000s) 296. Empty PERFORM with DEBUGGING MODE (syn_misc.at:4985): ok (0m0.060000s 0m0.010000s) 297. whitespace handling (syn_misc.at:5013): ok (0m0.140000s 0m0.030000s) 298. STOP identifier (syn_misc.at:5101): ok (0m0.130000s 0m0.030000s) 299. 01 CONSTANT (syn_misc.at:5127): ok (0m0.290000s 0m0.060000s) 300. 78 VALUE (syn_misc.at:5175): ok (0m0.210000s 0m0.050000s) 301. level 78 NEXT / START OF (syn_misc.at:5217): ok (0m0.070000s 0m0.010000s) 302. SYMBOLIC CONSTANT (syn_misc.at:5276): ok (0m0.150000s 0m0.050000s) 303. Constant Expressions (1) (syn_misc.at:5325): ok (0m0.070000s 0m0.020000s) 304. Constant Expressions (2) (syn_misc.at:5450): ok (0m0.060000s 0m0.020000s) 305. Constant Expressions (3) (syn_misc.at:5506): ok (0m0.070000s 0m0.010000s) 306. Constant Expressions (4) (syn_misc.at:5555): ok (0m0.080000s 0m0.000000s) 307. Constant Expressions (5) (syn_misc.at:5588): ok (0m0.140000s 0m0.030000s) 308. Missing imperative statements (syn_misc.at:5688): ok (0m0.130000s 0m0.040000s) 310. CONSTANT LENGTH / BYTE-LENGTH (syn_misc.at:5818): ok (0m0.050000s 0m0.020000s) 311. ANY LENGTH/NUMERIC with incorrect PIC (syn_misc.at:5842): ok (0m0.070000s 0m0.010000s) 312. VOLATILE clause (syn_misc.at:5879): ok (0m0.070000s 0m0.010000s) 313. SET SOURCEFORMAT syntax checks (syn_misc.at:5922): ok (0m0.020000s 0m0.010000s) 314. WHEN-COMPILED register in dialect (syn_misc.at:5949): ok (0m0.470000s 0m0.110000s) 315. LIN / COL register (syn_misc.at:5975): ok (0m0.310000s 0m0.060000s) 316. tokens consisting of multiple words (syn_misc.at:6007): ok (0m0.060000s 0m0.010000s) 317. zero-length literals (syn_misc.at:6034): ok (0m0.130000s 0m0.040000s) 318. @OPTIONS parsing (syn_misc.at:6095): ok (0m0.070000s 0m0.010000s) 319. system routines with wrong number of parameters (syn_misc.at:6137): ok (0m0.060000s 0m0.020000s) 320. invalid use of condition-name (syn_misc.at:6166): ok (0m0.070000s 0m0.010000s) 321. XML GENERATE syntax checks (syn_misc.at:6230): ok (0m0.070000s 0m0.020000s) 322. IBM Data Division (syn_misc.at:6447): ok (0m0.210000s 0m0.050000s) 323. BASED clause, ALLOCATE / FREE statements (syn_misc.at:6526): ok (0m0.070000s 0m0.010000s) 324. CONTINUE statement (syn_misc.at:6584): ok (0m0.110000s 0m0.030000s) 325. conflict markers (syn_misc.at:6628): ok (0m0.150000s 0m0.020000s) 326. Group Usage Error (syn_misc.at:6686): ok (0m0.120000s 0m0.010000s) 327. OSVS I/O extensions (syn_misc.at:6728): ok (0m0.080000s 0m0.000000s) 328. very long literal in error message (syn_misc.at:6795): ok (0m0.060000s 0m0.020000s) 329. MOVE SPACE TO numeric or numeric-edited item (syn_move.at:37): ok (0m0.070000s 0m0.010000s) 330. MOVE ZERO TO alphabetic item (syn_move.at:63): ok (0m0.070000s 0m0.010000s) 331. MOVE alphabetic TO x (syn_move.at:89): ok (0m0.070000s 0m0.010000s) 332. MOVE alphanumeric TO x (syn_move.at:120): ok (0m0.070000s 0m0.010000s) 333. MOVE alphanumeric-edited TO x (syn_move.at:148): ok (0m0.070000s 0m0.010000s) 334. MOVE numeric (integer) TO x (syn_move.at:179): ok (0m0.060000s 0m0.020000s) 335. MOVE numeric (non-integer) TO x (syn_move.at:209): ok (0m0.060000s 0m0.020000s) 336. MOVE numeric-edited TO x (syn_move.at:241): ok (0m0.070000s 0m0.010000s) 337. CORRESPONDING - Operands must be groups (syn_move.at:276): ok (0m0.070000s 0m0.010000s) 338. CORRESPONDING - Target has no matching items (syn_move.at:306): ok (0m0.060000s 0m0.020000s) 339. MOVE to erroneous field (syn_move.at:332): ok (0m0.060000s 0m0.020000s) 340. Overlapping MOVE (syn_move.at:355): ok (0m1.890000s 0m0.350000s) 341. invalid source for MOVE (syn_move.at:454): ok (0m0.060000s 0m0.020000s) 342. invalid target for MOVE (syn_move.at:484): ok (0m0.070000s 0m0.010000s) 343. SET error (syn_move.at:520): ok (0m0.070000s 0m0.010000s) 344. MOVE FIGURATIVE to NUMERIC (syn_move.at:552): ok (0m0.340000s 0m0.060000s) 345. Category check of Format 1 (syn_multiply.at:28): ok (0m0.060000s 0m0.020000s) 346. Category check of Format 2 (syn_multiply.at:64): ok (0m0.070000s 0m0.010000s) 347. Category check of literals (syn_multiply.at:102): ok (0m0.060000s 0m0.020000s) 348. Flexible ACCEPT/DISPLAY syntax (syn_screen.at:24): ok (0m0.070000s 0m0.010000s) 349. Duplicate ACCEPT/DISPLAY clauses (syn_screen.at:92): ok (0m0.060000s 0m0.020000s) 350. AT clause (syn_screen.at:121): ok (0m0.070000s 0m0.020000s) 351. ACCEPT/DISPLAY extensions detection (syn_screen.at:165): ok (0m0.070000s 0m0.010000s) 352. FROM clause (syn_screen.at:211): ok (0m0.070000s 0m0.010000s) 353. Incorrect USAGE clause (syn_screen.at:237): ok (0m0.080000s 0m0.000000s) 354. SCREEN SECTION clause numbers (syn_screen.at:268): ok (0m0.070000s 0m0.010000s) 355. Screen clauses (syn_screen.at:300): ok (0m0.070000s 0m0.010000s) 356. ACCEPT ON EXCEPTION/ESCAPE (syn_screen.at:326): ok (0m0.070000s 0m0.010000s) 357. Referencing 88-level (syn_screen.at:356): ok (0m0.060000s 0m0.020000s) 358. Conflicting screen clauses (syn_screen.at:387): ok (0m0.150000s 0m0.020000s) 359. Redundant screen clauses (syn_screen.at:448): ok (0m0.060000s 0m0.020000s) 360. Screen item OCCURS w-/wo relative LINE/COL (syn_screen.at:481): ok (0m0.230000s 0m0.030000s) 361. VALUE clause missing (syn_screen.at:541): ok (0m0.070000s 0m0.010000s) 362. FULL on numeric item (syn_screen.at:565): ok (0m0.060000s 0m0.020000s) 363. Compiler-specific SCREEN SECTION clause rules (syn_screen.at:589): ok (0m0.420000s 0m0.110000s) 364. MS-COBOL position-spec (syn_screen.at:747): ok (0m0.130000s 0m0.030000s) 365. Screen with invalid FROM clause (syn_screen.at:799): ok (0m0.130000s 0m0.030000s) 366. SET ADDRESS OF item (syn_set.at:24): ok (0m0.060000s 0m0.020000s) 367. SET item TO 88-level (syn_set.at:53): ok (0m0.070000s 0m0.010000s) 368. ANY LENGTH / NUMERIC as function RETURNING item (syn_functions.at:22): ok (0m0.130000s 0m0.040000s) 369. REPOSITORY INTRINSIC phrase (syn_functions.at:64): ok (0m0.070000s 0m0.000000s) 370. REPOSITORY FUNCTION phrase (syn_functions.at:87): ok (0m0.060000s 0m0.010000s) 371. Redundant REPOSITORY entries (syn_functions.at:135): ok (0m0.070000s 0m0.010000s) 372. Missing prototype/definition (syn_functions.at:174): ok (0m0.060000s 0m0.020000s) 373. Empty function (syn_functions.at:205): ok (0m0.060000s 0m0.020000s) 374. Function definition inside program (syn_functions.at:232): ok (0m0.060000s 0m0.020000s) 375. Intrinsic functions: dialect (syn_functions.at:255): ok (0m0.110000s 0m0.040000s) 376. Intrinsic functions: replaced (syn_functions.at:280): ok (0m0.140000s 0m0.030000s) 377. Intrinsic functions: number of arguments (syn_functions.at:324): ok (0m0.070000s 0m0.010000s) 378. Intrinsic functions: reference modification (syn_functions.at:364): ok (0m0.060000s 0m0.020000s) 379. Intrinsic functions: Parameter type (syn_functions.at:412): ok (0m0.060000s 0m0.020000s) 380. invalid formatted date/time args (syn_functions.at:435): ok (0m0.060000s 0m0.020000s) 381. invalid formats w/ DECIMAL-POINT IS COMMA (syn_functions.at:516): ok (0m0.070000s 0m0.010000s) 382. Specified offset and SYSTEM-OFFSET (syn_functions.at:550): ok (0m0.070000s 0m0.010000s) 383. FUNCTION LENGTH / BYTE-LENGTH (syn_functions.at:574): ok (0m0.070000s 0m0.010000s) 384. Minimal lines per listing pages (listings.at:21): ok (0m0.530000s 0m0.060000s) 385. COPY within comment (listings.at:84): ok (0m0.180000s 0m0.050000s) 386. Replacement w/o strings (listings.at:158): ok (0m0.070000s 0m0.040000s) 387. COPY replacement order (listings.at:220): ok (0m0.180000s 0m0.090000s) 388. COPY separators (listings.at:321): ok (0m0.110000s 0m0.010000s) 389. COPY partial replacement (listings.at:386): ok (0m0.190000s 0m0.050000s) 390. COPY LEADING replacement (listings.at:600): ok (0m0.080000s 0m0.030000s) 391. COPY TRAILING replacement (listings.at:669): ok (0m0.080000s 0m0.030000s) 392. COPY recursive replacement (listings.at:739): ok (0m0.090000s 0m0.030000s) 393. COPY multiple files (listings.at:804): ok (0m0.090000s 0m0.040000s) 394. Error/Warning messages (listings.at:1018): ok (0m0.580000s 0m0.240000s) 395. Two source files (listings.at:1387): ok (0m0.080000s 0m0.040000s) 396. Multiple programs in one file (listings.at:1454): ok (0m1.670000s 0m0.300000s) 397. Multiple programs in one compilation group (listings.at:1667): ok (0m0.790000s 0m0.200000s) 398. Wide listing (listings.at:1850): ok (0m0.170000s 0m0.070000s) 399. Symbols: simple (listings.at:1936): ok (0m0.260000s 0m0.100000s) 400. Symbols: pointer (listings.at:2099): ok (0m0.090000s 0m0.030000s) 401. Symbols: multiple programs/functions (listings.at:2377): ok (0m0.090000s 0m0.030000s) 402. Symbols: OCCURS/REDEFINES (listings.at:2503): ok (0m0.100000s 0m0.020000s) 403. Conditional compilation (listings.at:2615): ok (0m0.090000s 0m0.030000s) 404. File descriptions (listings.at:2674): ok (0m0.080000s 0m0.040000s) 405. Invalid PICTURE strings (listings.at:3029): ok (0m0.090000s 0m0.040000s) 406. Variable format (listings.at:3532): ok (0m0.080000s 0m0.030000s) 407. LISTING directive (listings.at:3575): ok (0m0.080000s 0m0.040000s) 408. Listing-directive statements (listings.at:3675): ok (0m0.130000s 0m0.020000s) 409. Eject page (listings.at:3743): ok (0m0.340000s 0m0.140000s) 410. Cross reference (listings.at:3937): ok (0m0.210000s 0m0.090000s) 411. Report Writer (listings.at:5458): ok (0m0.080000s 0m0.040000s) 412. huge REPLACE (listings.at:5765): ok (0m0.190000s 0m0.070000s) 413. DISPLAY literals (run_fundamental.at:24): ok (0m0.620000s 0m0.090000s) 414. DISPLAY literals, DECIMAL-POINT is COMMA (run_fundamental.at:86): ok (0m0.610000s 0m0.100000s) 415. Hexadecimal literal (run_fundamental.at:125): ok (0m0.860000s 0m0.190000s) 416. DISPLAY data items with VALUE clause (run_fundamental.at:166): ok (0m0.600000s 0m0.110000s) 417. DISPLAY data items with MOVE statement (run_fundamental.at:213): ok (0m0.650000s 0m0.060000s) 418. MOVE to edited item (1) (run_fundamental.at:267): ok (0m0.610000s 0m0.100000s) 419. MOVE to edited item (2) (run_fundamental.at:316): ok (0m0.620000s 0m0.090000s) 420. MOVE to item with simple and floating insertion (run_fundamental.at:365): ok (0m0.620000s 0m0.090000s) 421. MOVE to JUSTIFIED item (run_fundamental.at:400): ok (0m0.650000s 0m0.060000s) 422. MOVE integer literal to alphanumeric (run_fundamental.at:445): ok (0m0.630000s 0m0.070000s) 423. Compare FLOAT-LONG with floating-point literal (run_fundamental.at:470): ok (0m0.620000s 0m0.090000s) 424. Check for equality of FLOAT-SHORT / FLOAT-LONG (run_fundamental.at:523): ok (0m0.640000s 0m0.100000s) 425. Overlapping MOVE (run_fundamental.at:646): ok (0m1.620000s 0m0.250000s) 426. Overlapping MOVE (run_fundamental.at:747): ok (0m0.620000s 0m0.100000s) 427. IBM MOVE (run_fundamental.at:789): ok (0m0.620000s 0m0.090000s) 428. ALPHABETIC test (run_fundamental.at:828): ok (0m0.600000s 0m0.100000s) 429. ALPHABETIC-UPPER test (run_fundamental.at:860): ok (0m0.620000s 0m0.080000s) 430. ALPHABETIC-LOWER test (run_fundamental.at:892): ok (0m0.600000s 0m0.100000s) 431. GLOBAL at same level (run_fundamental.at:924): ok (0m0.650000s 0m0.090000s) 432. GLOBAL at lower level (run_fundamental.at:973): ok (0m0.660000s 0m0.090000s) 433. GLOBAL CONSTANT (run_fundamental.at:1022): ok (0m0.660000s 0m0.100000s) 434. GLOBAL identifiers from ENVIRONMENT DIVISION (run_fundamental.at:1107): ok (0m0.710000s 0m0.120000s) 435. Entry point visibility (1) (run_fundamental.at:1188): ok (0m0.950000s 0m0.180000s) 436. Entry point visibility (2) (run_fundamental.at:1220): ok (0m0.880000s 0m0.160000s) 437. Contained program visibility (1) (run_fundamental.at:1254): ok (0m0.650000s 0m0.100000s) 438. Contained program visibility (2) (run_fundamental.at:1309): ok (0m0.690000s 0m0.060000s) 439. Contained program visibility (3) (run_fundamental.at:1362): ok (0m0.680000s 0m0.070000s) 440. Contained program visibility (4) (run_fundamental.at:1413): ok (0m0.690000s 0m0.080000s) 441. CALL/CANCEL with program-prototype-name (run_fundamental.at:1468): ok (0m0.690000s 0m0.080000s) 442. GLOBAL FD (RELATIVE 1) (run_fundamental.at:1541): ok (0m0.650000s 0m0.090000s) 443. GLOBAL FD (INDEXED 1) (run_fundamental.at:1592): ok (0m0.630000s 0m0.110000s) 444. GLOBAL FD (RELATIVE 2) (run_fundamental.at:1645): ok (0m0.630000s 0m0.100000s) 445. GLOBAL FD (INDEXED 2) (run_fundamental.at:1695): ok (0m0.640000s 0m0.090000s) 446. CANCEL test (1) (run_fundamental.at:1747): ok (0m0.620000s 0m0.100000s) 447. CANCEL test (2) (run_fundamental.at:1774): ok (0m0.930000s 0m0.210000s) 448. CANCEL test (3) (run_fundamental.at:1814): ok (0m0.990000s 0m0.170000s) 449. Separate sign positions (1) (run_fundamental.at:1857): ok (0m0.600000s 0m0.110000s) 450. Separate sign positions (2) (run_fundamental.at:1881): ok (0m0.990000s 0m0.180000s) 451. Context sensitive words (1) (run_fundamental.at:1914): ok (0m0.610000s 0m0.090000s) 452. Context sensitive words (2) (run_fundamental.at:1937): ok (0m0.610000s 0m0.090000s) 453. Context sensitive words (3) (run_fundamental.at:1961): ok (0m0.630000s 0m0.070000s) 454. Context sensitive words (4) (run_fundamental.at:1985): ok (0m0.610000s 0m0.090000s) 455. Context sensitive words (5) (run_fundamental.at:2010): ok (0m0.610000s 0m0.090000s) 456. Context sensitive words (6) (run_fundamental.at:2033): ok (0m0.600000s 0m0.100000s) 457. Context sensitive words (7) (run_fundamental.at:2055): ok (0m0.650000s 0m0.090000s) 458. Context sensitive words (8) (run_fundamental.at:2082): ok (0m0.590000s 0m0.080000s) 459. ROUNDED AWAY-FROM-ZERO (run_fundamental.at:2109): ok (0m0.630000s 0m0.120000s) 460. ROUNDED NEAREST-AWAY-FROM-ZERO (run_fundamental.at:2172): ok (0m0.670000s 0m0.080000s) 461. ROUNDED NEAREST-EVEN (run_fundamental.at:2235): ok (0m0.660000s 0m0.080000s) 462. ROUNDED NEAREST-TOWARD-ZERO (run_fundamental.at:2298): ok (0m0.650000s 0m0.100000s) 463. ROUNDED TOWARD-GREATER (run_fundamental.at:2361): ok (0m0.650000s 0m0.100000s) 464. ROUNDED TOWARD-LESSER (run_fundamental.at:2424): ok (0m0.650000s 0m0.090000s) 465. ROUNDED TRUNCATION (run_fundamental.at:2487): ok (0m0.660000s 0m0.080000s) 466. Numeric operations (1) (run_fundamental.at:2550): ok (0m0.610000s 0m0.100000s) 467. Numeric operations (2) (run_fundamental.at:2594): ok (0m0.730000s 0m0.120000s) 468. Numeric operations (3) (run_fundamental.at:2900): ok (0m0.780000s 0m0.090000s) 469. Numeric operations (4) (run_fundamental.at:3206): ok (0m0.760000s 0m0.100000s) 470. Numeric operations (5) (run_fundamental.at:3512): ok (0m0.770000s 0m0.100000s) 471. Numeric operations (6) (run_fundamental.at:3818): ok (0m0.910000s 0m0.170000s) 472. Numeric operations (7) (run_fundamental.at:3887): ok (0m0.650000s 0m0.090000s) 473. Numeric operations (8) (run_fundamental.at:4179): ok (0m0.640000s 0m0.110000s) 474. ADD CORRESPONDING (run_fundamental.at:4229): ok (0m0.600000s 0m0.120000s) 475. ADD CORRESPONDING no match (run_fundamental.at:4277): ok (0m0.610000s 0m0.100000s) 476. SYNC in OCCURS (run_fundamental.at:4327): ok (0m0.630000s 0m0.110000s) 477. 88 level with THRU (run_fundamental.at:4367): ok (0m0.660000s 0m0.080000s) 478. 88 level with FILLER (run_fundamental.at:4462): ok (0m0.590000s 0m0.110000s) 479. 88 level with FALSE IS clause (run_fundamental.at:4491): ok (0m0.600000s 0m0.100000s) 480. BLANK WHEN ZERO (run_fundamental.at:4519): ok (0m0.600000s 0m0.100000s) 481. MULTIPLY BY literal in INITIAL program (run_fundamental.at:4549): ok (0m0.660000s 0m0.070000s) 482. debugging lines (not active) (run_fundamental.at:4573): ok (0m0.590000s 0m0.110000s) 483. debugging lines (-fdebugging-line) (run_fundamental.at:4596): ok (0m0.610000s 0m0.090000s) 484. debugging lines (WITH DEBUGGING MODE) (run_fundamental.at:4619): ok (0m0.580000s 0m0.120000s) 485. debugging lines, free format (not active) (run_fundamental.at:4645): ok (0m0.610000s 0m0.090000s) 486. debugging lines, free format (-fdebugging-line) (run_fundamental.at:4668): ok (0m0.590000s 0m0.110000s) 487. USE FOR DEBUGGING (no DEBUGGING MODE) (run_fundamental.at:4691): ok (0m0.620000s 0m0.090000s) 488. USE FOR DEBUGGING (COB_SET_DEBUG deactivated) (run_fundamental.at:4736): ok (0m0.640000s 0m0.090000s) 489. USE FOR DEBUGGING ON ALL PROCEDURES (run_fundamental.at:4781): ok (0m0.640000s 0m0.090000s) 490. USE FOR DEBUGGING ON procedure (run_fundamental.at:4832): ok (0m0.620000s 0m0.110000s) 491. USE FOR DEBUGGING (COB_SET_DEBUG switched) (run_fundamental.at:4880): ok (0m0.650000s 0m0.080000s) 492. USE FOR DEBUGGING ON [ALL] REFERENCES OF field (run_fundamental.at:4929): ok (0m0.620000s 0m0.120000s) 493. USE FOR DEBUGGING, reference within DEBUGGING (run_fundamental.at:4997): ok (0m0.630000s 0m0.100000s) 495. USE FOR DEBUGGING, reference with OCCURS (run_fundamental.at:5088): ok (0m0.640000s 0m0.070000s) 497. USE FOR DEBUGGING file (run_fundamental.at:5158): ok (0m0.660000s 0m0.090000s) 498. Abbreviated Expressions (run_fundamental.at:5203): ok (0m0.670000s 0m0.110000s) 499. integer arithmetic on floating-point var (run_fundamental.at:5309): ok (0m0.620000s 0m0.090000s) 500. Subscript out of bounds (run_subscripts.at:26): ok (0m1.210000s 0m0.210000s) 501. Value of DEPENDING ON N out of bounds (run_subscripts.at:71): ok (0m1.210000s 0m0.220000s) 502. Subscript bounds with OCCURS DEPENDING ON (run_subscripts.at:122): ok (0m0.630000s 0m0.080000s) 503. Subscript by arithmetic expression (run_subscripts.at:148): ok (0m0.620000s 0m0.080000s) 504. length of ODO w/- reference modification (run_subscripts.at:179): ok (0m0.640000s 0m0.110000s) 505. SEARCH ALL with OCCURS DEPENDING ON (run_subscripts.at:235): ok (0m0.660000s 0m0.070000s) 506. Static reference modification (run_refmod.at:25): ok (0m0.620000s 0m0.090000s) 507. Dynamic reference modification (run_refmod.at:57): ok (0m0.600000s 0m0.110000s) 508. Offset underflow (run_refmod.at:94): ok (0m0.610000s 0m0.090000s) 509. Offset overflow (run_refmod.at:118): ok (0m1.860000s 0m0.270000s) 510. Length underflow (run_refmod.at:165): ok (0m0.600000s 0m0.100000s) 511. Length overflow (run_refmod.at:189): ok (0m1.220000s 0m0.200000s) 512. Length overflow with offset (run_refmod.at:231): ok (0m0.600000s 0m0.100000s) 513. Test Reference Modification (run_refmod.at:254): ok (0m0.720000s 0m0.110000s) 514. ACCEPT OMITTED (simple) (run_accept.at:28): ok (0m0.610000s 0m0.090000s) 515. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (1) (run_accept.at:54): ok (0m0.640000s 0m0.080000s) 516. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (2) (run_accept.at:121): ok (0m0.630000s 0m0.100000s) 517. ACCEPT DATE / DAY and intrinsic functions (1) (run_accept.at:204): ok (0m0.610000s 0m0.090000s) 518. ACCEPT DATE / DAY and intrinsic functions (2) (run_accept.at:241): ok (0m0.630000s 0m0.080000s) 519. ACCEPT OMITTED (SCREEN) (run_accept.at:286): ok (0m0.620000s 0m0.090000s) 520. INITIALIZE group entry with OCCURS (run_initialize.at:27): ok (0m0.610000s 0m0.100000s) 521. INITIALIZE OCCURS with numeric edited (run_initialize.at:55): ok (0m0.620000s 0m0.090000s) 522. INITIALIZE OCCURS with SIGN LEADING / TRAILING (run_initialize.at:88): ok (0m0.640000s 0m0.100000s) 523. INITIALIZE complex group (1) (run_initialize.at:159): ok (0m0.620000s 0m0.080000s) 524. INITIALIZE complex group (2) (run_initialize.at:187): ok (0m0.600000s 0m0.100000s) 525. INITIALIZE with REDEFINES (run_initialize.at:215): ok (0m0.610000s 0m0.080000s) 526. INITIALIZE with FILLER (run_initialize.at:242): ok (0m0.620000s 0m0.100000s) 527. INITIALIZE of EXTERNAL data items (run_initialize.at:309): ok (0m0.630000s 0m0.090000s) 528. INITIALIZE with reference modification (run_initialize.at:360): ok (0m0.600000s 0m0.100000s) 529. Comma separator without space (run_misc.at:23): ok (0m0.600000s 0m0.100000s) 530. DECIMAL-POINT is COMMA (1) (run_misc.at:44): ok (0m0.610000s 0m0.090000s) 531. DECIMAL-POINT is COMMA (2) (run_misc.at:72): ok (0m0.600000s 0m0.100000s) 532. DECIMAL-POINT is COMMA (3) (run_misc.at:100): ok (0m0.600000s 0m0.100000s) 533. DECIMAL-POINT is COMMA (4) (run_misc.at:128): ok (0m0.600000s 0m0.100000s) 534. DECIMAL-POINT is COMMA (5) (run_misc.at:156): ok (0m0.650000s 0m0.080000s) 535. CURRENCY SIGN (run_misc.at:190): ok (0m0.610000s 0m0.090000s) 537. LOCAL-STORAGE (1) (run_misc.at:268): ok (0m0.980000s 0m0.150000s) 538. LOCAL-STORAGE (2) (run_misc.at:304): ok (0m1.340000s 0m0.220000s) 539. EXTERNAL data item (run_misc.at:352): ok (0m0.920000s 0m0.200000s) 540. EXTERNAL AS data item (run_misc.at:394): ok (0m0.980000s 0m0.150000s) 542. MOVE to itself (run_misc.at:528): ok (0m0.610000s 0m0.100000s) 543. MOVE with refmod (run_misc.at:554): ok (0m0.620000s 0m0.080000s) 544. MOVE with refmod (variable) (run_misc.at:578): ok (0m0.610000s 0m0.100000s) 545. MOVE with group refmod (run_misc.at:604): ok (0m0.590000s 0m0.120000s) 546. MOVE indexes (run_misc.at:629): ok (0m0.620000s 0m0.080000s) 547. MOVE X'00' (run_misc.at:655): ok (0m0.880000s 0m0.170000s) 548. MOVE Z'literal' (run_misc.at:690): ok (0m0.610000s 0m0.090000s) 549. Floating continuation indicator (run_misc.at:732): ok (0m0.600000s 0m0.090000s) 550. Fixed continuation indicator (run_misc.at:754): ok (0m0.600000s 0m0.100000s) 551. Concatenation operator (run_misc.at:796): ok (0m0.600000s 0m0.100000s) 552. SOURCE FIXED/FREE directives (run_misc.at:820): ok (0m0.590000s 0m0.110000s) 553. Level 01 subscripts (run_misc.at:857): ok (0m0.030000s 0m0.020000s) 554. Class check with reference modification (run_misc.at:879): ok (0m0.600000s 0m0.100000s) 555. Index and parenthesized expression (run_misc.at:903): ok (0m0.630000s 0m0.070000s) 556. Alphanumeric and binary numeric (run_misc.at:927): ok (0m0.590000s 0m0.110000s) 557. Non-numeric data in numeric items (run_misc.at:952): ok (0m2.440000s 0m0.410000s) 558. Dynamic call with static linking (run_misc.at:1026): ok (0m1.540000s 0m0.250000s) 559. Static call with static linking (run_misc.at:1055): ok (0m2.180000s 0m0.430000s) 560. Dynamic CALL with ON EXCEPTION (run_misc.at:1086): ok (0m0.970000s 0m0.160000s) 561. Static CALL with ON EXCEPTION (run_misc.at:1118): ok (0m2.210000s 0m0.440000s) 562. CALL m1. CALL m2. CALL m1. (run_misc.at:1158): ok (0m1.360000s 0m0.260000s) 563. Recursive CALL of RECURSIVE program (run_misc.at:1213): ok (0m1.310000s 0m0.250000s) 564. Recursive CALL of INITIAL program (run_misc.at:1270): ok (0m1.280000s 0m0.270000s) 565. Recursive CALL with RECURSIVE assumed (run_misc.at:1321): ok (0m1.320000s 0m0.240000s) 566. Recursive CALL with ON EXCEPTION (run_misc.at:1369): ok (0m1.320000s 0m0.250000s) 567. Multiple calls of INITIAL program (run_misc.at:1426): ok (0m1.010000s 0m0.170000s) 568. CALL binary literal parameter/LENGTH OF (run_misc.at:1487): ok (0m1.500000s 0m0.290000s) 569. CALL binary literal (run_misc.at:1542): ok (0m0.660000s 0m0.080000s) 570. INSPECT REPLACING LEADING ZEROS BY SPACES (run_misc.at:1582): ok (0m0.610000s 0m0.090000s) 571. INSPECT No repeat conversion check (run_misc.at:1606): ok (0m0.600000s 0m0.100000s) 572. INSPECT CONVERTING alphabet (run_misc.at:1630): ok (0m0.620000s 0m0.090000s) 573. INSPECT CONVERTING TO figurative constant (run_misc.at:1665): ok (0m0.620000s 0m0.080000s) 574. INSPECT CONVERTING NULL (run_misc.at:1689): ok (0m0.610000s 0m0.090000s) 575. INSPECT CONVERTING TO NULL (run_misc.at:1713): ok (0m0.620000s 0m0.090000s) 576. INSPECT REPLACING figurative constant (run_misc.at:1737): ok (0m0.590000s 0m0.120000s) 577. INSPECT TALLYING BEFORE (run_misc.at:1761): ok (0m0.600000s 0m0.110000s) 578. INSPECT TALLYING AFTER (run_misc.at:1796): ok (0m0.630000s 0m0.080000s) 579. INSPECT REPLACING TRAILING ZEROS BY SPACES (run_misc.at:1831): ok (0m0.620000s 0m0.080000s) 580. INSPECT REPLACING complex (run_misc.at:1855): ok (0m0.610000s 0m0.090000s) 581. SWITCHES (environment COB_SWITCH_n and SET) (run_misc.at:1881): ok (0m0.620000s 0m0.100000s) 582. Nested PERFORM (run_misc.at:1978): ok (0m0.610000s 0m0.090000s) 583. PERFORM VARYING BY -0.2 (run_misc.at:2002): ok (0m0.600000s 0m0.110000s) 584. PERFORM VARYING BY phrase omitted (run_misc.at:2029): ok (0m0.650000s 0m0.100000s) 585. EXIT PERFORM (run_misc.at:2060): ok (0m0.600000s 0m0.100000s) 586. EXIT PERFORM CYCLE (run_misc.at:2085): ok (0m0.580000s 0m0.120000s) 587. EXIT PARAGRAPH (run_misc.at:2110): ok (0m0.620000s 0m0.080000s) 588. EXIT SECTION (run_misc.at:2142): ok (0m0.610000s 0m0.100000s) 589. PERFORM FOREVER / PERFORM UNTIL EXIT (run_misc.at:2176): ok (0m0.610000s 0m0.100000s) 590. PERFORM inline (1) (run_misc.at:2217): ok (0m0.600000s 0m0.100000s) 591. PERFORM inline (2) (run_misc.at:2244): ok (0m0.610000s 0m0.090000s) 592. Non-overflow after overflow (run_misc.at:2269): ok (0m0.620000s 0m0.110000s) 593. PERFORM ... CONTINUE (run_misc.at:2299): ok (0m0.060000s 0m0.020000s) 594. STRING with subscript reference (run_misc.at:2316): ok (0m0.630000s 0m0.070000s) 595. STRING / UNSTRING NOT ON OVERFLOW (run_misc.at:2343): ok (0m0.630000s 0m0.110000s) 596. UNSTRING DELIMITED ALL LOW-VALUE (run_misc.at:2460): ok (0m0.610000s 0m0.100000s) 597. UNSTRING DELIMITED ALL SPACE-2 (run_misc.at:2495): ok (0m0.620000s 0m0.110000s) 598. UNSTRING DELIMITED POINTER (run_misc.at:2560): ok (0m0.630000s 0m0.090000s) 599. UNSTRING DELIMITER IN (run_misc.at:2614): ok (0m0.610000s 0m0.100000s) 600. UNSTRING with FUNCTION / literal (run_misc.at:2657): ok (0m0.650000s 0m0.100000s) 601. PICTURE COMP-X (run_misc.at:2727): ok (0m0.670000s 0m0.120000s) 602. SORT: table sort (run_misc.at:2804): ok (0m0.600000s 0m0.110000s) 603. SORT: table sort (2) (run_misc.at:2846): ok (0m0.700000s 0m0.100000s) 604. SORT: table sort (3) (run_misc.at:2971): ok (0m1.280000s 0m0.200000s) 605. SORT: EBCDIC table sort (run_misc.at:3064): ok (0m0.610000s 0m0.100000s) 606. PIC ZZZ-, ZZZ+ (run_misc.at:3102): ok (0m0.620000s 0m0.090000s) 607. PERFORM type OSVS (run_misc.at:3155): ok (0m0.620000s 0m0.100000s) 608. Sticky LINKAGE (run_misc.at:3192): ok (0m0.930000s 0m0.210000s) 609. COB_PRE_LOAD (run_misc.at:3239): ok (0m0.930000s 0m0.200000s) 610. COB_PRE_LOAD with entry points (run_misc.at:3265): ok (0m1.340000s 0m0.230000s) 611. Lookup ENTRY from main executable (run_misc.at:3336): ok (0m0.630000s 0m0.080000s) 612. COB_LOAD_CASE=UPPER test (run_misc.at:3377): ok (0m0.940000s 0m0.180000s) 613. ALLOCATE / FREE with BASED item (1) (run_misc.at:3403): ok (0m0.620000s 0m0.080000s) 614. ALLOCATE / FREE with BASED item (2) (run_misc.at:3430): ok (0m0.980000s 0m0.190000s) 615. ALLOCATE CHARACTERS INITIALIZED TO (run_misc.at:3477): ok (0m0.600000s 0m0.110000s) 616. Initialized value with defaultbyte (run_misc.at:3518): ok (0m0.600000s 0m0.100000s) 617. CALL with OMITTED parameter (run_misc.at:3543): ok (0m0.950000s 0m0.190000s) 618. CALL in from C, cob_call_params explicitly set (run_misc.at:3582): ok (0m0.670000s 0m0.140000s) 619. CALL in from C, cob_call_params unknown (run_misc.at:3641): ok (0m0.660000s 0m0.150000s) 620. CALL C with callback, PROCEDURE DIVISION EXTERN (run_misc.at:3699): ok (0m0.730000s 0m0.120000s) 621. CALL C with callback, ENTRY-CONVENTION EXTERN (run_misc.at:3767): ok (0m2.150000s 0m0.400000s) 622. CALL in from C with init missing / implicit (run_misc.at:3919): ok (0m1.280000s 0m0.260000s) 623. CALL STATIC C from COBOL (run_misc.at:3972): ok (0m0.640000s 0m0.140000s) 624. ANY LENGTH (1) (run_misc.at:4028): ok (0m0.970000s 0m0.170000s) 625. ANY LENGTH (2) (run_misc.at:4071): ok (0m0.930000s 0m0.200000s) 626. ANY LENGTH (3) (run_misc.at:4115): ok (0m0.650000s 0m0.090000s) 627. ANY LENGTH (4) (run_misc.at:4158): ok (0m0.660000s 0m0.080000s) 628. ANY LENGTH (5) (run_misc.at:4201): ok (0m0.380000s 0m0.080000s) 629. access to BASED item without allocation (run_misc.at:4226): ok (0m1.230000s 0m0.180000s) 630. access to OPTIONAL LINKAGE item not passed (run_misc.at:4267): ok (0m0.980000s 0m0.160000s) 631. STOP RUN WITH NORMAL STATUS (run_misc.at:4309): ok (0m0.600000s 0m0.090000s) 632. STOP RUN WITH ERROR STATUS (run_misc.at:4327): ok (0m0.600000s 0m0.100000s) 633. SYMBOLIC clause (run_misc.at:4345): ok (0m0.610000s 0m0.090000s) 634. OCCURS clause with 1 entry (run_misc.at:4382): ok (0m0.640000s 0m0.070000s) 635. Computing of different USAGEs w/o decimal point (run_misc.at:4431): ok (0m2.040000s 0m0.250000s) 636. Computing of different USAGEs w/- decimal point (run_misc.at:5067): ok (0m1.960000s 0m0.230000s) 637. C/C++ reserved words/predefined identifiers (run_misc.at:5702): ok (0m1.460000s 0m0.250000s) 638. ON EXCEPTION clause of DISPLAY (run_misc.at:6162): ok (0m0.620000s 0m0.080000s) 639. EC-SCREEN-LINE-NUMBER and -STARTING-COLUMN (run_misc.at:6187): ok (0m0.610000s 0m0.110000s) 640. LINE/COLUMN 0 exceptions (run_misc.at:6228): ok (0m0.620000s 0m0.090000s) 641. SET LAST EXCEPTION TO OFF (run_misc.at:6266): ok (0m0.640000s 0m0.090000s) 642. void PROCEDURE (run_misc.at:6302): ok (0m0.970000s 0m0.160000s) 643. Figurative constants to numeric field (run_misc.at:6331): ok (0m1.350000s 0m0.210000s) 644. MF FIGURATIVE to NUMERIC (run_misc.at:6393): ok (0m0.820000s 0m0.120000s) 645. void PROCEDURE, NOTHING return (run_misc.at:6529): ok (0m0.930000s 0m0.200000s) 646. C API Test (run_misc.at:6559): ok (0m0.930000s 0m0.160000s) 647. Trace feature with EXTFH (run_misc.at:6883): ok (0m1.280000s 0m0.230000s) 648. Test trace feature (run_misc.at:8304): ok (0m1.070000s 0m0.160000s) 649. LINE SEQUENTIAL (run_misc.at:9628): ok (0m0.750000s 0m0.110000s) 650. Trace feature with subroutine (run_misc.at:10103): ok (0m1.490000s 0m0.300000s) 651. CALL with program prototypes (run_misc.at:11620): ok (0m0.670000s 0m0.100000s) 652. REDEFINES values on FILLER and INITIALIZE (run_misc.at:11676): ok (0m0.620000s 0m0.100000s) 653. PICTURE with constant-name (run_misc.at:11731): ok (0m0.680000s 0m0.110000s) 654. Quote marks in comment paragraphs (run_misc.at:11760): ok (0m1.220000s 0m0.170000s) 655. Numeric MOVE with/without -fbinary-truncate (run_misc.at:11786): ok (0m1.350000s 0m0.170000s) 656. Alphanumeric MOVE with truncation (run_misc.at:11846): ok (0m0.610000s 0m0.110000s) 657. PROGRAM-ID / CALL literal/variable with spaces (run_misc.at:11910): ok (0m0.660000s 0m0.120000s) 658. DEFAULT ROUNDED MODE (run_misc.at:11978): ok (0m0.640000s 0m0.090000s) 659. OCCURS INDEXED ASCENDING (run_misc.at:12008): ok (0m0.630000s 0m0.110000s) 660. ZERO unsigned and negative binary subscript (run_misc.at:12107): ok (0m1.270000s 0m0.200000s) 661. Default Arithmetic (1) (run_misc.at:12171): ok (0m0.720000s 0m0.090000s) 662. Default Arithmetic Test (2) (run_misc.at:12275): ok (0m0.680000s 0m0.080000s) 663. OSVS Arithmetic (1) (run_misc.at:12326): ok (0m0.720000s 0m0.100000s) 664. OSVS Arithmetic Test (2) (run_misc.at:12443): ok (0m0.720000s 0m0.080000s) 665. SET CONSTANT directive (run_misc.at:12500): ok (0m1.940000s 0m0.260000s) 666. DEFINE OVERRIDE (run_misc.at:12603): ok (0m0.610000s 0m0.100000s) 667. DEFINE Defaults (run_misc.at:12669): ok (0m0.600000s 0m0.120000s) 668. 78 VALUE (run_misc.at:12735): ok (0m0.620000s 0m0.100000s) 669. 01 CONSTANT (run_misc.at:12803): ok (0m0.640000s 0m0.080000s) 670. DISPLAY UPON (run_misc.at:12883): skipped (run_misc.at:12884) 671. FLOAT-DECIMAL w/o SIZE ERROR (run_misc.at:12976): ok (0m12.970000s 0m0.110000s) 672. FLOAT-SHORT / FLOAT-LONG w/o SIZE ERROR (run_misc.at:13150): ok (0m0.750000s 0m0.110000s) 673. FLOAT-SHORT with SIZE ERROR (run_misc.at:13349): ok (0m0.660000s 0m0.100000s) 674. FLOAT-LONG with SIZE ERROR (run_misc.at:13400): ok (0m0.650000s 0m0.120000s) 675. EC-SIZE-ZERO-DIVIDE (run_misc.at:13457): ok (0m0.680000s 0m0.070000s) 676. EC-SIZE-OVERFLOW (run_misc.at:13502): ok (0m0.660000s 0m0.080000s) 677. Constant Expressions (run_misc.at:13535): ok (0m0.610000s 0m0.110000s) 678. ENTRY FOR GO TO / GO TO ENTRY (run_misc.at:13624): ok (0m0.690000s 0m0.110000s) 679. PERFORM VARYING Float (run_misc.at:13714): ok (0m0.610000s 0m0.100000s) 680. Test PICTURE with Edit mask (run_misc.at:13752): ok (0m0.640000s 0m0.100000s) 681. COMP-3 Index (run_misc.at:13783): ok (0m0.670000s 0m0.100000s) 682. POINTER (run_misc.at:13819): ok (0m0.680000s 0m0.080000s) 683. Figurative constants to numeric field (run_misc.at:13858): ok (0m1.400000s 0m0.160000s) 684. READY TRACE / RESET TRACE (run_misc.at:13922): ok (0m4.210000s 0m0.850000s) 685. Test dump feature (run_misc.at:14229): ok (0m1.760000s 0m0.230000s) 686. Test COBOL-C interface (run_misc.at:14698): ok (0m0.890000s 0m0.140000s) 687. COBOL2002 SYNC (run_misc.at:14863): ok (0m0.810000s 0m0.100000s) 688. NO Subscript (run_misc.at:15491): ok (0m0.710000s 0m0.070000s) 689. NO Subscript ACU (run_misc.at:15562): skipped (run_misc.at:15564) 690. IBM SYNC (run_misc.at:15633): ok (0m0.890000s 0m0.120000s) 691. MF IBMCOMP SYNC (run_misc.at:16285): ok (0m0.910000s 0m0.110000s) 692. MF SYNC (run_misc.at:16937): ok (0m0.890000s 0m0.140000s) 693. default SYNC (run_misc.at:17589): ok (0m0.820000s 0m0.150000s) 694. Group Usage 1 (run_misc.at:18240): ok (0m0.680000s 0m0.070000s) 695. Group Usage 2 (run_misc.at:18282): ok (0m0.680000s 0m0.080000s) 696. MF COMP-5 noibmcomp (run_misc.at:18323): ok (0m0.670000s 0m0.090000s) 697. MF COMP-5 (run_misc.at:18355): ok (0m0.640000s 0m0.110000s) 698. Test HEX String (run_misc.at:18387): ok (0m1.360000s 0m0.160000s) 699. READ INTO data item AT-END sequence (run_file.at:23): ok (0m0.620000s 0m0.100000s) 700. LINAGE and LINAGE-COUNTER sample (run_file.at:60): ok (0m0.690000s 0m0.090000s) 701. OUTPUT on INDEXED file to missing directory (run_file.at:346): ok (0m0.640000s 0m0.090000s) 702. First READ on empty SEQUENTIAL INDEXED file (run_file.at:391): ok (0m0.640000s 0m0.090000s) 703. READ NEXT without previous START (run_file.at:431): ok (0m0.650000s 0m0.110000s) 704. REWRITE a RELATIVE file with RANDOM access (run_file.at:509): ok (0m0.670000s 0m0.070000s) 705. File SORT, SEQUENTIAL (run_file.at:576): ok (0m0.640000s 0m0.100000s) 706. File SORT, SEQUENTIAL variable records (run_file.at:626): ok (0m0.670000s 0m0.100000s) 708. INDEXED File Sparse/Split keys (run_file.at:1497): ok (0m0.680000s 0m0.080000s) 709. File SORT, LINE SEQUENTIAL (run_file.at:1579): ok (0m0.650000s 0m0.090000s) 710. File SORT, LINE SEQUENTIAL same file (run_file.at:1638): ok (0m0.600000s 0m0.110000s) 711. File SORT, LINE SEQUENTIAL variable records (run_file.at:1685): ok (0m0.630000s 0m0.090000s) 712. File MERGE, LINE SEQUENTIAL variable records (run_file.at:1749): ok (0m0.640000s 0m0.080000s) 713. SORT nonexistent file (run_file.at:1840): ok (0m0.620000s 0m0.090000s) 714. SORT with INPUT/OUTPUT PROCEDUREs (run_file.at:1875): ok (0m0.650000s 0m0.100000s) 715. SORT with key1 ASCENDING, key2 DESCENDING (run_file.at:1965): ok (0m0.590000s 0m0.130000s) 716. ASSIGN with LOCAL-STORAGE item (run_file.at:2029): ok (0m0.630000s 0m0.090000s) 717. ASSIGN with LOCAL-STORAGE item and INITIAL prog (run_file.at:2066): ok (0m0.610000s 0m0.100000s) 718. ASSIGN with BASED data item and CHAINING (run_file.at:2106): ok (0m1.270000s 0m0.190000s) 719. ASSIGN with data item in LINKAGE (run_file.at:2186): ok (0m1.410000s 0m0.170000s) 720. INDEXED file sparse/split keys (run_file.at:2358): ok (0m0.970000s 0m0.090000s) 721. INDEXED file split keys WITH DUPLICATES (run_file.at:2878): ok (0m0.730000s 0m0.090000s) 722. INDEXED file variable length record (run_file.at:3036): ok (0m0.730000s 0m0.110000s) 723. INDEXED sample (run_file.at:3291): ok (0m0.800000s 0m0.120000s) 724. WRITE + REWRITE FILE name (run_file.at:3696): ok (0m0.710000s 0m0.100000s) 725. START RELATIVE (1) (run_file.at:3849): ok (0m0.610000s 0m0.110000s) 726. START RELATIVE (2) (run_file.at:3898): ok (0m0.670000s 0m0.080000s) 727. START RELATIVE (3) (run_file.at:3976): ok (0m0.680000s 0m0.110000s) 728. READ on OPTIONAL missing RELATIVE / SEQUENTIAL (run_file.at:4052): ok (0m0.690000s 0m0.090000s) 729. READ on OPTIONAL missing INDEXED file (run_file.at:4174): ok (0m0.640000s 0m0.090000s) 730. EXTERNAL RELATIVE file (run_file.at:4224): ok (0m0.600000s 0m0.110000s) 731. DECLARATIVES procedure referencing (run_file.at:4260): ok (0m0.630000s 0m0.090000s) 732. DECLARATIVES procedure referencing (multiple) (run_file.at:4300): ok (0m0.600000s 0m0.120000s) 733. System routines for directories (1) (run_file.at:4344): ok (0m0.610000s 0m0.100000s) 734. System routines for directories (2) (run_file.at:4386): ok (0m0.630000s 0m0.130000s) 735. System routines for files (run_file.at:4483): ok (0m1.340000s 0m0.190000s) 736. System routine CBL_COPY_FILE (run_file.at:4653): ok (0m0.660000s 0m0.080000s) 737. Default file external name (run_file.at:4688): ok (0m0.930000s 0m0.180000s) 738. SEQUENTIAL basic I/O (run_file.at:4762): ok (0m0.620000s 0m0.100000s) 739. LINE SEQUENTIAL basic I/O (run_file.at:4796): ok (0m0.720000s 0m0.080000s) 740. LINE SEQUENTIAL record truncation (run_file.at:4862): ok (0m0.640000s 0m0.090000s) 741. SEQUENTIAL file I/O with variable records (run_file.at:4909): ok (0m0.660000s 0m0.090000s) 742. LINE SEQUENTIAL file I/O with variable records (run_file.at:4984): ok (0m0.660000s 0m0.080000s) 743. SEQUENTIAL file REWRITE (run_file.at:5058): ok (0m0.710000s 0m0.110000s) 744. SEQUENTIAL file with LOCK MODE EXCLUSIVE (run_file.at:5167): ok (0m1.260000s 0m0.190000s) 745. SEQUENTIAL file with OPEN WITH LOCK (run_file.at:5235): ok (0m1.260000s 0m0.200000s) 746. SEQUENTIAL file with SHARING NO (run_file.at:5301): ok (0m1.280000s 0m0.180000s) 747. SEQUENTIAL file with SHARING READ ONLY (run_file.at:5369): ok (0m1.230000s 0m0.240000s) 749. RELATIVE SEQUENTIAL basic I/O (run_file.at:5515): ok (0m0.650000s 0m0.070000s) 750. RELATIVE RANDOM basic I/O (run_file.at:5549): ok (0m0.640000s 0m0.100000s) 751. RELATIVE SEQUENTIAL with variable records (run_file.at:5599): ok (0m0.630000s 0m0.120000s) 752. INDEXED SEQUENTIAL basic I/O (run_file.at:5673): ok (0m0.640000s 0m0.090000s) 753. INDEXED SEQUENTIAL with variable records (run_file.at:5711): ok (0m0.690000s 0m0.100000s) 754. INDEXED file with LOCK MODE EXCLUSIVE (run_file.at:5794): ok (0m1.270000s 0m0.190000s) 756. INDEXED file with SHARING NO (run_file.at:5947): ok (0m1.300000s 0m0.230000s) 757. INDEXED file with SHARING READ ONLY (run_file.at:6024): ok (0m1.290000s 0m0.220000s) 760. INDEXED file with LOCK AUTOMATIC (2) (run_file.at:6277): ok (0m1.280000s 0m0.230000s) 761. INDEXED file with LOCK MANUAL (run_file.at:6367): ok (0m1.250000s 0m0.220000s) 762. START INDEXED (run_file.at:6454): ok (0m0.680000s 0m0.110000s) 763. INDEXED partial keys (run_file.at:6533): ok (0m0.720000s 0m0.110000s) 764. INDEXED undeclared keys (run_file.at:6677): ok (0m0.780000s 0m0.120000s) 766. EXTFH: using ISAM callback (run_file.at:6939): ok (0m1.170000s 0m0.190000s) 767. EXTFH: SEQUENTIAL files (run_file.at:7639): ok (0m0.910000s 0m0.130000s) 768. EXTFH: LINE SEQUENTIAL files, direct EXTFH (run_file.at:8049): ok (0m0.660000s 0m0.140000s) 769. RELATIVE Multi-Record (run_file.at:8232): ok (0m0.790000s 0m0.110000s) 770. RELATIVE one Record (run_file.at:8483): ok (0m0.980000s 0m0.110000s) 771. SEQUENTIAL Multi-Record (run_file.at:8893): ok (0m0.780000s 0m0.130000s) 772. SEQUENTIAL one Record (run_file.at:9153): ok (0m0.770000s 0m0.100000s) 773. RELATIVE File Locking (run_file.at:9362): skipped (run_file.at:9366) 774. WRITE and REWRITE FILE name (run_file.at:9904): ok (0m0.720000s 0m0.090000s) 775. INDEXED File Locking (run_file.at:10057): skipped (run_file.at:10061) 776. RELATIVE File Locking (run_file.at:10721): skipped (run_file.at:10725) 777. Read on optional missing file (run_file.at:11272): ok (0m0.620000s 0m0.110000s) 778. SELECT with ASSIGN in LINKAGE (run_file.at:11333): ok (0m0.740000s 0m0.100000s) 779. INDEXED File Variable len record (run_file.at:11465): ok (0m0.790000s 0m0.110000s) 780. GC LINE SEQUENTIAL Long-Record (run_file.at:11732): ok (0m0.680000s 0m0.120000s) 781. MF LINE SEQUENTIAL Long-Record (run_file.at:11848): ok (0m0.750000s 0m0.110000s) 782. Indexed with FH--FCD (run_file.at:11969): ok (0m1.120000s 0m0.110000s) 783. Report Line Order (run_reportwriter.at:23): ok (0m0.650000s 0m0.090000s) 784. REPORT COL PLUS (run_reportwriter.at:120): ok (0m0.620000s 0m0.100000s) 785. Report Overlapping Fields (run_reportwriter.at:189): ok (0m0.630000s 0m0.100000s) 786. EMPTY REPORT (run_reportwriter.at:258): ok (0m0.640000s 0m0.090000s) 787. PAGE LIMIT REPORT (run_reportwriter.at:327): ok (0m0.650000s 0m0.080000s) 788. PAGE LIMIT REPORT 2 (run_reportwriter.at:389): ok (0m0.640000s 0m0.100000s) 789. Sample Customer Report (run_reportwriter.at:461): ok (0m0.680000s 0m0.080000s) 790. Sample Charge Report (run_reportwriter.at:776): ok (0m0.710000s 0m0.120000s) 791. Sample Charge Report 2 (run_reportwriter.at:1129): ok (0m0.750000s 0m0.100000s) 792. Sample Charge Report 3 (run_reportwriter.at:1499): ok (0m0.700000s 0m0.120000s) 793. Sample Charge Report 4 (run_reportwriter.at:1799): ok (0m0.730000s 0m0.100000s) 794. Sample Payroll Report (run_reportwriter.at:2215): ok (0m1.110000s 0m0.140000s) 795. Sample REPORT with RIGHT/CENTER (run_reportwriter.at:2900): ok (0m0.780000s 0m0.140000s) 796. STUDENT REPORT with INITIAL (run_reportwriter.at:3068): ok (0m0.660000s 0m0.110000s) 797. ORDER REPORT; Test substring (run_reportwriter.at:3220): ok (0m0.750000s 0m0.080000s) 798. Sample Control Break (run_reportwriter.at:3568): ok (0m0.670000s 0m0.110000s) 799. Sample Inventory Report (run_reportwriter.at:3796): ok (0m0.630000s 0m0.100000s) 800. Duplicate Detail Line (run_reportwriter.at:3988): ok (0m0.640000s 0m0.100000s) 801. Report with OCCURS (run_reportwriter.at:4116): ok (0m0.660000s 0m0.100000s) 802. Report CODE and LIMIT COLUMNS (run_reportwriter.at:4221): ok (0m1.290000s 0m0.200000s) 803. Duplicate INITIATE (run_reportwriter.at:4442): ok (0m0.610000s 0m0.120000s) 804. Missing INITIATE and GENERATE (run_reportwriter.at:4508): ok (0m0.650000s 0m0.080000s) 805. Missing INITIATE and TERMINATE (run_reportwriter.at:4568): ok (0m0.610000s 0m0.110000s) 806. Next Group Next Page (run_reportwriter.at:4622): ok (0m0.690000s 0m0.110000s) 807. Report PRESENT AFTER (run_reportwriter.at:8945): ok (0m0.650000s 0m0.130000s) 808. RETURN-CODE moving (run_returncode.at:23): ok (0m0.610000s 0m0.100000s) 809. RETURN-CODE passing (run_returncode.at:49): ok (0m1.290000s 0m0.270000s) 810. RETURN-CODE nested (run_returncode.at:101): ok (0m0.640000s 0m0.090000s) 811. FUNCTION ABS (run_functions.at:24): ok (0m0.630000s 0m0.060000s) 812. FUNCTION ACOS (run_functions.at:46): ok (0m0.590000s 0m0.110000s) 813. FUNCTION ANNUITY (run_functions.at:70): ok (0m0.610000s 0m0.090000s) 814. FUNCTION ASIN (run_functions.at:94): ok (0m0.600000s 0m0.100000s) 815. FUNCTION ATAN (run_functions.at:118): ok (0m0.590000s 0m0.110000s) 816. FUNCTION BYTE-LENGTH (run_functions.at:142): ok (0m0.610000s 0m0.110000s) 817. FUNCTION CHAR (run_functions.at:212): ok (0m0.640000s 0m0.070000s) 818. FUNCTION COMBINED-DATETIME (run_functions.at:250): ok (0m0.630000s 0m0.080000s) 819. FUNCTION CONCATENATE (run_functions.at:275): ok (0m0.600000s 0m0.100000s) 820. FUNCTION CONCATENATE with reference modding (run_functions.at:314): ok (0m0.640000s 0m0.070000s) 821. FUNCTION CONTENT-LENGTH (run_functions.at:342): ok (0m0.630000s 0m0.080000s) 822. FUNCTION CONTENT-OF (run_functions.at:376): ok (0m0.630000s 0m0.100000s) 823. FUNCTION as CALL parameter BY CONTENT (run_functions.at:451): ok (0m0.640000s 0m0.100000s) 824. FUNCTION COS (run_functions.at:487): ok (0m0.620000s 0m0.080000s) 825. FUNCTION CURRENCY-SYMBOL (run_functions.at:511): ok (0m0.590000s 0m0.110000s) 826. FUNCTION CURRENT-DATE (run_functions.at:534): ok (0m0.630000s 0m0.090000s) 827. FUNCTION DATE-OF-INTEGER (run_functions.at:605): ok (0m0.610000s 0m0.090000s) 828. FUNCTION DATE-TO-YYYYMMDD (run_functions.at:630): ok (0m0.620000s 0m0.090000s) 829. FUNCTION DAY-OF-INTEGER (run_functions.at:655): ok (0m0.600000s 0m0.100000s) 830. FUNCTION DAY-TO-YYYYDDD (run_functions.at:680): ok (0m0.590000s 0m0.110000s) 831. FUNCTION E (run_functions.at:705): ok (0m0.590000s 0m0.110000s) 832. FUNCTION EXCEPTION-FILE (run_functions.at:729): ok (0m0.630000s 0m0.080000s) 833. FUNCTION EXCEPTION-LOCATION (run_functions.at:764): ok (0m0.640000s 0m0.080000s) 834. FUNCTION EXCEPTION-STATEMENT (run_functions.at:803): ok (0m0.640000s 0m0.070000s) 835. FUNCTION EXCEPTION-STATUS (run_functions.at:838): ok (0m0.620000s 0m0.100000s) 836. FUNCTION EXP (run_functions.at:873): ok (0m0.620000s 0m0.090000s) 837. FUNCTION EXP10 (run_functions.at:897): ok (0m0.620000s 0m0.080000s) 838. FUNCTION FACTORIAL (run_functions.at:922): ok (0m0.630000s 0m0.080000s) 839. FUNCTION FORMATTED-CURRENT-DATE (run_functions.at:947): ok (0m0.630000s 0m0.070000s) 840. FUNCTION FORMATTED-DATE (run_functions.at:975): ok (0m0.650000s 0m0.090000s) 841. FUNCTION FORMATTED-DATE with ref modding (run_functions.at:1038): ok (0m0.580000s 0m0.120000s) 842. FUNCTION FORMATTED-DATETIME (run_functions.at:1063): ok (0m0.620000s 0m0.100000s) 843. FUNCTION FORMATTED-DATETIME with ref modding (run_functions.at:1120): ok (0m0.630000s 0m0.070000s) 844. FUNCTION FORMATTED-TIME (run_functions.at:1146): ok (0m0.650000s 0m0.090000s) 845. FUNCTION FORMATTED-TIME DP.COMMA (run_functions.at:1233): ok (0m0.610000s 0m0.090000s) 846. FUNCTION FORMATTED-TIME with ref modding (run_functions.at:1264): ok (0m0.620000s 0m0.090000s) 847. FUNCTION FRACTION-PART (run_functions.at:1289): ok (0m0.630000s 0m0.070000s) 848. FUNCTION HIGHEST-ALGEBRAIC (run_functions.at:1320): ok (0m0.620000s 0m0.100000s) 849. FUNCTION INTEGER (run_functions.at:1388): ok (0m0.600000s 0m0.100000s) 850. FUNCTION INTEGER-OF-DATE (run_functions.at:1421): ok (0m0.610000s 0m0.100000s) 851. FUNCTION INTEGER-OF-DAY (run_functions.at:1446): ok (0m0.620000s 0m0.070000s) 852. FUNCTION INTEGER-OF-FORMATTED-DATE (run_functions.at:1471): ok (0m0.600000s 0m0.110000s) 853. FUNCTION INTEGER-PART (run_functions.at:1521): ok (0m0.610000s 0m0.090000s) 854. FUNCTION LENGTH (run_functions.at:1547): ok (0m0.640000s 0m0.110000s) 855. FUNCTION LOCALE-COMPARE (run_functions.at:1615): ok (0m0.630000s 0m0.080000s) 856. FUNCTION LOCALE-DATE (run_functions.at:1645): ok (0m0.610000s 0m0.090000s) 857. FUNCTION LOCALE-TIME (run_functions.at:1671): ok (0m0.600000s 0m0.100000s) 858. FUNCTION LOCALE-TIME-FROM-SECONDS (run_functions.at:1697): ok (0m0.620000s 0m0.090000s) 859. FUNCTION LOG (run_functions.at:1723): ok (0m0.600000s 0m0.110000s) 860. FUNCTION LOG10 (run_functions.at:1747): ok (0m0.620000s 0m0.080000s) 861. FUNCTION LOWER-CASE (run_functions.at:1771): ok (0m0.590000s 0m0.110000s) 862. FUNCTION LOWER-CASE with reference modding (run_functions.at:1799): ok (0m0.590000s 0m0.110000s) 863. FUNCTION LOWEST-ALGEBRAIC (run_functions.at:1825): ok (0m0.620000s 0m0.090000s) 864. FUNCTION MAX (run_functions.at:1878): ok (0m0.630000s 0m0.070000s) 865. FUNCTION MEAN (run_functions.at:1900): ok (0m0.590000s 0m0.110000s) 866. FUNCTION MEDIAN (run_functions.at:1922): ok (0m0.610000s 0m0.090000s) 867. FUNCTION MIDRANGE (run_functions.at:1944): ok (0m0.600000s 0m0.100000s) 868. FUNCTION MIN (run_functions.at:1966): ok (0m0.580000s 0m0.120000s) 869. FUNCTION MOD (valid) (run_functions.at:1988): ok (0m0.600000s 0m0.100000s) 870. FUNCTION MOD (invalid) (run_functions.at:2018): ok (0m0.610000s 0m0.090000s) 871. FUNCTION MODULE-CALLER-ID (run_functions.at:2049): ok (0m0.960000s 0m0.170000s) 872. FUNCTION MODULE-DATE (run_functions.at:2083): ok (0m0.620000s 0m0.090000s) 873. FUNCTION MODULE-FORMATTED-DATE (run_functions.at:2108): ok (0m0.600000s 0m0.110000s) 874. FUNCTION MODULE-ID (run_functions.at:2133): ok (0m0.600000s 0m0.100000s) 875. FUNCTION MODULE-PATH (run_functions.at:2154): ok (0m0.620000s 0m0.080000s) 876. FUNCTION MODULE-SOURCE (run_functions.at:2179): ok (0m0.610000s 0m0.090000s) 877. FUNCTION MODULE-TIME (run_functions.at:2200): ok (0m0.610000s 0m0.100000s) 878. FUNCTION MONETARY-DECIMAL-POINT (run_functions.at:2225): ok (0m0.620000s 0m0.080000s) 879. FUNCTION MONETARY-THOUSANDS-SEPARATOR (run_functions.at:2248): ok (0m0.600000s 0m0.110000s) 880. FUNCTION NUMERIC-DECIMAL-POINT (run_functions.at:2271): ok (0m0.590000s 0m0.110000s) 881. FUNCTION NUMERIC-THOUSANDS-SEPARATOR (run_functions.at:2294): ok (0m0.620000s 0m0.080000s) 882. FUNCTION NUMVAL (run_functions.at:2317): ok (0m0.600000s 0m0.100000s) 883. FUNCTION NUMVAL-C (run_functions.at:2348): ok (0m0.640000s 0m0.070000s) 884. FUNCTION NUMVAL-C DP.COMMA (run_functions.at:2379): ok (0m0.620000s 0m0.090000s) 885. FUNCTION NUMVAL-F (run_functions.at:2409): ok (0m0.600000s 0m0.100000s) 886. FUNCTION ORD (run_functions.at:2432): ok (0m0.590000s 0m0.110000s) 887. FUNCTION ORD-MAX (run_functions.at:2454): ok (0m0.620000s 0m0.080000s) 888. FUNCTION ORD-MIN (run_functions.at:2476): ok (0m0.620000s 0m0.080000s) 889. FUNCTION PI (run_functions.at:2498): ok (0m0.610000s 0m0.090000s) 890. FUNCTION PRESENT-VALUE (run_functions.at:2522): ok (0m0.610000s 0m0.090000s) 891. FUNCTION RANDOM (run_functions.at:2544): ok (0m0.600000s 0m0.100000s) 892. FUNCTION RANGE (run_functions.at:2568): ok (0m0.610000s 0m0.090000s) 893. FUNCTION REM (valid) (run_functions.at:2592): ok (0m0.590000s 0m0.110000s) 894. FUNCTION REM (invalid) (run_functions.at:2615): ok (0m0.610000s 0m0.100000s) 895. FUNCTION REVERSE (run_functions.at:2646): ok (0m0.600000s 0m0.100000s) 896. FUNCTION REVERSE with reference modding (run_functions.at:2671): ok (0m0.610000s 0m0.090000s) 897. FUNCTION SECONDS-FROM-FORMATTED-TIME (run_functions.at:2696): ok (0m0.630000s 0m0.090000s) 898. FUNCTION SECONDS-PAST-MIDNIGHT (run_functions.at:2763): ok (0m0.610000s 0m0.100000s) 899. FUNCTION SIGN (run_functions.at:2787): ok (0m0.640000s 0m0.080000s) 900. FUNCTION SIN (run_functions.at:2826): ok (0m0.590000s 0m0.110000s) 901. FUNCTION SQRT (run_functions.at:2850): ok (0m0.620000s 0m0.080000s) 902. FUNCTION STANDARD-DEVIATION (run_functions.at:2874): ok (0m0.610000s 0m0.090000s) 903. FUNCTION STORED-CHAR-LENGTH (run_functions.at:2898): ok (0m0.630000s 0m0.070000s) 904. FUNCTION SUBSTITUTE (run_functions.at:2924): ok (0m0.600000s 0m0.100000s) 905. FUNCTION SUBSTITUTE with reference modding (run_functions.at:2953): ok (0m0.620000s 0m0.090000s) 906. FUNCTION SUBSTITUTE-CASE (run_functions.at:2981): ok (0m0.580000s 0m0.120000s) 907. FUNCTION SUBSTITUTE-CASE with reference mod (run_functions.at:3008): ok (0m0.610000s 0m0.090000s) 908. FUNCTION SUM (run_functions.at:3036): ok (0m0.640000s 0m0.060000s) 909. FUNCTION TAN (run_functions.at:3060): ok (0m0.630000s 0m0.080000s) 910. FUNCTION TEST-DATE-YYYYMMDD (run_functions.at:3084): ok (0m0.600000s 0m0.100000s) 911. FUNCTION TEST-DAY-YYYYDDD (run_functions.at:3106): ok (0m0.600000s 0m0.100000s) 912. FUNCTION TEST-FORMATTED-DATETIME with dates (run_functions.at:3128): ok (0m0.670000s 0m0.090000s) 913. FUNCTION TEST-FORMATTED-DATETIME with times (run_functions.at:3255): ok (0m0.620000s 0m0.110000s) 914. FUNCTION TEST-FORMATTED-DATETIME with datetimes (run_functions.at:3336): ok (0m0.600000s 0m0.120000s) 915. FUNCTION TEST-FORMATTED-DATETIME DP.COMMA (run_functions.at:3389): ok (0m0.630000s 0m0.080000s) 916. FUNCTION TEST-NUMVAL (run_functions.at:3430): ok (0m0.660000s 0m0.090000s) 917. FUNCTION TEST-NUMVAL-C (run_functions.at:3528): ok (0m0.660000s 0m0.090000s) 918. FUNCTION TEST-NUMVAL-F (run_functions.at:3626): ok (0m0.650000s 0m0.090000s) 919. FUNCTION TRIM (run_functions.at:3724): ok (0m0.600000s 0m0.110000s) 920. FUNCTION TRIM with reference modding (run_functions.at:3750): ok (0m0.620000s 0m0.080000s) 921. FUNCTION TRIM zero length (run_functions.at:3776): ok (0m0.610000s 0m0.100000s) 922. FUNCTION UPPER-CASE (run_functions.at:3803): ok (0m0.600000s 0m0.100000s) 923. FUNCTION UPPER-CASE with reference modding (run_functions.at:3828): ok (0m0.610000s 0m0.090000s) 924. FUNCTION VARIANCE (run_functions.at:3853): ok (0m0.610000s 0m0.090000s) 925. FUNCTION WHEN-COMPILED (run_functions.at:3877): ok (0m0.620000s 0m0.090000s) 926. FUNCTION YEAR-TO-YYYY (run_functions.at:3931): ok (0m0.600000s 0m0.100000s) 927. Formatted funcs w/ invalid variable format (run_functions.at:3955): ok (0m0.630000s 0m0.100000s) 928. FORMATTED-(DATE)TIME with SYSTEM-OFFSET (run_functions.at:4035): ok (0m0.620000s 0m0.090000s) 929. Intrinsics without FUNCTION keyword (1) (run_functions.at:4073): ok (0m0.610000s 0m0.090000s) 930. Intrinsics without FUNCTION keyword (2) (run_functions.at:4094): ok (0m0.640000s 0m0.060000s) 931. User-Defined FUNCTION with/without parameter (run_functions.at:4117): ok (0m0.670000s 0m0.110000s) 932. UDF in COMPUTE (run_functions.at:4168): ok (0m0.660000s 0m0.100000s) 933. UDF replacing intrinsic function (run_functions.at:4211): ok (0m0.620000s 0m0.110000s) 934. UDF with recursion (1) (run_functions.at:4254): skipped (run_functions.at:4257) 935. UDF with recursion (2) (run_functions.at:4321): ok (0m0.710000s 0m0.100000s) 936. CALL BY CONTENT binary and literal (run_extensions.at:25): ok (0m0.890000s 0m0.170000s) 937. Numeric Boolean literals (run_extensions.at:75): ok (0m0.610000s 0m0.100000s) 938. ACUCOBOL literals (run_extensions.at:104): ok (0m0.610000s 0m0.090000s) 940. Hexadecimal numeric literals (run_extensions.at:191): ok (0m0.620000s 0m0.080000s) 941. CALL USING numeric literal (run_extensions.at:218): ok (0m0.760000s 0m0.120000s) 942. Semi-parenthesized condition (run_extensions.at:286): ok (0m0.610000s 0m0.090000s) 943. ADDRESS OF (run_extensions.at:306): ok (0m0.620000s 0m0.100000s) 944. LENGTH OF (run_extensions.at:356): ok (0m0.710000s 0m0.080000s) 945. SET TO SIZE OF (run_extensions.at:490): ok (0m0.620000s 0m0.090000s) 946. WHEN-COMPILED (run_extensions.at:527): ok (0m0.600000s 0m0.110000s) 947. Complex OCCURS DEPENDING ON (1) (run_extensions.at:556): ok (0m0.640000s 0m0.110000s) 948. Complex OCCURS DEPENDING ON (2) (run_extensions.at:585): ok (0m0.670000s 0m0.130000s) 949. Complex OCCURS DEPENDING ON (3) (run_extensions.at:648): ok (0m0.650000s 0m0.100000s) 950. Complex OCCURS DEPENDING ON (4) (run_extensions.at:711): ok (0m0.650000s 0m0.090000s) 951. Complex OCCURS DEPENDING ON (5) (run_extensions.at:777): ok (0m0.640000s 0m0.110000s) 952. Complex OCCURS DEPENDING ON (6) (run_extensions.at:843): ok (0m0.620000s 0m0.110000s) 953. OCCURS UNBOUNDED (1) (run_extensions.at:884): ok (0m0.620000s 0m0.100000s) 954. OCCURS UNBOUNDED (2) (run_extensions.at:928): ok (0m0.700000s 0m0.090000s) 955. DEPENDING ON with ODOSLIDE (run_extensions.at:1076): ok (0m0.750000s 0m0.100000s) 956. DEPENDING ON with ODOSLIDE for IBM (run_extensions.at:1291): ok (0m0.710000s 0m0.100000s) 957. DEPENDING ON with ODOSLIDE (run_extensions.at:1395): ok (0m0.740000s 0m0.100000s) 958. DEPENDING ON with ODOSLIDE (run_extensions.at:1575): ok (0m0.700000s 0m0.110000s) 959. INITIALIZE level 01 (run_extensions.at:1665): ok (0m0.630000s 0m0.100000s) 960. MOVE of non-integer to alphanumeric (run_extensions.at:1717): ok (0m0.670000s 0m0.110000s) 961. CALL USING file-name (run_extensions.at:1807): ok (0m0.880000s 0m0.190000s) 962. CALL unusual PROGRAM-ID. (run_extensions.at:1852): ok (0m2.020000s 0m0.400000s) 963. CALL / GOBACK with LOCAL-STORAGE (run_extensions.at:1916): ok (0m0.980000s 0m0.160000s) 964. CALL BY VALUE alphanumeric item (run_extensions.at:1966): ok (0m0.640000s 0m0.090000s) 965. CALL BY VALUE numeric literal WITH SIZE (run_extensions.at:2002): ok (0m0.710000s 0m0.120000s) 966. Case-sensitive PROGRAM-ID (run_extensions.at:2102): ok (0m0.630000s 0m0.090000s) 967. Quoted PROGRAM-ID (run_extensions.at:2127): ok (0m0.610000s 0m0.110000s) 968. PROGRAM-ID AS clause (run_extensions.at:2150): ok (0m0.630000s 0m0.090000s) 969. ASSIGN DYNAMIC and EXTERNAL (run_extensions.at:2174): ok (0m1.840000s 0m0.330000s) 970. ASSIGN DYNAMIC implicit variable (run_extensions.at:2223): ok (0m0.620000s 0m0.080000s) 971. ASSIGN EXTERNAL parsing (run_extensions.at:2255): ok (0m0.600000s 0m0.120000s) 972. ASSIGN directive (run_extensions.at:2289): ok (0m0.660000s 0m0.080000s) 973. ASSIGN expansion (run_extensions.at:2334): ok (0m0.630000s 0m0.080000s) 974. ASSIGN mapping (run_extensions.at:2360): ok (0m2.590000s 0m0.440000s) 975. ASSIGN with COB_FILE_PATH (run_extensions.at:2531): ok (0m0.630000s 0m0.110000s) 976. NUMBER-OF-CALL-PARAMETERS (run_extensions.at:2565): ok (0m0.980000s 0m0.180000s) 977. TALLY register (run_extensions.at:2620): ok (0m0.690000s 0m0.120000s) 978. Redefining TALLY (run_extensions.at:2654): ok (0m0.650000s 0m0.100000s) 979. PROCEDURE DIVISION USING BY ... (run_extensions.at:2690): ok (0m0.960000s 0m0.190000s) 980. PROCEDURE DIVISION CHAINING (run_extensions.at:2741): ok (0m3.470000s 0m0.590000s) 981. STOP RUN RETURNING/GIVING (run_extensions.at:2864): ok (0m2.470000s 0m0.360000s) 982. GOBACK/EXIT PROGRAM RETURNING/GIVING (run_extensions.at:2920): ok (0m0.820000s 0m0.140000s) 983. ENTRY (run_extensions.at:2970): ok (0m1.010000s 0m0.140000s) 984. LINE SEQUENTIAL write (run_extensions.at:3016): ok (0m0.650000s 0m0.070000s) 985. LINE SEQUENTIAL read (run_extensions.at:3062): ok (0m0.650000s 0m0.090000s) 986. ASSIGN to KEYBOARD/DISPLAY (run_extensions.at:3129): ok (0m0.620000s 0m0.110000s) 988. Environment/Argument variable (run_extensions.at:3249): ok (0m0.630000s 0m0.080000s) 989. 78 Level (1) (run_extensions.at:3295): ok (0m0.600000s 0m0.110000s) 990. 78 Level (2) (run_extensions.at:3318): ok (0m0.630000s 0m0.080000s) 991. 78 Level (3) (run_extensions.at:3344): ok (0m0.620000s 0m0.080000s) 992. SWITCHES with non-standard names (run_extensions.at:3368): ok (0m0.660000s 0m0.090000s) 993. Larger REDEFINES lengths (run_extensions.at:3481): ok (0m0.620000s 0m0.090000s) 994. Obsolete 2002 keywords with COBOL2014 (run_extensions.at:3566): ok (0m0.620000s 0m0.100000s) 995. System routine with wrong number of parameters (run_extensions.at:3596): ok (0m0.690000s 0m0.100000s) 996. System routine C$NARG (run_extensions.at:3639): ok (0m1.560000s 0m0.320000s) 997. System routine C$PARAMSIZE (run_extensions.at:3716): ok (0m0.950000s 0m0.180000s) 998. System routine C$CALLEDBY (run_extensions.at:3758): ok (0m0.970000s 0m0.170000s) 999. System routine C$JUSTIFY (run_extensions.at:3804): ok (0m0.600000s 0m0.110000s) 1000. System routine C$PRINTABLE (run_extensions.at:3829): ok (0m0.630000s 0m0.070000s) 1001. System routine C$MAKEDIR (run_extensions.at:3858): ok (0m0.590000s 0m0.110000s) 1002. System routine C$GETPID (run_extensions.at:3879): ok (0m0.600000s 0m0.110000s) 1003. System routine C$TOUPPER (run_extensions.at:3904): ok (0m0.600000s 0m0.100000s) 1004. System routine C$TOLOWER (run_extensions.at:3929): ok (0m0.590000s 0m0.120000s) 1005. System routine CBL_OR (run_extensions.at:3954): ok (0m0.600000s 0m0.100000s) 1006. System routine CBL_NOR (run_extensions.at:3981): ok (0m0.620000s 0m0.090000s) 1007. System routine CBL_AND (run_extensions.at:4008): ok (0m0.610000s 0m0.090000s) 1008. System routine CBL_XOR (run_extensions.at:4035): ok (0m0.590000s 0m0.110000s) 1009. System routine CBL_IMP (run_extensions.at:4062): ok (0m0.610000s 0m0.090000s) 1010. System routine CBL_NIMP (run_extensions.at:4089): ok (0m0.610000s 0m0.090000s) 1011. System routine CBL_NOT (run_extensions.at:4116): ok (0m0.590000s 0m0.110000s) 1012. System routine CBL_EQ (run_extensions.at:4142): ok (0m0.610000s 0m0.100000s) 1013. System routine CBL_GC_GETOPT (run_extensions.at:4169): ok (0m3.050000s 0m0.460000s) 1014. System routine CBL_GC_FORK (run_extensions.at:4606): ok (0m0.650000s 0m0.100000s) 1015. System routine CBL_GC_WAITPID (run_extensions.at:4674): ok (0m0.640000s 0m0.100000s) 1016. System routine CBL_GC_HOSTED (run_extensions.at:4726): ok (0m1.280000s 0m0.210000s) 1017. System routine SYSTEM, parameter handling (run_extensions.at:4840): ok (0m0.730000s 0m0.170000s) 1018. System routine CBL_ERROR_PROC (run_extensions.at:4951): ok (0m1.320000s 0m0.200000s) 1019. DISPLAY DIRECTIVE and $DISPLAY (run_extensions.at:5039): ok (0m0.600000s 0m0.090000s) 1020. Conditional/define directives (1) (run_extensions.at:5064): ok (0m0.610000s 0m0.090000s) 1021. Conditional/define directives (2) (run_extensions.at:5089): ok (0m0.600000s 0m0.100000s) 1022. Conditional/define directives (3) (run_extensions.at:5114): ok (0m0.620000s 0m0.080000s) 1023. Conditional/define directives (4) (run_extensions.at:5142): ok (0m0.590000s 0m0.100000s) 1024. Conditional/define directives (5) (run_extensions.at:5168): ok (0m0.610000s 0m0.080000s) 1025. Conditional/define directives (6) (run_extensions.at:5193): ok (0m1.160000s 0m0.220000s) 1026. Conditional/define directives (7) (run_extensions.at:5219): ok (0m0.580000s 0m0.100000s) 1027. Conditional/define directives (8) (run_extensions.at:5241): ok (0m0.610000s 0m0.070000s) 1028. Variable format (run_extensions.at:5261): ok (0m0.610000s 0m0.090000s) 1029. Binary COMP-1 (1) (run_extensions.at:5283): ok (0m1.310000s 0m0.180000s) 1030. Binary COMP-1 (2) (run_extensions.at:5314): ok (0m1.270000s 0m0.200000s) 1031. XML GENERATE general (run_ml.at:19): ok (0m0.680000s 0m0.090000s) 1032. XML GENERATE SUPPRESS (run_ml.at:127): ok (0m0.640000s 0m0.110000s) 1033. XML GENERATE exceptions (run_ml.at:204): ok (0m0.660000s 0m0.100000s) 1034. XML GENERATE record selection (run_ml.at:300): ok (0m0.630000s 0m0.090000s) 1035. XML GENERATE trimming (run_ml.at:344): ok (0m0.660000s 0m0.090000s) 1036. JSON GENERATE general (run_ml.at:441): ok (0m0.630000s 0m0.100000s) 1037. JSON GENERATE SUPPRESS (run_ml.at:491): ok (0m0.630000s 0m0.080000s) 1038. JSON GENERATE exceptions (run_ml.at:530): ok (0m0.650000s 0m0.090000s) 1039. JSON GENERATE record selection (run_ml.at:595): ok (0m0.630000s 0m0.080000s) 1040. JSON GENERATE trimming (run_ml.at:639): ok (0m0.660000s 0m0.100000s) 1041. BINARY: 2-4-8 big-endian (data_binary.at:23): ok (0m2.010000s 0m0.350000s) 1042. BINARY: 2-4-8 native (data_binary.at:205): ok (0m2.070000s 0m0.280000s) 1043. BINARY: 1-2-4-8 big-endian (data_binary.at:393): ok (0m2.080000s 0m0.280000s) 1044. BINARY: 1-2-4-8 native (data_binary.at:575): ok (0m2.010000s 0m0.350000s) 1045. BINARY: 1--8 big-endian (data_binary.at:763): ok (0m2.040000s 0m0.320000s) 1046. BINARY: 1--8 native (data_binary.at:945): ok (0m1.990000s 0m0.360000s) 1047. BINARY: full-print (data_binary.at:1133): ok (0m0.640000s 0m0.120000s) 1048. BINARY: 64bit unsigned compare (data_binary.at:1185): ok (0m0.610000s 0m0.100000s) 1049. BINARY: 64bit unsigned arithmetic notrunc (data_binary.at:1210): ok (0m0.620000s 0m0.110000s) 1050. BINARY: 64bit signed negative constant range (data_binary.at:1239): ok (0m0.630000s 0m0.070000s) 1051. COMP-4 Truncate (data_binary.at:1260): ok (0m0.610000s 0m0.110000s) 1052. COMP-4 No Truncate (data_binary.at:1321): ok (0m0.610000s 0m0.110000s) 1053. DISPLAY: Sign ASCII (data_display.at:21): ok (0m0.630000s 0m0.090000s) 1054. DISPLAY: Sign ASCII (2) (data_display.at:80): ok (0m0.620000s 0m0.090000s) 1055. DISPLAY: Sign EBCDIC (data_display.at:126): ok (0m0.620000s 0m0.100000s) 1056. DISPLAY: unsigned (data_display.at:171): ok (0m0.630000s 0m0.100000s) 1057. PACKED-DECIMAL dump (data_packed.at:25): ok (0m1.380000s 0m0.200000s) 1058. PACKED-DECIMAL used with DISPLAY (data_packed.at:161): ok (0m0.620000s 0m0.090000s) 1059. PACKED-DECIMAL used with MOVE (data_packed.at:216): ok (0m0.590000s 0m0.130000s) 1060. PACKED-DECIMAL used with INITIALIZE (data_packed.at:273): ok (0m0.600000s 0m0.110000s) 1061. PACKED-DECIMAL arithmetic (data_packed.at:312): ok (0m0.630000s 0m0.110000s) 1062. PACKED-DECIMAL numeric test (1) (data_packed.at:348): ok (0m0.640000s 0m0.100000s) 1063. PACKED-DECIMAL numeric test (2) (data_packed.at:490): ok (0m0.670000s 0m0.110000s) 1064. COMP-6 used with DISPLAY (data_packed.at:606): ok (0m0.590000s 0m0.120000s) 1065. COMP-6 used with MOVE (data_packed.at:643): ok (0m0.600000s 0m0.110000s) 1066. COMP-6 arithmetic (data_packed.at:690): ok (0m0.640000s 0m0.100000s) 1067. COMP-6 numeric test (data_packed.at:722): ok (0m0.620000s 0m0.100000s) 1068. POINTER: display (data_pointer.at:21): ok (0m0.620000s 0m0.090000s) testsuite: ending at: Sun Dec 29 17:45:42 CET 2019 testsuite: test suite duration: 0h 12m 25s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 1060 tests were run, 19 failed (18 expected failures). 8 tests were skipped. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Failed tests: GnuCOBOL 3.2-early-dev test suite: GnuCOBOL Tests test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 707: run_file.at:708 INDEXED File KEYCHECK runfile Skipped tests: GnuCOBOL 3.2-early-dev test suite: GnuCOBOL Tests test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 263: syn_misc.at:3473 ACUCOBOL 32bit literal size extensions literals 275: syn_misc.at:4039 ANY LENGTH item as BY VALUE formal parameter misc by value 670: run_misc.at:12883 DISPLAY UPON chaining printer pipe console syserr syspch syspunch cob_display_print_pipe cob_display_print_file cob_display_punch_file 689: run_misc.at:15562 NO Subscript ACU acu length 773: run_file.at:9362 RELATIVE File Locking runfile 775: run_file.at:10057 INDEXED File Locking runfile 776: run_file.at:10721 RELATIVE File Locking runfile 934: run_functions.at:4254 UDF with recursion (1) functions local-storage ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## # -*- compilation -*- 707. run_file.at:708: testing INDEXED File KEYCHECK ... ./run_file.at:1433: $COMPILE -std=mf -w prog.cob ./run_file.at:1435: ./prog --- - 2019-12-29 17:40:00.470349772 +0100 +++ /home/harald/src/gnucobol/trunk/tests/testsuite.dir/at-groups/707/stdout 2019-12-29 17:40:00.462385096 +0100 @@ -52,7 +52,7 @@ A: Expected ERROR 39 opening TSTFILE, Record size different B: Expected ERROR 39 opening BADFILE, Index mismatch C: Expected open BADFILE, with Index mismatch -Key: ALP00000 is 2417 : 549 mmm -Key: FOR00000 is 2417 : 549 mmm -Key: JOH00000 is 8417 : 1600 BPI +Key: ALP00000 is 3131234432 : UNI-9030 +Key: INC00000 is 3455445444 : UNI-80/8 +Key: BET00000 is 4082938498 : UNI-9040 707. run_file.at:708: 707. INDEXED File KEYCHECK (run_file.at:708): FAILED (run_file.at:1435) ## ------------- ## ## ../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.2-early-dev, which was | generated by GNU Autoconf 2.69. Invocation command line was | | $ ./configure --with-db | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = muskat.skogtun.org | uname -m = x86_64 | uname -r = 5.5.0-rc3_muskat | uname -s = Linux | uname -v = #7 SMP PREEMPT Wed Dec 25 17:19:28 CET 2019 | | /usr/bin/uname -p = unknown | /bin/uname -X = unknown | | /bin/arch = x86_64 | /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/harald/bin | PATH: /opt/bin | PATH: /usr/local/bin | PATH: /usr/bin | PATH: /bin | PATH: /usr/local/sbin | PATH: /usr/sbin | PATH: /sbin | PATH: /usr/games | PATH: /usr/local/games | PATH: /usr/local/sbin | PATH: /usr/sbin | PATH: /sbin | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:2557: checking for a BSD-compatible install | configure:2625: result: /usr/bin/install -c | configure:2636: checking whether build environment is sane | configure:2691: result: yes | configure:2842: checking for a thread-safe mkdir -p | configure:2881: result: /usr/bin/mkdir -p | configure:2888: checking for gawk | configure:2904: found /usr/bin/gawk | configure:2915: result: gawk | configure:2926: checking whether make sets $(MAKE) | configure:2948: result: yes | configure:2977: checking whether make supports nested variables | configure:2994: result: yes | configure:3291: checking for make | configure:3307: found /usr/bin/make | configure:3318: result: make | configure:3382: checking whether CFLAGS can be modified | configure:3389: result: yes | configure:3449: checking for gcc | configure:3465: found /usr/bin/gcc | configure:3476: result: gcc | configure:3507: checking for C compiler version | configure:3516: gcc --version >&5 | gcc (GCC) 9.2.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:3527: $? = 0 | configure:3516: gcc -v >&5 | Reading specs from /usr/lib/gcc/x86_64-unknown-linux-gnu/9.2.0/specs | COLLECT_GCC=gcc | COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/9.2.0/lto-wrapper | Target: x86_64-unknown-linux-gnu | Configured with: /builddir/gcc-9.2.0/configure --build=x86_64-unknown-linux-gnu --enable-fast-character --enable-vtable-verify --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --libexecdir=/usr/lib --libdir=/usr/lib --enable-threads=posix --enable-__cxa_atexit --disable-multilib --with-system-zlib --enable-shared --enable-lto --enable-plugins --enable-linker-build-id --disable-werror --disable-nls --enable-default-pie --enable-default-ssp --enable-checking=release --disable-libstdcxx-pch --with-isl --with-linker-hash-style=gnu --disable-libunwind-exceptions --disable-target-libiberty --enable-serial-configure --enable-languages=c,c++,objc,obj-c++,fortran,lto,go,ada | Thread model: posix | gcc version 9.2.0 (GCC) | configure:3527: $? = 0 | configure:3516: gcc -V >&5 | gcc: error: unrecognized command line option '-V' | gcc: fatal error: no input files | compilation terminated. | configure:3527: $? = 1 | configure:3516: gcc -qversion >&5 | gcc: error: unrecognized command line option '-qversion'; did you mean '--version'? | gcc: fatal error: no input files | compilation terminated. | configure:3527: $? = 1 | configure:3547: checking whether the C compiler works | configure:3569: gcc -O2 conftest.c >&5 | configure:3573: $? = 0 | configure:3621: result: yes | configure:3624: checking for C compiler default output file name | configure:3626: result: a.out | configure:3632: checking for suffix of executables | configure:3639: gcc -o conftest -O2 conftest.c >&5 | configure:3643: $? = 0 | configure:3665: result: | configure:3687: checking whether we are cross compiling | configure:3695: gcc -o conftest -O2 conftest.c >&5 | configure:3699: $? = 0 | configure:3706: ./conftest | configure:3710: $? = 0 | configure:3725: result: no | configure:3730: checking for suffix of object files | configure:3752: gcc -c -O2 conftest.c >&5 | configure:3756: $? = 0 | configure:3777: result: o | configure:3781: checking whether we are using the GNU C compiler | configure:3800: gcc -c -O2 conftest.c >&5 | configure:3800: $? = 0 | configure:3809: result: yes | configure:3818: checking whether gcc accepts -g | configure:3838: gcc -c -g conftest.c >&5 | configure:3838: $? = 0 | configure:3879: result: yes | configure:3896: checking for gcc option to accept ISO C89 | configure:3959: gcc -c -O2 conftest.c >&5 | configure:3959: $? = 0 | configure:3972: result: none needed | configure:3997: checking whether gcc understands -c and -o together | configure:4019: gcc -c conftest.c -o conftest2.o | configure:4022: $? = 0 | configure:4019: gcc -c conftest.c -o conftest2.o | configure:4022: $? = 0 | configure:4034: result: yes | configure:4054: checking whether make supports the include directive | configure:4069: make -f confmf.GNU && cat confinc.out | this is the am__doit target | configure:4072: $? = 0 | configure:4091: result: yes (GNU style) | configure:4116: checking dependency style of gcc | configure:4227: result: gcc3 | configure:4246: checking for gcc option to accept ISO C99 | configure:4395: gcc -c -O2 conftest.c >&5 | configure:4395: $? = 0 | configure:4408: result: none needed | configure:4516: checking for gcc option to accept ISO Standard C | configure:4527: result: none needed | configure:4540: checking how to run the C preprocessor | configure:4571: gcc -E conftest.c | configure:4571: $? = 0 | configure:4585: gcc -E conftest.c | conftest.c:13:10: fatal error: ac_nonexistent.h: No such file or directory | 13 | #include | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:4585: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | /* end confdefs.h. */ | | #include | configure:4610: result: gcc -E | configure:4630: gcc -E conftest.c | configure:4630: $? = 0 | configure:4644: gcc -E conftest.c | conftest.c:13:10: fatal error: ac_nonexistent.h: No such file or directory | 13 | #include | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:4644: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | /* end confdefs.h. */ | | #include | configure:4675: checking for grep that handles long lines and -e | configure:4733: result: /usr/bin/grep | configure:4738: checking for egrep | configure:4800: result: /usr/bin/grep -E | configure:4805: checking for ANSI C header files | configure:4825: gcc -c -O2 conftest.c >&5 | configure:4825: $? = 0 | configure:4898: gcc -o conftest -O2 conftest.c >&5 | configure:4898: $? = 0 | configure:4898: ./conftest | configure:4898: $? = 0 | configure:4909: result: yes | configure:4922: checking for sys/types.h | configure:4922: gcc -c -O2 conftest.c >&5 | configure:4922: $? = 0 | configure:4922: result: yes | configure:4922: checking for sys/stat.h | configure:4922: gcc -c -O2 conftest.c >&5 | configure:4922: $? = 0 | configure:4922: result: yes | configure:4922: checking for stdlib.h | configure:4922: gcc -c -O2 conftest.c >&5 | configure:4922: $? = 0 | configure:4922: result: yes | configure:4922: checking for string.h | configure:4922: gcc -c -O2 conftest.c >&5 | configure:4922: $? = 0 | configure:4922: result: yes | configure:4922: checking for memory.h | configure:4922: gcc -c -O2 conftest.c >&5 | configure:4922: $? = 0 | configure:4922: result: yes | configure:4922: checking for strings.h | configure:4922: gcc -c -O2 conftest.c >&5 | configure:4922: $? = 0 | configure:4922: result: yes | configure:4922: checking for inttypes.h | configure:4922: gcc -c -O2 conftest.c >&5 | configure:4922: $? = 0 | configure:4922: result: yes | configure:4922: checking for stdint.h | configure:4922: gcc -c -O2 conftest.c >&5 | configure:4922: $? = 0 | configure:4922: result: yes | configure:4922: checking for unistd.h | configure:4922: gcc -c -O2 conftest.c >&5 | configure:4922: $? = 0 | configure:4922: result: yes | configure:4935: checking minix/config.h usability | configure:4935: gcc -c -O2 conftest.c >&5 | conftest.c:56:10: fatal error: minix/config.h: No such file or directory | 56 | #include | | ^~~~~~~~~~~~~~~~ | compilation terminated. | configure:4935: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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:4935: result: no | configure:4935: checking minix/config.h presence | configure:4935: gcc -E conftest.c | conftest.c:23:10: fatal error: minix/config.h: No such file or directory | 23 | #include | | ^~~~~~~~~~~~~~~~ | compilation terminated. | configure:4935: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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:4935: result: no | configure:4935: checking for minix/config.h | configure:4935: result: no | configure:4956: checking whether it is safe to define __EXTENSIONS__ | configure:4974: gcc -c -O2 conftest.c >&5 | configure:4974: $? = 0 | configure:4981: result: yes | configure:5025: checking build system type | configure:5039: result: x86_64-pc-linux-gnu | configure:5059: checking host system type | configure:5072: result: x86_64-pc-linux-gnu | configure:5113: checking how to print strings | configure:5140: result: printf | configure:5161: checking for a sed that does not truncate output | configure:5225: result: /usr/bin/sed | configure:5243: checking for fgrep | configure:5305: result: /usr/bin/grep -F | configure:5340: checking for ld used by gcc | configure:5407: result: /usr/bin/ld | configure:5414: checking if the linker (/usr/bin/ld) is GNU ld | configure:5429: result: yes | configure:5441: checking for BSD- or MS-compatible name lister (nm) | configure:5495: result: /usr/bin/nm -B | configure:5625: checking the name lister (/usr/bin/nm -B) interface | configure:5632: gcc -c -O2 conftest.c >&5 | configure:5635: /usr/bin/nm -B "conftest.o" | configure:5638: output | 0000000000000000 B some_variable | configure:5645: result: BSD nm | configure:5648: checking whether ln -s works | configure:5652: result: yes | configure:5660: checking the maximum length of command line arguments | configure:5791: result: 1572864 | configure:5839: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format | configure:5879: result: func_convert_file_noop | configure:5886: checking how to convert x86_64-pc-linux-gnu file names to toolchain format | configure:5906: result: func_convert_file_noop | configure:5913: checking for /usr/bin/ld option to reload object files | configure:5920: result: -r | configure:5994: checking for objdump | configure:6010: found /usr/bin/objdump | configure:6021: result: objdump | configure:6050: checking how to recognize dependent libraries | configure:6250: result: pass_all | configure:6335: checking for dlltool | configure:6365: result: no | configure:6392: checking how to associate runtime and link libraries | configure:6419: result: printf %s\n | configure:6479: checking for ar | configure:6495: found /usr/bin/ar | configure:6506: result: ar | configure:6543: checking for archiver @FILE support | configure:6560: gcc -c -O2 conftest.c >&5 | configure:6560: $? = 0 | configure:6563: ar cru libconftest.a @conftest.lst >&5 | ar: `u' modifier ignored since `D' is the default (see `U') | configure:6566: $? = 0 | configure:6571: 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:6574: $? = 1 | configure:6586: result: @ | configure:6644: checking for strip | configure:6660: found /usr/bin/strip | configure:6671: result: strip | configure:6743: checking for ranlib | configure:6759: found /usr/bin/ranlib | configure:6770: result: ranlib | configure:6872: checking command to parse /usr/bin/nm -B output from gcc object | configure:7025: gcc -c -O2 conftest.c >&5 | configure:7028: $? = 0 | configure:7032: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/  /p' | sed '/ __gnu_lto/d' \> conftest.nm | configure:7035: $? = 0 | configure:7101: gcc -o conftest -O2 conftest.c conftstm.o >&5 | configure:7104: $? = 0 | configure:7142: result: ok | configure:7189: checking for sysroot | configure:7219: result: no | configure:7226: checking for a working dd | configure:7264: result: /usr/bin/dd | configure:7268: checking how to truncate binary pipes | configure:7283: result: /usr/bin/dd bs=4096 count=1 | configure:7419: gcc -c -O2 conftest.c >&5 | configure:7422: $? = 0 | configure:7612: checking for mt | configure:7642: result: no | configure:7662: checking if : is a manifest tool | configure:7668: : '-?' | configure:7676: result: no | configure:8350: checking for dlfcn.h | configure:8350: gcc -c -O2 conftest.c >&5 | configure:8350: $? = 0 | configure:8350: result: yes | configure:8903: checking for objdir | configure:8918: result: .libs | configure:9182: checking if gcc supports -fno-rtti -fno-exceptions | configure:9200: gcc -c -O2 -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:9204: $? = 0 | configure:9217: result: no | configure:9575: checking for gcc option to produce PIC | configure:9582: result: -fPIC -DPIC | configure:9590: checking if gcc PIC flag -fPIC -DPIC works | configure:9608: gcc -c -O2 -fPIC -DPIC -DPIC conftest.c >&5 | configure:9612: $? = 0 | configure:9625: result: yes | configure:9654: checking if gcc static flag -static works | configure:9682: result: yes | configure:9697: checking if gcc supports -c -o file.o | configure:9718: gcc -c -O2 -o out/conftest2.o conftest.c >&5 | configure:9722: $? = 0 | configure:9744: result: yes | configure:9752: checking if gcc supports -c -o file.o | configure:9799: result: yes | configure:9832: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries | configure:11091: result: yes | configure:11128: checking whether -lc should be explicitly linked in | configure:11136: gcc -c -O2 conftest.c >&5 | configure:11139: $? = 0 | configure:11154: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1 | configure:11157: $? = 0 | configure:11171: result: no | configure:11331: checking dynamic linker characteristics | configure:11912: gcc -o conftest -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 | configure:11912: $? = 0 | configure:12149: result: GNU/Linux ld.so | configure:12271: checking how to hardcode library paths into programs | configure:12296: result: immediate | configure:12398: checking for shl_load | configure:12398: gcc -o conftest -O2 conftest.c >&5 | /usr/bin/ld: /tmp/ccK2epLy.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `shl_load' | collect2: error: ld returned 1 exit status | configure:12398: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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:12398: result: no | configure:12402: checking for shl_load in -ldld | configure:12427: gcc -o conftest -O2 conftest.c -ldld >&5 | /usr/bin/ld: cannot find -ldld | collect2: error: ld returned 1 exit status | configure:12427: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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:12436: result: no | configure:12441: checking for dlopen | configure:12441: gcc -o conftest -O2 conftest.c >&5 | /usr/bin/ld: /tmp/ccH9Os2F.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `dlopen' | collect2: error: ld returned 1 exit status | configure:12441: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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:12441: result: no | configure:12445: checking for dlopen in -ldl | configure:12470: gcc -o conftest -O2 conftest.c -ldl >&5 | configure:12470: $? = 0 | configure:12479: result: yes | configure:12598: checking whether a program can dlopen itself | configure:12678: gcc -o conftest -O2 -DHAVE_DLFCN_H -Wl,--export-dynamic conftest.c -ldl >&5 | configure:12681: $? = 0 | configure:12699: result: yes | configure:12704: checking whether a statically linked program can dlopen itself | configure:12784: gcc -o conftest -O2 -DHAVE_DLFCN_H -Wl,--export-dynamic -static conftest.c -ldl >&5 | /usr/bin/ld: /tmp/cc9fvTab.o: in function `main': | conftest.c:(.text.startup+0x9): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking | configure:12787: $? = 0 | conftest: undefined symbol: _fnord | configure:12805: result: no | configure:12844: checking whether stripping libraries is possible | configure:12849: result: yes | configure:12884: checking if libtool supports shared libraries | configure:12886: result: yes | configure:12889: checking whether to build shared libraries | configure:12914: result: yes | configure:12917: checking whether to build static libraries | configure:12921: result: yes | configure:12959: checking for egrep | configure:13021: result: /usr/bin/grep -E | configure:13032: checking for flex | configure:13048: found /usr/bin/flex | configure:13059: result: flex | configure:13097: flex conftest.l | configure:13101: $? = 0 | configure:13103: checking lex output file root | configure:13117: result: lex.yy | configure:13122: checking lex library | configure:13136: gcc -o conftest -O2 conftest.c >&5 | /usr/bin/ld: /tmp/ccx6D8VK.o: in function `yylex': | conftest.c:(.text+0xec8): undefined reference to `yywrap' | /usr/bin/ld: conftest.c:(.text+0x1147): undefined reference to `yywrap' | /usr/bin/ld: /tmp/ccx6D8VK.o: in function `main': | conftest.c:(.text.startup+0x9): undefined reference to `yywrap' | collect2: error: ld returned 1 exit status | configure:13136: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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. */ | | | | #line 2 "lex.yy.c" | | | | #define YY_INT_ALIGNED short int | | | | /* A lexical scanner generated by flex */ | | | | #define FLEX_SCANNER | | #define YY_FLEX_MAJOR_VERSION 2 | | #define YY_FLEX_MINOR_VERSION 6 | | #define YY_FLEX_SUBMINOR_VERSION 4 | | #if YY_FLEX_SUBMINOR_VERSION > 0 | | #define FLEX_BETA | | #endif | | | | /* First, we deal with platform-specific or compiler-specific issues. */ | | | | /* begin standard C headers. */ | | #include | | #include | | #include | | #include | | | | /* end standard C headers. */ | | | | /* flex integer type definitions */ | | | | #ifndef FLEXINT_H | | #define FLEXINT_H | | | | /* C99 systems have . Non-C99 systems may or may not. */ | | | | #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L | | | | /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, | | * if you want the limit (max/min) macros for int types. | | */ | | #ifndef __STDC_LIMIT_MACROS | | #define __STDC_LIMIT_MACROS 1 | | #endif | | | | #include | | typedef int8_t flex_int8_t; | | typedef uint8_t flex_uint8_t; | | typedef int16_t flex_int16_t; | | typedef uint16_t flex_uint16_t; | | typedef int32_t flex_int32_t; | | typedef uint32_t flex_uint32_t; | | #else | | typedef signed char flex_int8_t; | | typedef short int flex_int16_t; | | typedef int flex_int32_t; | | typedef unsigned char flex_uint8_t; | | typedef unsigned short int flex_uint16_t; | | typedef unsigned int flex_uint32_t; | | | | /* Limits of integral types. */ | | #ifndef INT8_MIN | | #define INT8_MIN (-128) | | #endif | | #ifndef INT16_MIN | | #define INT16_MIN (-32767-1) | | #endif | | #ifndef INT32_MIN | | #define INT32_MIN (-2147483647-1) | | #endif | | #ifndef INT8_MAX | | #define INT8_MAX (127) | | #endif | | #ifndef INT16_MAX | | #define INT16_MAX (32767) | | #endif | | #ifndef INT32_MAX | | #define INT32_MAX (2147483647) | | #endif | | #ifndef UINT8_MAX | | #define UINT8_MAX (255U) | | #endif | | #ifndef UINT16_MAX | | #define UINT16_MAX (65535U) | | #endif | | #ifndef UINT32_MAX | | #define UINT32_MAX (4294967295U) | | #endif | | | | #ifndef SIZE_MAX | | #define SIZE_MAX (~(size_t)0) | | #endif | | | | #endif /* ! C99 */ | | | | #endif /* ! FLEXINT_H */ | | | | /* begin standard C++ headers. */ | | | | /* TODO: this is always defined, so inline it */ | | #define yyconst const | | | | #if defined(__GNUC__) && __GNUC__ >= 3 | | #define yynoreturn __attribute__((__noreturn__)) | | #else | | #define yynoreturn | | #endif | | | | /* Returned upon end-of-file. */ | | #define YY_NULL 0 | | | | /* Promotes a possibly negative, possibly signed char to an | | * integer in range [0..255] for use as an array index. | | */ | | #define YY_SC_TO_UI(c) ((YY_CHAR) (c)) | | | | /* Enter a start condition. This macro really ought to take a parameter, | | * but we do it the disgusting crufty way forced on us by the ()-less | | * definition of BEGIN. | | */ | | #define BEGIN (yy_start) = 1 + 2 * | | /* Translate the current start state into a value that can be later handed | | * to BEGIN to return to the state. The YYSTATE alias is for lex | | * compatibility. | | */ | | #define YY_START (((yy_start) - 1) / 2) | | #define YYSTATE YY_START | | /* Action number for EOF rule of a given start state. */ | | #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) | | /* Special action meaning "start processing a new file". */ | | #define YY_NEW_FILE yyrestart( yyin ) | | #define YY_END_OF_BUFFER_CHAR 0 | | | | /* Size of default input buffer. */ | | #ifndef YY_BUF_SIZE | | #ifdef __ia64__ | | /* On IA-64, the buffer size is 16k, not 8k. | | * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. | | * Ditto for the __ia64__ case accordingly. | | */ | | #define YY_BUF_SIZE 32768 | | #else | | #define YY_BUF_SIZE 16384 | | #endif /* __ia64__ */ | | #endif | | | | /* The state buf must be large enough to hold one state per character in the main buffer. | | */ | | #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) | | | | #ifndef YY_TYPEDEF_YY_BUFFER_STATE | | #define YY_TYPEDEF_YY_BUFFER_STATE | | typedef struct yy_buffer_state *YY_BUFFER_STATE; | | #endif | | | | #ifndef YY_TYPEDEF_YY_SIZE_T | | #define YY_TYPEDEF_YY_SIZE_T | | typedef size_t yy_size_t; | | #endif | | | | extern int yyleng; | | | | extern FILE *yyin, *yyout; | | | | #define EOB_ACT_CONTINUE_SCAN 0 | | #define EOB_ACT_END_OF_FILE 1 | | #define EOB_ACT_LAST_MATCH 2 | | | | #define YY_LESS_LINENO(n) | | #define YY_LINENO_REWIND_TO(ptr) | | | | /* Return all but the first "n" matched characters back to the input stream. */ | | #define yyless(n) \ | | do \ | | { \ | | /* Undo effects of setting up yytext. */ \ | | int yyless_macro_arg = (n); \ | | YY_LESS_LINENO(yyless_macro_arg);\ | | *yy_cp = (yy_hold_char); \ | | YY_RESTORE_YY_MORE_OFFSET \ | | (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ | | YY_DO_BEFORE_ACTION; /* set up yytext again */ \ | | } \ | | while ( 0 ) | | #define unput(c) yyunput( c, (yytext_ptr) ) | | | | #ifndef YY_STRUCT_YY_BUFFER_STATE | | #define YY_STRUCT_YY_BUFFER_STATE | | struct yy_buffer_state | | { | | FILE *yy_input_file; | | | | char *yy_ch_buf; /* input buffer */ | | char *yy_buf_pos; /* current position in input buffer */ | | | | /* Size of input buffer in bytes, not including room for EOB | | * characters. | | */ | | int yy_buf_size; | | | | /* Number of characters read into yy_ch_buf, not including EOB | | * characters. | | */ | | int yy_n_chars; | | | | /* Whether we "own" the buffer - i.e., we know we created it, | | * and can realloc() it to grow it, and should free() it to | | * delete it. | | */ | | int yy_is_our_buffer; | | | | /* Whether this is an "interactive" input source; if so, and | | * if we're using stdio for input, then we want to use getc() | | * instead of fread(), to make sure we stop fetching input after | | * each newline. | | */ | | int yy_is_interactive; | | | | /* Whether we're considered to be at the beginning of a line. | | * If so, '^' rules will be active on the next match, otherwise | | * not. | | */ | | int yy_at_bol; | | | | int yy_bs_lineno; /**< The line count. */ | | int yy_bs_column; /**< The column count. */ | | | | /* Whether to try to fill the input buffer when we reach the | | * end of it. | | */ | | int yy_fill_buffer; | | | | int yy_buffer_status; | | | | #define YY_BUFFER_NEW 0 | | #define YY_BUFFER_NORMAL 1 | | /* When an EOF's been seen but there's still some text to process | | * then we mark the buffer as YY_EOF_PENDING, to indicate that we | | * shouldn't try reading from the input source any more. We might | | * still have a bunch of tokens to match, though, because of | | * possible backing-up. | | * | | * When we actually see the EOF, we change the status to "new" | | * (via yyrestart()), so that the user can continue scanning by | | * just pointing yyin at a new input file. | | */ | | #define YY_BUFFER_EOF_PENDING 2 | | | | }; | | #endif /* !YY_STRUCT_YY_BUFFER_STATE */ | | | | /* Stack of input buffers. */ | | static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ | | static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ | | static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */ | | | | /* We provide macros for accessing buffer states in case in the | | * future we want to put the buffer states in a more general | | * "scanner state". | | * | | * Returns the top of the stack, or NULL. | | */ | | #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ | | ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ | | : NULL) | | /* Same as previous macro, but useful when we know that the buffer stack is not | | * NULL or when we need an lvalue. For internal use only. | | */ | | #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] | | | | /* yy_hold_char holds the character lost when yytext is formed. */ | | static char yy_hold_char; | | static int yy_n_chars; /* number of characters read into yy_ch_buf */ | | int yyleng; | | | | /* Points to current character in buffer. */ | | static char *yy_c_buf_p = NULL; | | static int yy_init = 0; /* whether we need to initialize */ | | static int yy_start = 0; /* start state number */ | | | | /* Flag which is used to allow yywrap()'s to do buffer switches | | * instead of setting up a fresh yyin. A bit of a hack ... | | */ | | static int yy_did_buffer_switch_on_eof; | | | | void yyrestart ( FILE *input_file ); | | void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer ); | | YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size ); | | void yy_delete_buffer ( YY_BUFFER_STATE b ); | | void yy_flush_buffer ( YY_BUFFER_STATE b ); | | void yypush_buffer_state ( YY_BUFFER_STATE new_buffer ); | | void yypop_buffer_state ( void ); | | | | static void yyensure_buffer_stack ( void ); | | static void yy_load_buffer_state ( void ); | | static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file ); | | #define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER ) | | | | YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size ); | | YY_BUFFER_STATE yy_scan_string ( const char *yy_str ); | | YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len ); | | | | void *yyalloc ( yy_size_t ); | | void *yyrealloc ( void *, yy_size_t ); | | void yyfree ( void * ); | | | | #define yy_new_buffer yy_create_buffer | | #define yy_set_interactive(is_interactive) \ | | { \ | | if ( ! YY_CURRENT_BUFFER ){ \ | | yyensure_buffer_stack (); \ | | YY_CURRENT_BUFFER_LVALUE = \ | | yy_create_buffer( yyin, YY_BUF_SIZE ); \ | | } \ | | YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ | | } | | #define yy_set_bol(at_bol) \ | | { \ | | if ( ! YY_CURRENT_BUFFER ){\ | | yyensure_buffer_stack (); \ | | YY_CURRENT_BUFFER_LVALUE = \ | | yy_create_buffer( yyin, YY_BUF_SIZE ); \ | | } \ | | YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ | | } | | #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) | | | | /* Begin user sect3 */ | | typedef flex_uint8_t YY_CHAR; | | | | FILE *yyin = NULL, *yyout = NULL; | | | | typedef int yy_state_type; | | | | extern int yylineno; | | int yylineno = 1; | | | | extern char *yytext; | | #ifdef yytext_ptr | | #undef yytext_ptr | | #endif | | #define yytext_ptr yytext | | | | static yy_state_type yy_get_previous_state ( void ); | | static yy_state_type yy_try_NUL_trans ( yy_state_type current_state ); | | static int yy_get_next_buffer ( void ); | | static void yynoreturn yy_fatal_error ( const char* msg ); | | | | /* Done after the current pattern has been matched and before the | | * corresponding action - sets up yytext. | | */ | | #define YY_DO_BEFORE_ACTION \ | | (yytext_ptr) = yy_bp; \ | | (yytext_ptr) -= (yy_more_len); \ | | yyleng = (int) (yy_cp - (yytext_ptr)); \ | | (yy_hold_char) = *yy_cp; \ | | *yy_cp = '\0'; \ | | (yy_c_buf_p) = yy_cp; | | #define YY_NUM_RULES 8 | | #define YY_END_OF_BUFFER 9 | | /* This struct is not used in this scanner, | | but its presence is necessary. */ | | struct yy_trans_info | | { | | flex_int32_t yy_verify; | | flex_int32_t yy_nxt; | | }; | | static const flex_int16_t yy_acclist[23] = | | { 0, | | 9, 7, 8, 8, 1, 7, 8, 2, 7, 8, | | 3, 7, 8, 4, 7, 8, 5, 7, 8, 6, | | 7, 8 | | } ; | | | | static const flex_int16_t yy_accept[14] = | | { 0, | | 1, 1, 1, 2, 4, 5, 8, 11, 14, 17, | | 20, 23, 23 | | } ; | | | | static const YY_CHAR yy_ec[256] = | | { 0, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 3, 4, 5, 6, | | | | 7, 8, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1 | | } ; | | | | static const YY_CHAR yy_meta[9] = | | { 0, | | 1, 1, 1, 1, 1, 1, 1, 1 | | } ; | | | | static const flex_int16_t yy_base[13] = | | { 0, | | 0, 0, 9, 10, 10, 10, 10, 10, 10, 10, | | 10, 10 | | } ; | | | | static const flex_int16_t yy_def[13] = | | { 0, | | 12, 1, 12, 12, 12, 12, 12, 12, 12, 12, | | 12, 0 | | } ; | | | | static const flex_int16_t yy_nxt[19] = | | { 0, | | 4, 5, 6, 7, 8, 9, 10, 11, 12, 3, | | 12, 12, 12, 12, 12, 12, 12, 12 | | } ; | | | | static const flex_int16_t yy_chk[19] = | | { 0, | | 1, 1, 1, 1, 1, 1, 1, 1, 3, 12, | | 12, 12, 12, 12, 12, 12, 12, 12 | | } ; | | | | extern int yy_flex_debug; | | int yy_flex_debug = 0; | | | | static yy_state_type *yy_state_buf=0, *yy_state_ptr=0; | | static char *yy_full_match; | | static int yy_lp; | | #define REJECT \ | | { \ | | *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \ | | yy_cp = (yy_full_match); /* restore poss. backed-over text */ \ | | ++(yy_lp); \ | | goto find_rule; \ | | } | | | | static int yy_more_flag = 0; | | static int yy_more_len = 0; | | #define yymore() ((yy_more_flag) = 1) | | #define YY_MORE_ADJ (yy_more_len) | | #define YY_RESTORE_YY_MORE_OFFSET | | char *yytext; | | #line 1 "conftest.l" | | #line 459 "lex.yy.c" | | | | #define INITIAL 0 | | | | #ifndef YY_NO_UNISTD_H | | /* Special case for "unistd.h", since it is non-ANSI. We include it way | | * down here because we want the user's section 1 to have been scanned first. | | * The user has a chance to override it with an option. | | */ | | #include | | #endif | | | | #ifndef YY_EXTRA_TYPE | | #define YY_EXTRA_TYPE void * | | #endif | | | | static int yy_init_globals ( void ); | | | | /* Accessor methods to globals. | | These are made visible to non-reentrant scanners for convenience. */ | | | | int yylex_destroy ( void ); | | | | int yyget_debug ( void ); | | | | void yyset_debug ( int debug_flag ); | | | | YY_EXTRA_TYPE yyget_extra ( void ); | | | | void yyset_extra ( YY_EXTRA_TYPE user_defined ); | | | | FILE *yyget_in ( void ); | | | | void yyset_in ( FILE * _in_str ); | | | | FILE *yyget_out ( void ); | | | | void yyset_out ( FILE * _out_str ); | | | | int yyget_leng ( void ); | | | | char *yyget_text ( void ); | | | | int yyget_lineno ( void ); | | | | void yyset_lineno ( int _line_number ); | | | | /* Macros after this point can all be overridden by user definitions in | | * section 1. | | */ | | | | #ifndef YY_SKIP_YYWRAP | | #ifdef __cplusplus | | extern "C" int yywrap ( void ); | | #else | | extern int yywrap ( void ); | | #endif | | #endif | | | | #ifndef YY_NO_UNPUT | | | | static void yyunput ( int c, char *buf_ptr ); | | | | #endif | | | | #ifndef yytext_ptr | | static void yy_flex_strncpy ( char *, const char *, int ); | | #endif | | | | #ifdef YY_NEED_STRLEN | | static int yy_flex_strlen ( const char * ); | | #endif | | | | #ifndef YY_NO_INPUT | | #ifdef __cplusplus | | static int yyinput ( void ); | | #else | | static int input ( void ); | | #endif | | | | #endif | | | | /* Amount of stuff to slurp up with each read. */ | | #ifndef YY_READ_BUF_SIZE | | #ifdef __ia64__ | | /* On IA-64, the buffer size is 16k, not 8k */ | | #define YY_READ_BUF_SIZE 16384 | | #else | | #define YY_READ_BUF_SIZE 8192 | | #endif /* __ia64__ */ | | #endif | | | | /* Copy whatever the last rule matched to the standard output. */ | | #ifndef ECHO | | /* This used to be an fputs(), but since the string might contain NUL's, | | * we now use fwrite(). | | */ | | #define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0) | | #endif | | | | /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, | | * is returned in "result". | | */ | | #ifndef YY_INPUT | | #define YY_INPUT(buf,result,max_size) \ | | if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ | | { \ | | int c = '*'; \ | | int n; \ | | for ( n = 0; n < max_size && \ | | (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ | | buf[n] = (char) c; \ | | if ( c == '\n' ) \ | | buf[n++] = (char) c; \ | | if ( c == EOF && ferror( yyin ) ) \ | | YY_FATAL_ERROR( "input in flex scanner failed" ); \ | | result = n; \ | | } \ | | else \ | | { \ | | errno=0; \ | | while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ | | { \ | | if( errno != EINTR) \ | | { \ | | YY_FATAL_ERROR( "input in flex scanner failed" ); \ | | break; \ | | } \ | | errno=0; \ | | clearerr(yyin); \ | | } \ | | }\ | | \ | | | | #endif | | | | /* No semi-colon after return; correct usage is to write "yyterminate();" - | | * we don't want an extra ';' after the "return" because that will cause | | * some compilers to complain about unreachable statements. | | */ | | #ifndef yyterminate | | #define yyterminate() return YY_NULL | | #endif | | | | /* Number of entries by which start-condition stack grows. */ | | #ifndef YY_START_STACK_INCR | | #define YY_START_STACK_INCR 25 | | #endif | | | | /* Report a fatal error. */ | | #ifndef YY_FATAL_ERROR | | #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) | | #endif | | | | /* end tables serialization structures and prototypes */ | | | | /* Default declaration of generated scanner - a define so the user can | | * easily add parameters. | | */ | | #ifndef YY_DECL | | #define YY_DECL_IS_OURS 1 | | | | extern int yylex (void); | | | | #define YY_DECL int yylex (void) | | #endif /* !YY_DECL */ | | | | /* Code executed at the beginning of each rule, after yytext and yyleng | | * have been set up. | | */ | | #ifndef YY_USER_ACTION | | #define YY_USER_ACTION | | #endif | | | | /* Code executed at the end of each rule. */ | | #ifndef YY_BREAK | | #define YY_BREAK /*LINTED*/break; | | #endif | | | | #define YY_RULE_SETUP \ | | YY_USER_ACTION | | | | /** The main scanner function which does all the work. | | */ | | YY_DECL | | { | | yy_state_type yy_current_state; | | char *yy_cp, *yy_bp; | | int yy_act; | | | | if ( !(yy_init) ) | | { | | (yy_init) = 1; | | | | #ifdef YY_USER_INIT | | YY_USER_INIT; | | #endif | | | | /* Create the reject buffer large enough to save one state per allowed character. */ | | if ( ! (yy_state_buf) ) | | (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE ); | | if ( ! (yy_state_buf) ) | | YY_FATAL_ERROR( "out of dynamic memory in yylex()" ); | | | | if ( ! (yy_start) ) | | (yy_start) = 1; /* first start state */ | | | | if ( ! yyin ) | | yyin = stdin; | | | | if ( ! yyout ) | | yyout = stdout; | | | | if ( ! YY_CURRENT_BUFFER ) { | | yyensure_buffer_stack (); | | YY_CURRENT_BUFFER_LVALUE = | | yy_create_buffer( yyin, YY_BUF_SIZE ); | | } | | | | yy_load_buffer_state( ); | | } | | | | { | | #line 1 "conftest.l" | | | | #line 684 "lex.yy.c" | | | | while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ | | { | | (yy_more_len) = 0; | | if ( (yy_more_flag) ) | | { | | (yy_more_len) = (int) ((yy_c_buf_p) - (yytext_ptr)); | | (yy_more_flag) = 0; | | } | | yy_cp = (yy_c_buf_p); | | | | /* Support of yytext. */ | | *yy_cp = (yy_hold_char); | | | | /* yy_bp points to the position in yy_ch_buf of the start of | | * the current run. | | */ | | yy_bp = yy_cp; | | | | yy_current_state = (yy_start); | | | | (yy_state_ptr) = (yy_state_buf); | | *(yy_state_ptr)++ = yy_current_state; | | | | yy_match: | | do | | { | | YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | | { | | yy_current_state = (int) yy_def[yy_current_state]; | | if ( yy_current_state >= 13 ) | | yy_c = yy_meta[yy_c]; | | } | | yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; | | *(yy_state_ptr)++ = yy_current_state; | | ++yy_cp; | | } | | while ( yy_base[yy_current_state] != 10 ); | | | | yy_find_action: | | yy_current_state = *--(yy_state_ptr); | | (yy_lp) = yy_accept[yy_current_state]; | | | | find_rule: /* we branch to this label when backing up */ | | | | for ( ; ; ) /* until we find what rule we matched */ | | { | | if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] ) | | { | | yy_act = yy_acclist[(yy_lp)]; | | { | | (yy_full_match) = yy_cp; | | break; | | } | | } | | --yy_cp; | | yy_current_state = *--(yy_state_ptr); | | (yy_lp) = yy_accept[yy_current_state]; | | } | | | | YY_DO_BEFORE_ACTION; | | | | do_action: /* This label is used only to access EOF actions. */ | | | | switch ( yy_act ) | | { /* beginning of action switch */ | | case 1: | | YY_RULE_SETUP | | #line 2 "conftest.l" | | { ECHO; } | | YY_BREAK | | case 2: | | YY_RULE_SETUP | | #line 3 "conftest.l" | | { REJECT; } | | YY_BREAK | | case 3: | | YY_RULE_SETUP | | #line 4 "conftest.l" | | { yymore (); } | | YY_BREAK | | case 4: | | YY_RULE_SETUP | | #line 5 "conftest.l" | | { yyless (1); } | | YY_BREAK | | case 5: | | YY_RULE_SETUP | | #line 6 "conftest.l" | | { /* IRIX 6.5 flex 2.5.4 underquotes its yyless argument. */ | | yyless ((input () != 0)); } | | YY_BREAK | | case 6: | | YY_RULE_SETUP | | #line 8 "conftest.l" | | { unput (yytext[0]); } | | YY_BREAK | | case 7: | | YY_RULE_SETUP | | #line 9 "conftest.l" | | { BEGIN INITIAL; } | | YY_BREAK | | case 8: | | YY_RULE_SETUP | | #line 10 "conftest.l" | | ECHO; | | YY_BREAK | | #line 793 "lex.yy.c" | | case YY_STATE_EOF(INITIAL): | | yyterminate(); | | | | case YY_END_OF_BUFFER: | | { | | /* Amount of text matched not including the EOB char. */ | | int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; | | | | /* Undo the effects of YY_DO_BEFORE_ACTION. */ | | *yy_cp = (yy_hold_char); | | YY_RESTORE_YY_MORE_OFFSET | | | | if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) | | { | | /* We're scanning a new file or input source. It's | | * possible that this happened because the user | | * just pointed yyin at a new source and called | | * yylex(). If so, then we have to assure | | * consistency between YY_CURRENT_BUFFER and our | | * globals. Here is the right place to do so, because | | * this is the first action (other than possibly a | | * back-up) that will match for the new input source. | | */ | | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; | | YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; | | YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; | | } | | | | /* Note that here we test for yy_c_buf_p "<=" to the position | | * of the first EOB in the buffer, since yy_c_buf_p will | | * already have been incremented past the NUL character | | * (since all states make transitions on EOB to the | | * end-of-buffer state). Contrast this with the test | | * in input(). | | */ | | if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) | | { /* This was really a NUL. */ | | yy_state_type yy_next_state; | | | | (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; | | | | yy_current_state = yy_get_previous_state( ); | | | | /* Okay, we're now positioned to make the NUL | | * transition. We couldn't have | | * yy_get_previous_state() go ahead and do it | | * for us because it doesn't know how to deal | | * with the possibility of jamming (and we don't | | * want to build jamming into it because then it | | * will run more slowly). | | */ | | | | yy_next_state = yy_try_NUL_trans( yy_current_state ); | | | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | | | | if ( yy_next_state ) | | { | | /* Consume the NUL. */ | | yy_cp = ++(yy_c_buf_p); | | yy_current_state = yy_next_state; | | goto yy_match; | | } | | | | else | | { | | yy_cp = (yy_c_buf_p); | | goto yy_find_action; | | } | | } | | | | else switch ( yy_get_next_buffer( ) ) | | { | | case EOB_ACT_END_OF_FILE: | | { | | (yy_did_buffer_switch_on_eof) = 0; | | | | if ( yywrap( ) ) | | { | | /* Note: because we've taken care in | | * yy_get_next_buffer() to have set up | | * yytext, we can now set up | | * yy_c_buf_p so that if some total | | * hoser (like flex itself) wants to | | * call the scanner after we return the | | * YY_NULL, it'll still work - another | | * YY_NULL will get returned. | | */ | | (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; | | | | yy_act = YY_STATE_EOF(YY_START); | | goto do_action; | | } | | | | else | | { | | if ( ! (yy_did_buffer_switch_on_eof) ) | | YY_NEW_FILE; | | } | | break; | | } | | | | case EOB_ACT_CONTINUE_SCAN: | | (yy_c_buf_p) = | | (yytext_ptr) + yy_amount_of_matched_text; | | | | yy_current_state = yy_get_previous_state( ); | | | | yy_cp = (yy_c_buf_p); | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | | goto yy_match; | | | | case EOB_ACT_LAST_MATCH: | | (yy_c_buf_p) = | | &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; | | | | yy_current_state = yy_get_previous_state( ); | | | | yy_cp = (yy_c_buf_p); | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | | goto yy_find_action; | | } | | break; | | } | | | | default: | | YY_FATAL_ERROR( | | "fatal flex scanner internal error--no action found" ); | | } /* end of action switch */ | | } /* end of scanning one token */ | | } /* end of user's declarations */ | | } /* end of yylex */ | | | | /* yy_get_next_buffer - try to read in a new buffer | | * | | * Returns a code representing an action: | | * EOB_ACT_LAST_MATCH - | | * EOB_ACT_CONTINUE_SCAN - continue scanning from current position | | * EOB_ACT_END_OF_FILE - end of file | | */ | | static int yy_get_next_buffer (void) | | { | | char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; | | char *source = (yytext_ptr); | | int number_to_move, i; | | int ret_val; | | | | if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) | | YY_FATAL_ERROR( | | "fatal flex scanner internal error--end of buffer missed" ); | | | | if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) | | { /* Don't try to fill the buffer, so this is an EOF. */ | | if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) | | { | | /* We matched a single character, the EOB, so | | * treat this as a final EOF. | | */ | | return EOB_ACT_END_OF_FILE; | | } | | | | else | | { | | /* We matched some text prior to the EOB, first | | * process it. | | */ | | return EOB_ACT_LAST_MATCH; | | } | | } | | | | /* Try to read more data. */ | | | | /* First move last chars to start of buffer. */ | | number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1); | | | | for ( i = 0; i < number_to_move; ++i ) | | *(dest++) = *(source++); | | | | if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) | | /* don't do the read, it's not guaranteed to return an EOF, | | * just force an EOF | | */ | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; | | | | else | | { | | int num_to_read = | | YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; | | | | while ( num_to_read <= 0 ) | | { /* Not enough room in the buffer - grow it. */ | | | | YY_FATAL_ERROR( | | "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); | | | | } | | | | if ( num_to_read > YY_READ_BUF_SIZE ) | | num_to_read = YY_READ_BUF_SIZE; | | | | /* Read in more data. */ | | YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), | | (yy_n_chars), num_to_read ); | | | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | | } | | | | if ( (yy_n_chars) == 0 ) | | { | | if ( number_to_move == YY_MORE_ADJ ) | | { | | ret_val = EOB_ACT_END_OF_FILE; | | yyrestart( yyin ); | | } | | | | else | | { | | ret_val = EOB_ACT_LAST_MATCH; | | YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = | | YY_BUFFER_EOF_PENDING; | | } | | } | | | | else | | ret_val = EOB_ACT_CONTINUE_SCAN; | | | | if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { | | /* Extend the array by 50%, plus the number we really need. */ | | int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc( | | (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size ); | | if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); | | /* "- 2" to take care of EOB's */ | | YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2); | | } | | | | (yy_n_chars) += number_to_move; | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; | | | | (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; | | | | return ret_val; | | } | | | | /* yy_get_previous_state - get the state just before the EOB char was reached */ | | | | static yy_state_type yy_get_previous_state (void) | | { | | yy_state_type yy_current_state; | | char *yy_cp; | | | | yy_current_state = (yy_start); | | | | (yy_state_ptr) = (yy_state_buf); | | *(yy_state_ptr)++ = yy_current_state; | | | | for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) | | { | | YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | | { | | yy_current_state = (int) yy_def[yy_current_state]; | | if ( yy_current_state >= 13 ) | | yy_c = yy_meta[yy_c]; | | } | | yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; | | *(yy_state_ptr)++ = yy_current_state; | | } | | | | return yy_current_state; | | } | | | | /* yy_try_NUL_trans - try to make a transition on the NUL character | | * | | * synopsis | | * next_state = yy_try_NUL_trans( current_state ); | | */ | | static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) | | { | | int yy_is_jam; | | | | YY_CHAR yy_c = 1; | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | | { | | yy_current_state = (int) yy_def[yy_current_state]; | | if ( yy_current_state >= 13 ) | | yy_c = yy_meta[yy_c]; | | } | | yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; | | yy_is_jam = (yy_current_state == 12); | | if ( ! yy_is_jam ) | | *(yy_state_ptr)++ = yy_current_state; | | | | return yy_is_jam ? 0 : yy_current_state; | | } | | | | #ifndef YY_NO_UNPUT | | | | static void yyunput (int c, char * yy_bp ) | | { | | char *yy_cp; | | | | yy_cp = (yy_c_buf_p); | | | | /* undo effects of setting up yytext */ | | *yy_cp = (yy_hold_char); | | | | if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) | | { /* need to shift things up to make room */ | | /* +2 for EOB chars. */ | | int number_to_move = (yy_n_chars) + 2; | | char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ | | YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; | | char *source = | | &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; | | | | while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) | | *--dest = *--source; | | | | yy_cp += (int) (dest - source); | | yy_bp += (int) (dest - source); | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = | | (yy_n_chars) = (int) YY_CURRENT_BUFFER_LVALUE->yy_buf_size; | | | | if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) | | YY_FATAL_ERROR( "flex scanner push-back overflow" ); | | } | | | | *--yy_cp = (char) c; | | | | (yytext_ptr) = yy_bp; | | (yy_hold_char) = *yy_cp; | | (yy_c_buf_p) = yy_cp; | | } | | | | #endif | | | | #ifndef YY_NO_INPUT | | #ifdef __cplusplus | | static int yyinput (void) | | #else | | static int input (void) | | #endif | | | | { | | int c; | | | | *(yy_c_buf_p) = (yy_hold_char); | | | | if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) | | { | | /* yy_c_buf_p now points to the character we want to return. | | * If this occurs *before* the EOB characters, then it's a | | * valid NUL; if not, then we've hit the end of the buffer. | | */ | | if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) | | /* This was really a NUL. */ | | *(yy_c_buf_p) = '\0'; | | | | else | | { /* need more input */ | | int offset = (int) ((yy_c_buf_p) - (yytext_ptr)); | | ++(yy_c_buf_p); | | | | switch ( yy_get_next_buffer( ) ) | | { | | case EOB_ACT_LAST_MATCH: | | /* This happens because yy_g_n_b() | | * sees that we've accumulated a | | * token and flags that we need to | | * try matching the token before | | * proceeding. But for input(), | | * there's no matching to consider. | | * So convert the EOB_ACT_LAST_MATCH | | * to EOB_ACT_END_OF_FILE. | | */ | | | | /* Reset buffer status. */ | | yyrestart( yyin ); | | | | /*FALLTHROUGH*/ | | | | case EOB_ACT_END_OF_FILE: | | { | | if ( yywrap( ) ) | | return 0; | | | | if ( ! (yy_did_buffer_switch_on_eof) ) | | YY_NEW_FILE; | | #ifdef __cplusplus | | return yyinput(); | | #else | | return input(); | | #endif | | } | | | | case EOB_ACT_CONTINUE_SCAN: | | (yy_c_buf_p) = (yytext_ptr) + offset; | | break; | | } | | } | | } | | | | c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ | | *(yy_c_buf_p) = '\0'; /* preserve yytext */ | | (yy_hold_char) = *++(yy_c_buf_p); | | | | return c; | | } | | #endif /* ifndef YY_NO_INPUT */ | | | | /** Immediately switch to a different input stream. | | * @param input_file A readable stream. | | * | | * @note This function does not reset the start condition to @c INITIAL . | | */ | | void yyrestart (FILE * input_file ) | | { | | | | if ( ! YY_CURRENT_BUFFER ){ | | yyensure_buffer_stack (); | | YY_CURRENT_BUFFER_LVALUE = | | yy_create_buffer( yyin, YY_BUF_SIZE ); | | } | | | | yy_init_buffer( YY_CURRENT_BUFFER, input_file ); | | yy_load_buffer_state( ); | | } | | | | /** Switch to a different input buffer. | | * @param new_buffer The new input buffer. | | * | | */ | | void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) | | { | | | | /* TODO. We should be able to replace this entire function body | | * with | | * yypop_buffer_state(); | | * yypush_buffer_state(new_buffer); | | */ | | yyensure_buffer_stack (); | | if ( YY_CURRENT_BUFFER == new_buffer ) | | return; | | | | if ( YY_CURRENT_BUFFER ) | | { | | /* Flush out information for old buffer. */ | | *(yy_c_buf_p) = (yy_hold_char); | | YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | | } | | | | YY_CURRENT_BUFFER_LVALUE = new_buffer; | | yy_load_buffer_state( ); | | | | /* We don't actually know whether we did this switch during | | * EOF (yywrap()) processing, but the only time this flag | | * is looked at is after yywrap() is called, so it's safe | | * to go ahead and always set it. | | */ | | (yy_did_buffer_switch_on_eof) = 1; | | } | | | | static void yy_load_buffer_state (void) | | { | | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; | | (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; | | yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; | | (yy_hold_char) = *(yy_c_buf_p); | | } | | | | /** Allocate and initialize an input buffer state. | | * @param file A readable stream. | | * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. | | * | | * @return the allocated buffer state. | | */ | | YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) | | { | | YY_BUFFER_STATE b; | | | | b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) ); | | if ( ! b ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | | | | b->yy_buf_size = size; | | | | /* yy_ch_buf has to be 2 characters longer than the size given because | | * we need to put in 2 end-of-buffer characters. | | */ | | b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) ); | | if ( ! b->yy_ch_buf ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | | | | b->yy_is_our_buffer = 1; | | | | yy_init_buffer( b, file ); | | | | return b; | | } | | | | /** Destroy the buffer. | | * @param b a buffer created with yy_create_buffer() | | * | | */ | | void yy_delete_buffer (YY_BUFFER_STATE b ) | | { | | | | if ( ! b ) | | return; | | | | if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ | | YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; | | | | if ( b->yy_is_our_buffer ) | | yyfree( (void *) b->yy_ch_buf ); | | | | yyfree( (void *) b ); | | } | | | | /* Initializes or reinitializes a buffer. | | * This function is sometimes called more than once on the same buffer, | | * such as during a yyrestart() or at EOF. | | */ | | static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) | | | | { | | int oerrno = errno; | | | | yy_flush_buffer( b ); | | | | b->yy_input_file = file; | | b->yy_fill_buffer = 1; | | | | /* If b is the current buffer, then yy_init_buffer was _probably_ | | * called from yyrestart() or through yy_get_next_buffer. | | * In that case, we don't want to reset the lineno or column. | | */ | | if (b != YY_CURRENT_BUFFER){ | | b->yy_bs_lineno = 1; | | b->yy_bs_column = 0; | | } | | | | b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; | | | | errno = oerrno; | | } | | | | /** Discard all buffered characters. On the next scan, YY_INPUT will be called. | | * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. | | * | | */ | | void yy_flush_buffer (YY_BUFFER_STATE b ) | | { | | if ( ! b ) | | return; | | | | b->yy_n_chars = 0; | | | | /* We always need two end-of-buffer characters. The first causes | | * a transition to the end-of-buffer state. The second causes | | * a jam in that state. | | */ | | b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; | | b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; | | | | b->yy_buf_pos = &b->yy_ch_buf[0]; | | | | b->yy_at_bol = 1; | | b->yy_buffer_status = YY_BUFFER_NEW; | | | | if ( b == YY_CURRENT_BUFFER ) | | yy_load_buffer_state( ); | | } | | | | /** Pushes the new state onto the stack. The new state becomes | | * the current state. This function will allocate the stack | | * if necessary. | | * @param new_buffer The new state. | | * | | */ | | void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) | | { | | if (new_buffer == NULL) | | return; | | | | yyensure_buffer_stack(); | | | | /* This block is copied from yy_switch_to_buffer. */ | | if ( YY_CURRENT_BUFFER ) | | { | | /* Flush out information for old buffer. */ | | *(yy_c_buf_p) = (yy_hold_char); | | YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | | } | | | | /* Only push if top exists. Otherwise, replace top. */ | | if (YY_CURRENT_BUFFER) | | (yy_buffer_stack_top)++; | | YY_CURRENT_BUFFER_LVALUE = new_buffer; | | | | /* copied from yy_switch_to_buffer. */ | | yy_load_buffer_state( ); | | (yy_did_buffer_switch_on_eof) = 1; | | } | | | | /** Removes and deletes the top of the stack, if present. | | * The next element becomes the new top. | | * | | */ | | void yypop_buffer_state (void) | | { | | if (!YY_CURRENT_BUFFER) | | return; | | | | yy_delete_buffer(YY_CURRENT_BUFFER ); | | YY_CURRENT_BUFFER_LVALUE = NULL; | | if ((yy_buffer_stack_top) > 0) | | --(yy_buffer_stack_top); | | | | if (YY_CURRENT_BUFFER) { | | yy_load_buffer_state( ); | | (yy_did_buffer_switch_on_eof) = 1; | | } | | } | | | | /* Allocates the stack if it does not exist. | | * Guarantees space for at least one push. | | */ | | static void yyensure_buffer_stack (void) | | { | | yy_size_t num_to_alloc; | | | | if (!(yy_buffer_stack)) { | | | | /* First allocation is just for 2 elements, since we don't know if this | | * scanner will even need a stack. We use 2 instead of 1 to avoid an | | * immediate realloc on the next call. | | */ | | num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ | | (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc | | (num_to_alloc * sizeof(struct yy_buffer_state*) | | ); | | if ( ! (yy_buffer_stack) ) | | YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); | | | | memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); | | | | (yy_buffer_stack_max) = num_to_alloc; | | (yy_buffer_stack_top) = 0; | | return; | | } | | | | if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ | | | | /* Increase the buffer to prepare for a possible push. */ | | yy_size_t grow_size = 8 /* arbitrary grow size */; | | | | num_to_alloc = (yy_buffer_stack_max) + grow_size; | | (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc | | ((yy_buffer_stack), | | num_to_alloc * sizeof(struct yy_buffer_state*) | | ); | | if ( ! (yy_buffer_stack) ) | | YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); | | | | /* zero only the new slots.*/ | | memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); | | (yy_buffer_stack_max) = num_to_alloc; | | } | | } | | | | /** Setup the input buffer state to scan directly from a user-specified character buffer. | | * @param base the character buffer | | * @param size the size in bytes of the character buffer | | * | | * @return the newly allocated buffer state object. | | */ | | YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) | | { | | YY_BUFFER_STATE b; | | | | if ( size < 2 || | | base[size-2] != YY_END_OF_BUFFER_CHAR || | | base[size-1] != YY_END_OF_BUFFER_CHAR ) | | /* They forgot to leave room for the EOB's. */ | | return NULL; | | | | b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) ); | | if ( ! b ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); | | | | b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ | | b->yy_buf_pos = b->yy_ch_buf = base; | | b->yy_is_our_buffer = 0; | | b->yy_input_file = NULL; | | b->yy_n_chars = b->yy_buf_size; | | b->yy_is_interactive = 0; | | b->yy_at_bol = 1; | | b->yy_fill_buffer = 0; | | b->yy_buffer_status = YY_BUFFER_NEW; | | | | yy_switch_to_buffer( b ); | | | | return b; | | } | | | | /** Setup the input buffer state to scan a string. The next call to yylex() will | | * scan from a @e copy of @a str. | | * @param yystr a NUL-terminated string to scan | | * | | * @return the newly allocated buffer state object. | | * @note If you want to scan bytes that may contain NUL values, then use | | * yy_scan_bytes() instead. | | */ | | YY_BUFFER_STATE yy_scan_string (const char * yystr ) | | { | | | | return yy_scan_bytes( yystr, (int) strlen(yystr) ); | | } | | | | /** Setup the input buffer state to scan the given bytes. The next call to yylex() will | | * scan from a @e copy of @a bytes. | | * @param yybytes the byte buffer to scan | | * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. | | * | | * @return the newly allocated buffer state object. | | */ | | YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len ) | | { | | YY_BUFFER_STATE b; | | char *buf; | | yy_size_t n; | | int i; | | | | /* Get memory for full buffer, including space for trailing EOB's. */ | | n = (yy_size_t) (_yybytes_len + 2); | | buf = (char *) yyalloc( n ); | | if ( ! buf ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); | | | | for ( i = 0; i < _yybytes_len; ++i ) | | buf[i] = yybytes[i]; | | | | buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; | | | | b = yy_scan_buffer( buf, n ); | | if ( ! b ) | | YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); | | | | /* It's okay to grow etc. this buffer, and we should throw it | | * away when we're done. | | */ | | b->yy_is_our_buffer = 1; | | | | return b; | | } | | | | #ifndef YY_EXIT_FAILURE | | #define YY_EXIT_FAILURE 2 | | #endif | | | | static void yynoreturn yy_fatal_error (const char* msg ) | | { | | fprintf( stderr, "%s\n", msg ); | | exit( YY_EXIT_FAILURE ); | | } | | | | /* Redefine yyless() so it works in section 3 code. */ | | | | #undef yyless | | #define yyless(n) \ | | do \ | | { \ | | /* Undo effects of setting up yytext. */ \ | | int yyless_macro_arg = (n); \ | | YY_LESS_LINENO(yyless_macro_arg);\ | | yytext[yyleng] = (yy_hold_char); \ | | (yy_c_buf_p) = yytext + yyless_macro_arg; \ | | (yy_hold_char) = *(yy_c_buf_p); \ | | *(yy_c_buf_p) = '\0'; \ | | yyleng = yyless_macro_arg; \ | | } \ | | while ( 0 ) | | | | /* Accessor methods (get/set functions) to struct members. */ | | | | /** Get the current line number. | | * | | */ | | int yyget_lineno (void) | | { | | | | return yylineno; | | } | | | | /** Get the input stream. | | * | | */ | | FILE *yyget_in (void) | | { | | return yyin; | | } | | | | /** Get the output stream. | | * | | */ | | FILE *yyget_out (void) | | { | | return yyout; | | } | | | | /** Get the length of the current token. | | * | | */ | | int yyget_leng (void) | | { | | return yyleng; | | } | | | | /** Get the current token. | | * | | */ | | | | char *yyget_text (void) | | { | | return yytext; | | } | | | | /** Set the current line number. | | * @param _line_number line number | | * | | */ | | void yyset_lineno (int _line_number ) | | { | | | | yylineno = _line_number; | | } | | | | /** Set the input stream. This does not discard the current | | * input buffer. | | * @param _in_str A readable stream. | | * | | * @see yy_switch_to_buffer | | */ | | void yyset_in (FILE * _in_str ) | | { | | yyin = _in_str ; | | } | | | | void yyset_out (FILE * _out_str ) | | { | | yyout = _out_str ; | | } | | | | int yyget_debug (void) | | { | | return yy_flex_debug; | | } | | | | void yyset_debug (int _bdebug ) | | { | | yy_flex_debug = _bdebug ; | | } | | | | static int yy_init_globals (void) | | { | | /* Initialization is the same as for the non-reentrant scanner. | | * This function is called from yylex_destroy(), so don't allocate here. | | */ | | | | (yy_buffer_stack) = NULL; | | (yy_buffer_stack_top) = 0; | | (yy_buffer_stack_max) = 0; | | (yy_c_buf_p) = NULL; | | (yy_init) = 0; | | (yy_start) = 0; | | | | (yy_state_buf) = 0; | | (yy_state_ptr) = 0; | | (yy_full_match) = 0; | | (yy_lp) = 0; | | | | /* Defined in main.c */ | | #ifdef YY_STDINIT | | yyin = stdin; | | yyout = stdout; | | #else | | yyin = NULL; | | yyout = NULL; | | #endif | | | | /* For future reference: Set errno on error, since we are called by | | * yylex_init() | | */ | | return 0; | | } | | | | /* yylex_destroy is for both reentrant and non-reentrant scanners. */ | | int yylex_destroy (void) | | { | | | | /* Pop the buffer stack, destroying each element. */ | | while(YY_CURRENT_BUFFER){ | | yy_delete_buffer( YY_CURRENT_BUFFER ); | | YY_CURRENT_BUFFER_LVALUE = NULL; | | yypop_buffer_state(); | | } | | | | /* Destroy the stack itself. */ | | yyfree((yy_buffer_stack) ); | | (yy_buffer_stack) = NULL; | | | | yyfree ( (yy_state_buf) ); | | (yy_state_buf) = NULL; | | | | /* Reset the globals. This is important in a non-reentrant scanner so the next time | | * yylex() is called, initialization will occur. */ | | yy_init_globals( ); | | | | return 0; | | } | | | | /* | | * Internal utility routines. | | */ | | | | #ifndef yytext_ptr | | static void yy_flex_strncpy (char* s1, const char * s2, int n ) | | { | | | | int i; | | for ( i = 0; i < n; ++i ) | | s1[i] = s2[i]; | | } | | #endif | | | | #ifdef YY_NEED_STRLEN | | static int yy_flex_strlen (const char * s ) | | { | | int n; | | for ( n = 0; s[n]; ++n ) | | ; | | | | return n; | | } | | #endif | | | | void *yyalloc (yy_size_t size ) | | { | | return malloc(size); | | } | | | | void *yyrealloc (void * ptr, yy_size_t size ) | | { | | | | /* The cast to (char *) in the following accommodates both | | * implementations that use char* generic pointers, and those | | * that use void* generic pointers. It works with the latter | | * because both ANSI C and C++ allow castless assignment from | | * any pointer type to void*, and deal with argument conversions | | * as though doing an assignment. | | */ | | return realloc(ptr, size); | | } | | | | void yyfree (void * ptr ) | | { | | free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ | | } | | | | #define YYTABLES_NAME "yytables" | | | | #line 10 "conftest.l" | | | | #ifdef YYTEXT_POINTER | | extern char *yytext; | | #endif | | int | | main (void) | | { | | return ! yylex () + ! yywrap (); | | } | configure:13136: gcc -o conftest -O2 conftest.c -lfl >&5 | configure:13136: $? = 0 | configure:13146: result: -lfl | configure:13152: checking whether yytext is a pointer | configure:13169: gcc -o conftest -O2 conftest.c -lfl >&5 | configure:13169: $? = 0 | configure:13177: result: yes | configure:13194: checking for bison | configure:13210: found /usr/bin/bison | configure:13221: result: bison -y | configure:13237: checking how to disable yacc compatibility warnings | configure:13251: result: -Wno-yacc | configure:13266: checking for diff arguments | configure:13281: result: --strip-trailing-cr | configure:13294: checking whether ln -s works | configure:13298: result: yes | configure:13311: checking whether make sets $(MAKE) | configure:13333: result: yes | configure:13367: checking for ld used by gcc | configure:13434: result: /usr/bin/ld -m elf_x86_64 | configure:13441: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld | configure:13456: result: yes | configure:13463: checking for shared library run path origin | configure:13476: result: done | configure:13498: checking for ANSI C header files | configure:13602: result: yes | configure:13614: checking for stdint.h | configure:13614: result: yes | configure:13614: checking for sys/types.h | configure:13614: result: yes | configure:13614: checking signal.h usability | configure:13614: gcc -c -O2 conftest.c >&5 | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking signal.h presence | configure:13614: gcc -E conftest.c | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking for signal.h | configure:13614: result: yes | configure:13614: checking fcntl.h usability | configure:13614: gcc -c -O2 conftest.c >&5 | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking fcntl.h presence | configure:13614: gcc -E conftest.c | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking for fcntl.h | configure:13614: result: yes | configure:13614: checking malloc.h usability | configure:13614: gcc -c -O2 conftest.c >&5 | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking malloc.h presence | configure:13614: gcc -E conftest.c | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking for malloc.h | configure:13614: result: yes | configure:13614: checking locale.h usability | configure:13614: gcc -c -O2 conftest.c >&5 | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking locale.h presence | configure:13614: gcc -E conftest.c | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking for locale.h | configure:13614: result: yes | configure:13614: checking stddef.h usability | configure:13614: gcc -c -O2 conftest.c >&5 | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking stddef.h presence | configure:13614: gcc -E conftest.c | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking for stddef.h | configure:13614: result: yes | configure:13614: checking wchar.h usability | configure:13614: gcc -c -O2 conftest.c >&5 | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking wchar.h presence | configure:13614: gcc -E conftest.c | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking for wchar.h | configure:13614: result: yes | configure:13614: checking for dlfcn.h | configure:13614: result: yes | configure:13614: checking sys/time.h usability | configure:13614: gcc -c -O2 conftest.c >&5 | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking sys/time.h presence | configure:13614: gcc -E conftest.c | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking for sys/time.h | configure:13614: result: yes | configure:13614: checking sys/wait.h usability | configure:13614: gcc -c -O2 conftest.c >&5 | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking sys/wait.h presence | configure:13614: gcc -E conftest.c | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking for sys/wait.h | configure:13614: result: yes | configure:13614: checking sys/sysmacros.h usability | configure:13614: gcc -c -O2 conftest.c >&5 | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking sys/sysmacros.h presence | configure:13614: gcc -E conftest.c | configure:13614: $? = 0 | configure:13614: result: yes | configure:13614: checking for sys/sysmacros.h | configure:13614: result: yes | configure:13627: checking for an ANSI C-conforming const | configure:13693: gcc -c -O2 conftest.c >&5 | configure:13693: $? = 0 | configure:13700: result: yes | configure:13708: checking whether byte ordering is bigendian | configure:13723: gcc -c -O2 conftest.c >&5 | conftest.c:45:9: error: unknown type name 'not' | 45 | not a universal capable compiler | | ^~~ | conftest.c:45:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' | 45 | not a universal capable compiler | | ^~~~~~~~~ | conftest.c:45:15: error: unknown type name 'universal' | configure:13723: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_H 1 | | /* end confdefs.h. */ | | #ifndef __APPLE_CC__ | | not a universal capable compiler | | #endif | | typedef int dummy; | | | configure:13768: gcc -c -O2 conftest.c >&5 | configure:13768: $? = 0 | configure:13786: gcc -c -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:51:4: error: unknown type name 'not'; did you mean 'ino_t'? | 51 | not big endian | | ^~~ | | ino_t | conftest.c:51:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' | 51 | not big endian | | ^~~~~~ | configure:13786: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_H 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main () | | { | | #if BYTE_ORDER != BIG_ENDIAN | | not big endian | | #endif | | | | ; | | return 0; | | } | configure:13914: result: no | configure:13932: checking for size_t | configure:13932: gcc -c -O2 conftest.c >&5 | configure:13932: $? = 0 | configure:13932: gcc -c -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:80:21: error: expected expression before ')' token | 80 | if (sizeof ((size_t))) | | ^ | configure:13932: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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:13932: result: yes | configure:13943: checking whether struct tm is in sys/time.h or time.h | configure:13963: gcc -c -O2 conftest.c >&5 | configure:13963: $? = 0 | configure:13970: result: time.h | configure:13978: checking for sig_atomic_t | configure:13978: gcc -c -O2 conftest.c >&5 | configure:13978: $? = 0 | configure:13978: gcc -c -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:49:27: error: expected expression before ')' token | 49 | if (sizeof ((sig_atomic_t))) | | ^ | configure:13978: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_H 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | if (sizeof ((sig_atomic_t))) | | return 0; | | ; | | return 0; | | } | configure:13978: result: yes | configure:13992: checking for inline keyword | configure:14016: gcc -c -O2 conftest.c >&5 | configure:14016: $? = 0 | configure:14024: result: __inline | configure:14032: checking for vprintf | configure:14032: gcc -o conftest -O2 conftest.c >&5 | conftest.c:69:6: warning: conflicting types for built-in function 'vprintf'; expected 'int(const char *, __va_list_tag *)' [-Wbuiltin-declaration-mismatch] | 69 | char vprintf (); | | ^~~~~~~ | conftest.c:57:1: note: 'vprintf' is declared in header '' | 56 | # include | 57 | #else | configure:14032: $? = 0 | configure:14032: result: yes | configure:14038: checking for _doprnt | configure:14038: gcc -o conftest -O2 conftest.c >&5 | /usr/bin/ld: /tmp/ccsEgCLh.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `_doprnt' | collect2: error: ld returned 1 exit status | configure:14038: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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:14038: result: no | configure:14055: checking for memmove | configure:14055: gcc -o conftest -O2 conftest.c >&5 | conftest.c:70:6: warning: conflicting types for built-in function 'memmove'; expected 'void *(void *, const void *, long unsigned int)' [-Wbuiltin-declaration-mismatch] | 70 | char memmove (); | | ^~~~~~~ | conftest.c:58:1: note: 'memmove' is declared in header '' | 57 | # include | 58 | #else | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for memset | configure:14055: gcc -o conftest -O2 conftest.c >&5 | conftest.c:71:6: warning: conflicting types for built-in function 'memset'; expected 'void *(void *, int, long unsigned int)' [-Wbuiltin-declaration-mismatch] | 71 | char memset (); | | ^~~~~~ | conftest.c:59:1: note: 'memset' is declared in header '' | 58 | # include | 59 | #else | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for setlocale | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for fcntl | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for strerror | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for strcasecmp | configure:14055: gcc -o conftest -O2 conftest.c >&5 | conftest.c:75:6: warning: conflicting types for built-in function 'strcasecmp'; expected 'int(const char *, const char *)' [-Wbuiltin-declaration-mismatch] | 75 | char strcasecmp (); | | ^~~~~~~~~~ | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for strchr | configure:14055: gcc -o conftest -O2 conftest.c >&5 | conftest.c:76:6: warning: conflicting types for built-in function 'strchr'; expected 'char *(const char *, int)' [-Wbuiltin-declaration-mismatch] | 76 | char strchr (); | | ^~~~~~ | conftest.c:64:1: note: 'strchr' is declared in header '' | 63 | # include | 64 | #else | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for strrchr | configure:14055: gcc -o conftest -O2 conftest.c >&5 | conftest.c:77:6: warning: conflicting types for built-in function 'strrchr'; expected 'char *(const char *, int)' [-Wbuiltin-declaration-mismatch] | 77 | char strrchr (); | | ^~~~~~~ | conftest.c:65:1: note: 'strrchr' is declared in header '' | 64 | # include | 65 | #else | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for strdup | configure:14055: gcc -o conftest -O2 conftest.c >&5 | conftest.c:78:6: warning: conflicting types for built-in function 'strdup'; expected 'char *(const char *)' [-Wbuiltin-declaration-mismatch] | 78 | char strdup (); | | ^~~~~~ | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for strstr | configure:14055: gcc -o conftest -O2 conftest.c >&5 | conftest.c:79:6: warning: conflicting types for built-in function 'strstr'; expected 'char *(const char *, const char *)' [-Wbuiltin-declaration-mismatch] | 79 | char strstr (); | | ^~~~~~ | conftest.c:67:1: note: 'strstr' is declared in header '' | 66 | # include | 67 | #else | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for atol | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for strtol | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for atoll | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for strtoll | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for gettimeofday | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for localeconv | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for getexecname | configure:14055: gcc -o conftest -O2 conftest.c >&5 | /usr/bin/ld: /tmp/cc6l1qFd.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `getexecname' | collect2: error: ld returned 1 exit status | configure:14055: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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:14055: result: no | configure:14055: checking for canonicalize_file_name | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for popen | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for raise | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for readlink | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for realpath | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for setenv | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14055: checking for strcoll | configure:14055: gcc -o conftest -O2 conftest.c >&5 | configure:14055: $? = 0 | configure:14055: result: yes | configure:14066: checking for timezone variable access | configure:14079: gcc -c -O2 conftest.c >&5 | configure:14079: $? = 0 | configure:14082: result: yes | configure:14091: checking for designated initializers | configure:14107: gcc -c -O2 conftest.c >&5 | configure:14107: $? = 0 | configure:14109: result: yes | configure:14126: checking for __GNUC__ | configure:14135: gcc -c -O2 conftest.c >&5 | configure:14135: $? = 0 | configure:14137: result: yes | configure:14145: checking for __INTEL_COMPILER | configure:14154: gcc -c -O2 conftest.c >&5 | conftest.c:74:4: error: #error macro not defined | 74 | # error macro not defined | | ^~~~~ | configure:14154: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __INTEL_COMPILER | | # error macro not defined | | #endif | configure:14162: result: no | configure:14168: checking for __clang__ | configure:14177: gcc -c -O2 conftest.c >&5 | conftest.c:74:4: error: #error macro not defined | 74 | # error macro not defined | | ^~~~~ | configure:14177: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __clang__ | | # error macro not defined | | #endif | configure:14182: result: no | configure:14187: checking for __xlc__ | configure:14196: gcc -c -O2 conftest.c >&5 | conftest.c:74:4: error: #error macro not defined | 74 | # error macro not defined | | ^~~~~ | configure:14196: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __xlc__ | | # error macro not defined | | #endif | configure:14201: result: no | configure:14206: checking for __WATCOMC__ | configure:14215: gcc -c -O2 conftest.c >&5 | conftest.c:74:4: error: #error macro not defined | 74 | # error macro not defined | | ^~~~~ | configure:14215: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __WATCOMC__ | | # error macro not defined | | #endif | configure:14220: result: no | configure:14250: checking whether to build with code coverage support | configure:14270: result: no | configure:14668: checking for pkg-config | configure:14686: found /usr/bin/pkg-config | configure:14698: result: /usr/bin/pkg-config | configure:14723: checking pkg-config is at least version 0.9.0 | configure:14726: result: yes | configure:14750: checking for libxml-2.0 | configure:14757: $PKG_CONFIG --exists --print-errors "libxml-2.0" | configure:14760: $? = 0 | configure:14774: $PKG_CONFIG --exists --print-errors "libxml-2.0" | configure:14777: $? = 0 | configure:14909: result: yes | configure:14924: checking libxml/xmlversion.h usability | configure:14924: gcc -c -O2 -I/usr/include/libxml2 conftest.c >&5 | configure:14924: $? = 0 | configure:14924: result: yes | configure:14924: checking libxml/xmlversion.h presence | configure:14924: gcc -E -I/usr/include/libxml2 conftest.c | configure:14924: $? = 0 | configure:14924: result: yes | configure:14924: checking for libxml/xmlversion.h | configure:14924: result: yes | configure:14930: checking for LIBXML_WRITER_ENABLED defined in libxml/xmlwriter.h | configure:14953: gcc -c -O2 -I/usr/include/libxml2 conftest.c >&5 | configure:14953: $? = 0 | configure:14960: result: yes | configure:14924: checking libxml/uri.h usability | configure:14924: gcc -c -O2 -I/usr/include/libxml2 conftest.c >&5 | configure:14924: $? = 0 | configure:14924: result: yes | configure:14924: checking libxml/uri.h presence | configure:14924: gcc -E -I/usr/include/libxml2 conftest.c | configure:14924: $? = 0 | configure:14924: result: yes | configure:14924: checking for libxml/uri.h | configure:14924: result: yes | configure:14930: checking for LIBXML_WRITER_ENABLED defined in libxml/xmlwriter.h | configure:14960: result: yes | configure:14924: checking libxml/xmlwriter.h usability | configure:14924: gcc -c -O2 -I/usr/include/libxml2 conftest.c >&5 | configure:14924: $? = 0 | configure:14924: result: yes | configure:14924: checking libxml/xmlwriter.h presence | configure:14924: gcc -E -I/usr/include/libxml2 conftest.c | configure:14924: $? = 0 | configure:14924: result: yes | configure:14924: checking for libxml/xmlwriter.h | configure:14924: result: yes | configure:14930: checking for LIBXML_WRITER_ENABLED defined in libxml/xmlwriter.h | configure:14960: result: yes | configure:14985: checking if linking against libxml2 with "-lxml2" works | configure:14998: gcc -o conftest -O2 -I/usr/include/libxml2 conftest.c -lxml2 >&5 | configure:14998: $? = 0 | configure:15000: result: yes | configure:15039: Checks for local cJSON ... | configure:15043: checking for ./libcob/cJSON.c | configure:15056: result: no | configure:15089: checking for ./libcob/cJSON.c | configure:15103: result: no | configure:15137: using local cJSON: no | configure:15144: checking for libcjson | configure:15151: $PKG_CONFIG --exists --print-errors "libcjson" | configure:15154: $? = 0 | configure:15168: $PKG_CONFIG --exists --print-errors "libcjson" | configure:15171: $? = 0 | configure:15209: result: yes | configure:15222: checking cJSON.h usability | configure:15222: gcc -c -O2 conftest.c >&5 | conftest.c:109:10: fatal error: cJSON.h: No such file or directory | 109 | #include | | ^~~~~~~~~ | compilation terminated. | configure:15222: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_LIBXML_XMLVERSION_H 1 | | #define HAVE_LIBXML_URI_H 1 | | #define HAVE_LIBXML_XMLWRITER_H 1 | | #define WITH_XML2 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:15222: result: no | configure:15222: checking cJSON.h presence | configure:15222: gcc -E conftest.c | conftest.c:76:10: fatal error: cJSON.h: No such file or directory | 76 | #include | | ^~~~~~~~~ | compilation terminated. | configure:15222: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_LIBXML_XMLVERSION_H 1 | | #define HAVE_LIBXML_URI_H 1 | | #define HAVE_LIBXML_XMLWRITER_H 1 | | #define WITH_XML2 1 | | /* end confdefs.h. */ | | #include | configure:15222: result: no | configure:15222: checking for cJSON.h | configure:15222: result: no | configure:15231: checking cjson/cJSON.h usability | configure:15231: gcc -c -O2 conftest.c >&5 | configure:15231: $? = 0 | configure:15231: result: yes | configure:15231: checking cjson/cJSON.h presence | configure:15231: gcc -E conftest.c | configure:15231: $? = 0 | configure:15231: result: yes | configure:15231: checking for cjson/cJSON.h | configure:15231: result: yes | configure:15255: checking if linking against libcjson with "-lcjson" works | configure:15273: gcc -o conftest -O2 conftest.c -lcjson >&5 | configure:15273: $? = 0 | configure:15275: result: yes | configure:15349: Checks for GMP ... | configure:15353: checking gmp.h usability | configure:15353: gcc -c -O2 conftest.c >&5 | configure:15353: $? = 0 | configure:15353: result: yes | configure:15353: checking gmp.h presence | configure:15353: gcc -E conftest.c | configure:15353: $? = 0 | configure:15353: result: yes | configure:15353: checking for gmp.h | configure:15353: result: yes | configure:15366: checking for __gmpz_init in -lgmp | configure:15391: gcc -o conftest -O2 conftest.c -lgmp >&5 | configure:15391: $? = 0 | configure:15400: result: yes | configure:15430: gcc -o conftest -O2 conftest.c >&5 | configure:15430: $? = 0 | configure:15430: ./conftest | configure:15430: $? = 0 | configure:15470: gcc -o conftest -O2 conftest.c -lgmp >&5 | configure:15470: $? = 0 | configure:15470: ./conftest | configure:15470: $? = 0 | configure:15483: checking matching GMP version | configure:15489: result: yes (6.1) | configure:15501: checking for __gmp_get_memory_functions in -lgmp | configure:15526: gcc -o conftest -O2 conftest.c -lgmp >&5 | configure:15526: $? = 0 | configure:15535: result: yes | configure:15545: checking for nanosleep | configure:15558: gcc -o conftest -O2 conftest.c >&5 | configure:15558: $? = 0 | configure:15560: result: yes | configure:15675: checking for clock_gettime and CLOCK_REALTIME | configure:15688: gcc -o conftest -O2 conftest.c >&5 | configure:15688: $? = 0 | configure:15690: result: yes | configure:15699: checking for isfinite | configure:15712: gcc -o conftest -O2 conftest.c >&5 | configure:15712: $? = 0 | configure:15714: result: yes | configure:15772: checking for fdatasync | configure:15772: gcc -o conftest -O2 conftest.c >&5 | configure:15772: $? = 0 | configure:15772: result: yes | configure:15772: checking for sigaction | configure:15772: gcc -o conftest -O2 conftest.c >&5 | configure:15772: $? = 0 | configure:15772: result: yes | configure:15805: checking whether NLS is requested | configure:15814: result: yes | configure:15854: checking for msgfmt | configure: trying /usr/bin/msgfmt... | 0 translated messages. | configure:15886: result: /usr/bin/msgfmt | configure:15895: checking for gmsgfmt | configure:15926: result: /usr/bin/msgfmt | configure:15976: checking for xgettext | configure: trying /usr/bin/xgettext... | /usr/bin/xgettext: warning: file '/dev/null' extension '' is unknown; will try C | configure:16008: result: /usr/bin/xgettext | configure:16053: checking for msgmerge | configure: trying /usr/bin/msgmerge... | configure:16084: result: /usr/bin/msgmerge | configure:16670: checking for CFPreferencesCopyAppValue | configure:16697: result: no | configure:16704: checking for CFLocaleCopyCurrent | configure:16731: result: no | configure:16780: checking for GNU gettext in libc | configure:16809: gcc -o conftest -O2 conftest.c >&5 | configure:16809: $? = 0 | configure:16818: result: yes | configure:17665: checking whether to use NLS | configure:17667: result: yes | configure:17670: checking where the gettext function comes from | configure:17681: result: libc | configure:17747: checking for nl_langinfo and CODESET | configure:17763: gcc -o conftest -O2 conftest.c >&5 | configure:17763: $? = 0 | configure:17772: result: yes | configure:17782: Checks for curses ... | configure:17809: checking for initscr in -lncursesw | configure:17834: gcc -o conftest -O2 conftest.c -lncursesw >&5 | configure:17834: $? = 0 | configure:17843: result: yes | configure:17857: checking ncursesw/ncurses.h usability | configure:17857: gcc -c -O2 conftest.c >&5 | conftest.c:124:10: fatal error: ncursesw/ncurses.h: No such file or directory | 124 | #include | | ^~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:17857: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_LIBXML_XMLVERSION_H 1 | | #define HAVE_LIBXML_URI_H 1 | | #define HAVE_LIBXML_XMLWRITER_H 1 | | #define WITH_XML2 1 | | #define HAVE_CJSON_CJSON_H 1 | | #define WITH_CJSON 1 | | #define WITH_VARSEQ 0 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LIBNCURSESW 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:17857: result: no | configure:17857: checking ncursesw/ncurses.h presence | configure:17857: gcc -E conftest.c | conftest.c:91:10: fatal error: ncursesw/ncurses.h: No such file or directory | 91 | #include | | ^~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:17857: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_LIBXML_XMLVERSION_H 1 | | #define HAVE_LIBXML_URI_H 1 | | #define HAVE_LIBXML_XMLWRITER_H 1 | | #define WITH_XML2 1 | | #define HAVE_CJSON_CJSON_H 1 | | #define WITH_CJSON 1 | | #define WITH_VARSEQ 0 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LIBNCURSESW 1 | | /* end confdefs.h. */ | | #include | configure:17857: result: no | configure:17857: checking for ncursesw/ncurses.h | configure:17857: result: no | configure:17866: checking ncursesw/curses.h usability | configure:17866: gcc -c -O2 conftest.c >&5 | conftest.c:124:10: fatal error: ncursesw/curses.h: No such file or directory | 124 | #include | | ^~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:17866: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_LIBXML_XMLVERSION_H 1 | | #define HAVE_LIBXML_URI_H 1 | | #define HAVE_LIBXML_XMLWRITER_H 1 | | #define WITH_XML2 1 | | #define HAVE_CJSON_CJSON_H 1 | | #define WITH_CJSON 1 | | #define WITH_VARSEQ 0 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LIBNCURSESW 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:17866: result: no | configure:17866: checking ncursesw/curses.h presence | configure:17866: gcc -E conftest.c | conftest.c:91:10: fatal error: ncursesw/curses.h: No such file or directory | 91 | #include | | ^~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:17866: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_LIBXML_XMLVERSION_H 1 | | #define HAVE_LIBXML_URI_H 1 | | #define HAVE_LIBXML_XMLWRITER_H 1 | | #define WITH_XML2 1 | | #define HAVE_CJSON_CJSON_H 1 | | #define WITH_CJSON 1 | | #define WITH_VARSEQ 0 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LIBNCURSESW 1 | | /* end confdefs.h. */ | | #include | configure:17866: result: no | configure:17866: checking for ncursesw/curses.h | configure:17866: result: no | configure:17895: checking for initscr in -lncurses | configure:17920: gcc -o conftest -O2 conftest.c -lncurses -lncursesw >&5 | configure:17920: $? = 0 | configure:17929: result: yes | configure:17943: checking ncurses.h usability | configure:17943: gcc -c -O2 conftest.c >&5 | configure:17943: $? = 0 | configure:17943: result: yes | configure:17943: checking ncurses.h presence | configure:17943: gcc -E conftest.c | configure:17943: $? = 0 | configure:17943: result: yes | configure:17943: checking for ncurses.h | configure:17943: result: yes | configure:18189: checking for ncurses _nc_freeall function | configure:18203: gcc -o conftest -O2 conftest.c -lncurses -lncursesw >&5 | configure:18203: $? = 0 | configure:18205: result: yes | configure:18213: checking for ncurses use_legacy_coding function | configure:18227: gcc -o conftest -O2 conftest.c -lncurses -lncursesw >&5 | configure:18227: $? = 0 | configure:18229: result: yes | configure:18240: checking for curses color_set function | configure:18268: gcc -o conftest -O2 conftest.c -lncurses -lncursesw >&5 | configure:18268: $? = 0 | configure:18270: result: yes | configure:18279: checking for curses define_key function | configure:18307: gcc -o conftest -O2 conftest.c -lncurses -lncursesw >&5 | configure:18307: $? = 0 | configure:18309: result: yes | configure:18318: checking for curses mouseinterval function | configure:18346: gcc -o conftest -O2 conftest.c -lncurses -lncursesw >&5 | configure:18346: $? = 0 | configure:18348: result: yes | configure:18357: checking for curses has_mouse function | configure:18385: gcc -o conftest -O2 conftest.c -lncurses -lncursesw >&5 | configure:18385: $? = 0 | configure:18387: result: yes | configure:19038: Checks for Berkeley DB ... | configure:19043: checking db.h usability | configure:19043: gcc -c -O2 conftest.c >&5 | configure:19043: $? = 0 | configure:19043: result: yes | configure:19043: checking db.h presence | configure:19043: gcc -E conftest.c | configure:19043: $? = 0 | configure:19043: result: yes | configure:19043: checking for db.h | configure:19043: result: yes | configure:19081: gcc -o conftest -O2 conftest.c -lncurses -lncursesw >&5 | configure:19081: $? = 0 | configure:19081: ./conftest | configure:19081: $? = 0 | configure:19095: db.h reports version "-Berkeley DB 5.3.28: (September 9, 2013)-" | configure:19099: checking for Berkeley DB db.h version >= 4.1 | configure:19103: result: yes (5.3) | configure:19118: checking for Berkeley DB library with version 5.3 | configure:19149: gcc -o conftest -O2 conftest.c -lncurses -lncursesw -ldb-5.3 >&5 | configure:19149: $? = 0 | configure:19149: ./conftest | configure:19149: $? = 0 | configure:19163: result: yes | configure:19165: BDB library version 5.3 found as -ldb-5.3 | configure:19347: checking for _WIN32 | configure:19356: gcc -c -O2 conftest.c >&5 | conftest.c:106:4: error: #error macro not defined | 106 | # error macro not defined | | ^~~~~ | configure:19356: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_LIBXML_XMLVERSION_H 1 | | #define HAVE_LIBXML_URI_H 1 | | #define HAVE_LIBXML_XMLWRITER_H 1 | | #define WITH_XML2 1 | | #define HAVE_CJSON_CJSON_H 1 | | #define WITH_CJSON 1 | | #define WITH_VARSEQ 0 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_LIBNCURSES 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncurses" | | #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 WITH_INDEXED COB_IO_BDB | | #define WITH_IXDFLT "BDB" | | #define HAVE_DB_H 1 | | #define WITH_DB 1 | | /* end confdefs.h. */ | | | | #ifndef _WIN32 | | # error macro not defined | | #endif | configure:19361: result: no | configure:19368: checking for dlopen in -lc | configure:19393: gcc -o conftest -O2 conftest.c -lc -lncurses -lncursesw >&5 | /usr/bin/ld: /tmp/cc1SQeEx.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `dlopen' | collect2: error: ld returned 1 exit status | configure:19393: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_LIBXML_XMLVERSION_H 1 | | #define HAVE_LIBXML_URI_H 1 | | #define HAVE_LIBXML_XMLWRITER_H 1 | | #define WITH_XML2 1 | | #define HAVE_CJSON_CJSON_H 1 | | #define WITH_CJSON 1 | | #define WITH_VARSEQ 0 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_LIBNCURSES 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncurses" | | #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 WITH_INDEXED COB_IO_BDB | | #define WITH_IXDFLT "BDB" | | #define HAVE_DB_H 1 | | #define WITH_DB 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:19402: result: no | configure:19409: checking for dlopen in -ldl | configure:19443: result: yes | configure:19453: checking for dladdr in -ldl | configure:19478: gcc -o conftest -O2 conftest.c -ldl -lncurses -lncursesw >&5 | configure:19478: $? = 0 | configure:19487: result: yes | configure:19690: checking for support of computed gotos | configure:19707: gcc -c -O2 conftest.c >&5 | configure:19707: $? = 0 | configure:19710: result: yes | configure:19719: checking if size of long int = size of long long | configure:19755: gcc -o conftest -O2 conftest.c -lncurses -lncursesw >&5 | configure:19755: $? = 0 | configure:19755: ./conftest | configure:19755: $? = 0 | configure:19757: result: yes | configure:19768: checking if long is 32 bits | configure:19804: gcc -o conftest -O2 conftest.c -lncurses -lncursesw >&5 | configure:19804: $? = 0 | configure:19804: ./conftest | configure:19804: $? = 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.2-early-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.2-early-dev" | | #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 YYTEXT_POINTER 1 | | #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_SYS_SYSMACROS_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_ATOL 1 | | #define HAVE_STRTOL 1 | | #define HAVE_ATOLL 1 | | #define HAVE_STRTOLL 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_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_LIBXML_XMLVERSION_H 1 | | #define HAVE_LIBXML_URI_H 1 | | #define HAVE_LIBXML_XMLWRITER_H 1 | | #define WITH_XML2 1 | | #define HAVE_CJSON_CJSON_H 1 | | #define WITH_CJSON 1 | | #define WITH_VARSEQ 0 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_LIBNCURSES 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncurses" | | #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 WITH_INDEXED COB_IO_BDB | | #define WITH_IXDFLT "BDB" | | #define HAVE_DB_H 1 | | #define WITH_DB 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:19809: result: no | configure:19821: checking if pointer is longer than 32 bits | configure:19863: gcc -o conftest -O2 conftest.c -lncurses -lncursesw >&5 | configure:19863: $? = 0 | configure:19863: ./conftest | configure:19863: $? = 0 | configure:19867: result: yes | configure:19905: checking for aligned attribute | configure:19918: gcc -c -O2 conftest.c >&5 | configure:19918: $? = 0 | configure:19920: result: yes | configure:20059: checking for gcc pointer sign option | configure:20072: gcc -c -O2 -pipe -Wno-pointer-sign conftest.c >&5 | configure:20072: $? = 0 | configure:20073: result: yes | configure:20223: checking for ld bind now option | configure:20236: gcc -o conftest -O2 -pipe -Wl,-z,relro,-z,now,-O1 conftest.c >&5 | configure:20236: $? = 0 | configure:20237: result: yes | configure:20554: checking that generated files are newer than configure | configure:20560: result: done | configure:20612: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GnuCOBOL config.status 3.2-early-dev, which was | generated by GNU Autoconf 2.69. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on muskat.skogtun.org | | config.status:1402: creating Makefile | config.status:1402: creating libcob/Makefile | config.status:1402: creating lib/Makefile | config.status:1402: creating cobc/Makefile | config.status:1402: creating bin/Makefile | config.status:1402: creating po/Makefile.in | config.status:1402: creating doc/Makefile | config.status:1402: creating config/Makefile | config.status:1402: creating copy/Makefile | config.status:1402: creating tests/Makefile | config.status:1402: creating tests/cobol85/Makefile | config.status:1402: creating extras/Makefile | config.status:1402: creating bin/cob-config | config.status:1402: creating pre-inst-env | config.status:1402: creating tests/atlocal | config.status:1402: creating tests/run_prog_manual.sh | config.status:1402: creating config.h | config.status:1631: executing tests/atconfig commands | config.status:1631: executing depfiles commands | config.status:1733: cd libcob && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | config.status:1740: $? = 0 | config.status:1733: cd lib && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | config.status:1740: $? = 0 | config.status:1733: cd cobc && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | config.status:1740: $? = 0 | config.status:1733: cd bin && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | config.status:1740: $? = 0 | config.status:1631: executing libtool commands | config.status:1631: executing po-directories commands | config.status:1631: executing chmod commands | configure:22933: GnuCOBOL Configuration: | configure:22935: CC gcc | configure:22937: CFLAGS -O2 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k -U_FORTIFY_SOURCE | configure:22939: LDFLAGS -Wl,-z,relro,-z,now,-O1 | configure:22945: COB_CC gcc | configure:22947: COB_CFLAGS -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign -pipe | configure:22949: COB_LDFLAGS | configure:22951: COB_LIBS -L${exec_prefix}/lib -lcob | configure:22953: COB_CONFIG_DIR ${datarootdir}/gnucobol/config | configure:22955: COB_COPY_DIR ${datarootdir}/gnucobol/copy | configure:22957: COB_SCHEMA_DIR ${datarootdir}/gnucobol/schema | configure:22959: COB_LIBRARY_PATH ${exec_prefix}/lib/gnucobol | configure:22961: COB_OBJECT_EXT o | configure:22963: COB_MODULE_EXT so | configure:22965: COB_EXE_EXT | configure:22967: COB_SHARED_OPT -shared | configure:22969: COB_PIC_FLAGS -fPIC -DPIC | configure:22971: COB_EXPORT_DYN -Wl,--export-dynamic | configure:22974: COB_STRIP_CMD strip --strip-unneeded | configure:22978: Dynamic loading: System | configure:22984: Use gettext for international messages: yes | configure:22986: Use fcntl for file locking: yes | configure:22998: Use curses library for screen I/O: ncurses | configure:23027: Use Berkeley DB for ISAM I/O: yes | configure:23047: Use libxml2 for XML I/O: yes | configure:23049: Use cJSON for JSON I/O: yes | | ## ---------------- ## | ## 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_defined_LIBXML_WRITER_ENABLED_libxml_xmlwriter_h='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='' | ac_cv_env_CPPFLAGS_value='' | 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_LDFLAGS_set='' | ac_cv_env_LDFLAGS_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_ODBC_CFLAGS_set='' | ac_cv_env_ODBC_CFLAGS_value='' | ac_cv_env_ODBC_LIBS_set='' | ac_cv_env_ODBC_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_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_atol='yes' | ac_cv_func_atoll='yes' | 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_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_strtoll='yes' | ac_cv_func_vprintf='yes' | ac_cv_header_cJSON_h='no' | ac_cv_header_cjson_cJSON_h='yes' | ac_cv_header_db_h='yes' | 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_libxml_uri_h='yes' | ac_cv_header_libxml_xmlversion_h='yes' | ac_cv_header_libxml_xmlwriter_h='yes' | 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_ncurses_h='yes' | ac_cv_header_ncursesw_curses_h='no' | ac_cv_header_ncursesw_ncurses_h='no' | 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_sysmacros_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_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_gmp___gmpz_init='yes' | ac_cv_lib_lex='-lfl' | ac_cv_lib_ncurses_initscr='yes' | ac_cv_lib_ncursesw_initscr='yes' | ac_cv_objext='o' | ac_cv_path_EGREP='/usr/bin/grep -E' | ac_cv_path_FGREP='/usr/bin/grep -F' | ac_cv_path_GMSGFMT='/usr/bin/msgfmt' | ac_cv_path_GREP='/usr/bin/grep' | ac_cv_path_MSGFMT='/usr/bin/msgfmt' | ac_cv_path_MSGMERGE='/usr/bin/msgmerge' | ac_cv_path_SED='/usr/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='/usr/bin/dd' | ac_cv_path_mkdir='/usr/bin/mkdir' | ac_cv_prog_AWK='gawk' | ac_cv_prog_CPP='gcc -E' | ac_cv_prog_LEX='flex' | ac_cv_prog_YACC='bison -y' | ac_cv_prog_ac_ct_AR='ar' | ac_cv_prog_ac_ct_CC='gcc' | 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_lex_root='lex.yy' | ac_cv_prog_lex_yytext_pointer='yes' | 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_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_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='no' | 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='/usr/bin/dd bs=4096 count=1' | pkg_cv_CJSON_CFLAGS='' | pkg_cv_CJSON_LIBS='-lcjson' | pkg_cv_XML2_CFLAGS='-I/usr/include/libxml2' | pkg_cv_XML2_LIBS='-lxml2' | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | | | | | | | | | | | | | | @echo "Need to reconfigure with --enable-code-coverage" | @echo "Need to reconfigure with --enable-code-coverage" | $(CODE_COVERAGE_IGNORE_PATTERN); | $(CODE_COVERAGE_OUTPUT_FILE); | # | # | # $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage) | # $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage.info) | # (Default: $(top_builddir)) | # (Default: empty) | # Multiple directories may be specified, separated by whitespace. | # by lcov for code coverage. (Default: | # collecting lcov instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) | # genhtml instance. (Default: based on $CODE_COVERAGE_BRANCH_COVERAGE) | # instance. (Default: $CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT) | # instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_DEFAULT) | # instance. (Default: $CODE_COVERAGE_LCOV_RMOPTS_DEFAULT) | # instances. (Default: $CODE_COVERAGE_LCOV_SHOPTS_DEFAULT) | # instances. (Default: based on $CODE_COVERAGE_BRANCH_COVERAGE) | # lcov instance. (Default: empty) | # reports to be created. (Default: | # set to 0 to disable it and leave empty to stay with the default. | # - CODE_COVERAGE_BRANCH_COVERAGE: Set to 1 to enforce branch coverage, | # - CODE_COVERAGE_DIRECTORY: Top-level directory for code coverage reporting. | # - CODE_COVERAGE_GENHTML_OPTIONS: Extra options to pass to the genhtml | # - CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT: Extra options to pass to the | # - CODE_COVERAGE_IGNORE_PATTERN: Extra glob pattern of files to ignore | # - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov | # - CODE_COVERAGE_LCOV_OPTIONS_DEFAULT: Extra options to pass to the | # - CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH: --gcov-tool pathtogcov | # - CODE_COVERAGE_LCOV_RMOPTS: Extra options to pass to the filtering lcov | # - CODE_COVERAGE_LCOV_RMOPTS_DEFAULT: Extra options to pass to the filtering | # - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov | # - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov | # - CODE_COVERAGE_OUTPUT_DIRECTORY: Directory for generated code coverage | # - CODE_COVERAGE_OUTPUT_FILE: Filename and path for the .info file generated | # $(PACKAGE_VERSION). In order to add the current git hash to the title, | # Capture code coverage data | # Code coverage | # Hook rule executed before code-coverage-capture, overridable by the user | # Optional variables | # Optional: | # The generated report will be titled using the $(PACKAGE_NAME) and | # Use recursive makes in order to ignore errors during check | # sanitizes the test-name: replaces with underscores: dashes and dots | # use the git-version-gen script, available online. | $(if $(CODE_COVERAGE_BRANCH_COVERAGE),\ | ' | --rc genhtml_branch_coverage=$(CODE_COVERAGE_BRANCH_COVERAGE)) | --rc lcov_branch_coverage=$(CODE_COVERAGE_BRANCH_COVERAGE)) | .PHONY: check-code-coverage code-coverage-capture code-coverage-capture-hook code-coverage-clean | ACLOCAL='${SHELL} /home/harald/src/gnucobol/trunk/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_DISTCHECK_CONFIGURE_FLAGS += --disable-code-coverage | AM_DISTCHECK_CONFIGURE_FLAGS ?= | AM_V='$(V)' | AR='ar' | AS='as' | AUTOCONF='${SHELL} /home/harald/src/gnucobol/trunk/build_aux/missing autoconf' | AUTOHEADER='${SHELL} /home/harald/src/gnucobol/trunk/build_aux/missing autoheader' | AUTOMAKE='${SHELL} /home/harald/src/gnucobol/trunk/build_aux/missing automake-1.16' | AWK='gawk' | CC='gcc' | CCDEPMODE='depmode=gcc3' | CFLAGS='-O2 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k -U_FORTIFY_SOURCE' | CJSON_CFLAGS='' | CJSON_LIBS='-lcjson' | COBC_LIBS='' | COB_BIGENDIAN='no' | COB_CC='gcc' | COB_CFLAGS='-I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign -pipe' | COB_CONFIG_DIR='${datarootdir}/gnucobol/config' | COB_COPY_DIR='${datarootdir}/gnucobol/copy' | COB_EXE_EXT='' | COB_EXPORT_DYN='-Wl,--export-dynamic' | COB_FIX_LIB='-Wl,--export-dynamic' | COB_FIX_LIBTOOL='' | COB_HAS_64_BIT_POINTER='yes' | COB_HAS_BDB='yes' | COB_HAS_CISAM='' | COB_HAS_CJSON='yes' | COB_HAS_CURSES='yes' | COB_HAS_DISAM='' | COB_HAS_ISAM='db' | COB_HAS_LMDB='' | COB_HAS_OCEXTFH='' | COB_HAS_OCI='' | COB_HAS_ODBC='' | COB_HAS_VBISAM='' | COB_HAS_XML2='yes' | COB_KEYWORD_INLINE='' | COB_LDFLAGS='' | COB_LIBRARY_PATH='${exec_prefix}/lib/gnucobol' | COB_LIBS='-L${exec_prefix}/lib -lcob' | COB_MAKE_CISAM_LIB_FALSE='' | COB_MAKE_CISAM_LIB_TRUE='#' | COB_MAKE_DISAM_LIB_FALSE='' | COB_MAKE_DISAM_LIB_TRUE='#' | COB_MAKE_IX_FALSE='#' | COB_MAKE_IX_TRUE='' | COB_MAKE_RUN_BINARIES_FALSE='#' | COB_MAKE_RUN_BINARIES_TRUE='' | COB_MAKE_VBISAM_LIB_FALSE='' | COB_MAKE_VBISAM_LIB_TRUE='#' | COB_MODULE_EXT='so' | COB_OBJECT_EXT='o' | COB_PATCH_LEVEL='0' | COB_PIC_FLAGS='-fPIC -DPIC' | COB_SCHEMA_DIR='${datarootdir}/gnucobol/schema' | COB_SHARED_OPT='-shared' | CODE_COVERAGE_BRANCH_COVERAGE ?= | CODE_COVERAGE_CFLAGS='' | CODE_COVERAGE_CPPFLAGS='' | CODE_COVERAGE_CXXFLAGS='' | CODE_COVERAGE_DIRECTORY ?= $(top_builddir) | CODE_COVERAGE_ENABLED='no' | CODE_COVERAGE_ENABLED_FALSE='' | CODE_COVERAGE_ENABLED_TRUE='#' | CODE_COVERAGE_GENHTML_OPTIONS ?= $(CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT) | CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT ?=\ | CODE_COVERAGE_IGNORE_PATTERN ?= | CODE_COVERAGE_LCOV_OPTIONS ?= $(CODE_COVERAGE_LCOV_OPTIONS_DEFAULT) | CODE_COVERAGE_LCOV_OPTIONS_DEFAULT ?= $(CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) | CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH ?= --gcov-tool "$(GCOV)" | CODE_COVERAGE_LCOV_RMOPTS ?= $(CODE_COVERAGE_LCOV_RMOPTS_DEFAULT) | CODE_COVERAGE_LCOV_RMOPTS_DEFAULT ?= | CODE_COVERAGE_LCOV_SHOPTS ?= $(CODE_COVERAGE_LCOV_SHOPTS_DEFAULT) | CODE_COVERAGE_LCOV_SHOPTS_DEFAULT ?= $(if $(CODE_COVERAGE_BRANCH_COVERAGE),\ | CODE_COVERAGE_LDFLAGS='' | CODE_COVERAGE_LIBS='' | CODE_COVERAGE_OUTPUT_DIRECTORY ?= $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage | CODE_COVERAGE_OUTPUT_FILE ?= $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage.info | CODE_COVERAGE_RULES=' | CPP='gcc -E' | CPPFLAGS='' | 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='/usr/bin/grep -E' | EXEEXT='' | FGREP='/usr/bin/grep -F' | GCOV='' | GENHTML='' | GETTEXT_MACRO_VERSION='0.19' | GITIGNOREFILES += $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_DIRECTORY) | GITIGNOREFILES ?= | GMSGFMT='/usr/bin/msgfmt' | GMSGFMT_015='/usr/bin/msgfmt' | GREP='/usr/bin/grep' | HELP2MAN='${SHELL} /home/harald/src/gnucobol/trunk/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='' | LCOV='' | LD='/usr/bin/ld -m elf_x86_64' | LDFLAGS=' -Wl,-z,relro,-z,now,-O1' | LEX='flex' | LEXLIB='-lfl' | LEX_OUTPUT_ROOT='lex.yy' | LIBCOB_CISAM='' | LIBCOB_CPPFLAGS=' -I/usr/include/libxml2 ' | LIBCOB_DISAM='' | LIBCOB_LIBS='-lm -lxml2 -lcjson -lgmp -lncurses -ldb-5.3 -ldl' | LIBCOB_VBISAM='' | 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/harald/src/gnucobol/trunk/build_aux/missing makeinfo' | MANIFEST_TOOL=':' | MKDIR_P='/usr/bin/mkdir -p' | MSGFMT='/usr/bin/msgfmt' | MSGFMT_015='/usr/bin/msgfmt' | MSGMERGE='/usr/bin/msgmerge' | NM='/usr/bin/nm -B' | NMEDIT='' | OBJDUMP='objdump' | OBJEXT='o' | ODBC_CFLAGS='' | ODBC_LIBS='' | OTOOL64='' | OTOOL='' | PACKAGE='gnucobol' | PACKAGE_BUGREPORT='address@hidden' | PACKAGE_NAME='GnuCOBOL' | PACKAGE_STRING='GnuCOBOL 3.2-early-dev' | PACKAGE_TARNAME='gnucobol' | PACKAGE_URL='https://www.gnu.org/software/gnucobol/' | PACKAGE_VERSION='3.2-early-dev' | PATH_SEPARATOR=':' | PKG_CONFIG='/usr/bin/pkg-config' | PKG_CONFIG_LIBDIR='' | PKG_CONFIG_PATH='' | POSUB='po' | RANLIB='ranlib' | SED='/usr/bin/sed' | SET_MAKE='' | SHELL='/bin/sh' | STRIP='strip' | USE_NLS='yes' | VERSION='3.2-early-dev' | XGETTEXT='/usr/bin/xgettext' | XGETTEXT_015='/usr/bin/xgettext' | XGETTEXT_EXTRA_OPTIONS='' | XML2_CFLAGS='-I/usr/include/libxml2' | XML2_LIBS='-lxml2' | YACC='bison -y' | YFLAGS='-Wno-yacc' | 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' | check-code-coverage: | code-coverage-capture-hook: | code-coverage-capture: code-coverage-capture-hook | code_coverage_quiet = $(code_coverage_quiet_$(V)) | code_coverage_quiet_ = $(code_coverage_quiet_$(AM_DEFAULT_VERBOSITY)) | code_coverage_quiet_0 = --quiet | code_coverage_sanitize = $(subst -,_,$(subst .,_,$(1))) | code_coverage_v_genhtml = $(code_coverage_v_genhtml_$(V)) | code_coverage_v_genhtml_ = $(code_coverage_v_genhtml_$(AM_DEFAULT_VERBOSITY)) | code_coverage_v_genhtml_0 = @echo " GEN " $(CODE_COVERAGE_OUTPUT_DIRECTORY); | code_coverage_v_lcov_cap = $(code_coverage_v_lcov_cap_$(V)) | code_coverage_v_lcov_cap_ = $(code_coverage_v_lcov_cap_$(AM_DEFAULT_VERBOSITY)) | code_coverage_v_lcov_cap_0 = @echo " LCOV --capture"\ | code_coverage_v_lcov_ign = $(code_coverage_v_lcov_ign_$(V)) | code_coverage_v_lcov_ign_ = $(code_coverage_v_lcov_ign_$(AM_DEFAULT_VERBOSITY)) | code_coverage_v_lcov_ign_0 = @echo " LCOV --remove /tmp/*"\ | 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}' | includedir='${prefix}/include' | infodir='${datarootdir}/info' | install_sh='${SHELL} /home/harald/src/gnucobol/trunk/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}' | 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.2-early-dev" | #define PACKAGE_STRING "GnuCOBOL 3.2-early-dev" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | #define PACKAGE "gnucobol" | #define VERSION "3.2-early-dev" | #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 YYTEXT_POINTER 1 | #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_SYS_SYSMACROS_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_ATOL 1 | #define HAVE_STRTOL 1 | #define HAVE_ATOLL 1 | #define HAVE_STRTOLL 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_TIMEZONE 1 | #define HAVE_DESIGNATED_INITS 1 | #define HAVE_LIBXML_XMLVERSION_H 1 | #define HAVE_LIBXML_URI_H 1 | #define HAVE_LIBXML_XMLWRITER_H 1 | #define WITH_XML2 1 | #define HAVE_CJSON_CJSON_H 1 | #define WITH_CJSON 1 | #define WITH_VARSEQ 0 | #define HAVE_GMP_H 1 | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | #define HAVE_NANO_SLEEP 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_ISFINITE 1 | #define HAVE_FDATASYNC 1 | #define HAVE_SIGACTION 1 | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_LIBNCURSESW 1 | #define HAVE_LIBNCURSES 1 | #define HAVE_NCURSES_H 1 | #define WITH_CURSES "ncurses" | #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 WITH_INDEXED COB_IO_BDB | #define WITH_IXDFLT "BDB" | #define HAVE_DB_H 1 | #define WITH_DB 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 COB_EXPORT_DYN "-Wl,--export-dynamic" | #define COB_PIC_FLAGS "-fPIC -DPIC" | #define COB_SHARED_OPT "-shared" | #define COB_OBJECT_EXT "o" | #define COB_MODULE_EXT "so" | #define COB_EXE_EXT "" | #define COB_STRIP_CMD "strip --strip-unneeded" | | configure: exit 0