## -------------------------------------------- ## ## GnuCOBOL 3.2-rc2 test suite: GnuCOBOL Tests. ## ## -------------------------------------------- ## testsuite: command line was: $ ./testsuite --recheck --verbose ## ---------- ## ## ChangeLog. ## ## ---------- ## | | 2023-02-10 Simon Sobisch | | * configure.ac: fixed adjusted hack for AIX 64bit OBJECT_MODE | and added 32bit pendant | * configure.ac, NEWS: updated for 3.2rc-2 | | 2023-02-09 Simon Sobisch | | * configure.ac: : search for json-c header in its common ## --------- ## ## Platform. ## ## --------- ## hostname = omg.my.domain uname -m = amd64 uname -r = 7.2 uname -s = OpenBSD uname -v = GENERIC.MP#6 /usr/bin/uname -p = amd64 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = OpenBSD.amd64 /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /home/lars/temp/cobol/gnucobol-3.2-rc2/tests PATH: /home/lars/temp/cobol/gnucobol-3.2-rc2/libcob/.libs PATH: /home/lars/temp/cobol/gnucobol-3.2-rc2/cobc PATH: /home/lars/temp/cobol/gnucobol-3.2-rc2/bin PATH: /bin PATH: /sbin PATH: /usr/bin PATH: /usr/sbin PATH: /usr/X11R6/bin PATH: /usr/local/bin PATH: /usr/local/sbin PATH: /usr/games testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2021 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/home/lars/temp/cobol/gnucobol-3.2-rc2/tests' | at_srcdir='.' | abs_srcdir='/home/lars/temp/cobol/gnucobol-3.2-rc2/tests' | at_top_srcdir='..' | abs_top_srcdir='/home/lars/temp/cobol/gnucobol-3.2-rc2' | at_top_build_prefix='../' | abs_top_builddir='/home/lars/temp/cobol/gnucobol-3.2-rc2' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | | EXEEXT='' | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/sh'} testsuite: atlocal: | # | # atlocal gnucobol/tests | # | # Copyright (C) 2003-2012, 2014-2023 Free Software Foundation, Inc. | # Written by Keisuke Nishida, Roger While, Simon Sobisch, Edward Hart | # | # This file is part of GnuCOBOL. | # | # The GnuCOBOL compiler is free software: you can redistribute it | # and/or modify it under the terms of the GNU General Public License | # as published by the Free Software Foundation, either version 3 of the | # License, or (at your option) any later version. | # | # GnuCOBOL is distributed in the hope that it will be useful, | # but WITHOUT ANY WARRANTY; without even the implied warranty of | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | # GNU General Public License for more details. | # | # You should have received a copy of the GNU General Public License | # along with GnuCOBOL. If not, see . | | | TEMPLATE="${abs_srcdir}/testsuite.src" | | # TODO: add missing parts for installcheck | | if test "$GNUCOBOL_ENV_SETUP" != "1" -a "$GNUCOBOL_TEST_LOCAL" != "1"; then | COBC="cobc" | COBCRUN="cobcrun" | COBCRUN_DIRECT="" # used for running created executables through tools | # prepend PATH with the actual binaries to let the testsuite find them for | # general check and version output, otherwise not needed | PATH="${abs_top_builddir}/cobc:${abs_top_builddir}/bin:${PATH}" | LOCAL_ENV="${abs_top_builddir}/pre-inst-env" | else | if test "x${COBC}" = "x"; then | COBC="cobc" | fi | if test "x${COBCRUN}" = "x"; then | COBCRUN="cobcrun" | fi | if test "x${COBCRUN_DIRECT}" = "x"; then | COBCRUN_DIRECT="" | fi | LOCAL_ENV="" | fi | | if test "$GNUCOBOL_TEST_LOCAL" != "1"; then | ABS_COBC="${abs_top_builddir}/cobc/cobc" | ABS_COBCRUN="${abs_top_builddir}/bin/cobcrun" | else | ABS_COBC="$(which cobc)" | ABS_COBCRUN="$(which cobcrun)" | fi | | AWK=awk | GREP=/usr/bin/grep | SED=/usr/bin/sed | export AWK GREP SED | | # be sure to use the English messages | LC_ALL=C | export LC_ALL | unset LANG | | # workaround to adjust the testsuite later: | # FLAGS="-debug -Wall ${COBOL_FLAGS}" | FLAGS="-debug -Wall ${COBOL_FLAGS} -fno-diagnostics-show-option" | COMPILE="${COBC} -x ${FLAGS}" | COMPILE_ONLY="${COBC} -fsyntax-only ${FLAGS} -Wno-unsupported" | COMPILE_MODULE="${COBC} -m ${FLAGS}" | | # get performance counters for compiler and/or runtime | if test "x$PERFSUFFIX" != "x"; then | export PATH="${abs_top_builddir}/cobc/.libs:${abs_top_builddir}/bin.libs:${PATH}" | LOG_DIR="${abs_builddir}/perf" | LOG_DIR_COMP="${LOG_DIR}/cobc" | LOG_DIR_RUN="${LOG_DIR}/cobcrun" | PERF="perf stat -e instructions --append" | #mkdir -p "${LOG_DIR_COMP}" | # COBC="${PERF} --output ${LOG_DIR_COMP}/${PERFSUFFIX}.log ${COBC} -O0" # note: full check including C compiler! | # COMPILE_ONLY="${PERF} --output ${LOG_DIR_COMP}/${PERFSUFFIX}.log ${COMPILE_ONLY}" # more reasonable - checks cobc only, but misses codegen | # most reasonable: check actual COBOL runtime performance | COBC="${COBC} -g" | mkdir -p "${LOG_DIR_RUN}" | COBCRUN="${PERF} --output ${LOG_DIR_RUN}/${PERFSUFFIX}.log ${COBCRUN}" | COBCRUN_DIRECT="${PERF} --output ${LOG_DIR_RUN}/${PERFSUFFIX}.log ${COBCRUN_DIRECT}" | elif test "x$CGSUFFIX" != "x"; then | export PATH="${abs_top_builddir}/cobc/.libs:${abs_top_builddir}/bin.libs:${PATH}" | LOG_DIR="${abs_builddir}/callgrind/${CGSUFFIX}" | LOG_DIR_COMP="${LOG_DIR}/cobc" | LOG_DIR_RUN="${LOG_DIR}" | CG="valgrind --tool=callgrind --dump-instr=yes --collect-jumps=yes --collect-atstart=no --toggle-collect=_start --fn-skip=_dl_runtime_resolve_xsave --fn-skip=_dl_fixup --toggle-collect=cob_init" | if test "x$at_group" = "x"; then | at_group="cg" # must be set as it is part of CG_PREFIX | fi | export at_group | CG_PREFIX="%q{at_group}_%p" | LOG_NAME=${CG_PREFIX}.log | CG_NAME=callgrind.out.${CG_PREFIX} | | # callgrind takes a while - so we only trace COBOL runtime by default | #mkdir -p "${LOG_DIR_COMP}" | #COBC="${CG} --log-file=${LOG_DIR_COMP}/${LOG_NAME} --callgrind-out-file=${LOG_DIR_COMP}/${CG_NAME} ${COBC}" | COBC="${COBC} -g" | mkdir -p "${LOG_DIR_RUN}" | CG_RUNTIME="${CG} --log-file=${LOG_DIR_RUN}/${LOG_NAME} --callgrind-out-file=${LOG_DIR_RUN}/${CG_NAME} --dump-before=cob_terminate_routines" | COBCRUN="${CG_RUNTIME} ${COBCRUN}" | COBCRUN_DIRECT="${CG_RUNTIME} ${COBCRUN_DIRECT}" | fi | | # Helper script to unify listings (replace version, date, time) | UNIFY_LISTING="${abs_srcdir}/listings-sed.sh" | | # test runner for manual tests, content may be adjusted by the user | RUN_PROG_MANUAL="${abs_builddir}/run_prog_manual.sh" | | # unset option if not internally set in this script - or external | _unset_option () { | if test "$1" != "COB_CONFIG_DIR" \ | -a "$1" != "COB_COPY_DIR" \ | -a "$1" != "COB_RUNTIME_CONFIG" \ | -a "$1" != "COB_LIBRARY_PATH" \ | -a "$1" != "COB_CFLAGS" \ | -a "$1" != "COB_LIBS" \ | -a "$1" != "COB_UNIX_LF" \ | -a "$1" != "OS"; then | unset $1 | fi | } | | # possible path conversion for running the testsuite in an environment | # that doesn't match the one where the tested binaries were built | # Note: not needed for running the testsuite with MSYS as this translates the path | _return_path () { | echo "$1" | } | | # ensure we don't execute windows paths within programs generated by cygwin | # by passing a hint | if test "$OSTYPE" = "cygwin"; then | COB_ON_CYGWIN=1 | export COB_ON_CYGWIN | fi | | # Fix for testcases where cobc translates path to win32 equivalents | if test "x$MSYSTEM" != "x"; then | PATHSEP=";" | # finding the cobc executable is done from MSYS, but if this calls cobcrun | # it just uses the PATH variable which not necessarily has the correct | # order - especially if the current system has cobcrun installed - so | # let that cobc call COBCRUN with a full path (converted by MSYS into | # the Win32 variant when starting the cobc process) | COBCRUN=${ABS_COBCRUN} | else | PATHSEP=':' | fi | export PATHSEP | | # entries likely referenced in the LIBS entries below | prefix="/usr/local" | exec_prefix="${prefix}" | | # options that are also used in pre-inst-env (always add to both) | # but not directly in the testsuite | if test "$GNUCOBOL_ENV_SETUP" != "1" -a "$GNUCOBOL_TEST_LOCAL" != "1"; then | COB_CFLAGS="-I${abs_top_srcdir} -pipe -I/usr/local/include -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign -Qunused-arguments" | COB_LIBS="-L${abs_top_builddir}/libcob/.libs -L${exec_prefix}/lib -lcob" | 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" | PATH="${abs_top_builddir}/libcob/.libs:$PATH" | DYLD_LIBRARY_PATH="${abs_top_builddir}/libcob/.libs:$DYLD_LIBRARY_PATH" | SHLIB_PATH="${abs_top_builddir}/libcob/.libs:$SHLIB_PATH" | LIBPATH="${abs_top_builddir}/libcob/.libs:$LIBPATH" | COB_LIBRARY_PATH="${abs_top_builddir}/extras" | | export COB_CFLAGS COB_LIBS | export COB_CONFIG_DIR COB_COPY_DIR | export LD_LIBRARY_PATH PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH | export COB_LIBRARY_PATH | fi | COB_UNIX_LF=1 | export COB_UNIX_LF | | # unset all environment variables that are used in libcob | # for runtime configuration ... | COB_RUNTIME_CONFIG="${abs_top_srcdir}/config/runtime_empty.cfg" | export COB_RUNTIME_CONFIG | for cobenv in $(${LOCAL_ENV} ${ABS_COBCRUN} --runtime-conf \ | | grep " env:" | cut -d: -f2 | cut -d= -f1 \ | | grep -v "PATH" | grep -v "TERM"); \ | do _unset_option $cobenv; \ | done | | # prevent multiple calls by caching the output | ${LOCAL_ENV} ${ABS_COBC} --verbose --info > info.out | | # ... and also unset for the compiler | if test "$GNUCOBOL_TEST_LOCAL" != "1"; then | for cobenv in $(grep "env:" info.out | cut -d: -f2 | cut -d= -f1 \ | | grep -v "PATH"); \ | do _unset_option $cobenv; \ | done | fi | | COB_STACKTRACE=0 | export COB_STACKTRACE | | | # different flags checked in the testsuite | if test "$GNUCOBOL_TEST_LOCAL" != "1"; then | COB_OBJECT_EXT="o" | COB_EXE_EXT="" | COB_MODULE_EXT="so" | COB_BIGENDIAN="no" | COB_HAS_64_BIT_POINTER="yes" | COB_HAS_ISAM="db" | COB_HAS_XML2="yes" | COB_HAS_JSON="json-c" | COB_HAS_CURSES="yes" | else | | COB_OBJECT_EXT="$(grep COB_OBJECT_EXT info.out | cut -d: -f2 | cut -b2-)" | COB_EXE_EXT="$(grep COB_EXE_EXT info.out | cut -d: -f2 | cut -b2-)" | COB_MODULE_EXT="$(grep COB_MODULE_EXT info.out | cut -d: -f2 | cut -b2-)" | | if test $(grep -i -c "little-endian" info.out) = 0; then | COB_BIGENDIAN="yes" | else | COB_BIGENDIAN="no" | fi | COB_HAS_64_BIT_POINTER=$(grep "64bit-mode" info.out | cut -d: -f2 | cut -b2-) | | cob_indexed=$(grep -i "indexed file" info.out | cut -d: -f2) | if test "x$cob_indexed" = "x"; then | cob_indexed=$(grep ISAM info.out | cut -d: -f2) | fi | case "$cob_indexed" in | " disabled") COB_HAS_ISAM="no";; | " BDB") COB_HAS_ISAM="db";; | " VBISAM"*) COB_HAS_ISAM="vbisam";; | " D-ISAM") COB_HAS_ISAM="disam";; | " C-ISAM") COB_HAS_ISAM="cisam";; | " EXTFH") COB_HAS_ISAM="index_extfh";; | *) echo "unknown entry for indexed handler: '"$cob_indexed"' please report" && exit 1;; | esac | | if test $(grep -i -c "XML library.*disabled" info.out) = 0; then | COB_HAS_XML2="yes" | else | COB_HAS_XML2="no" | fi | if test $(grep -i -c "JSON library.*disabled" info.out) = 0; then | COB_HAS_JSON="yes" | else | COB_HAS_JSON="no" | fi | # see note below | if test $(grep -i -c " screen .*disabled" info.out) = 0; then | COB_HAS_CURSES="yes" | else | COB_HAS_CURSES="no" | fi | fi | | if test "x$MSYSTEM" != "x" -o "$OSTYPE" = "cygwin"; then | # running MSYS builds as not-visible child processes result in | # "Redirection is not supported" (at least with PDCurses "wincon" port) | # --> disabling the tests for this feature | # ncurses is known to work as long as TERM is appropriate | if test $(grep -i -c "ncurses" info.out) != 0; then | if test "x$MSYSTEM" != "x"; then | TERM="" | else | TERM="xterm" | fi | export TERM | # no change here... COB_HAS_CURSES="yes" | else | # manual tests are executed in separate window | # and are visible - so no need to handle it there | echo "$at_help_all" | grep -q "run_manual_screen" 2>/dev/null | if test $? -ne 0; then | COB_HAS_CURSES="no" | fi | fi | fi | | rm -rf info.out | | # NIST tests (tests/cobol85) are executed in a separate perl process with a new environment --> export needed | export COB_HAS_ISAM COB_HAS_XML2 COB_HAS_JSON COB_HAS_CURSES COB_HAS_64_BIT_POINTER | export COBC COBCRUN COBCRUN_DIRECT RUN_PROG_MANUAL | export COB_OBJECT_EXT COB_EXE_EXT COB_MODULE_EXT | | # to ensure that no external DB_HOME is polluted: unset | DB_HOME="" && export DB_HOME | | # For the very rare cases where cobc/libcob may need to know if they're running in test mode: | COB_IS_RUNNING_IN_TESTMODE=1 && export COB_IS_RUNNING_IN_TESTMODE ## ---------------- ## ## Tested programs. ## ## ---------------- ## ./testsuite.at:26: /home/lars/temp/cobol/gnucobol-3.2-rc2/cobc/cobc --version cobc (GnuCOBOL) 3.2-rc2.0 Copyright (C) 2023 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 Feb 19 2023 15:06:58 Packaged Feb 11 2023 01:47:30 UTC C version "OpenBSD Clang 13.0.0" ./testsuite.at:26: /home/lars/temp/cobol/gnucobol-3.2-rc2/bin/cobcrun --version cobcrun (GnuCOBOL) 3.2-rc2.0 Copyright (C) 2023 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 Feb 19 2023 15:06:57 Packaged Feb 11 2023 01:47:30 UTC libcob (GnuCOBOL) 3.2-rc2.0 Copyright (C) 2023 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 Feb 19 2023 15:06:13 Packaged Feb 11 2023 01:47:30 UTC ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Sun Feb 19 15:15:59 CET 2023 testsuite: ending at: Sun Feb 19 15:15:59 CET 2023 testsuite: test suite duration: 0h 0m 0s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 1 test was run, 1 failed unexpectedly. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Failed tests: GnuCOBOL 3.2-rc2 test suite: GnuCOBOL Tests test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 849: run_file.at:3662 System routines for directories (2) runfile extensions cbl_create_dir cbl_create_file cbl_close_file cbl_check_file_exist cbl_delete_dir cbl_purge_dir ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## # -*- compilation -*- 849. run_file.at:3662: testing System routines for directories (2) ... ./run_file.at:3753: $COMPILE prog.cob ./run_file.at:3754: $COBCRUN_DIRECT ./prog --- /dev/null Sun Feb 19 15:15:59 2023 +++ /home/lars/temp/cobol/gnucobol-3.2-rc2/tests/testsuite.dir/at-groups/849/stdout Sun Feb 19 15:15:59 2023 @@ -0,0 +1,3 @@ +FAILED 5: CBL_CREATE_FILE (res=+000000035) +FAILED 6: CBL_CLOSE_FILE (res=-000000001) +FAILED 7: CBL_CHECK_FILE_EXIST (res=+000000035) 849. run_file.at:3662: 849. System routines for directories (2) (run_file.at:3662): FAILED (run_file.at:3754) ## ------------- ## ## ../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-rc2, which was | generated by GNU Autoconf 2.71. Invocation command line was | | $ ./configure BDB_CFLAGS=-I/usr/local/include/db4 'BDB_LIBS=-L/usr/local/lib/db4 -ldb' --no-create --no-recursion | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = omg.my.domain | uname -m = amd64 | uname -r = 7.2 | uname -s = OpenBSD | uname -v = GENERIC.MP#6 | | /usr/bin/uname -p = amd64 | /bin/uname -X = unknown | | /bin/arch = unknown | /usr/bin/arch -k = OpenBSD.amd64 | /usr/convex/getsysinfo = unknown | /usr/bin/hostinfo = unknown | /bin/machine = unknown | /usr/bin/oslevel = unknown | /bin/universe = unknown | | PATH: /home/lars/bin/ | PATH: /bin/ | PATH: /sbin/ | PATH: /usr/bin/ | PATH: /usr/sbin/ | PATH: /usr/X11R6/bin/ | PATH: /usr/local/bin/ | PATH: /usr/local/sbin/ | PATH: /usr/games/ | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:2933: looking for aux files: config.rpath config.guess config.sub ltmain.sh ar-lib compile missing install-sh | configure:2946: trying ./build_aux/ | configure:2975: ./build_aux/config.rpath found | configure:2975: ./build_aux/config.guess found | configure:2975: ./build_aux/config.sub found | configure:2975: ./build_aux/ltmain.sh found | configure:2975: ./build_aux/ar-lib found | configure:2975: ./build_aux/compile found | configure:2975: ./build_aux/missing found | configure:2957: ./build_aux/install-sh found | configure:3193: checking for a BSD-compatible install | configure:3266: result: /usr/bin/install -c | configure:3277: checking whether build environment is sane | configure:3332: result: yes | configure:3491: checking for a race-free mkdir -p | configure:3535: result: ./build_aux/install-sh -c -d | configure:3542: checking for gawk | configure:3577: result: no | configure:3542: checking for mawk | configure:3577: result: no | configure:3542: checking for nawk | configure:3577: result: no | configure:3542: checking for awk | configure:3563: found /usr/bin/awk | configure:3574: result: awk | configure:3585: checking whether make sets $(MAKE) | configure:3608: result: yes | configure:3638: checking whether make supports nested variables | configure:3656: result: yes | configure:3962: checking for make | configure:3983: found /usr/bin/make | configure:3994: result: make | configure:4059: checking whether make can handle common constructs | configure:4071: make -f confmf.mk | configure:4074: $? = 0 | configure:4080: result: yes | configure:4089: checking whether make supports order-only prerequisites | configure:4104: make -f confmf.mk && make -f confmf.mk && cat confinc.out | make: don't know how to make | (prerequisite of: am__doit) | Stop in . | configure:4107: $? = 2 | configure:4118: result: no | configure:4132: checking whether CFLAGS -O can be modified | configure:4139: result: yes | configure:4212: checking for gcc | configure:4247: result: no | configure:4212: checking for icc | configure:4247: result: no | configure:4212: checking for xlc | configure:4247: result: no | configure:4212: checking for cc | configure:4233: found /usr/bin/cc | configure:4244: result: cc | configure:4275: checking for C compiler version | configure:4284: cc --version >&5 | OpenBSD clang version 13.0.0 | Target: amd64-unknown-openbsd7.2 | Thread model: posix | InstalledDir: /usr/bin | configure:4295: $? = 0 | configure:4284: cc -v >&5 | OpenBSD clang version 13.0.0 | Target: amd64-unknown-openbsd7.2 | Thread model: posix | InstalledDir: /usr/bin | configure:4295: $? = 0 | configure:4284: cc -V >&5 | cc: error: argument to '-V' is missing (expected 1 value) | cc: error: no input files | configure:4295: $? = 1 | configure:4284: cc -qversion >&5 | cc: error: unknown argument '-qversion'; did you mean '--version'? | cc: error: no input files | configure:4295: $? = 1 | configure:4284: cc -version >&5 | cc: error: unknown argument '-version'; did you mean '--version'? | cc: error: no input files | configure:4295: $? = 1 | configure:4315: checking whether the C compiler works | configure:4337: cc -O2 conftest.c >&5 | configure:4341: $? = 0 | configure:4391: result: yes | configure:4394: checking for C compiler default output file name | configure:4396: result: a.out | configure:4402: checking for suffix of executables | configure:4409: cc -o conftest -O2 conftest.c >&5 | configure:4413: $? = 0 | configure:4436: result: | configure:4458: checking whether we are cross compiling | configure:4466: cc -o conftest -O2 conftest.c >&5 | configure:4470: $? = 0 | configure:4477: ./conftest | configure:4481: $? = 0 | configure:4496: result: no | configure:4501: checking for suffix of object files | configure:4524: cc -c -O2 conftest.c >&5 | configure:4528: $? = 0 | configure:4550: result: o | configure:4554: checking whether the compiler supports GNU C | configure:4574: cc -c -O2 conftest.c >&5 | configure:4574: $? = 0 | configure:4584: result: yes | configure:4595: checking whether cc accepts -g | configure:4616: cc -c -g conftest.c >&5 | configure:4616: $? = 0 | configure:4660: result: yes | configure:4680: checking for cc option to enable C11 features | configure:4695: cc -c -O2 conftest.c >&5 | configure:4695: $? = 0 | configure:4713: result: none needed | configure:4829: checking whether cc understands -c and -o together | configure:4852: cc -c conftest.c -o conftest2.o | configure:4855: $? = 0 | configure:4852: cc -c conftest.c -o conftest2.o | configure:4855: $? = 0 | configure:4867: result: yes | configure:4887: checking whether make supports the include directive | configure:4902: make -f confmf.GNU && cat confinc.out | this is the am__doit target | configure:4905: $? = 0 | configure:4924: result: yes (GNU style) | configure:4950: checking dependency style of cc | configure:5062: result: gcc3 | configure:5171: checking for stdio.h | configure:5171: cc -c -O2 conftest.c >&5 | configure:5171: $? = 0 | configure:5171: result: yes | configure:5171: checking for stdlib.h | configure:5171: cc -c -O2 conftest.c >&5 | configure:5171: $? = 0 | configure:5171: result: yes | configure:5171: checking for string.h | configure:5171: cc -c -O2 conftest.c >&5 | configure:5171: $? = 0 | configure:5171: result: yes | configure:5171: checking for inttypes.h | configure:5171: cc -c -O2 conftest.c >&5 | configure:5171: $? = 0 | configure:5171: result: yes | configure:5171: checking for stdint.h | configure:5171: cc -c -O2 conftest.c >&5 | configure:5171: $? = 0 | configure:5171: result: yes | configure:5171: checking for strings.h | configure:5171: cc -c -O2 conftest.c >&5 | configure:5171: $? = 0 | configure:5171: result: yes | configure:5171: checking for sys/stat.h | configure:5171: cc -c -O2 conftest.c >&5 | configure:5171: $? = 0 | configure:5171: result: yes | configure:5171: checking for sys/types.h | configure:5171: cc -c -O2 conftest.c >&5 | configure:5171: $? = 0 | configure:5171: result: yes | configure:5171: checking for unistd.h | configure:5171: cc -c -O2 conftest.c >&5 | configure:5171: $? = 0 | configure:5171: result: yes | configure:5171: checking for wchar.h | configure:5171: cc -c -O2 conftest.c >&5 | configure:5171: $? = 0 | configure:5171: result: yes | configure:5171: checking for minix/config.h | configure:5171: cc -c -O2 conftest.c >&5 | conftest.c:50:10: fatal error: 'minix/config.h' file not found | #include | ^~~~~~~~~~~~~~~~ | 1 error generated. | configure:5171: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:5171: result: no | configure:5202: checking whether it is safe to define __EXTENSIONS__ | configure:5221: cc -c -O2 conftest.c >&5 | configure:5221: $? = 0 | configure:5229: result: yes | configure:5232: checking whether _XOPEN_SOURCE should be defined | configure:5254: cc -c -O2 conftest.c >&5 | configure:5254: $? = 0 | configure:5281: result: no | configure:5556: checking for windres | configure:5591: result: no | configure:5667: checking for ar | configure:5688: found /usr/bin/ar | configure:5699: result: ar | configure:5725: checking the archiver (ar) interface | configure:5742: cc -c -O2 conftest.c >&5 | configure:5742: $? = 0 | configure:5745: ar cru libconftest.a conftest.o >&5 | configure:5748: $? = 0 | configure:5776: result: ar | configure:5828: checking build system type | configure:5843: result: x86_64-unknown-openbsd7.2 | configure:5863: checking host system type | configure:5877: result: x86_64-unknown-openbsd7.2 | configure:5918: checking how to print strings | configure:5947: result: print -r | configure:5966: checking for a sed that does not truncate output | configure:6036: result: /usr/bin/sed | configure:6054: checking for grep that handles long lines and -e | configure:6118: result: /usr/bin/grep | configure:6123: checking for egrep | configure:6191: result: /usr/bin/grep -E | configure:6196: checking for fgrep | configure:6264: result: /usr/bin/grep -F | configure:6300: checking for ld used by cc | configure:6368: result: /usr/bin/ld | configure:6375: checking if the linker (/usr/bin/ld) is GNU ld | configure:6391: result: yes | configure:6403: checking for BSD- or MS-compatible name lister (nm) | configure:6453: result: /usr/bin/nm -B | configure:6593: checking the name lister (/usr/bin/nm -B) interface | configure:6601: cc -c -O2 conftest.c >&5 | configure:6604: /usr/bin/nm -B "conftest.o" | configure:6607: output | 00000000 F conftest.c | 00000000 B some_variable | configure:6614: result: BSD nm | configure:6617: checking whether ln -s works | configure:6621: result: yes | configure:6629: checking the maximum length of command line arguments | configure:6760: result: 393216 | configure:6777: checking whether the shell understands some XSI constructs | configure:6787: result: yes | configure:6791: checking whether the shell understands "+=" | configure:6797: result: no | configure:6832: checking how to convert x86_64-unknown-openbsd7.2 file names to x86_64-unknown-openbsd7.2 format | configure:6873: result: func_convert_file_noop | configure:6880: checking how to convert x86_64-unknown-openbsd7.2 file names to toolchain format | configure:6901: result: func_convert_file_noop | configure:6908: checking for /usr/bin/ld option to reload object files | configure:6916: result: -r | configure:6995: checking for objdump | configure:7016: found /usr/bin/objdump | configure:7027: result: objdump | configure:7056: checking how to recognize dependent libraries | configure:7259: result: match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$ | configure:7349: checking for dlltool | configure:7384: result: no | configure:7411: checking how to associate runtime and link libraries | configure:7439: result: print -r -- | configure:7573: checking for archiver @FILE support | configure:7591: cc -c -O2 conftest.c >&5 | configure:7591: $? = 0 | configure:7595: ar cru libconftest.a @conftest.lst >&5 | configure:7598: $? = 0 | configure:7603: ar cru libconftest.a @conftest.lst >&5 | ar: error: conftest.o: No such file or directory | configure:7606: $? = 1 | configure:7618: result: @ | configure:7681: checking for strip | configure:7702: found /usr/bin/strip | configure:7713: result: strip | configure:7790: checking for ranlib | configure:7811: found /usr/bin/ranlib | configure:7822: result: ranlib | configure:7924: checking command to parse /usr/bin/nm -B output from cc object | configure:8045: cc -c -O2 conftest.c >&5 | configure:8048: $? = 0 | configure:8052: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm | configure:8055: $? = 0 | configure:8121: cc -o conftest -O2 conftest.c conftstm.o >&5 | configure:8124: $? = 0 | configure:8162: result: ok | configure:8199: checking for sysroot | configure:8230: result: no | configure:8494: checking for mt | configure:8515: found /bin/mt | configure:8526: result: mt | configure:8549: checking if mt is a manifest tool | configure:8556: mt '-?' | mt: unknown option -- ? | usage: mt [-f device] command [count] | configure:8564: result: no | configure:9255: checking for dlfcn.h | configure:9255: cc -c -O2 conftest.c >&5 | configure:9255: $? = 0 | configure:9255: result: yes | configure:9789: checking for objdir | configure:9805: result: .libs | configure:10076: checking if cc supports -fno-rtti -fno-exceptions | configure:10095: cc -c -O2 -fno-rtti -fno-exceptions conftest.c >&5 | configure:10099: $? = 0 | configure:10112: result: yes | configure:10439: checking for cc option to produce PIC | configure:10447: result: -fPIC -DPIC | configure:10455: checking if cc PIC flag -fPIC -DPIC works | configure:10474: cc -c -O2 -fPIC -DPIC -DPIC conftest.c >&5 | configure:10478: $? = 0 | configure:10491: result: yes | configure:10520: checking if cc static flag -static works | configure:10549: result: yes | configure:10564: checking if cc supports -c -o file.o | configure:10586: cc -c -O2 -o out/conftest2.o conftest.c >&5 | configure:10590: $? = 0 | configure:10612: result: yes | configure:10620: checking if cc supports -c -o file.o | configure:10668: result: yes | configure:10701: checking whether the cc linker (/usr/bin/ld) supports shared libraries | configure:11861: result: yes | configure:11898: checking whether -lc should be explicitly linked in | configure:11907: cc -c -O2 conftest.c >&5 | configure:11910: $? = 0 | configure:11925: cc -shared -fPIC -DPIC -o conftest conftest.o -v 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1 | configure:11928: $? = 1 | configure:11942: result: yes | configure:12102: checking dynamic linker characteristics | configure:12838: result: openbsd7.2 ld.so | configure:12945: checking how to hardcode library paths into programs | configure:12970: result: immediate | configure:13064: checking for shl_load | configure:13064: cc -o conftest -O2 conftest.c >&5 | ld: error: undefined symbol: shl_load | >>> referenced by conftest.c | >>> /tmp/conftest-c40d3c.o:(main) | cc: error: linker command failed with exit code 1 (use -v to see invocation) | configure:13064: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 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. */ | | | | #include | | #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 (void) | | { | | return shl_load (); | | ; | | return 0; | | } | configure:13064: result: no | configure:13069: checking for shl_load in -ldld | configure:13092: cc -o conftest -O2 conftest.c -ldld >&5 | ld: error: unable to find library -ldld | cc: error: linker command failed with exit code 1 (use -v to see invocation) | configure:13092: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 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. */ | | char shl_load (); | | int | | main (void) | | { | | return shl_load (); | | ; | | return 0; | | } | configure:13102: result: no | configure:13108: checking for dlopen | configure:13108: cc -o conftest -O2 conftest.c >&5 | configure:13108: $? = 0 | configure:13108: result: yes | configure:13266: checking whether a program can dlopen itself | configure:13347: cc -o conftest -O2 -DHAVE_DLFCN_H -Wl,-E conftest.c >&5 | configure:13350: $? = 0 | configure:13368: result: yes | configure:13373: checking whether a statically linked program can dlopen itself | configure:13454: cc -o conftest -O2 -DHAVE_DLFCN_H -Wl,-E -static conftest.c >&5 | configure:13457: $? = 0 | configure:13475: result: no | configure:13514: checking whether stripping libraries is possible | configure:13519: result: yes | configure:13554: checking if libtool supports shared libraries | configure:13556: result: yes | configure:13559: checking whether to build shared libraries | configure:13580: result: yes | configure:13583: checking whether to build static libraries | configure:13587: result: yes | configure:13712: checking for flex | configure:13733: found /usr/bin/flex | configure:13744: result: flex | configure:13793: checking for lex output file root | configure:13806: flex conftest.l | configure:13810: $? = 0 | configure:13818: result: lex.yy | configure:13833: checking for lex library | configure:13858: cc -o conftest -O2 conftest.c >&5 | configure:13858: $? = 0 | configure:13871: result: none needed | configure:13886: checking for library containing yywrap | configure:13916: cc -o conftest -O2 conftest.c >&5 | ld: error: undefined symbol: yywrap | >>> referenced by conftest.c | >>> /tmp/conftest-916e38.o:(main) | cc: error: linker command failed with exit code 1 (use -v to see invocation) | configure:13916: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 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. */ | | char yywrap (); | | int | | main (void) | | { | | return yywrap (); | | ; | | return 0; | | } | configure:13916: cc -o conftest -O2 conftest.c -lfl >&5 | configure:13916: $? = 0 | configure:13936: result: -lfl | configure:13952: checking whether yytext is a pointer | configure:13968: cc -c -O2 conftest.c >&5 | configure:13968: $? = 0 | configure:13975: result: yes | configure:13994: checking if flex is the lexer generator | configure:14009: result: yes | configure:14020: checking for bison | configure:14041: found /usr/local/bin/bison | configure:14052: result: bison -y | configure:14068: checking if bison is the parser generator | configure:14083: result: yes | configure:14094: checking for diff arguments | configure:14112: result: not supported | configure:14122: checking whether ln -s works | configure:14126: result: yes | configure:14135: checking whether make sets $(MAKE) | configure:14158: result: yes | configure:14193: checking for ld used by cc | configure:14261: result: /usr/bin/ld | configure:14268: checking if the linker (/usr/bin/ld) is GNU ld | configure:14284: result: yes | configure:14292: checking for shared library run path origin | configure:14306: result: done | configure:14419: checking for sys/types.h | configure:14419: result: yes | configure:14419: checking for signal.h | configure:14419: cc -c -O2 conftest.c >&5 | configure:14419: $? = 0 | configure:14419: result: yes | configure:14419: checking for stddef.h | configure:14419: cc -c -O2 conftest.c >&5 | configure:14419: $? = 0 | configure:14419: result: yes | configure:14432: checking for sys/time.h | configure:14432: cc -c -O2 conftest.c >&5 | configure:14432: $? = 0 | configure:14432: result: yes | configure:14438: checking for locale.h | configure:14438: cc -c -O2 conftest.c >&5 | configure:14438: $? = 0 | configure:14438: result: yes | configure:14444: checking for fcntl.h | configure:14444: cc -c -O2 conftest.c >&5 | configure:14444: $? = 0 | configure:14444: result: yes | configure:14450: checking for dlfcn.h | configure:14450: result: yes | configure:14460: checking for an ANSI C-conforming const | configure:14527: cc -c -O2 conftest.c >&5 | configure:14527: $? = 0 | configure:14535: result: yes | configure:14543: checking whether byte ordering is bigendian | configure:14559: cc -c -O2 conftest.c >&5 | conftest.c:50:9: error: unknown type name 'not' | not a universal capable compiler | ^ | conftest.c:50:14: error: expected ';' after top level declarator | not a universal capable compiler | ^ | ; | 2 errors generated. | configure:14559: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | /* end confdefs.h. */ | | #ifndef __APPLE_CC__ | | not a universal capable compiler | | #endif | | typedef int dummy; | | | configure:14605: cc -c -O2 conftest.c >&5 | configure:14605: $? = 0 | configure:14624: cc -c -O2 conftest.c >&5 | conftest.c:56:4: error: use of undeclared identifier 'not' | not big endian | ^ | 1 error generated. | configure:14624: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main (void) | | { | | #if BYTE_ORDER != BIG_ENDIAN | | not big endian | | #endif | | | | ; | | return 0; | | } | configure:14758: result: no | configure:14776: checking for size_t | configure:14776: cc -c -O2 conftest.c >&5 | configure:14776: $? = 0 | configure:14776: cc -c -O2 conftest.c >&5 | conftest.c:80:21: error: expected expression | if (sizeof ((size_t))) | ^ | 1 error generated. | configure:14776: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | int | | main (void) | | { | | if (sizeof ((size_t))) | | return 0; | | ; | | return 0; | | } | configure:14776: result: yes | configure:14786: checking whether struct tm is in sys/time.h or time.h | configure:14807: cc -c -O2 conftest.c >&5 | configure:14807: $? = 0 | configure:14815: result: time.h | configure:14823: checking for sig_atomic_t | configure:14823: cc -c -O2 conftest.c >&5 | configure:14823: $? = 0 | configure:14823: cc -c -O2 conftest.c >&5 | conftest.c:54:27: error: expected expression | if (sizeof ((sig_atomic_t))) | ^ | 1 error generated. | configure:14823: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | if (sizeof ((sig_atomic_t))) | | return 0; | | ; | | return 0; | | } | configure:14823: result: yes | configure:14835: checking for inline keyword | configure:14864: cc -c -O2 conftest.c >&5 | configure:14864: $? = 0 | configure:14872: result: __inline | configure:14883: checking for vprintf | configure:14883: cc -o conftest -O2 conftest.c >&5 | conftest.c:67:6: warning: incompatible redeclaration of library function 'vprintf' [-Wincompatible-library-redeclaration] | char vprintf (); | ^ | conftest.c:67:6: note: 'vprintf' is a builtin with type 'int (const char *, struct __va_list_tag *)' | 1 warning generated. | configure:14883: $? = 0 | configure:14883: result: yes | configure:14904: checking for memmove | configure:14904: cc -o conftest -O2 conftest.c >&5 | conftest.c:68:6: warning: incompatible redeclaration of library function 'memmove' [-Wincompatible-library-redeclaration] | char memmove (); | ^ | conftest.c:68:6: note: 'memmove' is a builtin with type 'void *(void *, const void *, unsigned long)' | 1 warning generated. | configure:14904: $? = 0 | configure:14904: result: yes | configure:14910: checking for memset | configure:14910: cc -o conftest -O2 conftest.c >&5 | conftest.c:69:6: warning: incompatible redeclaration of library function 'memset' [-Wincompatible-library-redeclaration] | char memset (); | ^ | conftest.c:69:6: note: 'memset' is a builtin with type 'void *(void *, int, unsigned long)' | 1 warning generated. | configure:14910: $? = 0 | configure:14910: result: yes | configure:14916: checking for setlocale | configure:14916: cc -o conftest -O2 conftest.c >&5 | configure:14916: $? = 0 | configure:14916: result: yes | configure:14922: checking for fcntl | configure:14922: cc -o conftest -O2 conftest.c >&5 | configure:14922: $? = 0 | configure:14922: result: yes | configure:14928: checking for strerror | configure:14928: cc -o conftest -O2 conftest.c >&5 | conftest.c:72:6: warning: incompatible redeclaration of library function 'strerror' [-Wincompatible-library-redeclaration] | char strerror (); | ^ | conftest.c:72:6: note: 'strerror' is a builtin with type 'char *(int)' | 1 warning generated. | configure:14928: $? = 0 | configure:14928: result: yes | configure:14934: checking for strcasecmp | configure:14934: cc -o conftest -O2 conftest.c >&5 | conftest.c:73:6: warning: incompatible redeclaration of library function 'strcasecmp' [-Wincompatible-library-redeclaration] | char strcasecmp (); | ^ | conftest.c:73:6: note: 'strcasecmp' is a builtin with type 'int (const char *, const char *)' | 1 warning generated. | configure:14934: $? = 0 | configure:14934: result: yes | configure:14940: checking for strchr | configure:14940: cc -o conftest -O2 conftest.c >&5 | conftest.c:74:6: warning: incompatible redeclaration of library function 'strchr' [-Wincompatible-library-redeclaration] | char strchr (); | ^ | conftest.c:74:6: note: 'strchr' is a builtin with type 'char *(const char *, int)' | 1 warning generated. | configure:14940: $? = 0 | configure:14940: result: yes | configure:14946: checking for strrchr | configure:14946: cc -o conftest -O2 conftest.c >&5 | conftest.c:75:6: warning: incompatible redeclaration of library function 'strrchr' [-Wincompatible-library-redeclaration] | char strrchr (); | ^ | conftest.c:75:6: note: 'strrchr' is a builtin with type 'char *(const char *, int)' | 1 warning generated. | configure:14946: $? = 0 | configure:14946: result: yes | configure:14952: checking for strdup | configure:14952: cc -o conftest -O2 conftest.c >&5 | configure:14952: $? = 0 | configure:14952: result: yes | configure:14958: checking for strstr | configure:14958: cc -o conftest -O2 conftest.c >&5 | conftest.c:77:6: warning: incompatible redeclaration of library function 'strstr' [-Wincompatible-library-redeclaration] | char strstr (); | ^ | conftest.c:77:6: note: 'strstr' is a builtin with type 'char *(const char *, const char *)' | 1 warning generated. | configure:14958: $? = 0 | configure:14958: result: yes | configure:14964: checking for strtol | configure:14964: cc -o conftest -O2 conftest.c >&5 | conftest.c:78:6: warning: incompatible redeclaration of library function 'strtol' [-Wincompatible-library-redeclaration] | char strtol (); | ^ | conftest.c:78:6: note: 'strtol' is a builtin with type 'long (const char *, char **, int)' | 1 warning generated. | configure:14964: $? = 0 | configure:14964: result: yes | configure:14970: checking for gettimeofday | configure:14970: cc -o conftest -O2 conftest.c >&5 | configure:14970: $? = 0 | configure:14970: result: yes | configure:14976: checking for localeconv | configure:14976: cc -o conftest -O2 conftest.c >&5 | configure:14976: $? = 0 | configure:14976: result: yes | configure:14982: checking for getexecname | configure:14982: cc -o conftest -O2 conftest.c >&5 | ld: error: undefined symbol: getexecname | >>> referenced by conftest.c | >>> /tmp/conftest-7d380d.o:(main) | cc: error: linker command failed with exit code 1 (use -v to see invocation) | configure:14982: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | /* end confdefs.h. */ | | /* Define getexecname to an innocuous variant, in case declares getexecname. | | For example, HP-UX 11i declares gettimeofday. */ | | #define getexecname innocuous_getexecname | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char getexecname (); below. */ | | | | #include | | #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 (void) | | { | | return getexecname (); | | ; | | return 0; | | } | configure:14982: result: no | configure:14988: checking for canonicalize_file_name | configure:14988: cc -o conftest -O2 conftest.c >&5 | ld: error: undefined symbol: canonicalize_file_name | >>> referenced by conftest.c | >>> /tmp/conftest-9ae1dd.o:(main) | cc: error: linker command failed with exit code 1 (use -v to see invocation) | configure:14988: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | /* end confdefs.h. */ | | /* Define canonicalize_file_name to an innocuous variant, in case declares canonicalize_file_name. | | For example, HP-UX 11i declares gettimeofday. */ | | #define canonicalize_file_name innocuous_canonicalize_file_name | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char canonicalize_file_name (); below. */ | | | | #include | | #undef canonicalize_file_name | | | | /* 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 canonicalize_file_name (); | | /* 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_canonicalize_file_name || defined __stub___canonicalize_file_name | | choke me | | #endif | | | | int | | main (void) | | { | | return canonicalize_file_name (); | | ; | | return 0; | | } | configure:14988: result: no | configure:14994: checking for popen | configure:14994: cc -o conftest -O2 conftest.c >&5 | configure:14994: $? = 0 | configure:14994: result: yes | configure:15000: checking for raise | configure:15000: cc -o conftest -O2 conftest.c >&5 | configure:15000: $? = 0 | configure:15000: result: yes | configure:15006: checking for readlink | configure:15006: cc -o conftest -O2 conftest.c >&5 | configure:15006: $? = 0 | configure:15006: result: yes | configure:15012: checking for realpath | configure:15012: cc -o conftest -O2 conftest.c >&5 | configure:15012: $? = 0 | configure:15012: result: yes | configure:15018: checking for setenv | configure:15018: cc -o conftest -O2 conftest.c >&5 | configure:15018: $? = 0 | configure:15018: result: yes | configure:15024: checking for strcoll | configure:15024: cc -o conftest -O2 conftest.c >&5 | configure:15024: $? = 0 | configure:15024: result: yes | configure:15030: checking for flockfile | configure:15030: cc -o conftest -O2 conftest.c >&5 | configure:15030: $? = 0 | configure:15030: result: yes | configure:15039: checking for timezone variable access | configure:15057: cc -c -O2 conftest.c >&5 | configure:15057: $? = 0 | configure:15067: result: yes | configure:15075: checking for designated initializers | configure:15096: cc -c -O2 conftest.c >&5 | configure:15096: $? = 0 | configure:15106: result: yes | configure:15209: checking for __INTEL_COMPILER | configure:15218: cc -c -O2 conftest.c >&5 | conftest.c:76:4: error: macro not defined | # error macro not defined | ^ | 1 error generated. | configure:15218: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __INTEL_COMPILER | | # error macro not defined | | #endif | configure:15227: result: no | configure:15233: checking for __clang__ | configure:15242: cc -c -O2 conftest.c >&5 | configure:15242: $? = 0 | configure:15245: result: yes | configure:15253: checking for __xlc__ | configure:15262: cc -c -O2 conftest.c >&5 | conftest.c:76:4: error: macro not defined | # error macro not defined | ^ | 1 error generated. | configure:15262: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __xlc__ | | # error macro not defined | | #endif | configure:15268: result: no | configure:15273: checking for __WATCOMC__ | configure:15282: cc -c -O2 conftest.c >&5 | conftest.c:76:4: error: macro not defined | # error macro not defined | ^ | 1 error generated. | configure:15282: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __WATCOMC__ | | # error macro not defined | | #endif | configure:15288: result: no | configure:15322: Checks for math library ... | configure:15327: none needed | configure:15364: checking whether to build with code coverage support | configure:15385: result: no | configure:15787: checking for pkg-config | configure:15810: found /usr/bin/pkg-config | configure:15822: result: /usr/bin/pkg-config | configure:15847: checking pkg-config is at least version 0.9.0 | configure:15850: result: yes | configure:15861: Checks for GMP/MPIR ... | configure:15899: checking for gmp | configure:15906: $PKG_CONFIG --exists --print-errors "gmp" | configure:15909: $? = 0 | configure:15923: $PKG_CONFIG --exists --print-errors "gmp" | configure:15926: $? = 0 | configure:16112: result: yes | configure:16125: checking for gmp.h | configure:16125: cc -c -O2 -I/usr/local/include conftest.c >&5 | configure:16125: $? = 0 | configure:16125: result: yes | configure:16130: checking if linking against libgmp with "-L/usr/local/lib -lgmp" works | configure:16143: cc -o conftest -O2 -I/usr/local/include conftest.c -L/usr/local/lib -lgmp >&5 | configure:16143: $? = 0 | configure:16145: result: yes | configure:16314: checking matching GMP version | configure:16347: cc -o conftest -O2 -I/usr/local/include conftest.c -L/usr/local/lib -lgmp >&5 | configure:16347: $? = 0 | configure:16347: ./conftest | configure:16347: $? = 0 | configure:16386: cc -o conftest -O2 -I/usr/local/include conftest.c -L/usr/local/lib -lgmp >&5 | configure:16386: $? = 0 | configure:16386: ./conftest | configure:16386: $? = 0 | configure:16404: result: yes (6.2) | configure:16416: checking for __gmp_get_memory_functions in -lgmp | configure:16439: cc -o conftest -O2 -I/usr/local/include conftest.c -lgmp >&5 | ld: error: unable to find library -lgmp | cc: error: linker command failed with exit code 1 (use -v to see invocation) | configure:16439: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | /* 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. */ | | char __gmp_get_memory_functions (); | | int | | main (void) | | { | | return __gmp_get_memory_functions (); | | ; | | return 0; | | } | configure:16450: result: no | configure:16476: checking for libxml-2.0 | configure:16483: $PKG_CONFIG --exists --print-errors "libxml-2.0" | configure:16486: $? = 0 | configure:16500: $PKG_CONFIG --exists --print-errors "libxml-2.0" | configure:16503: $? = 0 | configure:16645: result: yes | configure:16663: checking for libxml/xmlversion.h | configure:16663: cc -c -O2 -I/usr/local/include -I/usr/local/include/libxml2 -I/usr/local/include conftest.c >&5 | configure:16663: $? = 0 | configure:16663: result: yes | configure:16663: checking for libxml/uri.h | configure:16663: cc -c -O2 -I/usr/local/include -I/usr/local/include/libxml2 -I/usr/local/include conftest.c >&5 | configure:16663: $? = 0 | configure:16663: result: yes | configure:16663: checking for libxml/xmlwriter.h | configure:16663: cc -c -O2 -I/usr/local/include -I/usr/local/include/libxml2 -I/usr/local/include conftest.c >&5 | configure:16663: $? = 0 | configure:16663: result: yes | configure:16680: checking for LIBXML_WRITER_ENABLED defined in libxml/xmlwriter.h | configure:16704: cc -c -O2 -I/usr/local/include -I/usr/local/include/libxml2 -I/usr/local/include conftest.c >&5 | configure:16704: $? = 0 | configure:16712: result: yes | configure:16729: checking if linking against libxml2 with "-L/usr/local/lib -lxml2" works | configure:16742: cc -o conftest -O2 -I/usr/local/include -I/usr/local/include/libxml2 -I/usr/local/include conftest.c -L/usr/local/lib -lxml2 >&5 | configure:16742: $? = 0 | configure:16745: result: yes | configure:16775: Checks for JSON handler | configure:16807: Checks for local cJSON ... | configure:16893: using local cJSON: no | configure:16900: checking for libcjson | configure:16907: $PKG_CONFIG --exists --print-errors "libcjson" | Package libcjson was not found in the pkg-config search path | configure:16910: $? = 1 | configure:16924: $PKG_CONFIG --exists --print-errors "libcjson" | Package libcjson was not found in the pkg-config search path | configure:16927: $? = 1 | configure:16941: result: no | Package libcjson was not found in the pkg-config search path | configure:16980: checking for cJSON.h | configure:16980: cc -c -O2 -I/usr/local/include conftest.c >&5 | conftest.c:104:10: fatal error: 'cJSON.h' file not found | #include | ^~~~~~~~~ | 1 error generated. | configure:16980: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define WITH_XML2 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:16980: result: no | configure:16988: checking for cjson/cJSON.h | configure:16988: cc -c -O2 -I/usr/local/include conftest.c >&5 | conftest.c:104:10: fatal error: 'cjson/cJSON.h' file not found | #include | ^~~~~~~~~~~~~~~ | 1 error generated. | configure:16988: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define WITH_XML2 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:16988: result: no | configure:16997: WARNING: Headers for libcjson missing, you may adjust CJSON_CFLAGS or put cJSON sources in "libcob" | configure:17074: checking for json-c | configure:17081: $PKG_CONFIG --exists --print-errors "json-c" | configure:17084: $? = 0 | configure:17098: $PKG_CONFIG --exists --print-errors "json-c" | configure:17101: $? = 0 | configure:17141: result: yes | configure:17156: checking for json.h | configure:17156: cc -c -O2 -I/usr/local/include -I/usr/local/include -I/usr/local/include/json-c conftest.c >&5 | configure:17156: $? = 0 | configure:17156: result: yes | configure:17186: checking if linking against libjson-c with "-L/usr/local/lib -ljson-c" works | configure:17207: cc -o conftest -O2 -I/usr/local/include -I/usr/local/include -I/usr/local/include/json-c conftest.c -L/usr/local/lib -ljson-c >&5 | configure:17207: $? = 0 | configure:17209: result: yes | configure:17317: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | configure:17317: $? = 0 | configure:17423: checking for clock_gettime and CLOCK_REALTIME | configure:17436: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | configure:17436: $? = 0 | configure:17439: result: yes | configure:17448: checking for isfinite | configure:17461: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | configure:17461: $? = 0 | configure:17464: result: yes | configure:17686: checking for fdatasync | configure:17686: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | configure:17686: $? = 0 | configure:17686: result: yes | configure:17692: checking for sigaction | configure:17692: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | configure:17692: $? = 0 | configure:17692: result: yes | configure:17698: checking for fmemopen | configure:17698: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | configure:17698: $? = 0 | configure:17698: result: yes | configure:17705: checking for cc options needed to detect all undeclared functions | configure:17727: cc -c -O2 -I/usr/local/include conftest.c >&5 | conftest.c:90:8: warning: implicitly declaring library function 'strchr' with type 'char *(const char *, int)' [-Wimplicit-function-declaration] | (void) strchr; | ^ | conftest.c:90:8: note: include the header or explicitly provide a declaration for 'strchr' | 1 warning generated. | configure:17727: $? = 0 | configure:17727: cc -c -O2 -fno-builtin -I/usr/local/include conftest.c >&5 | conftest.c:90:8: error: use of undeclared identifier 'strchr' | (void) strchr; | ^ | 1 error generated. | configure:17727: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define WITH_XML2 1 | | #define HAVE_JSON_H 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | /* end confdefs.h. */ | | | | int | | main (void) | | { | | (void) strchr; | | ; | | return 0; | | } | configure:17754: cc -c -O2 -fno-builtin -I/usr/local/include conftest.c >&5 | configure:17754: $? = 0 | configure:17771: result: -fno-builtin | configure:17785: checking whether fdatasync is declared | configure:17785: cc -c -O2 -fno-builtin -I/usr/local/include conftest.c >&5 | configure:17785: $? = 0 | configure:17785: result: yes | configure:17794: checking whether fmemopen is declared | configure:17794: cc -c -O2 -fno-builtin -I/usr/local/include conftest.c >&5 | configure:17794: $? = 0 | configure:17794: result: yes | configure:17816: Checks for curses ... | configure:17884: checking for initscr in -lncursesw | configure:17907: cc -o conftest -O2 -I/usr/local/include conftest.c -lncursesw >&5 | configure:17907: $? = 0 | configure:17917: result: yes | configure:17934: checking for ncursesw/ncurses.h | configure:17934: cc -c -O2 -I/usr/local/include conftest.c >&5 | conftest.c:116:10: fatal error: 'ncursesw/ncurses.h' file not found | #include | ^~~~~~~~~~~~~~~~~~~~ | 1 error generated. | configure:17934: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define WITH_XML2 1 | | #define HAVE_JSON_H 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:17934: result: no | configure:17942: checking for ncursesw/curses.h | configure:17942: cc -c -O2 -I/usr/local/include conftest.c >&5 | conftest.c:116:10: fatal error: 'ncursesw/curses.h' file not found | #include | ^~~~~~~~~~~~~~~~~~~ | 1 error generated. | configure:17942: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define WITH_XML2 1 | | #define HAVE_JSON_H 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:17942: result: no | configure:17950: checking for ncurses.h | configure:17950: cc -c -O2 -I/usr/local/include conftest.c >&5 | configure:17950: $? = 0 | configure:17950: result: yes | configure:18331: checking for ncurses _nc_freeall function | configure:18345: cc -o conftest -O2 -I/usr/local/include conftest.c -lncursesw >&5 | configure:18345: $? = 0 | configure:18348: result: yes | configure:18356: checking for ncurses use_legacy_coding function | configure:18370: cc -o conftest -O2 -I/usr/local/include conftest.c -lncursesw >&5 | configure:18370: $? = 0 | configure:18373: result: yes | configure:18384: checking for curses color_set function | configure:18412: cc -o conftest -O2 -I/usr/local/include conftest.c -lncursesw >&5 | configure:18412: $? = 0 | configure:18415: result: yes | configure:18424: checking for curses define_key function | configure:18452: cc -o conftest -O2 -I/usr/local/include conftest.c -lncursesw >&5 | configure:18452: $? = 0 | configure:18455: result: yes | configure:18464: checking for curses mouseinterval function | configure:18492: cc -o conftest -O2 -I/usr/local/include conftest.c -lncursesw >&5 | configure:18492: $? = 0 | configure:18495: result: yes | configure:18504: checking for curses has_mouse function | configure:18532: cc -o conftest -O2 -I/usr/local/include conftest.c -lncursesw >&5 | conftest.c:113:2: warning: implicit declaration of function 'has_mouse' is invalid in C99 [-Wimplicit-function-declaration] | has_mouse (); | ^ | 1 warning generated. | ld: error: undefined symbol: has_mouse | >>> referenced by conftest.c | >>> /tmp/conftest-7e472e.o:(main) | cc: error: linker command failed with exit code 1 (use -v to see invocation) | configure:18532: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define WITH_XML2 1 | | #define HAVE_JSON_H 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | /* end confdefs.h. */ | | | | #ifdef HAVE_NCURSESW_NCURSES_H | | #include | | #elif defined (HAVE_NCURSESW_CURSES_H) | | #include | | #elif defined (HAVE_NCURSES_H) | | #include | | #elif defined (HAVE_NCURSES_NCURSES_H) | | #include | | #elif defined (HAVE_PDCURSES_H) | | #include | | #elif defined (HAVE_CURSES_H) | | #include | | #endif | | int | | main (void) | | { | | | | has_mouse (); | | | | ; | | return 0; | | } | configure:18538: result: no | configure:18812: Checks for Berkeley DB ... | configure:18821: checking for db.h | configure:18821: cc -c -O2 -I/usr/local/include -I/usr/local/include/db4 conftest.c >&5 | configure:18821: $? = 0 | configure:18821: result: yes | configure:18858: cc -o conftest -O2 -I/usr/local/include -I/usr/local/include/db4 conftest.c >&5 | configure:18858: $? = 0 | configure:18858: ./conftest | configure:18858: $? = 0 | configure:18873: db.h reports version "-Berkeley DB 4.6.21: (September 27, 2007)-" | configure:18877: checking for Berkeley DB db.h version >= 4.1 | configure:18886: result: yes (4.6) | configure:18897: checking for Berkeley DB library with BDB_LIBS | configure:18925: cc -o conftest -O2 -I/usr/local/include -I/usr/local/include/db4 conftest.c -L/usr/local/lib/db4 -ldb >&5 | configure:18925: $? = 0 | configure:18925: ./conftest | configure:18925: $? = 0 | configure:18989: result: yes | configure:18992: BDB library version 4.6 linked with -L/usr/local/lib/db4 -ldb | configure:19061: checking for _WIN32 | configure:19070: cc -c -O2 -I/usr/local/include conftest.c >&5 | conftest.c:99:4: error: macro not defined | # error macro not defined | ^ | 1 error generated. | configure:19070: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define WITH_XML2 1 | | #define HAVE_JSON_H 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_DB_H 1 | | #define WITH_DB 1 | | /* end confdefs.h. */ | | | | #ifndef _WIN32 | | # error macro not defined | | #endif | configure:19076: result: no | configure:19083: checking for dlopen in -lc | configure:19106: cc -o conftest -O2 -I/usr/local/include conftest.c -lc >&5 | configure:19106: $? = 0 | configure:19116: result: yes | configure:19280: checking for support of computed gotos | configure:19297: cc -c -O2 -I/usr/local/include conftest.c >&5 | configure:19297: $? = 0 | configure:19301: result: yes | configure:19310: Checks for different sizes ... | configure:19317: checking size of long int | configure:19323: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | configure:19323: $? = 0 | configure:19323: ./conftest | configure:19323: $? = 0 | configure:19338: result: 8 | configure:19350: checking size of long long | configure:19356: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | configure:19356: $? = 0 | configure:19356: ./conftest | configure:19356: $? = 0 | configure:19371: result: 8 | configure:19383: checking size of long | configure:19389: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | configure:19389: $? = 0 | configure:19389: ./conftest | configure:19389: $? = 0 | configure:19404: result: 8 | configure:19416: checking size of void * | configure:19422: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | configure:19422: $? = 0 | configure:19422: ./conftest | configure:19422: $? = 0 | configure:19437: result: 8 | configure:19446: checking if size of long int = size of long long | configure:19451: result: yes | configure:19458: checking if long is 32 bits | configure:19466: result: no | configure:19470: checking if pointer is longer than 32 bits | configure:19477: result: yes | configure:19489: checking for aligned attribute | configure:19507: cc -c -O2 -I/usr/local/include conftest.c >&5 | configure:19507: $? = 0 | configure:19514: result: yes | configure:19524: checking for pure attribute | configure:19544: cc -c -O2 -I/usr/local/include conftest.c >&5 | configure:19544: $? = 0 | configure:19551: result: yes | configure:19563: checking whether NLS is requested | configure:19573: result: yes | configure:19613: checking for msgfmt | configure: trying /usr/local/bin/msgfmt... | 0 translated messages. | configure:19646: result: /usr/local/bin/msgfmt | configure:19655: checking for gmsgfmt | configure:19691: result: /usr/local/bin/msgfmt | configure:19736: checking for xgettext | configure: trying /usr/local/bin/xgettext... | /usr/local/bin/xgettext: warning: file '/dev/null' extension '' is unknown; will try C | configure:19769: result: /usr/local/bin/xgettext | configure:19814: checking for msgmerge | configure: trying /usr/local/bin/msgmerge... | configure:19846: result: /usr/local/bin/msgmerge | configure:20442: checking for CFPreferencesCopyAppValue | configure:20471: result: no | configure:20478: checking for CFLocaleCopyPreferredLanguages | configure:20497: cc -o conftest -O2 -I/usr/local/include conftest.c -Wl,-framework -Wl,CoreFoundation >&5 | conftest.c:107:10: fatal error: 'CoreFoundation/CFLocale.h' file not found | #include | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ | 1 error generated. | configure:20497: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define WITH_XML2 1 | | #define HAVE_JSON_H 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_DB_H 1 | | #define WITH_DB 1 | | #define USE_LIBDL 1 | | #define COB_COMPUTED_GOTO 1 | | #define SIZEOF_LONG_INT 8 | | #define SIZEOF_LONG_LONG 8 | | #define SIZEOF_LONG 8 | | #define SIZEOF_VOID_P 8 | | #define COB_LI_IS_LL 1 | | #define COB_64_BIT_POINTER 1 | | #define HAVE_ATTRIBUTE_ALIGNED 1 | | #define HAVE_ATTRIBUTE_PURE 1 | | /* end confdefs.h. */ | | #include | | int | | main (void) | | { | | CFLocaleCopyPreferredLanguages(); | | ; | | return 0; | | } | configure:20507: result: no | configure:20557: checking for GNU gettext in libc | configure:20587: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | ld: error: undefined symbol: libintl_bindtextdomain | >>> referenced by conftest.c | >>> /tmp/conftest-11e450.o:(main) | | ld: error: undefined symbol: libintl_gettext | >>> referenced by conftest.c | >>> /tmp/conftest-11e450.o:(main) | cc: error: linker command failed with exit code 1 (use -v to see invocation) | configure:20587: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define WITH_XML2 1 | | #define HAVE_JSON_H 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_DB_H 1 | | #define WITH_DB 1 | | #define USE_LIBDL 1 | | #define COB_COMPUTED_GOTO 1 | | #define SIZEOF_LONG_INT 8 | | #define SIZEOF_LONG_LONG 8 | | #define SIZEOF_LONG 8 | | #define SIZEOF_VOID_P 8 | | #define COB_LI_IS_LL 1 | | #define COB_64_BIT_POINTER 1 | | #define HAVE_ATTRIBUTE_ALIGNED 1 | | #define HAVE_ATTRIBUTE_PURE 1 | | /* end confdefs.h. */ | | | | #include | | #ifndef __GNU_GETTEXT_SUPPORTED_REVISION | | extern int _nl_msg_cat_cntr; | | extern int *_nl_domain_bindings; | | #define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_domain_bindings) | | #else | | #define __GNU_GETTEXT_SYMBOL_EXPRESSION 0 | | #endif | | | | | | int | | main (void) | | { | | | | bindtextdomain ("", ""); | | return * gettext ("") + __GNU_GETTEXT_SYMBOL_EXPRESSION | | | | ; | | return 0; | | } | configure:20597: result: no | configure:20631: checking for iconv | configure:20656: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | ld: error: undefined symbol: libiconv_open | >>> referenced by conftest.c | >>> /tmp/conftest-a195b9.o:(main) | | ld: error: undefined symbol: libiconv | >>> referenced by conftest.c | >>> /tmp/conftest-a195b9.o:(main) | | ld: error: undefined symbol: libiconv_close | >>> referenced by conftest.c | >>> /tmp/conftest-a195b9.o:(main) | cc: error: linker command failed with exit code 1 (use -v to see invocation) | configure:20656: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.2-rc2" | | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define WITH_XML2 1 | | #define HAVE_JSON_H 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_DB_H 1 | | #define WITH_DB 1 | | #define USE_LIBDL 1 | | #define COB_COMPUTED_GOTO 1 | | #define SIZEOF_LONG_INT 8 | | #define SIZEOF_LONG_LONG 8 | | #define SIZEOF_LONG 8 | | #define SIZEOF_VOID_P 8 | | #define COB_LI_IS_LL 1 | | #define COB_64_BIT_POINTER 1 | | #define HAVE_ATTRIBUTE_ALIGNED 1 | | #define HAVE_ATTRIBUTE_PURE 1 | | /* end confdefs.h. */ | | | | #include | | #include | | | | int | | main (void) | | { | | iconv_t cd = iconv_open("",""); | | iconv(cd,NULL,NULL,NULL,NULL); | | iconv_close(cd); | | ; | | return 0; | | } | configure:20681: cc -o conftest -O2 -I/usr/local/include conftest.c /usr/local/lib/libiconv.so.7.1 >&5 | configure:20681: $? = 0 | configure:20692: result: yes | configure:20695: checking for working iconv | configure:20838: cc -o conftest -O2 -I/usr/local/include conftest.c /usr/local/lib/libiconv.so.7.1 >&5 | configure:20838: $? = 0 | configure:20838: ./conftest | configure:20838: $? = 0 | configure:20851: result: yes | configure:20866: checking how to link with libiconv | configure:20868: result: /usr/local/lib/libiconv.so.7.1 | configure:21341: checking for GNU gettext in libintl | configure:21379: cc -o conftest -O2 -I/usr/local/include conftest.c /usr/local/lib/libintl.so.7.0 -L/usr/local/lib /usr/local/lib/libiconv.so.7.1 -Wl,-rpath,/usr/local/lib >&5 | configure:21379: $? = 0 | configure:21431: result: yes | configure:21466: checking whether to use NLS | configure:21468: result: yes | configure:21471: checking where the gettext function comes from | configure:21482: result: external libintl | configure:21490: checking how to link with libintl | configure:21492: result: /usr/local/lib/libintl.so.7.0 -L/usr/local/lib /usr/local/lib/libiconv.so.7.1 -Wl,-rpath,/usr/local/lib | configure:21551: checking for nl_langinfo and CODESET | configure:21568: cc -o conftest -O2 -I/usr/local/include conftest.c >&5 | configure:21568: $? = 0 | configure:21578: result: yes | configure:21591: checking for perl | configure:21612: found /usr/bin/perl | configure:21623: result: perl | configure:21684: checking for debug option -ggdb3 | configure:21697: cc -o conftest -O2 -ggdb3 -I/usr/local/include conftest.c >&5 | configure:21697: $? = 0 | configure:21699: result: yes | configure:21739: checking for debug option -fasynchronous-unwind-tables | configure:21752: cc -o conftest -O2 -fasynchronous-unwind-tables -I/usr/local/include conftest.c >&5 | configure:21752: $? = 0 | configure:21754: result: yes | configure:21882: checking for -pipe option | configure:21901: cc -o conftest -O2 -pipe -I/usr/local/include conftest.c >&5 | configure:21901: $? = 0 | configure:21911: result: yes | configure:21972: checking for gcc pointer sign option | configure:21985: cc -c -O2 -pipe -Wno-pointer-sign -I/usr/local/include conftest.c >&5 | configure:21985: $? = 0 | configure:21987: result: yes | configure:22155: checking for ld bind now option | configure:22168: cc -o conftest -O2 -pipe -I/usr/local/include -Wl,-z,relro,-z,now,-O1 conftest.c >&5 | configure:22168: $? = 0 | configure:22170: result: yes | configure:22552: checking that generated files are newer than configure | configure:22558: result: done | configure:22602: creating ./config.status | configure:25214: GnuCOBOL Configuration: | configure:25216: CC cc | configure:25218: CFLAGS -O2 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k | configure:25220: LDFLAGS -Wl,-z,relro,-z,now,-O1 | configure:25222: LIBCOB_LIBS -L/usr/local/lib -lgmp -L/usr/local/lib -lxml2 -L/usr/local/lib -ljson-c -lncursesw -L/usr/local/lib/db4 -ldb -L/usr/local/lib -lintl -L/usr/local/lib -liconv -R/usr/local/lib | configure:25225: PROGRAMS_LIBS -L/usr/local/lib -lintl -L/usr/local/lib -liconv -R/usr/local/lib | configure:25228: COB_CC cc | configure:25230: COB_CFLAGS -pipe -I/usr/local/include -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign -Qunused-arguments | configure:25232: COB_LDFLAGS | configure:25234: COB_DEBUG_FLAGS -ggdb3 -fasynchronous-unwind-tables | configure:25236: COB_LIBS -L${exec_prefix}/lib -lcob | configure:25238: COB_CONFIG_DIR ${datarootdir}/gnucobol/config | configure:25240: COB_COPY_DIR ${datarootdir}/gnucobol/copy | configure:25242: COB_LIBRARY_PATH ${exec_prefix}/lib/gnucobol | configure:25244: COB_OBJECT_EXT o | configure:25246: COB_MODULE_EXT so | configure:25248: COB_EXE_EXT | configure:25250: COB_SHARED_OPT -shared | configure:25252: COB_PIC_FLAGS -fPIC -DPIC | configure:25254: COB_EXPORT_DYN -Wl,-E | configure:25257: COB_STRIP_CMD strip --strip-unneeded | configure:25261: Dynamic loading: System | configure:25267: Use gettext for international messages: yes | configure:25269: Use fcntl for file locking: yes | configure:25271: Use math multiple precision library: gmp | configure:25283: Use curses library for screen I/O: ncursesw | configure:25312: Use Berkeley DB for INDEXED I/O: yes | configure:25329: Used for XML I/O: libxml2 | configure:25343: Used for JSON I/O: json-c | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=x86_64-unknown-openbsd7.2 | ac_cv_c_bigendian=no | ac_cv_c_compiler_gnu=yes | ac_cv_c_const=yes | ac_cv_c_undeclared_builtin_options=-fno-builtin | ac_cv_defined_LIBXML_WRITER_ENABLED_libxml_xmlwriter_h=yes | ac_cv_env_BDB_CFLAGS_set=set | ac_cv_env_BDB_CFLAGS_value=-I/usr/local/include/db4 | ac_cv_env_BDB_LIBS_set=set | ac_cv_env_BDB_LIBS_value='-L/usr/local/lib/db4 -ldb' | 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_COBC_CPPFLAGS_set= | ac_cv_env_COBC_CPPFLAGS_value= | ac_cv_env_CPPFLAGS_set= | ac_cv_env_CPPFLAGS_value= | ac_cv_env_CPP_set= | ac_cv_env_CPP_value= | ac_cv_env_CURSES_LIBS_set= | ac_cv_env_CURSES_LIBS_value= | ac_cv_env_DIFF_FLAGS_set= | ac_cv_env_DIFF_FLAGS_value= | ac_cv_env_GMP_CFLAGS_set= | ac_cv_env_GMP_CFLAGS_value= | ac_cv_env_GMP_LIBS_set= | ac_cv_env_GMP_LIBS_value= | ac_cv_env_JSON_C_CFLAGS_set= | ac_cv_env_JSON_C_CFLAGS_value= | ac_cv_env_JSON_C_LIBS_set= | ac_cv_env_JSON_C_LIBS_value= | ac_cv_env_LDFLAGS_set= | ac_cv_env_LDFLAGS_value= | ac_cv_env_LIBCOB_CPPFLAGS_set= | ac_cv_env_LIBCOB_CPPFLAGS_value= | ac_cv_env_LIBCOB_LIBS_set= | ac_cv_env_LIBCOB_LIBS_value= | ac_cv_env_LIBS_set= | ac_cv_env_LIBS_value= | ac_cv_env_MPIR_CFLAGS_set= | ac_cv_env_MPIR_CFLAGS_value= | ac_cv_env_MPIR_LIBS_set= | ac_cv_env_MPIR_LIBS_value= | ac_cv_env_PKG_CONFIG_LIBDIR_set= | ac_cv_env_PKG_CONFIG_LIBDIR_value= | ac_cv_env_PKG_CONFIG_PATH_set= | ac_cv_env_PKG_CONFIG_PATH_value= | ac_cv_env_PKG_CONFIG_set= | ac_cv_env_PKG_CONFIG_value= | ac_cv_env_PROGRAMS_LIBS_set= | ac_cv_env_PROGRAMS_LIBS_value= | ac_cv_env_XML2_CFLAGS_set= | ac_cv_env_XML2_CFLAGS_value= | ac_cv_env_XML2_LIBS_set= | ac_cv_env_XML2_LIBS_value= | ac_cv_env_YACC_set= | ac_cv_env_YACC_value= | ac_cv_env_YFLAGS_set= | ac_cv_env_YFLAGS_value= | ac_cv_env_build_alias_set= | ac_cv_env_build_alias_value= | ac_cv_env_host_alias_set= | ac_cv_env_host_alias_value= | ac_cv_env_target_alias_set= | ac_cv_env_target_alias_value= | ac_cv_func_canonicalize_file_name=no | ac_cv_func_dlopen=yes | ac_cv_func_fcntl=yes | ac_cv_func_fdatasync=yes | ac_cv_func_flockfile=yes | ac_cv_func_fmemopen=yes | ac_cv_func_getexecname=no | ac_cv_func_gettimeofday=yes | ac_cv_func_localeconv=yes | ac_cv_func_memmove=yes | ac_cv_func_memset=yes | ac_cv_func_popen=yes | ac_cv_func_raise=yes | ac_cv_func_readlink=yes | ac_cv_func_realpath=yes | ac_cv_func_setenv=yes | ac_cv_func_setlocale=yes | ac_cv_func_shl_load=no | ac_cv_func_sigaction=yes | ac_cv_func_strcasecmp=yes | ac_cv_func_strchr=yes | ac_cv_func_strcoll=yes | ac_cv_func_strdup=yes | ac_cv_func_strerror=yes | ac_cv_func_strrchr=yes | ac_cv_func_strstr=yes | ac_cv_func_strtol=yes | ac_cv_func_vprintf=yes | ac_cv_have_decl_fdatasync=yes | ac_cv_have_decl_fmemopen=yes | ac_cv_header_cJSON_h=no | ac_cv_header_cjson_cJSON_h=no | ac_cv_header_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_json_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_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_stddef_h=yes | ac_cv_header_stdint_h=yes | ac_cv_header_stdio_h=yes | ac_cv_header_stdlib_h=yes | ac_cv_header_string_h=yes | ac_cv_header_strings_h=yes | ac_cv_header_sys_stat_h=yes | ac_cv_header_sys_time_h=yes | ac_cv_header_sys_types_h=yes | ac_cv_header_unistd_h=yes | ac_cv_header_wchar_h=yes | ac_cv_host=x86_64-unknown-openbsd7.2 | ac_cv_lib_c_dlopen=yes | ac_cv_lib_dld_shl_load=no | ac_cv_lib_gmp___gmp_get_memory_functions=no | ac_cv_lib_lex='none needed' | 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/local/bin/msgfmt | ac_cv_path_GREP=/usr/bin/grep | ac_cv_path_MSGFMT=/usr/local/bin/msgfmt | ac_cv_path_MSGMERGE=/usr/local/bin/msgmerge | ac_cv_path_SED=/usr/bin/sed | ac_cv_path_XGETTEXT=/usr/local/bin/xgettext | ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config | ac_cv_path_install='/usr/bin/install -c' | ac_cv_prog_AWK=awk | ac_cv_prog_LEX=flex | ac_cv_prog_PERL=perl | ac_cv_prog_YACC='bison -y' | ac_cv_prog_ac_ct_AR=ar | ac_cv_prog_ac_ct_CC=cc | ac_cv_prog_ac_ct_MANIFEST_TOOL=mt | ac_cv_prog_ac_ct_OBJDUMP=objdump | ac_cv_prog_ac_ct_RANLIB=ranlib | ac_cv_prog_ac_ct_STRIP=strip | ac_cv_prog_cc_c11= | 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_search_yywrap=-lfl | ac_cv_should_define__xopen_source=no | ac_cv_sizeof_long=8 | ac_cv_sizeof_long_int=8 | ac_cv_sizeof_long_long=8 | ac_cv_sizeof_void_p=8 | ac_cv_struct_tm=time.h | ac_cv_type_sig_atomic_t=yes | ac_cv_type_size_t=yes | acl_cv_hardcode_direct=yes | acl_cv_hardcode_libdir_flag_spec='${wl}-rpath,$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$versuffix' | acl_cv_path_LD=/usr/bin/ld | 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_ar_interface=ar | am_cv_func_iconv=yes | am_cv_func_iconv_works=yes | am_cv_langinfo_codeset=yes | am_cv_lib_iconv=yes | am_cv_make_support_nested_variables=yes | am_cv_prog_cc_c_o=yes | ax_cv_prog_bison=yes | ax_cv_prog_flex=yes | gc_cv_attribute_alligned=yes | gc_cv_attribute_pure=yes | gc_cv_designated_inits=yes | gc_cv_gcc_pipe=yes | gc_cv_keyword_inline=__inline | gc_cv_time_timezone=yes | gt_cv_func_CFLocaleCopyCurrent=no | gt_cv_func_CFLocaleCopyPreferredLanguages=no | gt_cv_func_CFPreferencesCopyAppValue=no | gt_cv_func_gnugettext1_libc=no | gt_cv_func_gnugettext1_libintl=yes | lt_cv_ar_at_file=@ | lt_cv_archive_cmds_need_lc=yes | lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' | lt_cv_dlopen=dlopen | lt_cv_dlopen_libs= | lt_cv_dlopen_self=yes | lt_cv_dlopen_self_static=no | lt_cv_file_magic_cmd='$MAGIC_CMD' | lt_cv_file_magic_test_file= | lt_cv_ld_reload_flag=-r | lt_cv_nm_interface='BSD nm' | lt_cv_objdir=.libs | lt_cv_path_LD=/usr/bin/ld | lt_cv_path_NM='/usr/bin/nm -B' | lt_cv_path_mainfest_tool=no | lt_cv_prog_compiler_c_o=yes | lt_cv_prog_compiler_c_o_RC=yes | lt_cv_prog_compiler_pic='-fPIC -DPIC' | lt_cv_prog_compiler_pic_works=yes | lt_cv_prog_compiler_rtti_exceptions=yes | lt_cv_prog_compiler_static_works=yes | lt_cv_prog_gnu_ld=yes | lt_cv_sharedlib_from_linklib_cmd='print -r --' | lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*\([_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/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\' | lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\' | lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[BCDEGRST]* .* \(.*\)$/extern char \1;/p'\' | lt_cv_sys_max_cmd_len=393216 | lt_cv_to_host_file_cmd=func_convert_file_noop | lt_cv_to_tool_file_cmd=func_convert_file_noop | pkg_cv_GMP_CFLAGS=-I/usr/local/include | pkg_cv_GMP_LIBS='-L/usr/local/lib -lgmp' | pkg_cv_JSON_C_CFLAGS='-I/usr/local/include -I/usr/local/include/json-c' | pkg_cv_JSON_C_LIBS='-L/usr/local/lib -ljson-c' | pkg_cv_XML2_CFLAGS='-I/usr/local/include/libxml2 -I/usr/local/include' | pkg_cv_XML2_LIBS='-L/usr/local/lib -lxml2' | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | ACLOCAL='${SHELL} '\''/home/lars/temp/cobol/gnucobol-3.2-rc2/build_aux/missing'\'' aclocal-1.16' | AMDEPBACKSLASH='\' | AMDEP_FALSE='#' | AMDEP_TRUE='' | AMTAR='$${TAR-tar}' | AM_BACKSLASH='\' | AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | AM_DEFAULT_VERBOSITY='1' | AM_V='$(V)' | AR='ar' | AS='as' | AUTOCONF='${SHELL} '\''/home/lars/temp/cobol/gnucobol-3.2-rc2/build_aux/missing'\'' autoconf' | AUTOHEADER='${SHELL} '\''/home/lars/temp/cobol/gnucobol-3.2-rc2/build_aux/missing'\'' autoheader' | AUTOMAKE='${SHELL} '\''/home/lars/temp/cobol/gnucobol-3.2-rc2/build_aux/missing'\'' automake-1.16' | AWK='awk' | BDB_CFLAGS='-I/usr/local/include/db4' | BDB_LIBS='-L/usr/local/lib/db4 -ldb' | CC='cc' | CCDEPMODE='depmode=gcc3' | CFLAGS='-O2 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k' | CJSON_CFLAGS='' | CJSON_LIBS='-lcjson' | COBC_CPPFLAGS='' | COB_BIGENDIAN='no' | COB_CC='cc' | COB_CFLAGS='-pipe -I/usr/local/include -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign -Qunused-arguments' | COB_CONFIG_DIR='${datarootdir}/gnucobol/config' | COB_COPY_DIR='${datarootdir}/gnucobol/copy' | COB_EXE_EXT='' | COB_FIX_LIBTOOL='' | COB_HAS_64_BIT_POINTER='yes' | COB_HAS_CURSES='yes' | COB_HAS_ISAM='db' | COB_HAS_JSON='json-c' | COB_HAS_XML2='yes' | COB_LDFLAGS='' | COB_LIBRARY_PATH='${exec_prefix}/lib/gnucobol' | COB_LIBS='-L${exec_prefix}/lib -lcob' | COB_MAKE_IX_FALSE='#' | COB_MAKE_IX_TRUE='' | COB_MAKE_RUN_BINARIES_FALSE='#' | COB_MAKE_RUN_BINARIES_TRUE='' | COB_MODULE_EXT='so' | COB_OBJECT_EXT='o' | COB_PATCH_LEVEL='0' | CODE_COVERAGE_CFLAGS='' | CODE_COVERAGE_CPPFLAGS='' | CODE_COVERAGE_CXXFLAGS='' | CODE_COVERAGE_ENABLED='no' | CODE_COVERAGE_ENABLED_FALSE='' | CODE_COVERAGE_ENABLED_TRUE='#' | CODE_COVERAGE_LIBS='' | CPP='' | CPPFLAGS=' -I/usr/local/include' | CSCOPE='cscope' | CTAGS='ctags' | CURSES_LIBS='-lncursesw' | CYGPATH_W='echo' | DEFS='-DHAVE_CONFIG_H' | DEPDIR='.deps' | DIFF_FLAGS='' | DLLTOOL='false' | DSYMUTIL='' | DUMPBIN='' | ECHO_C='' | ECHO_N='-n' | ECHO_T='' | EGREP='/usr/bin/grep -E' | ETAGS='etags' | EXEEXT='' | FGREP='/usr/bin/grep -F' | GCOV='' | GENHTML='' | GETTEXT_MACRO_VERSION='0.20' | GMP_CFLAGS='-I/usr/local/include' | GMP_LIBS='-L/usr/local/lib -lgmp' | GMSGFMT='/usr/local/bin/msgfmt' | GMSGFMT_015='/usr/local/bin/msgfmt' | GREP='/usr/bin/grep' | HELP2MAN='${SHELL} '\''/home/lars/temp/cobol/gnucobol-3.2-rc2/build_aux/missing'\'' help2man' | INSTALL_DATA='${INSTALL} -m 644' | INSTALL_PROGRAM='${INSTALL}' | INSTALL_SCRIPT='${INSTALL}' | INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' | INTLLIBS='/usr/local/lib/libintl.so.7.0 -L/usr/local/lib /usr/local/lib/libiconv.so.7.1 -Wl,-rpath,/usr/local/lib' | INTL_MACOSX_LIBS='' | JSON_C_CFLAGS='-I/usr/local/include -I/usr/local/include/json-c' | JSON_C_LIBS='-L/usr/local/lib -ljson-c' | LCOV='' | LD='/usr/bin/ld' | LDFLAGS=' -Wl,-z,relro,-z,now,-O1' | LEX='flex' | LEXLIB='-lfl ' | LEX_OUTPUT_ROOT='lex.yy' | LIBCOB_CPPFLAGS=' -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include -I/usr/local/include/json-c -I/usr/local/include/db4' | LIBCOB_LIBS=' -L/usr/local/lib -lgmp -L/usr/local/lib -lxml2 -L/usr/local/lib -ljson-c -lncursesw -L/usr/local/lib/db4 -ldb -L/usr/local/lib -lintl -L/usr/local/lib -liconv -R/usr/local/lib' | LIBICONV='/usr/local/lib/libiconv.so.7.1' | LIBINTL='/usr/local/lib/libintl.so.7.0 -L/usr/local/lib /usr/local/lib/libiconv.so.7.1 -Wl,-rpath,/usr/local/lib' | LIBOBJS='' | LIBS='' | LIBTOOL='$(SHELL) $(top_builddir)/libtool' | LIPO='' | LN_S='ln -s' | LOCAL_CJSON_FALSE='' | LOCAL_CJSON_TRUE='#' | LTLIBICONV='-L/usr/local/lib -liconv -R/usr/local/lib' | LTLIBINTL='-L/usr/local/lib -lintl -L/usr/local/lib -liconv -R/usr/local/lib' | LTLIBOBJS='' | MAKE='make' | MAKEINFO='${SHELL} '\''/home/lars/temp/cobol/gnucobol-3.2-rc2/build_aux/missing'\'' makeinfo' | MAKE_HAS_PREREQ_ONLY_FALSE='' | MAKE_HAS_PREREQ_ONLY_TRUE='#' | MANIFEST_TOOL=':' | MKDIR_P='./build_aux/install-sh -c -d' | MPIR_CFLAGS='' | MPIR_LIBS='' | MSGFMT='/usr/local/bin/msgfmt' | MSGMERGE='/usr/local/bin/msgmerge' | MSGMERGE_FOR_MSGFMT_OPTION='--for-msgfmt' | NM='/usr/bin/nm -B' | NMEDIT='' | OBJDUMP='objdump' | OBJEXT='o' | OTOOL64='' | OTOOL='' | PACKAGE='gnucobol' | PACKAGE_BUGREPORT='bug-gnucobol@gnu.org' | PACKAGE_NAME='GnuCOBOL' | PACKAGE_STRING='GnuCOBOL 3.2-rc2' | PACKAGE_TARNAME='gnucobol' | PACKAGE_URL='https://www.gnu.org/software/gnucobol/' | PACKAGE_VERSION='3.2-rc2' | PATH_SEPARATOR=':' | PERL='perl' | PKG_CONFIG='/usr/bin/pkg-config' | PKG_CONFIG_LIBDIR='' | PKG_CONFIG_PATH='' | POSUB='po' | PROGRAMS_LIBS='-L/usr/local/lib -lintl -L/usr/local/lib -liconv -R/usr/local/lib' | QUOTE_INCLUDE_FLAG='' | RANLIB='ranlib' | RC='' | SED='/usr/bin/sed' | SET_MAKE='' | SHELL='/bin/sh' | STRIP='strip' | USE_NLS='yes' | VERSION='3.2-rc2' | XGETTEXT='/usr/local/bin/xgettext' | XGETTEXT_015='/usr/local/bin/xgettext' | XGETTEXT_EXTRA_OPTIONS='' | XML2_CFLAGS='-I/usr/local/include/libxml2 -I/usr/local/include' | XML2_LIBS='-L/usr/local/lib -lxml2' | YACC='bison -o y.tab.c' | YFLAGS='' | ac_ct_AR='ar' | ac_ct_CC='cc' | 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-unknown-openbsd7.2' | build_alias='' | build_cpu='x86_64' | build_os='openbsd7.2' | build_vendor='unknown' | configured_make='make' | datadir='${datarootdir}' | datarootdir='${prefix}/share' | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' | dvidir='${docdir}' | exec_prefix='${prefix}' | host='x86_64-unknown-openbsd7.2' | host_alias='' | host_cpu='x86_64' | host_os='openbsd7.2' | host_vendor='unknown' | htmldir='${docdir}' | ifGNUmake='' | ifnGNUmake='' | includedir='${prefix}/include' | infodir='${datarootdir}/info' | install_sh='${SHELL} /home/lars/temp/cobol/gnucobol-3.2-rc2/build_aux/install-sh' | libdir='${exec_prefix}/lib' | libexecdir='${exec_prefix}/libexec' | localedir='${datarootdir}/locale' | localstatedir='${prefix}/var' | mandir='${datarootdir}/man' | mkdir_p='$(MKDIR_P)' | oldincludedir='/usr/include' | pdfdir='${docdir}' | prefix='/usr/local' | program_transform_name='s,x,x,' | psdir='${docdir}' | runstatedir='${localstatedir}/run' | sbindir='${exec_prefix}/sbin' | sharedstatedir='${prefix}/com' | sysconfdir='${prefix}/etc' | target_alias='' | xml2_config_found='' | | ## ----------- ## | ## confdefs.h. ## | ## ----------- ## | | /* confdefs.h */ | #define PACKAGE_NAME "GnuCOBOL" | #define PACKAGE_TARNAME "gnucobol" | #define PACKAGE_VERSION "3.2-rc2" | #define PACKAGE_STRING "GnuCOBOL 3.2-rc2" | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | #define PACKAGE "gnucobol" | #define PATCH_LEVEL 0 | #define MAX_CALL_FIELD_PARAMS 192 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define STDC_HEADERS 1 | #define _ALL_SOURCE 1 | #define _DARWIN_C_SOURCE 1 | #define _GNU_SOURCE 1 | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | #define _NETBSD_SOURCE 1 | #define _OPENBSD_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | #define __STDC_WANT_LIB_EXT2__ 1 | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | #define _TANDEM_SOURCE 1 | #define __EXTENSIONS__ 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_DLFCN_H 1 | #define HAVE_SIG_ATOMIC_T 1 | #define COB_KEYWORD_INLINE __inline | #define HAVE_VPRINTF 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETLOCALE 1 | #define HAVE_FCNTL 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_LOCALECONV 1 | #define HAVE_POPEN 1 | #define HAVE_RAISE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_SETENV 1 | #define HAVE_STRCOLL 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_TIMEZONE 1 | #define HAVE_DESIGNATED_INITS 1 | #define HAVE_GMP_H 1 | #define WITH_XML2 1 | #define HAVE_JSON_H 1 | #define WITH_JSON_C 1 | #define WITH_JSON "json-c" | #define WITH_VARSEQ 0 | #define HAVE_NANO_SLEEP 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_ISFINITE 1 | #define HAVE_FDATASYNC 1 | #define HAVE_SIGACTION 1 | #define HAVE_FMEMOPEN 1 | #define HAVE_DECL_FDATASYNC 1 | #define HAVE_DECL_FMEMOPEN 1 | #define HAVE_NCURSES_H 1 | #define WITH_CURSES "ncursesw" | #define HAVE_CURSES_FREEALL 1 | #define HAVE_USE_LEGACY_CODING 1 | #define HAVE_COLOR_SET 1 | #define HAVE_DEFINE_KEY 1 | #define HAVE_MOUSEINTERVAL 1 | #define HAVE_DB_H 1 | #define WITH_DB 1 | #define USE_LIBDL 1 | #define COB_COMPUTED_GOTO 1 | #define SIZEOF_LONG_INT 8 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF_LONG 8 | #define SIZEOF_VOID_P 8 | #define COB_LI_IS_LL 1 | #define COB_64_BIT_POINTER 1 | #define HAVE_ATTRIBUTE_ALIGNED 1 | #define HAVE_ATTRIBUTE_PURE 1 | #define HAVE_ICONV 1 | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_LANGINFO_CODESET 1 | #define COB_CC "cc" | #define COB_CFLAGS "-pipe -I/usr/local/include -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign -Qunused-arguments" | #define COB_LDFLAGS "" | #define COB_LIBS "-L/usr/local/lib -lcob" | #define COB_PIC_FLAGS "-fPIC -DPIC" | #define COB_DEBUG_FLAGS "-ggdb3 -fasynchronous-unwind-tables" | #define COB_EXPORT_DYN "-Wl,-E" | #define COB_SHARED_OPT "-shared" | #define COB_MODULE_EXT "so" | #define COB_OBJECT_EXT "o" | #define COB_EXE_EXT "" | #define COB_LIBRARY_PATH "/usr/local/lib/gnucobol" | #define COB_STRIP_CMD "strip --strip-unneeded" | #define COB_CONFIG_DIR "/usr/local/share/gnucobol/config" | #define COB_COPY_DIR "/usr/local/share/gnucobol/copy" | #define COBCRUN_NAME "" | #define COB_BLD_CC "cc" | #define COB_BLD_CFLAGS "-O2 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k" | #define COB_BLD_CPPFLAGS " -I/usr/local/include" | #define COB_BLD_LD "/usr/bin/ld" | #define COB_BLD_LDFLAGS " -Wl,-z,relro,-z,now,-O1" | #define COB_BLD_BUILD "x86_64-unknown-openbsd7.2" | | configure: exit 0 | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GnuCOBOL config.status 3.2-rc2, which was | generated by GNU Autoconf 2.71. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status config.h | | on omg.my.domain | | config.status:1347: creating config.h | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GnuCOBOL config.status 3.2-rc2, which was | generated by GNU Autoconf 2.71. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on omg.my.domain | | config.status:1347: creating Makefile | config.status:1347: creating libcob/Makefile | config.status:1347: creating lib/Makefile | config.status:1347: creating cobc/Makefile | config.status:1347: creating bin/Makefile | config.status:1347: creating po/Makefile.in | config.status:1347: creating doc/Makefile | config.status:1347: creating config/Makefile | config.status:1347: creating copy/Makefile | config.status:1347: creating tests/Makefile | config.status:1347: creating tests/cobol85/Makefile | config.status:1347: creating extras/Makefile | config.status:1347: creating bin/cob-config | config.status:1347: creating pre-inst-env | config.status:1347: creating tests/atlocal | config.status:1347: creating tests/run_prog_manual.sh | config.status:1347: creating config.h | config.status:1528: config.h is unchanged | config.status:1576: executing tests/atconfig commands | config.status:1576: executing depfiles commands | config.status:1680: cd libcob && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | config.status:1687: $? = 0 | config.status:1680: cd lib && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | config.status:1687: $? = 0 | config.status:1680: cd cobc && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | config.status:1687: $? = 0 | config.status:1680: cd bin && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | config.status:1687: $? = 0 | config.status:1576: executing libtool commands | config.status:1576: executing po-directories commands | config.status:1576: executing chmod commands