## --------------------------- ## ## GNU Bison 3.4.2 test suite. ## ## --------------------------- ## testsuite: command line was: $ ./tests/testsuite -C tests ## ---------- ## ## ChangeLog. ## ## ---------- ## | 2019-09-12 Akim Demaille | | version 3.4.2 | * NEWS: Record release date. | | 2019-09-12 Akim Demaille | | CI: always uninstall icc | | 2019-09-12 Akim Demaille ## --------- ## ## Platform. ## ## --------- ## hostname = debian uname -m = i686 uname -r = 3.16.0-4-686-pae uname -s = Linux uname -v = #1 SMP Debian 3.16.7-ckt9-2 (2015-04-13) /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /home/richard/bison-3.4.2/tests PATH: /usr/local/bin PATH: /usr/bin PATH: /bin PATH: /usr/local/games PATH: /usr/games testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2012 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/home/richard/bison-3.4.2/tests' | at_srcdir='.' | abs_srcdir='/home/richard/bison-3.4.2/tests' | at_top_srcdir='..' | abs_top_srcdir='/home/richard/bison-3.4.2' | at_top_build_prefix='../' | abs_top_builddir='/home/richard/bison-3.4.2' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/bash'} testsuite: atlocal: | # tests/atlocal. Generated from atlocal.in by configure. -*- shell-script -*- | # Configurable variable values for Bison test suite. | | # Copyright (C) 2000-2015, 2018-2019 Free Software Foundation, Inc. | # | # This program 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. | # | # This program 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 this program. If not, see . | | # We need 'testsuite.h', (srcdir/test), 'config.h' (builddir/lib), and | # the gnulib headers (srcdir/lib). | CPPFLAGS="-I$abs_top_srcdir/tests -I$abs_top_srcdir/lib -I$abs_top_builddir/lib " | | # Don't just check if $POSIXLY_CORRECT is set, as Bash, when launched | # as /bin/sh, sets the shell variable POSIXLY_CORRECT to y, but not | # the environment variable. | if env | grep '^POSIXLY_CORRECT=' >/dev/null; then | POSIXLY_CORRECT_IS_EXPORTED=true | else | POSIXLY_CORRECT_IS_EXPORTED=false | fi | | ## ------------------- ## | ## C/C++ Compilation. ## | ## ------------------- ## | | : ${CC='gcc -std=gnu11'} | : ${CXX='g++ -std=gnu++11'} | | # Is the compiler GCC? | : ${GCC='yes'} | | # Sometimes a test group needs to ignore gcc warnings, so it locally | # sets CFLAGS to this. | : ${NO_WERROR_CFLAGS='-g -O2 '} | : ${NO_WERROR_CXXFLAGS='-g -O2 '} | : ${WNO_DEPRECATED_CXXFLAGS=''} | | # But most of the time, we want -Werror. | : ${CFLAGS="$NO_WERROR_CFLAGS "} | : ${CXXFLAGS="$NO_WERROR_CXXFLAGS "} | | # If 'exit 77'; skip all C++ tests; otherwise ':'. | : ${BISON_CXX_WORKS=':'} | | # Compiler flags to disable exception support. | : ${NO_EXCEPTIONS_CXXFLAGS=' -fno-exceptions'} | | # Requiring a specific C++ standard. | : ${CXX98_CXXFLAGS='-std=c++98'} | : ${CXX03_CXXFLAGS='-std=c++03'} | : ${CXX11_CXXFLAGS='-std=c++11'} | : ${CXX14_CXXFLAGS='-std=c++14'} | : ${CXX17_CXXFLAGS=''} | : ${CXX2A_CXXFLAGS=''} | | # Be sure that the C++ compiler is not broken because of gnulib. This | # cannot be checked in configure (gnulib is not parameterized yet), | # and checking this in every C++ test in AC_COMPILE_CXX is too costly. | # | # http://lists.gnu.org/archive/html/bug-bison/2013-06/msg00001.html | # | # FIXME: Check (say 2014) whether this is still needed. | if $BISON_CXX_WORKS; then | # See AT_DATA_SOURCE_PROLOGUE. | cat >conftest.cc < | /* We don't need perfect functions for these tests. */ | #undef malloc | #undef memcmp | #undef realloc | #include | | int main () | { | std::cout << "Works\n"; | } | EOF | $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS $LIBS -o conftest conftest.cc | case $? in | 0);; | *) BISON_CXX_WORKS="as_fn_error 77 cannot-compile-simple-program";; | esac | rm -fr conftest* | fi | | # Whether the compiler supports POSIXLY_CORRECT defined. | : ${C_COMPILER_POSIXLY_CORRECT='true'} | : ${CXX_COMPILER_POSIXLY_CORRECT='true'} | | if $POSIXLY_CORRECT_IS_EXPORTED; then | $C_COMPILER_POSIXLY_CORRECT || BISON_C_WORKS=false | $CXX_COMPILER_POSIXLY_CORRECT || BISON_CXX_WORKS=false | fi | | # Handle --compile-c-with-cxx here, once CXX and CXXFLAGS are known. | if "$at_arg_compile_c_with_cxx"; then | CC_IS_CXX=1 | CC=$CXX | NO_WERROR_CFLAGS=$NO_WERROR_CXXFLAGS | CFLAGS="$CXXFLAGS $WNO_DEPRECATED_CXXFLAGS" | BISON_C_WORKS=$BISON_CXX_WORKS | else | CC_IS_CXX=0 | fi | | | ## ------- ## | ## Other. ## | ## ------- ## | | # Empty if no D compiler was found. | : ${DC=''} | : ${DCFLAGS=''} | if test x"$DC" = x; then | BISON_DC_WORKS=false | else | BISON_DC_WORKS=true | fi | | # Empty if no javac was found | : ${CONF_JAVAC='javac'} | | # Empty if no Java VM was found | : ${CONF_JAVA='java'} | | # We need egrep and perl. | : ${EGREP='/bin/grep -E'} | : ${PERL='/usr/bin/perl'} | | # Use simple quotes (lib/quote.c). | LC_CTYPE=C | export LC_CTYPE | | # Are special link options needed? | : ${LDFLAGS=''} | | # Are special libraries needed? | : ${LIBS="$abs_top_builddir/lib/libbison.a "} | | # Empty if no xsltproc was found | : ${XSLTPROC='/usr/bin/xsltproc'} ## ---------------- ## ## Tested programs. ## ## ---------------- ## ./local.at:1361: /home/richard/bison-3.4.2/tests/bison --version bison (GNU Bison) 3.4.2 Written by Robert Corbett and Richard Stallman. Copyright (C) 2019 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Mon Nov 11 04:40:47 EST 2019 1. Invalid number of arguments (input.at:27): ok (0m0.004s 0m0.308s) 2. Invalid options (input.at:58): ok (0m0.004s 0m0.168s) 3. Invalid inputs (input.at:81): ok (0m0.000s 0m0.140s) 4. Invalid inputs with {} (input.at:111): ok (0m0.000s 0m0.036s) 5. Yacc warnings on symbols (input.at:137): ok (0m0.156s 0m0.724s) 6. Yacc warnings (input.at:168): ok (0m0.192s 0m0.784s) 7. Invalid symbol declarations (input.at:202): ok (0m0.000s 0m0.112s) 8. Symbol declarations (input.at:257): ok (0m0.036s 0m0.176s) 9. Invalid $n and @n (input.at:356): ok (0m0.000s 0m0.036s) 10. Type Clashes (input.at:380): ok (0m0.000s 0m0.108s) 11. Unused values (input.at:602): ok (0m1.384s 0m1.660s) 12. Unused values before symbol declarations (input.at:612): ok (0m1.344s 0m1.820s) 13. Symbol redeclared (input.at:622): ok (0m0.148s 0m0.700s) 14. Symbol class redefinition (input.at:660): ok (0m0.004s 0m0.108s) 15. Default %printer and %destructor redeclared (input.at:700): ok (0m0.000s 0m0.184s) 16. Per-type %printer and %destructor redeclared (input.at:771): ok (0m0.000s 0m0.104s) 17. Undefined symbols (input.at:814): ok (0m0.000s 0m0.108s) 18. Unassociated types used for a printer or destructor (input.at:846): ok (0m0.196s 0m0.652s) 19. Useless printers or destructors (input.at:875): ok (0m0.552s 0m2.116s) 20. Unused values with default %destructor (input.at:940): ok (0m0.296s 0m1.524s) 21. Unused values with per-type %destructor (input.at:988): ok (0m0.164s 0m0.732s) 22. Duplicate string (input.at:1020): ok (0m0.168s 0m0.700s) 23. Token collisions (input.at:1048): ok (0m0.000s 0m0.036s) 24. Incompatible Aliases (input.at:1076): ok (0m0.000s 0m0.584s) 25. Torturing the Scanner (input.at:1201): ok (0m0.200s 0m1.036s) 26. Typed symbol aliases (input.at:1356): ok (0m0.040s 0m0.060s) 27. Require 1.0 (input.at:1396): ok (0m0.032s 0m0.144s) 28. Require 3.4.2 (input.at:1397): ok (0m0.028s 0m0.080s) 29. Require 100.0 (input.at:1399): ok (0m0.000s 0m0.096s) 30. String aliases for character tokens (input.at:1406): ok (0m0.020s 0m0.140s) 31. Symbols (input.at:1429): ok (0m0.316s 0m1.200s) 32. Numbered tokens (input.at:1495): ok (0m0.000s 0m0.696s) 33. Unclosed constructs (input.at:1535): ok (0m0.000s 0m0.112s) 34. %start after first rule (input.at:1590): ok (0m0.020s 0m0.080s) 35. %prec takes a token (input.at:1611): ok (0m0.000s 0m0.108s) 36. %prec's token must be defined (input.at:1632): ok (0m0.140s 0m0.580s) 37. Reject unused %code qualifiers (input.at:1652): ok (0m0.148s 0m1.080s) 38. Multiple %code (input.at:1741): ok (0m0.104s 0m0.520s) 39. errors (input.at:1781): ok (0m0.020s 0m0.276s) 40. %define, --define, --force-define (input.at:1818): ok (0m0.036s 0m0.352s) 41. "%define" Boolean variables (input.at:1886): ok (0m0.016s 0m0.180s) 42. "%define" code variables (input.at:1907): ok (0m0.324s 0m1.924s) 43. "%define" keyword variables (input.at:1940): ok (0m0.288s 0m1.736s) 44. "%define" enum variables (input.at:1973): ok (0m0.024s 0m0.360s) 45. "%define" file variables (input.at:2017): ok (0m0.020s 0m0.100s) 46. "%define" backward compatibility (input.at:2039): ok (0m0.008s 0m0.108s) 47. Unused api.pure (input.at:2080): ok (0m0.168s 0m0.908s) 48. C++ namespace reference errors (input.at:2116): ok (0m0.308s 0m1.500s) 49. Bad character literals (input.at:2173): ok (0m0.000s 0m0.216s) 50. Bad escapes in literals (input.at:2237): ok (0m0.000s 0m0.148s) 51. LAC: Errors for %define (input.at:2287): ok (0m0.068s 0m0.220s) 52. -Werror combinations (input.at:2311): ok (0m0.512s 0m2.828s) 53. %name-prefix and api.prefix are incompatible (input.at:2356): ok (0m0.116s 0m0.500s) 54. Redefined %union name (input.at:2385): ok (0m0.168s 0m1.024s) 55. Stray $ or @ (input.at:2432): ok (0m0.244s 0m0.636s) 56. Code injection (input.at:2472): ok (0m0.436s 0m1.172s) 57. Deprecated directives (input.at:2536): ok (0m0.120s 0m0.708s) 58. Unput's effect on locations (input.at:2666): ok (0m0.000s 0m0.036s) 59. Non-deprecated directives (input.at:2702): ok (0m0.172s 0m0.632s) 60. Cannot type action (input.at:2738): ok (0m0.124s 0m0.672s) 61. Tutorial calculator (named-refs.at:22): ok (0m0.212s 0m0.656s) 62. Undefined and ambiguous references (named-refs.at:196): ok (0m0.004s 0m0.124s) 63. Misleading references (named-refs.at:297): ok (0m0.144s 0m0.828s) 64. Many kinds of errors (named-refs.at:316): ok (0m0.000s 0m0.240s) 65. Missing identifiers in brackets (named-refs.at:551): ok (0m0.000s 0m0.116s) 66. Redundant words in brackets (named-refs.at:567): ok (0m0.000s 0m0.036s) 67. Comments in brackets (named-refs.at:583): ok (0m0.000s 0m0.112s) 68. Stray symbols in brackets (named-refs.at:599): ok (0m0.000s 0m0.048s) 69. Redundant words in LHS brackets (named-refs.at:618): ok (0m0.000s 0m0.112s) 70. Factored LHS (named-refs.at:635): ok (0m0.016s 0m0.140s) 71. Unresolved references (named-refs.at:648): ok (0m0.000s 0m0.080s) 72. $ or @ followed by . or - (named-refs.at:715): ok (0m0.108s 0m0.812s) 73. Output files: -dv (output.at:62): ok (0m0.032s 0m0.124s) 74. Output files: -dv >&- (output.at:70): ok (0m0.032s 0m0.292s) 75. Output files: -dv -o foo.c (output.at:73): ok (0m0.044s 0m0.132s) 76. Output files: -dv -o foo.tab.c (output.at:75): ok (0m0.044s 0m0.268s) 77. Output files: -dv -g --xml -y (output.at:78): ok (0m0.028s 0m0.148s) 78. Output files: %require "3.4" -dv -g --xml -y (output.at:80): ok (0m0.032s 0m0.260s) 79. Output files: -dv -g --xml -o y.tab.c (output.at:83): ok (0m0.028s 0m0.136s) 80. Output files: -dv -b bar (output.at:86): ok (0m0.028s 0m0.276s) 81. Output files: -dv -g -o foo.c (output.at:88): ok (0m0.052s 0m0.196s) 82. Output files: %defines %verbose (output.at:92): ok (0m0.032s 0m0.272s) 83. Output files: %defines %verbose %yacc (output.at:94): ok (0m0.040s 0m0.220s) 84. Output files: %defines %verbose %yacc (output.at:97): ok (0m0.040s 0m0.248s) 85. Output files: %file-prefix "bar" %defines %verbose (output.at:101): ok (0m0.028s 0m0.292s) 86. Output files: %output "bar.c" %defines %verbose %yacc (output.at:103): ok (0m0.040s 0m0.196s) 87. Output files: %file-prefix "baz" %output "bar.c" %defines %verbose %yacc (output.at:107): ok (0m0.032s 0m0.272s) 88. Output files: %defines %verbose (output.at:112): ok (0m0.028s 0m0.136s) 89. Output files: %defines %verbose -o foo.c (output.at:115): ok (0m0.028s 0m0.300s) 90. Output files: --defines=foo.hpp -o foo.c++ (output.at:119): ok (0m0.048s 0m0.124s) 91. Output files: %defines "foo.hpp" -o foo.c++ (output.at:123): ok (0m0.032s 0m0.272s) 92. Output files: -o foo.c++ --graph=foo.gph (output.at:127): ok (0m0.032s 0m0.116s) 93. Output files: %type useless --defines --graph --xml --report=all -Wall -Werror (output.at:134): ok (0m0.032s 0m0.276s) 94. Output files: useless=--defines --graph --xml --report=all -Wall -Werror (output.at:141): ok (0m0.032s 0m0.188s) 95. Output files: lalr1.cc (output.at:155): ok (0m0.032s 0m0.264s) 96. Output files: lalr1.cc %verbose (output.at:158): ok (0m0.028s 0m0.216s) 97. Output files: lalr1.cc %defines %verbose (output.at:161): ok (0m0.024s 0m0.244s) 98. Output files: lalr1.cc %verbose %locations (output.at:164): ok (0m0.028s 0m0.264s) 99. Output files: lalr1.cc %defines %verbose %locations (output.at:167): ok (0m0.020s 0m0.204s) 100. Output files: lalr1.cc %defines %verbose (output.at:171): ok (0m0.028s 0m0.400s) 101. Output files: lalr1.cc %defines %verbose %locations -o subdir/foo.cc (output.at:176): ok (0m0.060s 0m0.400s) 102. Output files: lalr1.cc %defines %verbose %file-prefix "output_dir/foo" (output.at:181): ok (0m0.032s 0m0.280s) 103. Output files: lalr1.cc %defines %locations %verbose %file-prefix "output_dir/foo" (output.at:186): ok (0m0.028s 0m0.392s) 104. Output files: lalr1.cc %defines %locations api.location.file=none %require "3.2" (output.at:192): ok (0m0.016s 0m0.276s) 105. Output files: lalr1.cc %defines %locations api.location.file="foo.loc.hh" %require "3.2" (output.at:197): ok (0m0.052s 0m0.172s) 106. Output files: lalr1.cc %defines %locations api.location.file="$at_dir/foo.loc.hh" %require "3.2" (output.at:203): ok (0m0.036s 0m0.268s) 107. Conflicting output files: --graph="foo.tab.c" (output.at:233): ok (0m0.140s 0m0.924s) 108. Conflicting output files: %defines "foo.output" -v (output.at:238): ok (0m0.140s 0m0.884s) 109. Conflicting output files: lalr1.cc %defines %locations --graph="location.hh" (output.at:243): ok (0m0.140s 0m0.880s) 110. Conflicting output files: -o foo.y (output.at:247): ok (0m0.024s 0m0.232s) 111. Output file name: `~!@#$%^&*()-=_+{}[]|\:;<>, .' (output.at:291): ok (0m0.784s 0m2.364s) 112. Output file name: ( (output.at:298): ok (0m0.820s 0m2.456s) 113. Output file name: ) (output.at:299): ok (0m0.904s 0m2.288s) 114. Output file name: # (output.at:300): ok (0m0.880s 0m2.424s) 115. Output file name: @@ (output.at:301): ok (0m0.852s 0m2.244s) 116. Output file name: @{ (output.at:302): ok (0m0.912s 0m2.448s) 117. Output file name: @} (output.at:303): ok (0m0.744s 0m2.356s) 118. Output file name: [ (output.at:304): ok (0m0.692s 0m2.572s) 119. Output file name: ] (output.at:305): ok (0m0.696s 0m2.360s) 120. Graph with no conflicts (output.at:360): ok (0m0.036s 0m0.208s) 121. Graph with unsolved S/R (output.at:424): ok (0m0.036s 0m0.140s) 122. Graph with solved S/R (output.at:483): ok (0m0.012s 0m0.208s) 123. Graph with R/R (output.at:515): ok (0m0.024s 0m0.108s) 124. Graph with reductions with multiple LAT (output.at:574): ok (0m0.036s 0m0.208s) 125. Graph with a reduction rule both enabled and disabled (output.at:668): ok (0m0.028s 0m0.104s) 126. Warnings (diagnostics.at:103): skipped (diagnostics.at:103) 127. Single point locations (diagnostics.at:143): skipped (diagnostics.at:143) 128. Tabulations and multibyte characters (diagnostics.at:191): skipped (diagnostics.at:191) 129. Special files (diagnostics.at:215): skipped (diagnostics.at:215) 130. Locations from M4 (diagnostics.at:238): skipped (diagnostics.at:238) 131. Tabulations and multibyte characters from M4 (diagnostics.at:261): skipped (diagnostics.at:261) 132. Carriage return (diagnostics.at:279): skipped (diagnostics.at:279) 133. Indentation with message suppression (diagnostics.at:292): ok (0m0.156s 0m0.712s) 134. Relative skeleton file names (skeletons.at:25): ok (0m0.016s 0m0.468s) 135. Installed skeleton file names (skeletons.at:85): ok (0m0.372s 0m1.208s) 136. Boolean=variables: invalid skeleton defaults (skeletons.at:142): ok (0m0.004s 0m0.104s) 137. Complaining during macro argument expansion (skeletons.at:166): ok (0m0.004s 0m0.508s) 138. Fatal errors make M4 exit immediately (skeletons.at:248): ok (0m0.004s 0m0.284s) 139. Fatal errors but M4 continues producing output (skeletons.at:302): ok (0m0.008s 0m0.076s) 140. Nullable (sets.at:66): ok (0m0.028s 0m0.304s) 141. Broken Closure (sets.at:151): ok (0m0.052s 0m0.176s) 142. Firsts (sets.at:193): ok (0m0.028s 0m0.316s) 143. Accept (sets.at:269): ok (0m0.044s 0m0.216s) 144. Build relations (sets.at:310): ok (0m0.144s 0m0.732s) 145. Reduced Grammar (sets.at:355): ok (0m0.204s 0m0.628s) 146. Useless Terminals (reduce.at:26): ok (0m0.048s 0m0.132s) 147. Useless Nonterminals (reduce.at:70): ok (0m0.200s 0m1.040s) 148. Useless Rules (reduce.at:120): ok (0m0.252s 0m1.036s) 149. Useless Parts (reduce.at:224): ok (0m0.176s 0m1.044s) 150. Reduced Automaton (reduce.at:312): ok (0m0.200s 0m0.964s) 151. Underivable Rules (reduce.at:406): ok (0m0.100s 0m0.732s) 152. Empty Language (reduce.at:452): ok (0m0.000s 0m0.112s) 153. no lr.type: Single State Split (reduce.at:734): ok (0m0.096s 0m0.700s) 154. lr.type=lalr: Single State Split (reduce.at:734): ok (0m0.084s 0m0.700s) 155. lr.type=ielr: Single State Split (reduce.at:734): ok (0m0.088s 0m0.652s) 156. lr.type=canonical-lr: Single State Split (reduce.at:734): ok (0m0.080s 0m0.712s) 157. no lr.type: Lane Split (reduce.at:978): ok (0m0.084s 0m0.640s) 158. lr.type=lalr: Lane Split (reduce.at:978): ok (0m0.104s 0m0.584s) 159. lr.type=ielr: Lane Split (reduce.at:978): ok (0m0.128s 0m0.580s) 160. lr.type=canonical-lr: Lane Split (reduce.at:978): ok (0m0.100s 0m0.652s) 161. no lr.type: Complex Lane Split (reduce.at:1247): ok (0m0.116s 0m0.684s) 162. lr.type=lalr: Complex Lane Split (reduce.at:1247): ok (0m0.140s 0m0.668s) 163. lr.type=ielr: Complex Lane Split (reduce.at:1247): ok (0m0.104s 0m0.652s) 164. lr.type=canonical-lr: Complex Lane Split (reduce.at:1247): ok (0m0.112s 0m0.696s) 165. no lr.type: Split During Added Lookahead Propagation (reduce.at:1549): ok (0m0.280s 0m1.232s) 166. lr.type=lalr: Split During Added Lookahead Propagation (reduce.at:1549): ok (0m0.212s 0m1.368s) 167. lr.type=ielr: Split During Added Lookahead Propagation (reduce.at:1549): ok (0m0.112s 0m0.656s) 168. lr.type=canonical-lr: Split During Added Lookahead Propagation (reduce.at:1549): ok (0m0.096s 0m0.728s) 169. no lr.default-reduction (reduce.at:1694): ok (0m0.144s 0m0.604s) 170. lr.default-reduction=most (reduce.at:1694): ok (0m0.104s 0m0.676s) 171. lr.default-reduction=consistent (reduce.at:1694): ok (0m0.116s 0m0.664s) 172. lr.default-reduction=accepting (reduce.at:1694): ok (0m0.096s 0m0.636s) 173. Reports (report.at:24): ok (0m0.068s 0m0.396s) 174. Token declaration order (conflicts.at:28): ok (0m0.112s 0m0.540s) 175. Token declaration order: literals vs. identifiers (conflicts.at:101): ok (0m0.036s 0m0.104s) 176. Useless associativity warning (conflicts.at:183): ok (0m0.196s 0m0.780s) 177. Useless precedence warning (conflicts.at:218): ok (0m0.192s 0m0.816s) 178. S/R in initial (conflicts.at:275): ok (0m0.300s 0m1.580s) 179. %nonassoc and eof (conflicts.at:301): ok (0m0.836s 0m3.684s) 180. parse.error=verbose and consistent errors: lr.type=ielr (conflicts.at:511): ok (0m0.228s 0m0.648s) 181. parse.error=verbose and consistent errors: lr.type=ielr %glr-parser (conflicts.at:516): ok (0m0.740s 0m1.232s) 182. parse.error=verbose and consistent errors: lr.type=ielr c++ (conflicts.at:521): ok (0m0.676s 0m2.172s) 183. parse.error=verbose and consistent errors: lr.type=ielr java (conflicts.at:526): ok (0m0.296s 0m2.028s) 184. parse.error=verbose and consistent errors: lr.type=ielr lr.default-reduction=consistent (conflicts.at:533): ok (0m0.148s 0m0.768s) 185. parse.error=verbose and consistent errors: lr.type=ielr lr.default-reduction=accepting (conflicts.at:538): ok (0m0.164s 0m0.752s) 186. parse.error=verbose and consistent errors: lr.type=canonical-lr (conflicts.at:542): ok (0m0.196s 0m0.668s) 187. parse.error=verbose and consistent errors: lr.type=canonical-lr parse.lac=full (conflicts.at:549): ok (0m0.244s 0m0.692s) 188. parse.error=verbose and consistent errors: lr.type=ielr parse.lac=full (conflicts.at:554): ok (0m0.204s 0m0.752s) 189. parse.error=verbose and consistent errors: (conflicts.at:610): ok (0m0.212s 0m0.720s) 190. parse.error=verbose and consistent errors: %glr-parser (conflicts.at:614): ok (0m0.808s 0m1.308s) 191. parse.error=verbose and consistent errors: lr.default-reduction=consistent (conflicts.at:620): ok (0m0.160s 0m0.756s) 192. parse.error=verbose and consistent errors: lr.default-reduction=accepting (conflicts.at:626): ok (0m0.176s 0m0.676s) 193. parse.error=verbose and consistent errors: lr.type=canonical-lr (conflicts.at:630): ok (0m0.204s 0m0.668s) 194. parse.error=verbose and consistent errors: parse.lac=full (conflicts.at:635): ok (0m0.260s 0m0.732s) 195. parse.error=verbose and consistent errors: parse.lac=full lr.default-reduction=accepting (conflicts.at:640): ok (0m0.328s 0m0.816s) 196. LAC: %nonassoc requires splitting canonical LR states (conflicts.at:661): ok (0m1.288s 0m4.224s) 197. Unresolved SR Conflicts (conflicts.at:746): ok (0m0.156s 0m0.932s) 198. Resolved SR Conflicts (conflicts.at:854): ok (0m0.028s 0m0.216s) 199. %precedence suffices (conflicts.at:956): ok (0m0.032s 0m0.164s) 200. %precedence does not suffice (conflicts.at:982): ok (0m0.212s 0m0.844s) 201. Defaulted Conflicted Reduction (conflicts.at:1033): ok (0m0.160s 0m0.880s) 202. %expect not enough (conflicts.at:1155): ok (0m0.000s 0m0.140s) 203. %expect right (conflicts.at:1174): ok (0m0.024s 0m0.144s) 204. %expect too much (conflicts.at:1191): ok (0m0.000s 0m0.044s) 205. %expect with reduce conflicts (conflicts.at:1210): ok (0m0.000s 0m0.124s) 206. %expect in grammar rule not enough (conflicts.at:1229): ok (0m0.000s 0m0.040s) 207. %expect in grammar rule right (conflicts.at:1248): ok (0m0.044s 0m0.120s) 208. %expect in grammar rules (conflicts.at:1265): ok (0m0.040s 0m0.116s) 209. %expect in grammar rule too much (conflicts.at:1284): ok (0m0.000s 0m0.108s) 210. %expect-rr in grammar rule (conflicts.at:1303): ok (0m0.028s 0m0.160s) 211. %expect-rr too much in grammar rule (conflicts.at:1328): ok (0m0.000s 0m0.048s) 212. %expect-rr not enough in grammar rule (conflicts.at:1357): ok (0m0.000s 0m0.120s) 213. %prec with user string (conflicts.at:1386): ok (0m0.020s 0m0.080s) 214. %no-default-prec without %prec (conflicts.at:1403): ok (0m0.188s 0m0.752s) 215. %no-default-prec with %prec (conflicts.at:1431): ok (0m0.028s 0m0.172s) 216. %default-prec (conflicts.at:1455): ok (0m0.036s 0m0.092s) 217. Unreachable States After Conflict Resolution (conflicts.at:1479): ok (0m0.352s 0m1.768s) 218. Solved conflicts report for multiple reductions in a state (conflicts.at:1697): ok (0m0.032s 0m0.180s) 219. %nonassoc error actions for multiple reductions in a state (conflicts.at:1777): ok (0m0.036s 0m0.248s) 220. %expect-rr non GLR (conflicts.at:1846): ok (0m0.316s 0m1.624s) 221. -W versus %expect and %expect-rr (conflicts.at:1877): ok (0m1.136s 0m11.692s) 222. Prologue syncline (synclines.at:207): ok (0m0.040s 0m0.612s) 223. %union syncline (synclines.at:228): ok (0m0.044s 0m0.516s) 224. %union name syncline (synclines.at:237): ok (0m0.028s 0m0.476s) 225. Postprologue syncline (synclines.at:284): ok (0m0.032s 0m0.352s) 226. Action syncline (synclines.at:303): ok (0m0.024s 0m0.424s) 227. Epilogue syncline (synclines.at:321): ok (0m0.040s 0m0.468s) 228. %code top syncline (synclines.at:340): ok (0m0.032s 0m0.552s) 229. %destructor syncline (synclines.at:363): ok (0m0.036s 0m0.620s) 230. %printer syncline (synclines.at:388): ok (0m0.036s 0m0.644s) 231. syncline escapes: yacc.c (synclines.at:440): ok (0m0.172s 0m0.776s) 232. syncline escapes: glr.c (synclines.at:440): ok (0m0.920s 0m1.252s) 233. syncline escapes: lalr1.cc (synclines.at:440): ok (0m0.812s 0m2.224s) 234. syncline escapes: glr.cc (synclines.at:440): ok (0m1.024s 0m2.328s) 235. %no-lines: yacc.c (synclines.at:497): ok (0m0.068s 0m0.528s) 236. %no-lines: glr.c (synclines.at:497): ok (0m0.064s 0m0.332s) 237. %no-lines: lalr1.cc (synclines.at:497): ok (0m0.080s 0m0.380s) 238. %no-lines: glr.cc (synclines.at:497): ok (0m0.084s 0m0.568s) 239. Invalid CPP guards: --defines=input/input.h (headers.at:57): ok (0m0.140s 0m0.432s) 240. Invalid CPP guards: --defines=9foo.h (headers.at:58): ok (0m0.088s 0m0.468s) 241. Invalid CPP guards: %glr-parser --defines=input/input.h (headers.at:59): ok (0m0.292s 0m0.604s) 242. Invalid CPP guards: %glr-parser --defines=9foo.h (headers.at:60): ok (0m0.500s 0m0.404s) 243. export YYLTYPE (headers.at:68): ok (0m0.232s 0m1.488s) 244. Sane headers: (headers.at:175): ok (0m0.332s 0m0.524s) 245. Sane headers: %locations %debug (headers.at:176): ok (0m0.276s 0m0.836s) 246. Sane headers: %glr-parser (headers.at:178): ok (0m1.044s 0m0.984s) 247. Sane headers: %locations %debug %glr-parser (headers.at:179): ok (0m1.252s 0m1.488s) 248. Sane headers: api.pure (headers.at:181): ok (0m0.176s 0m0.696s) 249. Sane headers: api.push-pull=both (headers.at:182): ok (0m0.196s 0m0.708s) 250. Sane headers: api.pure api.push-pull=both (headers.at:183): ok (0m0.180s 0m0.784s) 251. Sane headers: c++ (headers.at:185): ok (0m0.644s 0m3.264s) 253. Sane headers: c++ api.value.type=variant parse.assert (headers.at:187): ok (0m0.872s 0m3.548s) 256. Midrule actions (actions.at:24): ok (0m0.256s 0m0.780s) 257. Typed midrule actions (actions.at:72): ok (0m0.336s 0m0.704s) 258. Implicitly empty rule (actions.at:122): ok (0m0.300s 0m1.904s) 259. Invalid uses of %empty (actions.at:169): ok (0m0.008s 0m0.316s) 260. Valid uses of %empty (actions.at:237): ok (0m0.148s 0m0.592s) 261. Add missing %empty (actions.at:267): ok (0m0.020s 0m0.144s) 262. Initial location: yacc.c (actions.at:362): ok (0m0.168s 0m0.756s) 263. Initial location: yacc.c api.pure=full (actions.at:363): ok (0m0.228s 0m0.692s) 264. Initial location: yacc.c api.pure %parse-param { int x } (actions.at:364): ok (0m0.180s 0m0.708s) 265. Initial location: yacc.c api.push-pull=both (actions.at:365): ok (0m0.220s 0m0.732s) 266. Initial location: yacc.c api.push-pull=both api.pure=full (actions.at:366): ok (0m0.248s 0m0.724s) 267. Initial location: glr.c (actions.at:367): ok (0m0.500s 0m1.008s) 268. Initial location: glr.c api.pure (actions.at:368): ok (0m0.500s 0m1.068s) 269. Initial location: lalr1.cc (actions.at:369): ok (0m0.920s 0m2.096s) 270. Initial location: glr.cc (actions.at:370): ok (0m0.768s 0m2.092s) 271. Initial location: yacc.c api.pure=full (actions.at:388): ok (0m0.236s 0m0.688s) 272. Initial location: yacc.c api.pure=full (actions.at:399): ok (0m0.160s 0m0.692s) 273. Location print: yacc.c (actions.at:473): ok (0m0.228s 0m0.608s) 274. Location print: glr.c (actions.at:473): ok (0m0.480s 0m0.932s) 275. Location print: lalr1.cc (actions.at:473): ok (0m0.704s 0m2.356s) 276. Location print: glr.cc (actions.at:473): ok (0m0.764s 0m2.008s) 277. Exotic Dollars (actions.at:483): ok (0m0.296s 0m1.280s) 278. Printers and Destructors (actions.at:1043): ok (0m0.392s 0m1.156s) 279. Printers and Destructors with union (actions.at:1044): ok (0m0.444s 0m1.200s) 280. Printers and Destructors: %glr-parser (actions.at:1046): ok (0m1.556s 0m2.000s) 281. Printers and Destructors with union: %glr-parser (actions.at:1047): ok (0m1.536s 0m2.076s) 286. Default tagless %printer and %destructor (actions.at:1064): ok (0m0.680s 0m1.372s) 287. Default tagged and per-type %printer and %destructor (actions.at:1157): ok (0m0.520s 0m1.424s) 288. Default %printer and %destructor for user-defined end token (actions.at:1276): ok (0m1.012s 0m3.136s) 289. Default %printer and %destructor are not for error or $undefined (actions.at:1386): ok (0m0.420s 0m1.268s) 290. Default %printer and %destructor are not for $accept (actions.at:1479): ok (0m0.364s 0m1.220s) 291. Default %printer and %destructor for midrule values (actions.at:1543): ok (0m0.768s 0m2.280s) 292. @$ in %initial-action implies %locations (actions.at:1688): ok (0m0.184s 0m0.692s) 293. @$ in %destructor implies %locations (actions.at:1689): ok (0m0.252s 0m0.596s) 294. @$ in %printer implies %locations (actions.at:1690): ok (0m0.272s 0m0.560s) 295. Qualified $$ in actions: yacc.c (actions.at:1802): ok (0m0.264s 0m0.676s) 296. Qualified $$ in actions: glr.c (actions.at:1802): ok (0m1.324s 0m1.188s) 297. Qualified $$ in actions: lalr1.cc (actions.at:1802): ok (0m1.048s 0m2.248s) 298. Qualified $$ in actions: glr.cc (actions.at:1802): ok (0m1.640s 0m2.316s) 299. Destroying lookahead assigned by semantic action (actions.at:1810): ok (0m0.148s 0m0.708s) 300. YYBACKUP (actions.at:1865): ok (0m0.312s 0m0.784s) 301. %union vs. api.value.type (types.at:25): ok (0m0.032s 0m0.100s) 302. %yacc vs. api.value.type=union (types.at:44): ok (0m0.032s 0m0.204s) 303. yacc.c api.value.type={double} (types.at:366): ok (0m0.228s 0m0.664s) 304. yacc.c api.value.type={double} %defines (types.at:366): ok (0m0.220s 0m0.696s) 305. yacc.c api.value.type={variant} (types.at:366): ok (0m0.248s 0m0.724s) 306. yacc.c api.value.type={variant} %defines (types.at:366): ok (0m0.216s 0m0.704s) 307. yacc.c api.value.type={struct foo} (types.at:366): ok (0m0.244s 0m0.760s) 308. yacc.c api.value.type={struct foo} %defines (types.at:366): ok (0m0.276s 0m0.692s) 309. yacc.c api.value.type={struct bar} (types.at:366): ok (0m0.276s 0m0.620s) 310. yacc.c api.value.type={struct bar} %defines (types.at:366): ok (0m0.240s 0m0.672s) 311. yacc.c api.value.type={union foo} (types.at:366): ok (0m0.272s 0m0.648s) 312. yacc.c api.value.type={union foo} %defines (types.at:366): ok (0m0.244s 0m0.740s) 313. yacc.c %union { float fval; int ival; }; (types.at:366): ok (0m0.204s 0m0.720s) 314. yacc.c %union { float fval; int ival; }; %defines (types.at:366): ok (0m0.220s 0m0.768s) 315. yacc.c %union foo { float fval; int ival; }; (types.at:366): ok (0m0.244s 0m0.664s) 316. yacc.c %union foo { float fval; int ival; }; %defines (types.at:366): ok (0m0.208s 0m0.648s) 317. yacc.c api.value.union.name=foo; %union { float fval; int ival; }; (types.at:366): ok (0m0.196s 0m0.664s) 318. yacc.c api.value.union.name=foo; %union { float fval; int ival; }; %defines (types.at:366): ok (0m0.180s 0m0.724s) 319. yacc.c api.value.type=union (types.at:366): ok (0m0.208s 0m0.740s) 320. yacc.c api.value.type=union %defines (types.at:366): ok (0m0.188s 0m0.744s) 321. glr.c api.value.type={double} (types.at:366): ok (0m1.108s 0m1.480s) 322. glr.c api.value.type={double} %defines (types.at:366): ok (0m1.076s 0m1.440s) 323. glr.c api.value.type={variant} (types.at:366): ok (0m1.120s 0m1.380s) 324. glr.c api.value.type={variant} %defines (types.at:366): ok (0m1.060s 0m1.504s) 325. glr.c api.value.type={struct foo} (types.at:366): ok (0m1.136s 0m1.332s) 326. glr.c api.value.type={struct foo} %defines (types.at:366): ok (0m1.240s 0m1.432s) 327. glr.c api.value.type={struct bar} (types.at:366): ok (0m1.128s 0m1.276s) 328. glr.c api.value.type={struct bar} %defines (types.at:366): ok (0m1.216s 0m1.400s) 329. glr.c api.value.type={union foo} (types.at:366): ok (0m1.188s 0m1.456s) 330. glr.c api.value.type={union foo} %defines (types.at:366): ok (0m1.120s 0m1.244s) 331. glr.c %union { float fval; int ival; }; (types.at:366): ok (0m1.136s 0m1.484s) 332. glr.c %union { float fval; int ival; }; %defines (types.at:366): ok (0m1.148s 0m1.240s) 333. glr.c %union foo { float fval; int ival; }; (types.at:366): ok (0m1.132s 0m1.472s) 334. glr.c %union foo { float fval; int ival; }; %defines (types.at:366): ok (0m1.060s 0m1.476s) 335. glr.c api.value.union.name=foo; %union { float fval; int ival; }; (types.at:366): ok (0m1.208s 0m1.420s) 336. glr.c api.value.union.name=foo; %union { float fval; int ival; }; %defines (types.at:366): ok (0m1.272s 0m1.400s) 337. glr.c api.value.type=union (types.at:366): ok (0m1.340s 0m1.268s) 338. glr.c api.value.type=union %defines (types.at:366): ok (0m1.324s 0m1.448s) 339. lalr1.cc api.value.type={double} (types.at:366): ok (0m5.252s 0m10.284s) 340. lalr1.cc api.value.type={double} %defines (types.at:366): ok (0m5.460s 0m10.572s) 341. lalr1.cc api.value.type={variant} (types.at:366): ok (0m5.304s 0m10.984s) 342. lalr1.cc api.value.type={variant} %defines (types.at:366): ok (0m5.136s 0m10.696s) 343. lalr1.cc api.value.type={struct foo} (types.at:366): ok (0m4.136s 0m11.000s) 344. lalr1.cc api.value.type={struct foo} %defines (types.at:366): ok (0m4.332s 0m11.488s) 345. lalr1.cc api.value.type={struct bar} (types.at:366): ok (0m3.864s 0m11.392s) 346. lalr1.cc api.value.type={struct bar} %defines (types.at:366): ok (0m3.884s 0m10.684s) 347. lalr1.cc api.value.type={union foo} (types.at:366): ok (0m4.128s 0m11.340s) 348. lalr1.cc api.value.type={union foo} %defines (types.at:366): ok (0m4.840s 0m11.184s) 349. lalr1.cc %union { float fval; int ival; }; (types.at:366): ok (0m4.144s 0m10.996s) 350. lalr1.cc %union { float fval; int ival; }; %defines (types.at:366): ok (0m4.212s 0m11.224s) 351. lalr1.cc api.value.type=union (types.at:366): ok (0m4.260s 0m11.480s) 352. lalr1.cc api.value.type=union %defines (types.at:366): ok (0m4.112s 0m10.972s) 353. lalr1.cc api.value.type=variant (types.at:366): ok (0m5.728s 0m13.252s) 354. lalr1.cc api.value.type=variant %defines (types.at:366): ok (0m6.164s 0m13.124s) 355. lalr1.cc api.value.type=variant (types.at:366): ok (0m8.292s 0m14.160s) 356. lalr1.cc api.value.type=variant %defines (types.at:366): ok (0m9.300s 0m13.400s) 357. lalr1.cc api.value.type=variant api.token.constructor (types.at:366): ok (0m5.348s 0m10.632s) 358. lalr1.cc api.value.type=variant api.token.constructor %defines (types.at:366): ok (0m5.084s 0m10.648s) 359. lalr1.cc %code requires { #include } api.value.type=variant (types.at:366): ok (0m0.268s 0m1.768s) 360. lalr1.cc %code requires { #include } api.value.type=variant %defines (types.at:366): ok (0m0.264s 0m1.880s) 361. lalr1.cc %code requires { #include } api.value.type=variant api.token.constructor (types.at:366): ok (0m0.268s 0m1.924s) 362. lalr1.cc %code requires { #include } api.value.type=variant api.token.constructor %defines (types.at:366): ok (0m0.268s 0m1.824s) 363. lalr1.cc %code requires { #include } api.value.type=variant api.token.constructor (types.at:366): ok (0m0.296s 0m1.868s) 364. lalr1.cc %code requires { #include } api.value.type=variant api.token.constructor %defines (types.at:366): ok (0m0.224s 0m1.904s) 365. glr.cc api.value.type={double} (types.at:366): ok (0m7.848s 0m11.088s) 366. glr.cc api.value.type={double} %defines (types.at:366): ok (0m8.068s 0m10.520s) 367. glr.cc api.value.type={variant} (types.at:366): ok (0m7.860s 0m11.260s) 368. glr.cc api.value.type={variant} %defines (types.at:366): ok (0m7.988s 0m10.800s) 369. glr.cc api.value.type={struct foo} (types.at:366): ok (0m8.124s 0m10.724s) 370. glr.cc api.value.type={struct foo} %defines (types.at:366): ok (0m8.272s 0m11.152s) 371. glr.cc api.value.type={struct bar} (types.at:366): ok (0m8.020s 0m11.228s) 372. glr.cc api.value.type={struct bar} %defines (types.at:366): ok (0m8.116s 0m10.572s) 373. glr.cc api.value.type={union foo} (types.at:366): ok (0m8.172s 0m11.092s) 374. glr.cc api.value.type={union foo} %defines (types.at:366): ok (0m7.684s 0m11.180s) 375. glr.cc %union { float fval; int ival; }; (types.at:366): ok (0m7.824s 0m10.768s) 376. glr.cc %union { float fval; int ival; }; %defines (types.at:366): ok (0m8.132s 0m11.016s) 377. glr.cc api.value.type=union (types.at:366): ok (0m7.440s 0m11.648s) 378. glr.cc api.value.type=union %defines (types.at:366): ok (0m6.872s 0m11.272s) 379. lalr1.cc: Named %union (types.at:388): ok (0m0.024s 0m0.196s) 380. glr.cc: Named %union (types.at:388): ok (0m0.028s 0m0.136s) 381. Calculator (calc.at:699): ok (0m0.268s 0m2.792s) 382. Calculator %defines (calc.at:701): ok (0m0.268s 0m2.976s) 383. Calculator %locations (calc.at:702): ok (0m0.272s 0m2.560s) 384. Calculator %locations api.location.type={Span} (calc.at:703): ok (0m0.256s 0m2.364s) 385. Calculator %name-prefix "calc" (calc.at:705): ok (0m0.156s 0m2.752s) 386. Calculator %verbose (calc.at:706): ok (0m0.196s 0m2.448s) 387. Calculator %yacc (calc.at:707): ok (0m0.224s 0m2.660s) 388. Calculator parse.error=verbose (calc.at:708): ok (0m0.272s 0m2.460s) 389. Calculator api.pure=full %locations (calc.at:710): ok (0m0.248s 0m2.404s) 390. Calculator api.push-pull=both api.pure=full %locations (calc.at:711): ok (0m0.320s 0m2.396s) 391. Calculator parse.error=verbose %locations (calc.at:712): ok (0m0.240s 0m2.224s) 392. Calculator parse.error=verbose %locations %defines api.prefix={calc} %verbose %yacc (calc.at:714): ok (0m0.356s 0m2.640s) 393. Calculator parse.error=verbose %locations %defines %name-prefix "calc" api.token.prefix={TOK_} %verbose %yacc (calc.at:715): ok (0m0.368s 0m2.572s) 394. Calculator %debug (calc.at:717): ok (0m0.232s 0m2.772s) 395. Calculator parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:718): ok (0m0.492s 0m2.716s) 396. Calculator parse.error=verbose %debug %locations %defines api.prefix={calc} %verbose %yacc (calc.at:719): ok (0m0.456s 0m2.908s) 397. Calculator api.pure=full parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:721): ok (0m0.428s 0m2.948s) 398. Calculator api.push-pull=both api.pure=full parse.error=verbose %debug %locations %defines api.prefix={calc} %verbose %yacc (calc.at:722): ok (0m0.552s 0m2.912s) 399. Calculator api.pure parse.error=verbose %debug %locations %defines api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:724): ok (0m0.492s 0m2.832s) 400. Calculator %no-lines api.pure parse.error=verbose %debug %locations %defines api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:726): ok (0m0.512s 0m2.744s) 401. Calculator %glr-parser (calc.at:742): ok (0m0.916s 0m3.328s) 402. Calculator %glr-parser %defines (calc.at:744): ok (0m1.076s 0m3.656s) 403. Calculator %glr-parser %locations (calc.at:745): ok (0m1.084s 0m3.212s) 404. Calculator %glr-parser %locations api.location.type={Span} (calc.at:746): ok (0m1.048s 0m3.084s) 405. Calculator %glr-parser %name-prefix "calc" (calc.at:747): ok (0m0.864s 0m3.276s) 406. Calculator %glr-parser api.prefix={calc} (calc.at:748): ok (0m0.948s 0m3.256s) 407. Calculator %glr-parser %verbose (calc.at:749): ok (0m0.964s 0m3.244s) 408. Calculator %glr-parser %yacc (calc.at:750): ok (0m0.972s 0m3.312s) 409. Calculator %glr-parser parse.error=verbose (calc.at:751): ok (0m1.040s 0m3.080s) 410. Calculator %glr-parser api.pure %locations (calc.at:753): ok (0m1.040s 0m3.056s) 411. Calculator %glr-parser parse.error=verbose %locations (calc.at:754): ok (0m1.132s 0m3.004s) 412. Calculator %glr-parser parse.error=verbose %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:756): ok (0m1.172s 0m3.312s) 413. Calculator %glr-parser %debug (calc.at:758): ok (0m1.152s 0m3.588s) 414. Calculator %glr-parser parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:759): ok (0m1.384s 0m3.740s) 415. Calculator %glr-parser parse.error=verbose %debug %locations %defines api.prefix={calc} api.token.prefix={TOK_} %verbose %yacc (calc.at:760): ok (0m1.416s 0m3.772s) 416. Calculator %glr-parser api.pure parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:762): ok (0m1.360s 0m3.652s) 417. Calculator %glr-parser api.pure parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:764): ok (0m1.552s 0m3.356s) 418. Calculator %glr-parser api.pure parse.error=verbose %debug %locations %defines api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:765): ok (0m1.464s 0m3.832s) 419. Calculator %glr-parser %no-lines api.pure parse.error=verbose %debug %locations %defines api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:767): ok (0m1.416s 0m3.660s) 420. Calculator lalr1.cc %defines (calc.at:777): ok (0m0.844s 0m6.500s) 421. Calculator C++ (calc.at:786): ok (0m0.640s 0m4.308s) 422. Calculator C++ %locations (calc.at:787): ok (0m0.756s 0m4.252s) 423. Calculator C++ %locations $NO_EXCEPTIONS_CXXFLAGS (calc.at:788): ok (0m0.688s 0m4.264s) 424. Calculator C++ %locations api.location.type={Span} (calc.at:789): ok (0m1.024s 0m4.208s) 426. Calculator C++ %locations parse.error=verbose api.prefix={calc} %verbose %yacc (calc.at:792): ok (0m1.172s 0m4.528s) 427. Calculator C++ %locations parse.error=verbose %debug %name-prefix "calc" %verbose %yacc (calc.at:793): ok (0m1.308s 0m5.340s) 428. Calculator C++ %locations parse.error=verbose %debug api.prefix={calc} %verbose %yacc (calc.at:795): ok (0m1.788s 0m5.148s) 429. Calculator C++ %locations parse.error=verbose %debug api.prefix={calc} api.token.prefix={TOK_} %verbose %yacc (calc.at:796): ok (0m1.764s 0m5.004s) 431. Calculator C++ parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:800): ok (0m1.648s 0m5.292s) 433. Calculator C++ %defines %locations api.location.file=none (calc.at:803): ok (0m1.096s 0m7.192s) 436. Calculator glr.cc (calc.at:816): ok (0m1.376s 0m5.216s) 437. Calculator C++ %glr-parser (calc.at:825): ok (0m1.432s 0m5.144s) 438. Calculator C++ %glr-parser %locations (calc.at:826): ok (0m2.400s 0m4.860s) 439. Calculator C++ %glr-parser %locations api.location.type={Span} (calc.at:827): ok (0m2.276s 0m4.780s) 440. Calculator C++ %glr-parser %defines parse.error=verbose %name-prefix "calc" %verbose %yacc (calc.at:828): ok (0m2.452s 0m6.772s) 441. Calculator C++ %glr-parser parse.error=verbose api.prefix={calc} %verbose %yacc (calc.at:829): ok (0m2.116s 0m4.904s) 442. Calculator C++ %glr-parser %debug (calc.at:831): ok (0m2.472s 0m5.488s) 443. Calculator C++ %glr-parser parse.error=verbose %debug %name-prefix "calc" %verbose %yacc (calc.at:833): ok (0m2.488s 0m5.468s) 444. Calculator C++ %glr-parser parse.error=verbose %debug %name-prefix "calc" api.token.prefix={TOK_} %verbose %yacc (calc.at:834): ok (0m2.500s 0m5.088s) 448. Calculator lalr1.d (calc.at:849): skipped (calc.at:849) 449. Calculator D (calc.at:858): skipped (calc.at:858) 450. Calculator D parse.error=verbose api.prefix={calc} %verbose (calc.at:861): skipped (calc.at:861) 451. Big triangle (torture.at:132): ok (0m1.656s 0m2.036s) 452. Big horizontal (torture.at:216): ok (0m2.596s 0m1.536s) 453. Many lookahead tokens (torture.at:348): ok (0m10.348s 0m3.324s) 454. Exploding the Stack Size with Alloca (torture.at:450): ok (0m2.156s 0m54.544s) 455. Exploding the Stack Size with Malloc (torture.at:496): ok (0m1.532s 0m53.960s) 456. GNU AWK 3.1.0 Grammar: LALR(1) (existing.at:801): ok (0m1.860s 0m2.120s) 457. GNU AWK 3.1.0 Grammar: IELR(1) (existing.at:801): ok (0m1.780s 0m2.112s) 458. GNU AWK 3.1.0 Grammar: Canonical LR(1) (existing.at:801): ok (0m11.872s 0m6.936s) 459. GNU Cim Grammar: LALR(1) (existing.at:1453): ok (0m3.404s 0m2.496s) 460. GNU Cim Grammar: IELR(1) (existing.at:1453): ok (0m3.680s 0m2.320s) 461. GNU Cim Grammar: Canonical LR(1) (existing.at:1453): ok (1m43.720s 0m19.564s) 462. GNU pic (Groff 1.18.1) Grammar: LALR(1) (existing.at:3266): ok (0m3.200s 0m2.316s) 463. GNU pic (Groff 1.18.1) Grammar: IELR(1) (existing.at:3266): ok (0m3.300s 0m2.580s) 464. GNU pic (Groff 1.18.1) Grammar: Canonical LR(1) (existing.at:3266): ok (0m42.940s 0m15.968s) 465. Trivial grammars (regression.at:25): ok (0m0.340s 0m0.924s) 466. YYSTYPE typedef (regression.at:55): ok (0m0.064s 0m0.400s) 467. Early token definitions with --yacc (regression.at:85): ok (0m0.068s 0m0.496s) 468. Early token definitions without --yacc (regression.at:127): ok (0m0.100s 0m0.432s) 469. Braces parsing (regression.at:172): ok (0m0.032s 0m0.108s) 470. Rule Line Numbers (regression.at:195): ok (0m0.056s 0m0.196s) 471. Mixing %token styles (regression.at:344): ok (0m0.164s 0m0.804s) 472. Token definitions (regression.at:370): ok (0m0.332s 0m1.408s) 473. Characters Escapes (regression.at:431): ok (0m0.080s 0m0.316s) 474. Web2c Report (regression.at:464): ok (0m0.024s 0m0.220s) 475. Web2c Actions (regression.at:645): ok (0m0.032s 0m0.136s) 476. Dancer (regression.at:834): ok (0m0.236s 0m0.744s) 477. Dancer %glr-parser (regression.at:835): ok (0m1.052s 0m1.164s) 478. Dancer lalr1.cc (regression.at:836): ok (0m0.924s 0m2.240s) 479. Expecting two tokens (regression.at:911): ok (0m0.248s 0m0.744s) 480. Expecting two tokens %glr-parser (regression.at:912): ok (0m1.140s 0m1.000s) 481. Expecting two tokens lalr1.cc (regression.at:913): ok (0m1.012s 0m2.348s) 482. Braced code in declaration in rules section (regression.at:921): ok (0m0.312s 0m0.712s) 483. String alias declared after use (regression.at:980): ok (0m0.044s 0m0.080s) 484. Extra lookahead sets in report (regression.at:1003): ok (0m0.024s 0m0.220s) 485. Token number in precedence declaration (regression.at:1044): ok (0m0.424s 0m1.400s) 486. parse-gram.y: LALR = IELR (regression.at:1097): ok (0m0.956s 0m0.328s) 487. parse.error=verbose and YYSTACK_USE_ALLOCA (regression.at:1119): ok (0m0.224s 0m0.736s) 488. parse.error=verbose overflow (regression.at:1193): ok (0m0.180s 0m0.728s) 489. LAC: Exploratory stack (regression.at:1303): ok (0m2.164s 0m7.432s) 490. LAC: Memory exhaustion (regression.at:1391): ok (0m0.976s 0m3.092s) 491. Lex and parse params: yacc.c (regression.at:1521): ok (0m0.176s 0m0.656s) 492. Lex and parse params: glr.c (regression.at:1522): ok (0m0.916s 0m1.416s) 493. Lex and parse params: lalr1.cc (regression.at:1523): ok (0m0.756s 0m2.072s) 494. Lex and parse params: glr.cc (regression.at:1524): ok (0m1.212s 0m2.412s) 495. stdio.h is not needed (regression.at:1535): ok (0m0.108s 0m0.468s) 496. Memory Leak for Early Deletion (push.at:25): ok (0m0.140s 0m0.592s) 497. Multiple impure instances (push.at:84): ok (0m0.260s 0m1.224s) 498. Unsupported Skeletons (push.at:145): ok (0m0.028s 0m0.096s) 499. C++ Locations Unit Tests (c++.at:26): ok (0m5.616s 0m13.180s) 500. C++ Variant-based Symbols Unit Tests (c++.at:100): ok (0m10.544s 0m15.640s) 501. Multiple occurrences of $n and api.value.automove (c++.at:233): ok (0m0.212s 0m0.696s) 502. Variants lalr1.cc (c++.at:552): ok (0m16.132s 0m25.676s) 503. Variants lalr1.cc parse.assert (c++.at:553): ok (0m21.228s 0m26.604s) 504. Variants lalr1.cc parse.assert api.value.automove (c++.at:554): ok (0m19.128s 0m26.896s) 505. Variants lalr1.cc parse.assert %locations (c++.at:555): ok (0m21.236s 0m28.624s) 506. Variants lalr1.cc parse.assert %code {\n#define TWO_STAGE_BUILD\n} (c++.at:556): ok (0m21.160s 0m28.724s) 507. Variants lalr1.cc parse.assert api.token.constructor (c++.at:557): ok (0m21.936s 0m29.380s) 508. Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} (c++.at:558): ok (0m20.680s 0m30.148s) 509. Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} %locations (c++.at:559): ok (0m23.092s 0m29.624s) 510. Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} %locations api.value.automove (c++.at:560): ok (0m22.060s 0m29.344s) 511. Variants and Typed Midrule Actions (c++.at:570): ok (0m12.792s 0m15.920s) 512. Doxygen Public Documentation (c++.at:772): ok (0m0.360s 0m1.828s) 513. Doxygen Private Documentation (c++.at:773): ok (0m0.516s 0m2.192s) 514. Relative namespace references (c++.at:828): ok (0m12.656s 0m29.416s) 515. Absolute namespace references (c++.at:834): ok (0m24.884s 1m0.240s) 516. Syntactically invalid namespace references (c++.at:843): ok (0m0.160s 0m0.712s) 517. Syntax error discarding no lookahead (c++.at:864): ok (0m4.232s 0m10.444s) 518. Syntax error as exception: lalr1.cc (c++.at:1042): ok (0m5.300s 0m17.220s) 519. Syntax error as exception: glr.cc (c++.at:1043): ok (0m8.556s 0m17.840s) 520. Exception safety with error recovery (c++.at:1337): ok (0m12.972s 0m22.632s) 521. Exception safety without error recovery (c++.at:1338): ok (0m12.384s 0m22.196s) 522. Exception safety with error recovery api.value.type=variant (c++.at:1339): ok (0m17.492s 0m26.788s) 523. Exception safety without error recovery api.value.type=variant (c++.at:1340): ok (0m20.876s 0m25.572s) 524. C++ GLR parser identifier shadowing (c++.at:1348): ok (0m5.832s 0m8.736s) 526. Java invalid directives (java.at:25): ok (0m0.008s 0m0.112s) 527. Calculator (java.at:352): ok (0m0.492s 0m5.580s) 528. Calculator parse.error=verbose (java.at:352): ok (0m0.436s 0m5.444s) 529. Calculator %locations (java.at:352): ok (0m0.520s 0m5.240s) 530. Calculator parse.error=verbose %locations (java.at:352): ok (0m0.452s 0m5.252s) 531. Calculator %lex-param { InputStream is } (java.at:359): ok (0m0.520s 0m5.536s) 532. Calculator parse.error=verbose %lex-param { InputStream is } (java.at:359): ok (0m0.488s 0m5.292s) 533. Calculator %locations %lex-param { InputStream is } (java.at:359): ok (0m0.504s 0m5.432s) 534. Calculator parse.error=verbose %locations %lex-param { InputStream is } (java.at:359): ok (0m0.604s 0m5.172s) 535. Java parser class and package names (java.at:440): ok (0m1.980s 0m9.756s) 536. Java parser class modifiers (java.at:464): ok (0m4.320s 0m23.964s) 537. Java parser class extends and implements (java.at:528): ok (0m1.120s 0m5.868s) 538. Java %parse-param and %lex-param (java.at:548): ok (0m3.420s 0m18.968s) 539. Java throws specifications (java.at:622): ok (0m12.236s 1m8.208s) 540. Java constructor init and init_throws (java.at:711): ok (0m0.840s 0m4.124s) 541. Java value, position, and location types (java.at:738): ok (0m0.916s 0m4.112s) 542. Java syntax error handling without error token (java.at:769): ok (0m0.384s 0m2.592s) 543. Trivial Push Parser with api.push-pull verification (javapush.at:168): ok (0m0.376s 0m2.776s) 544. Trivial Push Parser with %initial-action (javapush.at:213): ok (0m0.436s 0m2.316s) 545. Calc parser with api.push-pull both (javapush.at:320): ok (0m0.460s 0m2.584s) 546. Calc parser with %locations %code lexer and api.push-pull both (javapush.at:614): ok (0m0.484s 0m2.728s) 547. GLR: Resolve ambiguity, impure, no locations (cxx-type.at:393): ok (0m1.048s 0m1.472s) 548. GLR: Resolve ambiguity, impure, locations (cxx-type.at:400): ok (0m1.024s 0m1.364s) 549. GLR: Resolve ambiguity, pure, no locations (cxx-type.at:406): ok (0m0.944s 0m1.528s) 550. GLR: Resolve ambiguity, pure, locations (cxx-type.at:413): ok (0m1.072s 0m1.472s) 551. GLR: Merge conflicting parses, impure, no locations (cxx-type.at:420): ok (0m0.996s 0m1.404s) 552. GLR: Merge conflicting parses, impure, locations (cxx-type.at:427): ok (0m0.964s 0m1.628s) 553. GLR: Merge conflicting parses, pure, no locations (cxx-type.at:434): ok (0m1.060s 0m1.224s) 554. GLR: Merge conflicting parses, pure, locations (cxx-type.at:440): ok (0m1.056s 0m1.596s) 555. GLR: Verbose messages, resolve ambiguity, impure, no locations (cxx-type.at:447): ok (0m1.028s 0m1.448s) 556. Badly Collapsed GLR States (glr-regression.at:25): ok (0m0.956s 0m1.824s) 557. Improper handling of embedded actions and dollar(-N) in GLR parsers (glr-regression.at:112): ok (0m1.028s 0m2.268s) 558. Improper merging of GLR delayed action sets (glr-regression.at:244): ok (0m0.984s 0m2.020s) 559. Duplicate representation of merged trees (glr-regression.at:365): ok (0m0.936s 0m1.996s) 560. User destructor for unresolved GLR semantic value (glr-regression.at:456): ok (0m0.992s 0m1.840s) 561. User destructor after an error during a split parse (glr-regression.at:512): ok (0m0.912s 0m1.888s) 562. Duplicated user destructor for lookahead (glr-regression.at:562): ok (0m0.852s 0m1.784s) 563. Incorrectly initialized location for empty right-hand side in GLR (glr-regression.at:651): ok (0m1.052s 0m1.964s) 564. No users destructors if stack 0 deleted (glr-regression.at:740): ok (0m0.844s 0m1.808s) 565. Corrupted semantic options if user action cuts parse (glr-regression.at:817): ok (0m0.888s 0m1.772s) 566. Undesirable destructors if user action cuts parse (glr-regression.at:871): ok (0m0.848s 0m1.792s) 567. Leaked semantic values if user action cuts parse (glr-regression.at:929): ok (0m0.920s 0m1.916s) 568. Incorrect lookahead during deterministic GLR (glr-regression.at:1052): ok (0m0.788s 0m1.368s) 569. Incorrect lookahead during nondeterministic GLR (glr-regression.at:1176): ok (0m0.992s 0m2.208s) 570. Leaked semantic values when reporting ambiguity (glr-regression.at:1392): ok (0m0.840s 0m2.052s) 571. Leaked lookahead after nondeterministic parse syntax error (glr-regression.at:1474): ok (0m0.912s 0m1.944s) 572. Uninitialized location when reporting ambiguity (glr-regression.at:1534): ok (0m1.060s 0m2.160s) 573. Missed %merge type warnings when LHS type is declared later (glr-regression.at:1608): ok (0m0.000s 0m0.132s) 574. Ambiguity reports (glr-regression.at:1657): ok (0m1.220s 0m1.992s) 575. Predicates (glr-regression.at:1759): ok (0m0.824s 0m1.336s) testsuite: ending at: Mon Nov 11 05:47:38 EST 2019 testsuite: test suite duration: 1h 6m 51s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 565 tests were run, 16 failed unexpectedly. 10 tests were skipped. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Failed tests: GNU Bison 3.4.2 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 252: headers.at:186 Sane headers: %locations %debug c++ c++ 254: headers.at:189 Sane headers: %locations c++ %glr-parser glr c++ 255: headers.at:197 Several parsers glr c++ 282: actions.at:1049 Printers and Destructors: %defines lalr1.cc c++ 283: actions.at:1050 Printers and Destructors with union: %defines lalr1.cc c++ 284: actions.at:1052 Printers and Destructors: %defines glr.cc glr c++ 285: actions.at:1053 Printers and Destructors with union: %defines glr.cc glr c++ 425: calc.at:790 Calculator C++ %defines %locations parse.error=verbose %name-prefix "calc" %verbose %yacc c++ 430: calc.at:798 Calculator C++ %defines %locations parse.error=verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} c++ 432: calc.at:801 Calculator C++ %defines %locations parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} c++ 434: calc.at:804 Calculator C++ %defines %locations api.location.file="my-location.hh" c++ 435: calc.at:806 Calculator C++ %no-lines %defines %locations api.location.file="my-location.hh" c++ 445: calc.at:836 Calculator C++ %glr-parser %locations %defines parse.error=verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} glr c++ 446: calc.at:837 Calculator C++ %glr-parser %locations %defines parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} glr c++ 447: calc.at:839 Calculator C++ %glr-parser %no-lines %locations %defines parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} glr c++ 525: c++.at:1399 Shared locations c++ Skipped tests: GNU Bison 3.4.2 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 126: diagnostics.at:103 Warnings diagnostics 127: diagnostics.at:143 Single point locations diagnostics 128: diagnostics.at:191 Tabulations and multibyte characters diagnostics 129: diagnostics.at:215 Special files diagnostics 130: diagnostics.at:238 Locations from M4 diagnostics 131: diagnostics.at:261 Tabulations and multibyte characters from M4 diagnostics 132: diagnostics.at:279 Carriage return diagnostics 448: calc.at:849 Calculator lalr1.d d 449: calc.at:858 Calculator D d 450: calc.at:861 Calculator D parse.error=verbose api.prefix={calc} %verbose d ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## # -*- compilation -*- 252. headers.at:186: testing Sane headers: %locations %debug c++ ... ./headers.at:186: bison --color=no -fno-caret -d -o input.cc input.y ./headers.at:186: $CXX $CXXFLAGS $CPPFLAGS -c -o input.o input.cc stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from input.hh:90, from input.cc:50: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from input.hh:48, from input.cc:50: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./headers.at:186: exit code was 1, expected 0 252. headers.at:186: 252. Sane headers: %locations %debug c++ (headers.at:186): FAILED (headers.at:186) # -*- compilation -*- 254. headers.at:189: testing Sane headers: %locations c++ %glr-parser ... ./headers.at:189: bison --color=no -fno-caret -d -o input.cc input.y ./headers.at:189: $CXX $CXXFLAGS $CPPFLAGS -c -o input.o input.cc stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from input.hh:81, from input.cc:79: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/iostream:38, from input.hh:41, from input.cc:79: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./headers.at:189: exit code was 1, expected 0 254. headers.at:189: 254. Sane headers: %locations c++ %glr-parser (headers.at:189): FAILED (headers.at:189) # -*- compilation -*- 255. headers.at:197: testing Several parsers ... ./headers.at:295: bison --color=no -fno-caret -d -o x1.c x1.y ./headers.at:295: $CC $CFLAGS $CPPFLAGS -c -o x1.o x1.c stderr: stdout: ./headers.at:295: echo "x1" >>expout ./headers.at:296: bison --color=no -fno-caret -d -o x2.c x2.y ./headers.at:296: $CC $CFLAGS $CPPFLAGS -c -o x2.o x2.c stderr: stdout: ./headers.at:296: echo "x2" >>expout ./headers.at:297: bison --color=no -fno-caret -d -o x3.c x3.y ./headers.at:297: $CC $CFLAGS $CPPFLAGS -c -o x3.o x3.c stderr: stdout: ./headers.at:297: echo "x3" >>expout ./headers.at:298: bison --color=no -fno-caret -d -o x4.c x4.y ./headers.at:298: $CC $CFLAGS $CPPFLAGS -c -o x4.o x4.c stderr: stdout: ./headers.at:298: echo "x4" >>expout ./headers.at:299: bison --color=no -fno-caret -d -o x5.cc x5.y ./headers.at:299: $CXX $CXXFLAGS $CPPFLAGS -c -o x5.o x5.cc stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from x5.hh:90, from x5.cc:52: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from x5.hh:48, from x5.cc:52: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./headers.at:299: exit code was 1, expected 0 255. headers.at:197: 255. Several parsers (headers.at:197): FAILED (headers.at:299) # -*- compilation -*- 282. actions.at:1049: testing Printers and Destructors: %defines lalr1.cc ... ./actions.at:1049: bison --color=no -fno-caret -o input.cc input.y ./actions.at:1049: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from input.hh:109, from input.cc:50: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/stdio.h:27, from /home/richard/bison-3.4.2/lib/stdio.h:43, from input.y:10, from input.cc:50: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./actions.at:1049: exit code was 1, expected 0 282. actions.at:1049: 282. Printers and Destructors: %defines lalr1.cc (actions.at:1049): FAILED (actions.at:1049) # -*- compilation -*- 283. actions.at:1050: testing Printers and Destructors with union: %defines lalr1.cc ... ./actions.at:1050: bison --color=no -fno-caret -o input.cc input.y ./actions.at:1050: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from input.hh:109, from input.cc:50: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/stdio.h:27, from /home/richard/bison-3.4.2/lib/stdio.h:43, from input.y:10, from input.cc:50: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./actions.at:1050: exit code was 1, expected 0 283. actions.at:1050: 283. Printers and Destructors with union: %defines lalr1.cc (actions.at:1050): FAILED (actions.at:1050) # -*- compilation -*- 284. actions.at:1052: testing Printers and Destructors: %defines glr.cc ... ./actions.at:1052: bison --color=no -fno-caret -o input.cc input.y ./actions.at:1052: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from input.hh:100, from input.cc:79: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/stdio.h:27, from /home/richard/bison-3.4.2/lib/stdio.h:43, from input.y:10, from input.cc:79: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./actions.at:1052: exit code was 1, expected 0 284. actions.at:1052: 284. Printers and Destructors: %defines glr.cc (actions.at:1052): FAILED (actions.at:1052) # -*- compilation -*- 285. actions.at:1053: testing Printers and Destructors with union: %defines glr.cc ... ./actions.at:1053: bison --color=no -fno-caret -o input.cc input.y ./actions.at:1053: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from input.hh:100, from input.cc:79: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/stdio.h:27, from /home/richard/bison-3.4.2/lib/stdio.h:43, from input.y:10, from input.cc:79: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./actions.at:1053: exit code was 1, expected 0 285. actions.at:1053: 285. Printers and Destructors with union: %defines glr.cc (actions.at:1053): FAILED (actions.at:1053) # -*- compilation -*- 425. calc.at:790: testing Calculator C++ %defines %locations parse.error=verbose %name-prefix "calc" %verbose %yacc ... ./calc.at:790: bison --color=no -fno-caret -Wno-deprecated -o calc.cc calc.y ./calc.at:790: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc calc-main.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:98, from calc.cc:52: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc.cc:52: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:98, from calc-lex.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc-lex.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:98, from calc-main.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc-main.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./calc.at:790: exit code was 1, expected 0 425. calc.at:790: 425. Calculator C++ %defines %locations parse.error=verbose %name-prefix "calc" %verbose %yacc (calc.at:790): FAILED (calc.at:790) # -*- compilation -*- 430. calc.at:798: testing Calculator C++ %defines %locations parse.error=verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} ... ./calc.at:798: bison --color=no -fno-caret -Wno-deprecated -o calc.cc calc.y ./calc.at:798: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc calc-main.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:98, from calc.cc:52: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc.cc:52: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:98, from calc-lex.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc-lex.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:98, from calc-main.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc-main.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./calc.at:798: exit code was 1, expected 0 430. calc.at:798: 430. Calculator C++ %defines %locations parse.error=verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:798): FAILED (calc.at:798) # -*- compilation -*- 432. calc.at:801: testing Calculator C++ %defines %locations parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} ... ./calc.at:801: bison --color=no -fno-caret -Wno-deprecated -o calc.cc calc.y ./calc.at:801: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc calc-main.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:98, from calc.cc:52: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc.cc:52: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:98, from calc-lex.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc-lex.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:98, from calc-main.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc-main.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./calc.at:801: exit code was 1, expected 0 432. calc.at:801: 432. Calculator C++ %defines %locations parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:801): FAILED (calc.at:801) # -*- compilation -*- 434. calc.at:804: testing Calculator C++ %defines %locations api.location.file="my-location.hh" ... ./calc.at:804: bison --color=no -fno-caret -Wno-deprecated -o calc.cc calc.y ./calc.at:804: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc calc-main.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from my-location.hh:41, from calc.hh:98, from calc.cc:50: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc.cc:50: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from my-location.hh:41, from calc.hh:98, from calc-lex.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc-lex.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from my-location.hh:41, from calc.hh:98, from calc-main.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:56, from calc-main.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./calc.at:804: exit code was 1, expected 0 434. calc.at:804: 434. Calculator C++ %defines %locations api.location.file="my-location.hh" (calc.at:804): FAILED (calc.at:804) # -*- compilation -*- 435. calc.at:806: testing Calculator C++ %no-lines %defines %locations api.location.file="my-location.hh" ... ./calc.at:806: bison --color=no -fno-caret -Wno-deprecated -o calc.cc calc.y ./calc.at:806: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc calc-main.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from my-location.hh:41, from calc.hh:96, from calc.cc:48: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:54, from calc.cc:48: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from my-location.hh:41, from calc.hh:96, from calc-lex.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:54, from calc-lex.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from my-location.hh:41, from calc.hh:96, from calc-main.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from calc.hh:54, from calc-main.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./calc.at:806: exit code was 1, expected 0 435. calc.at:806: 435. Calculator C++ %no-lines %defines %locations api.location.file="my-location.hh" (calc.at:806): FAILED (calc.at:806) # -*- compilation -*- 445. calc.at:836: testing Calculator C++ %glr-parser %locations %defines parse.error=verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} ... ./calc.at:836: bison --color=no -fno-caret -Wno-deprecated -o calc.cc calc.y ./calc.at:836: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc calc-main.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:89, from calc.cc:83: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/iostream:38, from calc.hh:49, from calc.cc:83: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:89, from calc-lex.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/iostream:38, from calc.hh:49, from calc-lex.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:89, from calc-main.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/iostream:38, from calc.hh:49, from calc-main.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./calc.at:836: exit code was 1, expected 0 445. calc.at:836: 445. Calculator C++ %glr-parser %locations %defines parse.error=verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:836): FAILED (calc.at:836) # -*- compilation -*- 446. calc.at:837: testing Calculator C++ %glr-parser %locations %defines parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} ... ./calc.at:837: bison --color=no -fno-caret -Wno-deprecated -o calc.cc calc.y ./calc.at:837: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc calc-main.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:89, from calc.cc:85: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/iostream:38, from calc.hh:49, from calc.cc:85: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:89, from calc-lex.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/iostream:38, from calc.hh:49, from calc-lex.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:89, from calc-main.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/iostream:38, from calc.hh:49, from calc-main.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./calc.at:837: exit code was 1, expected 0 446. calc.at:837: 446. Calculator C++ %glr-parser %locations %defines parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:837): FAILED (calc.at:837) # -*- compilation -*- 447. calc.at:839: testing Calculator C++ %glr-parser %no-lines %locations %defines parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} ... ./calc.at:839: bison --color=no -fno-caret -Wno-deprecated -o calc.cc calc.y ./calc.at:839: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc calc-main.cc $LIBS stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:87, from calc.cc:83: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/iostream:38, from calc.hh:47, from calc.cc:83: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:87, from calc-lex.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/iostream:38, from calc.hh:47, from calc-lex.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from location.hh:41, from calc.hh:87, from calc-main.cc:7: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/iostream:38, from calc.hh:47, from calc-main.cc:7: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./calc.at:839: exit code was 1, expected 0 447. calc.at:839: 447. Calculator C++ %glr-parser %no-lines %locations %defines parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:839): FAILED (calc.at:839) # -*- compilation -*- 525. c++.at:1399: testing Shared locations ... ./c++.at:1437: bison --color=no -fno-caret -fcaret -o x1.cc x1.yy ./c++.at:1437: $CXX $CXXFLAGS $CPPFLAGS -Iinclude -c -o x1.o x1.cc stderr: In file included from /usr/include/c++/4.9/cmath:44:0, from /usr/include/c++/4.9/random:38, from /usr/include/c++/4.9/bits/stl_algo.h:66, from /usr/include/c++/4.9/algorithm:62, from include/ast/loc.hh:41, from x1.hh:90, from x1.cc:50: /home/richard/bison-3.4.2/lib/math.h: In function 'bool isnan(double)': /home/richard/bison-3.4.2/lib/math.h:2849:1: error: ambiguating new declaration of 'bool isnan(double)' _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan, isnan, bool) ^ In file included from /usr/include/features.h:374:0, from /usr/include/i386-linux-gnu/c++/4.9/bits/os_defines.h:39, from /usr/include/i386-linux-gnu/c++/4.9/bits/c++config.h:430, from /usr/include/c++/4.9/cstdlib:41, from x1.hh:48, from x1.cc:50: /usr/include/i386-linux-gnu/bits/mathcalls.h:234:1: note: old declaration 'int isnan(double)' __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__)); ^ stdout: ./c++.at:1437: exit code was 1, expected 0 525. c++.at:1399: 525. Shared locations (c++.at:1399): FAILED (c++.at:1437) ## ------------- ## ## ../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 GNU Bison configure 3.4.2, which was | generated by GNU Autoconf 2.69. Invocation command line was | | $ ./configure | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = debian | uname -m = i686 | uname -r = 3.16.0-4-686-pae | uname -s = Linux | uname -v = #1 SMP Debian 3.16.7-ckt9-2 (2015-04-13) | | /usr/bin/uname -p = unknown | /bin/uname -X = unknown | | /bin/arch = unknown | /usr/bin/arch -k = unknown | /usr/convex/getsysinfo = unknown | /usr/bin/hostinfo = unknown | /bin/machine = unknown | /usr/bin/oslevel = unknown | /bin/universe = unknown | | PATH: /usr/local/bin | PATH: /usr/bin | PATH: /bin | PATH: /usr/local/games | PATH: /usr/games | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:4082: checking for a BSD-compatible install | configure:4150: result: /usr/bin/install -c | configure:4161: checking whether build environment is sane | configure:4216: result: yes | configure:4367: checking for a thread-safe mkdir -p | configure:4406: result: /bin/mkdir -p | configure:4413: checking for gawk | configure:4429: found /usr/bin/gawk | configure:4440: result: gawk | configure:4451: checking whether make sets $(MAKE) | configure:4473: result: yes | configure:4502: checking whether make supports nested variables | configure:4519: result: yes | configure:4656: checking whether make supports nested variables | configure:4673: result: yes | configure:4692: checking whether make supports the include directive | configure:4707: make -f confmf.GNU && cat confinc.out | this is the am__doit target | configure:4710: $? = 0 | configure:4729: result: yes (GNU style) | configure:4799: checking for gcc | configure:4815: found /usr/bin/gcc | configure:4826: result: gcc | configure:5149: checking for C compiler version | configure:5158: gcc --version >&5 | gcc (Debian 4.9.2-10+deb8u2) 4.9.2 | Copyright (C) 2014 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:5169: $? = 0 | configure:5158: gcc -v >&5 | Using built-in specs. | COLLECT_GCC=gcc | COLLECT_LTO_WRAPPER=/usr/lib/gcc/i586-linux-gnu/4.9/lto-wrapper | Target: i586-linux-gnu | Configured with: ../src/configure -v --with-pkgversion='Debian 4.9.2-10+deb8u2' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --with-arch-32=i586 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i586-linux-gnu --host=i586-linux-gnu --target=i586-linux-gnu | Thread model: posix | gcc version 4.9.2 (Debian 4.9.2-10+deb8u2) | configure:5169: $? = 0 | configure:5158: gcc -V >&5 | gcc: error: unrecognized command line option '-V' | gcc: fatal error: no input files | compilation terminated. | configure:5169: $? = 4 | configure:5158: gcc -qversion >&5 | gcc: error: unrecognized command line option '-qversion' | gcc: fatal error: no input files | compilation terminated. | configure:5169: $? = 4 | configure:5158: gcc -version >&5 | gcc: error: unrecognized command line option '-version' | gcc: fatal error: no input files | compilation terminated. | configure:5169: $? = 4 | configure:5189: checking whether the C compiler works | configure:5211: gcc conftest.c >&5 | configure:5215: $? = 0 | configure:5263: result: yes | configure:5266: checking for C compiler default output file name | configure:5268: result: a.out | configure:5274: checking for suffix of executables | configure:5281: gcc -o conftest conftest.c >&5 | configure:5285: $? = 0 | configure:5307: result: | configure:5329: checking whether we are cross compiling | configure:5337: gcc -o conftest conftest.c >&5 | configure:5341: $? = 0 | configure:5348: ./conftest | configure:5352: $? = 0 | configure:5367: result: no | configure:5372: checking for suffix of object files | configure:5394: gcc -c conftest.c >&5 | configure:5398: $? = 0 | configure:5419: result: o | configure:5423: checking whether we are using the GNU C compiler | configure:5442: gcc -c conftest.c >&5 | configure:5442: $? = 0 | configure:5451: result: yes | configure:5460: checking whether gcc accepts -g | configure:5480: gcc -c -g conftest.c >&5 | configure:5480: $? = 0 | configure:5521: result: yes | configure:5538: checking for gcc option to enable C11 features | configure:5741: gcc -c -g -O2 conftest.c >&5 | conftest.c:63:29: error: expected ';', ',' or ')' before 'text' | test_restrict (ccp restrict text) | ^ | conftest.c:136:12: error: 'syntax' undeclared here (not in a function) | #define u8 syntax error! | ^ | conftest.c:137:29: note: in expansion of macro 'u8' | char const utf8_literal[] = u8"happens to be ASCII" "another string"; | ^ | conftest.c:136:19: error: expected ',' or ';' before 'error' | #define u8 syntax error! | ^ | conftest.c:137:29: note: in expansion of macro 'u8' | char const utf8_literal[] = u8"happens to be ASCII" "another string"; | ^ | conftest.c: In function 'main': | conftest.c:164:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' | char *restrict newvar = "Another string"; | ^ | conftest.c:164:18: error: 'newvar' undeclared (first use in this function) | conftest.c:164:18: note: each undeclared identifier is reported only once for each function it appears in | conftest.c:174:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode | for (int i = 0; i < ia->datasize; ++i) | ^ | conftest.c:174:3: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code | configure:5741: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | /* end confdefs.h. */ | | #include | | #include | | #include | | #include | | #include | | #include | | | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | | #define debug(...) fprintf (stderr, __VA_ARGS__) | | #define showlist(...) puts (#__VA_ARGS__) | | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | | static void | | test_varargs_macros (void) | | { | | int x = 1234; | | int y = 5678; | | debug ("Flag"); | | debug ("X = %d\n", x); | | showlist (The first, second, and third items.); | | report (x>y, "x is %d but y is %d", x, y); | | } | | | | // Check long long types. | | #define BIG64 18446744073709551615ull | | #define BIG32 4294967295ul | | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | | #if !BIG_OK | | your preprocessor is broken; | | #endif | | #if BIG_OK | | #else | | your preprocessor is broken; | | #endif | | static long long int bignum = -9223372036854775807LL; | | static unsigned long long int ubignum = BIG64; | | | | struct incomplete_array | | { | | int datasize; | | double data[]; | | }; | | | | struct named_init { | | int number; | | const wchar_t *name; | | double average; | | }; | | | | typedef const char *ccp; | | | | static inline int | | test_restrict (ccp restrict text) | | { | | // See if C++-style comments work. | | // Iterate through items via the restricted pointer. | | // Also check for declarations in for loops. | | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | | continue; | | return 0; | | } | | | | // Check varargs and va_copy. | | static bool | | test_varargs (const char *format, ...) | | { | | va_list args; | | va_start (args, format); | | va_list args_copy; | | va_copy (args_copy, args); | | | | const char *str = ""; | | int number = 0; | | float fnumber = 0; | | | | while (*format) | | { | | switch (*format++) | | { | | case 's': // string | | str = va_arg (args_copy, const char *); | | break; | | case 'd': // int | | number = va_arg (args_copy, int); | | break; | | case 'f': // float | | fnumber = va_arg (args_copy, double); | | break; | | default: | | break; | | } | | } | | va_end (args_copy); | | va_end (args); | | | | return *str && number && fnumber; | | } | | // Check _Alignas. | | char _Alignas (double) aligned_as_double; | | char _Alignas (0) no_special_alignment; | | extern char aligned_as_int; | | char _Alignas (0) _Alignas (int) aligned_as_int; | | | | // Check _Alignof. | | enum | | { | | int_alignment = _Alignof (int), | | int_array_alignment = _Alignof (int[100]), | | char_alignment = _Alignof (char) | | }; | | _Static_assert (0 < -_Alignof (int), "_Alignof is signed"); | | | | // Check _Noreturn. | | int _Noreturn does_not_return (void) { for (;;) continue; } | | | | // Check _Static_assert. | | struct test_static_assert | | { | | int x; | | _Static_assert (sizeof (int) <= sizeof (long int), | | "_Static_assert does not work in struct"); | | long int y; | | }; | | | | // Check UTF-8 literals. | | #define u8 syntax error! | | char const utf8_literal[] = u8"happens to be ASCII" "another string"; | | | | // Check duplicate typedefs. | | typedef long *long_ptr; | | typedef long int *long_ptr; | | typedef long_ptr long_ptr; | | | | // Anonymous structures and unions -- taken from C11 6.7.2.1 Example 1. | | struct anonymous | | { | | union { | | struct { int i; int j; }; | | struct { int k; long int l; } w; | | }; | | int m; | | } v1; | | | | int | | main () | | { | | | | // Check bool. | | _Bool success = false; | | | | // Check restrict. | | if (test_restrict ("String literal") == 0) | | success = true; | | char *restrict newvar = "Another string"; | | | | // Check varargs. | | success &= test_varargs ("s, d' f .", "string", 65, 34.234); | | test_varargs_macros (); | | | | // Check flexible array members. | | struct incomplete_array *ia = | | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | | ia->datasize = 10; | | for (int i = 0; i < ia->datasize; ++i) | | ia->data[i] = i * 1.234; | | | | // Check named initializers. | | struct named_init ni = { | | .number = 34, | | .name = L"Test wide string", | | .average = 543.34343, | | }; | | | | ni.number = 58; | | | | int dynamic_array[ni.number]; | | dynamic_array[ni.number - 1] = 543; | | | | // work around unused variable warnings | | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | | || dynamic_array[ni.number - 1] != 543); | | | | v1.i = 2; | | v1.w.k = 5; | | _Static_assert ((offsetof (struct anonymous, i) | | == offsetof (struct anonymous, w.k)), | | "Anonymous union alignment botch"); | | | | ; | | return 0; | | } | configure:5741: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:5741: $? = 0 | configure:5763: result: -std=gnu11 | configure:6058: checking dependency style of gcc -std=gnu11 | configure:6169: result: gcc3 | configure:6243: checking for g++ | configure:6259: found /usr/bin/g++ | configure:6270: result: g++ | configure:6297: checking for C++ compiler version | configure:6306: g++ --version >&5 | g++ (Debian 4.9.2-10+deb8u2) 4.9.2 | Copyright (C) 2014 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:6317: $? = 0 | configure:6306: g++ -v >&5 | Using built-in specs. | COLLECT_GCC=g++ | COLLECT_LTO_WRAPPER=/usr/lib/gcc/i586-linux-gnu/4.9/lto-wrapper | Target: i586-linux-gnu | Configured with: ../src/configure -v --with-pkgversion='Debian 4.9.2-10+deb8u2' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --with-arch-32=i586 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i586-linux-gnu --host=i586-linux-gnu --target=i586-linux-gnu | Thread model: posix | gcc version 4.9.2 (Debian 4.9.2-10+deb8u2) | configure:6317: $? = 0 | configure:6306: g++ -V >&5 | g++: error: unrecognized command line option '-V' | g++: fatal error: no input files | compilation terminated. | configure:6317: $? = 4 | configure:6306: g++ -qversion >&5 | g++: error: unrecognized command line option '-qversion' | g++: fatal error: no input files | compilation terminated. | configure:6317: $? = 4 | configure:6321: checking whether we are using the GNU C++ compiler | configure:6340: g++ -c conftest.cpp >&5 | configure:6340: $? = 0 | configure:6349: result: yes | configure:6358: checking whether g++ accepts -g | configure:6378: g++ -c -g conftest.cpp >&5 | configure:6378: $? = 0 | configure:6419: result: yes | configure:6436: checking for g++ option to enable C++11 features | configure:6672: g++ -c -g -O2 conftest.cpp >&5 | In file included from /usr/include/c++/4.9/tuple:35:0, | from conftest.cpp:16: | /usr/include/c++/4.9/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support is currently experimental, and must be enabled with the -std=c++11 or -std=gnu++11 compiler options. | #error This file requires compiler and library support for the \ | ^ | conftest.cpp:23:16: error: 'shared_ptr' in namespace 'std' does not name a template type | typedef std::shared_ptr sptr; | ^ | conftest.cpp:24:16: error: 'weak_ptr' in namespace 'std' does not name a template type | typedef std::weak_ptr wptr; | ^ | conftest.cpp:26:16: error: 'tuple' in namespace 'std' does not name a template type | typedef std::tuple tp; | ^ | conftest.cpp:27:16: error: 'array' in namespace 'std' does not name a template type | typedef std::array int_array; | ^ | conftest.cpp:29:3: error: 'constexpr' does not name a type | constexpr int get_val() { return 20; } | ^ | conftest.cpp:29:3: note: C++11 'constexpr' only available with -std=c++11 or -std=gnu++11 | conftest.cpp: In constructor 'cxx11test::delegate::delegate()': | conftest.cpp:40:30: warning: delegating constructors only available with -std=c++11 or -std=gnu++11 | delegate(): delegate(2354) {} | ^ | conftest.cpp: At global scope: | conftest.cpp:50:24: warning: override controls (override/final) only available with -std=c++11 or -std=gnu++11 | virtual int getval() override final { return this->n * 2; } | ^ | conftest.cpp:50:26: warning: override controls (override/final) only available with -std=c++11 or -std=gnu++11 | virtual int getval() override final { return this->n * 2; } | ^ | conftest.cpp:56:16: warning: defaulted and deleted functions only available with -std=c++11 or -std=gnu++11 | nocopy() = default; | ^ | conftest.cpp:57:29: warning: defaulted and deleted functions only available with -std=c++11 or -std=gnu++11 | nocopy(const nocopy&) = delete; | ^ | conftest.cpp:58:41: warning: defaulted and deleted functions only available with -std=c++11 or -std=gnu++11 | nocopy & operator=(const nocopy&) = delete; | ^ | conftest.cpp: In function 'int main()': | conftest.cpp:107:13: error: 'i' does not name a type | for (auto i = d.begin(); i != d.end(); ++i) { total += *i; } | ^ | conftest.cpp:107:28: error: expected ';' before 'i' | for (auto i = d.begin(); i != d.end(); ++i) { total += *i; } | ^ | conftest.cpp:107:28: error: 'i' was not declared in this scope | conftest.cpp:109:8: error: 'a1' does not name a type | auto a1 = 6538; | ^ | conftest.cpp:110:8: error: 'a2' does not name a type | auto a2 = 48573953.4; | ^ | conftest.cpp:111:8: error: 'a3' does not name a type | auto a3 = "String literal"; | ^ | conftest.cpp:113:12: error: 'a2' was not declared in this scope | decltype(a2) a4 = 34895.034; | ^ | conftest.cpp:113:14: error: 'decltype' was not declared in this scope | decltype(a2) a4 = 34895.034; | ^ | conftest.cpp:117:12: error: 'get_val' is not a member of 'cxx11test' | short sa[cxx11test::get_val()] = { 0 }; | ^ | conftest.cpp:125:3: error: 'int_array' is not a member of 'cxx11test' | cxx11test::int_array array = {9, 7, 13, 15, 4, 18, 12, 10, 5, 3, 14, 19, 17, 8, 6, 20, 16, 2, 11, 1}; | ^ | conftest.cpp:126:17: error: range-based 'for' loops are not allowed in C++98 mode | for (int &x : array) { x += 23; } | ^ | conftest.cpp:126:17: error: 'array' was not declared in this scope | conftest.cpp:127:74: warning: lambda expressions only available with -std=c++11 or -std=gnu++11 | std::for_each(array.begin(), array.end(), [](int v1){ std::cout << v1; }); | ^ | conftest.cpp:130:20: error: 'cxx11test::sptr' has not been declared | using cxx11test::sptr; | ^ | conftest.cpp:131:20: error: 'cxx11test::wptr' has not been declared | using cxx11test::wptr; | ^ | conftest.cpp:133:3: error: 'sptr' was not declared in this scope | sptr sp(new std::string("ASCII string")); | ^ | conftest.cpp:134:3: error: 'wptr' was not declared in this scope | wptr wp(sp); | ^ | conftest.cpp:135:8: error: expected ';' before 'sp2' | sptr sp2(wp); | ^ | conftest.cpp:138:3: error: 'tp' is not a member of 'cxx11test' | cxx11test::tp tuple("test", 54, 45.53434); | ^ | conftest.cpp:139:14: error: 'get' is not a member of 'std' | double d = std::get<2>(tuple); | ^ | conftest.cpp:139:26: error: 'tuple' was not declared in this scope | double d = std::get<2>(tuple); | ^ | conftest.cpp:142:3: error: 'tie' is not a member of 'std' | std::tie(s,i,d) = tuple; | ^ | conftest.cpp:145:15: error: 'regex' in namespace 'std' does not name a type | static std::regex filename_regex("^_?([a-z0-9_.]+-)+[a-z0-9]+$"); | ^ | conftest.cpp:147:16: error: 'regex_search' is not a member of 'std' | bool match = std::regex_search(testmatch, filename_regex); | ^ | conftest.cpp:147:45: error: 'filename_regex' was not declared in this scope | bool match = std::regex_search(testmatch, filename_regex); | ^ | conftest.cpp:150:3: error: 'int_array' is not a member of 'cxx11test' | cxx11test::int_array array = {9, 7, 13, 15, 4, 18, 12, 10, 5, 3, 14, 19, 17, 8, 6, 20, 16, 2, 11, 1}; | ^ | conftest.cpp:151:14: error: 'cxx11test::int_array' has not been declared | cxx11test::int_array::size_type size = array.size(); | ^ | conftest.cpp:165:13: error: 'nullptr' was not declared in this scope | char *c = nullptr; | ^ | conftest.cpp:169:34: error: '>>' should be '> >' within a nested template argument list | std::vector> v1; | ^ | conftest.cpp:173:22: error: 'u8' was not declared in this scope | char const *utf8 = u8"UTF-8 string \u2500"; | ^ | conftest.cpp:174:3: error: 'char16_t' was not declared in this scope | char16_t const *utf16 = u"UTF-8 string \u2500"; | ^ | conftest.cpp:175:3: error: 'char32_t' was not declared in this scope | char32_t const *utf32 = U"UTF-32 string \u2500"; | ^ | configure:6672: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | /* end confdefs.h. */ | | | | #include | | #include | | #include | | #include | | #include | | #include | | #include | | | | namespace cxx11test | | { | | typedef std::shared_ptr sptr; | | typedef std::weak_ptr wptr; | | | | typedef std::tuple tp; | | typedef std::array int_array; | | | | constexpr int get_val() { return 20; } | | | | struct testinit | | { | | int i; | | double d; | | }; | | | | class delegate { | | public: | | delegate(int n) : n(n) {} | | delegate(): delegate(2354) {} | | | | virtual int getval() { return this->n; }; | | protected: | | int n; | | }; | | | | class overridden : public delegate { | | public: | | overridden(int n): delegate(n) {} | | virtual int getval() override final { return this->n * 2; } | | }; | | | | class nocopy { | | public: | | nocopy(int i): i(i) {} | | nocopy() = default; | | nocopy(const nocopy&) = delete; | | nocopy & operator=(const nocopy&) = delete; | | private: | | int i; | | }; | | } | | | | | | #include | | #include | | #include | | #include | | #include | | #include | | #include | | #include | | #include | | #include | | #include | | #include | | #include | | | | namespace test { | | typedef std::vector string_vec; | | typedef std::pair map_value; | | typedef std::map map_type; | | typedef std::set set_type; | | | | template | | class printer { | | public: | | printer(std::ostringstream& os): os(os) {} | | void operator() (T elem) { os << elem << std::endl; } | | private: | | std::ostringstream& os; | | }; | | } | | | | int | | main () | | { | | | | { | | // Test auto and decltype | | std::deque d; | | d.push_front(43); | | d.push_front(484); | | d.push_front(3); | | d.push_front(844); | | int total = 0; | | for (auto i = d.begin(); i != d.end(); ++i) { total += *i; } | | | | auto a1 = 6538; | | auto a2 = 48573953.4; | | auto a3 = "String literal"; | | | | decltype(a2) a4 = 34895.034; | | } | | { | | // Test constexpr | | short sa[cxx11test::get_val()] = { 0 }; | | } | | { | | // Test initializer lists | | cxx11test::testinit il = { 4323, 435234.23544 }; | | } | | { | | // Test range-based for and lambda | | cxx11test::int_array array = {9, 7, 13, 15, 4, 18, 12, 10, 5, 3, 14, 19, 17, 8, 6, 20, 16, 2, 11, 1}; | | for (int &x : array) { x += 23; } | | std::for_each(array.begin(), array.end(), [](int v1){ std::cout << v1; }); | | } | | { | | using cxx11test::sptr; | | using cxx11test::wptr; | | | | sptr sp(new std::string("ASCII string")); | | wptr wp(sp); | | sptr sp2(wp); | | } | | { | | cxx11test::tp tuple("test", 54, 45.53434); | | double d = std::get<2>(tuple); | | std::string s; | | int i; | | std::tie(s,i,d) = tuple; | | } | | { | | static std::regex filename_regex("^_?([a-z0-9_.]+-)+[a-z0-9]+$"); | | std::string testmatch("Test if this string matches"); | | bool match = std::regex_search(testmatch, filename_regex); | | } | | { | | cxx11test::int_array array = {9, 7, 13, 15, 4, 18, 12, 10, 5, 3, 14, 19, 17, 8, 6, 20, 16, 2, 11, 1}; | | cxx11test::int_array::size_type size = array.size(); | | } | | { | | // Test constructor delegation | | cxx11test::delegate d1; | | cxx11test::delegate d2(); | | cxx11test::delegate d3(45); | | } | | { | | // Test override and final | | cxx11test::overridden o1(55464); | | } | | { | | // Test nullptr | | char *c = nullptr; | | } | | { | | // Test template brackets | | std::vector> v1; | | } | | { | | // Unicode literals | | char const *utf8 = u8"UTF-8 string \u2500"; | | char16_t const *utf16 = u"UTF-8 string \u2500"; | | char32_t const *utf32 = U"UTF-32 string \u2500"; | | } | | | | | | | | try { | | // Basic string. | | std::string teststr("ASCII text"); | | teststr += " string"; | | | | // Simple vector. | | test::string_vec testvec; | | testvec.push_back(teststr); | | testvec.push_back("foo"); | | testvec.push_back("bar"); | | if (testvec.size() != 3) { | | throw std::runtime_error("vector size is not 1"); | | } | | | | // Dump vector into stringstream and obtain string. | | std::ostringstream os; | | for (test::string_vec::const_iterator i = testvec.begin(); | | i != testvec.end(); ++i) { | | if (i + 1 != testvec.end()) { | | os << teststr << '\n'; | | } | | } | | // Check algorithms work. | | std::for_each(testvec.begin(), testvec.end(), test::printer(os)); | | std::string os_out = os.str(); | | | | // Test pair and map. | | test::map_type testmap; | | testmap.insert(std::make_pair(std::string("key"), | | std::make_pair(53,false))); | | | | // Test set. | | int values[] = {9, 7, 13, 15, 4, 18, 12, 10, 5, 3, 14, 19, 17, 8, 6, 20, 16, 2, 11, 1}; | | test::set_type testset(values, values + sizeof(values)/sizeof(values[0])); | | std::list testlist(testset.begin(), testset.end()); | | std::copy(testset.begin(), testset.end(), std::back_inserter(testlist)); | | } catch (const std::exception& e) { | | std::cerr << "Caught exception: " << e.what() << std::endl; | | | | // Test fstream | | std::ofstream of("test.txt"); | | of << "Test ASCII text\n" << std::flush; | | of << "N= " << std::hex << std::setw(8) << std::left << 534 << std::endl; | | of.close(); | | } | | std::exit(0); | | | | ; | | return 0; | | } | configure:6672: g++ -std=gnu++11 -c -g -O2 conftest.cpp >&5 | configure:6672: $? = 0 | configure:6694: result: -std=gnu++11 | configure:6859: checking dependency style of g++ -std=gnu++11 | configure:6970: result: gcc3 | configure:6993: checking how to run the C preprocessor | configure:7024: gcc -std=gnu11 -E conftest.c | configure:7024: $? = 0 | configure:7038: gcc -std=gnu11 -E conftest.c | conftest.c:12:28: fatal error: ac_nonexistent.h: No such file or directory | #include | ^ | compilation terminated. | configure:7038: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | /* end confdefs.h. */ | | #include | configure:7063: result: gcc -std=gnu11 -E | configure:7083: gcc -std=gnu11 -E conftest.c | configure:7083: $? = 0 | configure:7097: gcc -std=gnu11 -E conftest.c | conftest.c:12:28: fatal error: ac_nonexistent.h: No such file or directory | #include | ^ | compilation terminated. | configure:7097: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | /* end confdefs.h. */ | | #include | configure:7126: checking for grep that handles long lines and -e | configure:7184: result: /bin/grep | configure:7189: checking for egrep | configure:7251: result: /bin/grep -E | configure:7256: checking for ANSI C header files | configure:7276: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7276: $? = 0 | configure:7349: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:7349: $? = 0 | configure:7349: ./conftest | configure:7349: $? = 0 | configure:7360: result: yes | configure:7373: checking for sys/types.h | configure:7373: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7373: $? = 0 | configure:7373: result: yes | configure:7373: checking for sys/stat.h | configure:7373: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7373: $? = 0 | configure:7373: result: yes | configure:7373: checking for stdlib.h | configure:7373: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7373: $? = 0 | configure:7373: result: yes | configure:7373: checking for string.h | configure:7373: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7373: $? = 0 | configure:7373: result: yes | configure:7373: checking for memory.h | configure:7373: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7373: $? = 0 | configure:7373: result: yes | configure:7373: checking for strings.h | configure:7373: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7373: $? = 0 | configure:7373: result: yes | configure:7373: checking for inttypes.h | configure:7373: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7373: $? = 0 | configure:7373: result: yes | configure:7373: checking for stdint.h | configure:7373: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7373: $? = 0 | configure:7373: result: yes | configure:7373: checking for unistd.h | configure:7373: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7373: $? = 0 | configure:7373: result: yes | configure:7386: checking minix/config.h usability | configure:7386: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:55:26: fatal error: minix/config.h: No such file or directory | #include | ^ | compilation terminated. | configure:7386: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:7386: result: no | configure:7386: checking minix/config.h presence | configure:7386: gcc -std=gnu11 -E conftest.c | conftest.c:22:26: fatal error: minix/config.h: No such file or directory | #include | ^ | compilation terminated. | configure:7386: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | /* end confdefs.h. */ | | #include | configure:7386: result: no | configure:7386: checking for minix/config.h | configure:7386: result: no | configure:7410: checking whether it is safe to define __EXTENSIONS__ | configure:7428: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7428: $? = 0 | configure:7435: result: yes | configure:7468: checking whether _XOPEN_SOURCE should be defined | configure:7487: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7487: $? = 0 | configure:7511: result: no | configure:7528: checking for Minix Amsterdam compiler | configure:7552: result: no | configure:7609: checking for ar | configure:7625: found /usr/bin/ar | configure:7636: result: ar | configure:7711: checking for ranlib | configure:7727: found /usr/bin/ranlib | configure:7738: result: ranlib | configure:7769: checking build system type | configure:7783: result: i686-pc-linux-gnu | configure:7803: checking host system type | configure:7816: result: i686-pc-linux-gnu | configure:7872: checking for special C compiler options needed for large files | configure:7917: result: no | configure:7923: checking for _FILE_OFFSET_BITS value needed for large files | configure:7948: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:44:3: warning: left shift count >= width of type | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | ^ | conftest.c:44:3: warning: left shift count >= width of type | conftest.c:45:24: warning: left shift count >= width of type | && LARGE_OFF_T % 2147483647 == 1) | ^ | conftest.c:45:24: warning: left shift count >= width of type | conftest.c:44:7: error: variably modified 'off_t_is_large' at file scope | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | ^ | configure:7948: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | /* end confdefs.h. */ | | #include | | /* Check that off_t can represent 2**63 - 1 correctly. | | We can't simply define LARGE_OFF_T to be 9223372036854775807, | | since some C++ compilers masquerading as C compilers | | incorrectly reject 9223372036854775807. */ | | #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) | | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | | && LARGE_OFF_T % 2147483647 == 1) | | ? 1 : -1]; | | int | | main () | | { | | | | ; | | return 0; | | } | configure:7972: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:7972: $? = 0 | configure:7980: result: 64 | configure:8379: checking whether pragma GCC diagnostic push works | configure:8401: gcc -std=gnu11 -c -Wunknown-pragmas -Werror conftest.c >&5 | configure:8401: $? = 0 | configure:8409: result: yes | configure:8427: checking whether C++ compiler handles -Werror -Wunknown-warning-option | configure:8446: g++ -std=gnu++11 -o conftest -g -O2 -Werror -Wunknown-warning-option conftest.cpp >&5 | g++: error: unrecognized command line option '-Wunknown-warning-option' | configure:8446: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | /* end confdefs.h. */ | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:8456: result: no | configure:8473: checking whether C++ compiler handles -fno-exceptions | configure:8492: g++ -std=gnu++11 -o conftest -g -O2 -fno-exceptions conftest.cpp >&5 | configure:8492: $? = 0 | configure:8502: result: yes | configure:8519: checking whether C++ compiler accepts -std=c++98 | configure:8543: g++ -std=gnu++11 -o conftest -g -O2 -std=c++98 conftest.cpp >&5 | configure:8543: $? = 0 | configure:8553: result: yes | configure:8578: checking whether C++ compiler accepts -std=c++03 | configure:8603: g++ -std=gnu++11 -o conftest -g -O2 -std=c++03 conftest.cpp >&5 | configure:8603: $? = 0 | configure:8613: result: yes | configure:8638: checking whether C++ compiler accepts -std=c++11 | configure:8714: g++ -std=gnu++11 -o conftest -g -O2 -std=c++11 conftest.cpp >&5 | configure:8714: $? = 0 | configure:8724: result: yes | configure:8749: checking whether C++ compiler accepts -std=c++14 | configure:8835: g++ -std=gnu++11 -o conftest -g -O2 -std=c++14 conftest.cpp >&5 | configure:8835: $? = 0 | configure:8845: result: yes | configure:8870: checking whether C++ compiler accepts -std=c++17 | configure:8963: g++ -std=gnu++11 -o conftest -g -O2 -std=c++17 conftest.cpp >&5 | g++: error: unrecognized command line option '-std=c++17' | configure:8963: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | /* end confdefs.h. */ | | | | #include | | | | typedef std::vector ints; | | | | | | #include | | #include | | #include | | #include | | #include | | | | // C++11 | | template | | struct check | | { | | static_assert(sizeof(int) <= sizeof(T), "not big enough"); | | }; | | | | using right_angle_brackets = check>; | | | | auto f = std::make_shared("shared_ptr"); | | | | int a; | | decltype(a) b; | | | | typedef check check_type; | | check_type c; | | check_type&& cr = static_cast(c); | | | | auto d = a; | | | | // Some versions of libstdc++ do not support std::set::emplace. | | void foo() | | { | | std::set is; | | is.emplace(42); | | } | | | | // Clang++ 3.5, for a while, was unable to process properly | | // the for-loop because its variable, r, is a typedef... | | // It failed as follows: | | // | | // error: unexpected ':' in nested name specifier; did you mean '::'? | | // for (auto r: std::set{1, 2}) | | // ^ | | // :: | | using r = std::set; | | void bar() | | { | | for (int r: std::set{1, 2}) | | continue; | | } | | | | // GCC 4.8.2 on Solaris 11.3 does not support to_string. | | auto e = std::to_string(42); | | | | // C++14 | | void mismatch() | | { | | using ints = std::vector; | | auto v1 = ints{1, 2, 3}; | | auto v2 = ints{1, 2}; | | std::mismatch(std::begin(v1), std::end(v1), | | std::begin(v2), std::end(v2)); | | } | | | | // C++17 | | namespace ns1::ns2::ns3 {} | | | | #include | | auto opt_string = std::optional{}; | | auto out = std::ostringstream{}; | | | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:8973: result: no | configure:8870: checking whether C++ compiler accepts -std=c++17 -stdlib=libc++ | configure:8963: g++ -std=gnu++11 -o conftest -g -O2 -std=c++17 -stdlib=libc++ conftest.cpp >&5 | g++: error: unrecognized command line option '-std=c++17' | g++: error: unrecognized command line option '-stdlib=libc++' | configure:8963: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | /* end confdefs.h. */ | | | | #include | | | | typedef std::vector ints; | | | | | | #include | | #include | | #include | | #include | | #include | | | | // C++11 | | template | | struct check | | { | | static_assert(sizeof(int) <= sizeof(T), "not big enough"); | | }; | | | | using right_angle_brackets = check>; | | | | auto f = std::make_shared("shared_ptr"); | | | | int a; | | decltype(a) b; | | | | typedef check check_type; | | check_type c; | | check_type&& cr = static_cast(c); | | | | auto d = a; | | | | // Some versions of libstdc++ do not support std::set::emplace. | | void foo() | | { | | std::set is; | | is.emplace(42); | | } | | | | // Clang++ 3.5, for a while, was unable to process properly | | // the for-loop because its variable, r, is a typedef... | | // It failed as follows: | | // | | // error: unexpected ':' in nested name specifier; did you mean '::'? | | // for (auto r: std::set{1, 2}) | | // ^ | | // :: | | using r = std::set; | | void bar() | | { | | for (int r: std::set{1, 2}) | | continue; | | } | | | | // GCC 4.8.2 on Solaris 11.3 does not support to_string. | | auto e = std::to_string(42); | | | | // C++14 | | void mismatch() | | { | | using ints = std::vector; | | auto v1 = ints{1, 2, 3}; | | auto v2 = ints{1, 2}; | | std::mismatch(std::begin(v1), std::end(v1), | | std::begin(v2), std::end(v2)); | | } | | | | // C++17 | | namespace ns1::ns2::ns3 {} | | | | #include | | auto opt_string = std::optional{}; | | auto out = std::ostringstream{}; | | | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:8973: result: no | configure:8998: checking whether C++ compiler accepts -std=c++2a | configure:9093: g++ -std=gnu++11 -o conftest -g -O2 -std=c++2a conftest.cpp >&5 | g++: error: unrecognized command line option '-std=c++2a' | configure:9093: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | /* end confdefs.h. */ | | | | #include | | | | typedef std::vector ints; | | | | | | #include | | #include | | #include | | #include | | #include | | | | // C++11 | | template | | struct check | | { | | static_assert(sizeof(int) <= sizeof(T), "not big enough"); | | }; | | | | using right_angle_brackets = check>; | | | | auto f = std::make_shared("shared_ptr"); | | | | int a; | | decltype(a) b; | | | | typedef check check_type; | | check_type c; | | check_type&& cr = static_cast(c); | | | | auto d = a; | | | | // Some versions of libstdc++ do not support std::set::emplace. | | void foo() | | { | | std::set is; | | is.emplace(42); | | } | | | | // Clang++ 3.5, for a while, was unable to process properly | | // the for-loop because its variable, r, is a typedef... | | // It failed as follows: | | // | | // error: unexpected ':' in nested name specifier; did you mean '::'? | | // for (auto r: std::set{1, 2}) | | // ^ | | // :: | | using r = std::set; | | void bar() | | { | | for (int r: std::set{1, 2}) | | continue; | | } | | | | // GCC 4.8.2 on Solaris 11.3 does not support to_string. | | auto e = std::to_string(42); | | | | // C++14 | | void mismatch() | | { | | using ints = std::vector; | | auto v1 = ints{1, 2, 3}; | | auto v2 = ints{1, 2}; | | std::mismatch(std::begin(v1), std::end(v1), | | std::begin(v2), std::end(v2)); | | } | | | | // C++17 | | namespace ns1::ns2::ns3 {} | | | | #include | | auto opt_string = std::optional{}; | | auto out = std::ostringstream{}; | | | | // C++2A | | | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:9103: result: no | configure:8998: checking whether C++ compiler accepts -std=c++2a -stdlib=libc++ | configure:9093: g++ -std=gnu++11 -o conftest -g -O2 -std=c++2a -stdlib=libc++ conftest.cpp >&5 | g++: error: unrecognized command line option '-std=c++2a' | g++: error: unrecognized command line option '-stdlib=libc++' | configure:9093: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | /* end confdefs.h. */ | | | | #include | | | | typedef std::vector ints; | | | | | | #include | | #include | | #include | | #include | | #include | | | | // C++11 | | template | | struct check | | { | | static_assert(sizeof(int) <= sizeof(T), "not big enough"); | | }; | | | | using right_angle_brackets = check>; | | | | auto f = std::make_shared("shared_ptr"); | | | | int a; | | decltype(a) b; | | | | typedef check check_type; | | check_type c; | | check_type&& cr = static_cast(c); | | | | auto d = a; | | | | // Some versions of libstdc++ do not support std::set::emplace. | | void foo() | | { | | std::set is; | | is.emplace(42); | | } | | | | // Clang++ 3.5, for a while, was unable to process properly | | // the for-loop because its variable, r, is a typedef... | | // It failed as follows: | | // | | // error: unexpected ':' in nested name specifier; did you mean '::'? | | // for (auto r: std::set{1, 2}) | | // ^ | | // :: | | using r = std::set; | | void bar() | | { | | for (int r: std::set{1, 2}) | | continue; | | } | | | | // GCC 4.8.2 on Solaris 11.3 does not support to_string. | | auto e = std::to_string(42); | | | | // C++14 | | void mismatch() | | { | | using ints = std::vector; | | auto v1 = ints{1, 2, 3}; | | auto v2 = ints{1, 2}; | | std::mismatch(std::begin(v1), std::end(v1), | | std::begin(v2), std::end(v2)); | | } | | | | // C++17 | | namespace ns1::ns2::ns3 {} | | | | #include | | auto opt_string = std::optional{}; | | auto out = std::ostringstream{}; | | | | // C++2A | | | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:9103: result: no | configure:9910: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:9910: $? = 0 | configure:9928: checking whether gcc -std=gnu11 supports POSIXLY_CORRECT=1 | configure:9952: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:9952: $? = 0 | configure:9966: result: yes | configure:9983: checking whether g++ -std=gnu++11 builds executables that work | configure:10018: g++ -std=gnu++11 -c -g -O2 conftest.cpp >&5 | configure:10018: $? = 0 | configure:10020: g++ -std=gnu++11 -o conftest -g -O2 conftest.o >&5 | configure:10023: $? = 0 | configure:10029: ./conftest | configure:10032: $? = 0 | configure:10048: result: yes | configure:10072: checking whether g++ -std=gnu++11 supports POSIXLY_CORRECT=1 | configure:10096: g++ -std=gnu++11 -o conftest -g -O2 conftest.cpp >&5 | configure:10096: $? = 0 | configure:10110: result: yes | configure:10132: checking for dmd | configure:10162: result: no | configure:10293: checking for Java compiler | configure:10539: found /usr/bin/javac | configure:10685: javac -d . conftest.java | configure:10692: javac -source 1.7 -d . conftest.java | configure:10697: javac -d . conftestfail.java | conftestfail.java:1: error: illegal start of expression | class conftestfail { void foo () { Runnable r = () -> {}; } } | ^ | conftestfail.java:1: error: illegal start of expression | class conftestfail { void foo () { Runnable r = () -> {}; } } | ^ | conftestfail.java:1: error: illegal start of expression | class conftestfail { void foo () { Runnable r = () -> {}; } } | ^ | conftestfail.java:1: error: class, interface, or enum expected | class conftestfail { void foo () { Runnable r = () -> {}; } } | ^ | 4 errors | configure:10780: result: javac | configure:10791: checking for Java virtual machine | configure:10871: found /usr/bin/java | configure:10994: result: java | configure:11041: checking for flex | configure:11057: found /usr/bin/flex | configure:11068: result: flex | configure:11081: checking whether lex is flex | configure:11097: flex conftest.l | conftest.l:5: warning, -s option given but default rule can be matched | configure:11101: $? = 0 | configure:11109: result: yes | configure:11138: flex conftest.l | configure:11142: $? = 0 | configure:11144: checking lex output file root | configure:11158: result: lex.yy | configure:11163: checking lex library | configure:11177: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | /tmp/ccRzUeXr.o: In function `input': | /home/richard/bison-3.4.2/lex.yy.c:1186: undefined reference to `yywrap' | /tmp/ccRzUeXr.o: In function `yylex': | /home/richard/bison-3.4.2/lex.yy.c:884: undefined reference to `yywrap' | /tmp/ccRzUeXr.o: In function `main': | /home/richard/bison-3.4.2/conftest.l:17: undefined reference to `yywrap' | collect2: error: ld returned 1 exit status | configure:11177: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | /* end confdefs.h. */ | | | | #line 3 "lex.yy.c" | | | | #define YY_INT_ALIGNED short int | | | | /* A lexical scanner generated by flex */ | | | | #define FLEX_SCANNER | | #define YY_FLEX_MAJOR_VERSION 2 | | #define YY_FLEX_MINOR_VERSION 5 | | #define YY_FLEX_SUBMINOR_VERSION 39 | | #if YY_FLEX_SUBMINOR_VERSION > 0 | | #define FLEX_BETA | | #endif | | | | /* First, we deal with platform-specific or compiler-specific issues. */ | | | | /* begin standard C headers. */ | | #include | | #include | | #include | | #include | | | | /* end standard C headers. */ | | | | /* flex integer type definitions */ | | | | #ifndef FLEXINT_H | | #define FLEXINT_H | | | | /* C99 systems have . Non-C99 systems may or may not. */ | | | | #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L | | | | /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, | | * if you want the limit (max/min) macros for int types. | | */ | | #ifndef __STDC_LIMIT_MACROS | | #define __STDC_LIMIT_MACROS 1 | | #endif | | | | #include | | typedef int8_t flex_int8_t; | | typedef uint8_t flex_uint8_t; | | typedef int16_t flex_int16_t; | | typedef uint16_t flex_uint16_t; | | typedef int32_t flex_int32_t; | | typedef uint32_t flex_uint32_t; | | #else | | typedef signed char flex_int8_t; | | typedef short int flex_int16_t; | | typedef int flex_int32_t; | | typedef unsigned char flex_uint8_t; | | typedef unsigned short int flex_uint16_t; | | typedef unsigned int flex_uint32_t; | | | | /* Limits of integral types. */ | | #ifndef INT8_MIN | | #define INT8_MIN (-128) | | #endif | | #ifndef INT16_MIN | | #define INT16_MIN (-32767-1) | | #endif | | #ifndef INT32_MIN | | #define INT32_MIN (-2147483647-1) | | #endif | | #ifndef INT8_MAX | | #define INT8_MAX (127) | | #endif | | #ifndef INT16_MAX | | #define INT16_MAX (32767) | | #endif | | #ifndef INT32_MAX | | #define INT32_MAX (2147483647) | | #endif | | #ifndef UINT8_MAX | | #define UINT8_MAX (255U) | | #endif | | #ifndef UINT16_MAX | | #define UINT16_MAX (65535U) | | #endif | | #ifndef UINT32_MAX | | #define UINT32_MAX (4294967295U) | | #endif | | | | #endif /* ! C99 */ | | | | #endif /* ! FLEXINT_H */ | | | | #ifdef __cplusplus | | | | /* The "const" storage-class-modifier is valid. */ | | #define YY_USE_CONST | | | | #else /* ! __cplusplus */ | | | | /* C99 requires __STDC__ to be defined as 1. */ | | #if defined (__STDC__) | | | | #define YY_USE_CONST | | | | #endif /* defined (__STDC__) */ | | #endif /* ! __cplusplus */ | | | | #ifdef YY_USE_CONST | | #define yyconst const | | #else | | #define yyconst | | #endif | | | | /* Returned upon end-of-file. */ | | #define YY_NULL 0 | | | | /* Promotes a possibly negative, possibly signed char to an unsigned | | * integer for use as an array index. If the signed char is negative, | | * we want to instead treat it as an 8-bit unsigned char, hence the | | * double cast. | | */ | | #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) | | | | /* Enter a start condition. This macro really ought to take a parameter, | | * but we do it the disgusting crufty way forced on us by the ()-less | | * definition of BEGIN. | | */ | | #define BEGIN (yy_start) = 1 + 2 * | | | | /* Translate the current start state into a value that can be later handed | | * to BEGIN to return to the state. The YYSTATE alias is for lex | | * compatibility. | | */ | | #define YY_START (((yy_start) - 1) / 2) | | #define YYSTATE YY_START | | | | /* Action number for EOF rule of a given start state. */ | | #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) | | | | /* Special action meaning "start processing a new file". */ | | #define YY_NEW_FILE yyrestart(yyin ) | | | | #define YY_END_OF_BUFFER_CHAR 0 | | | | /* Size of default input buffer. */ | | #ifndef YY_BUF_SIZE | | #ifdef __ia64__ | | /* On IA-64, the buffer size is 16k, not 8k. | | * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. | | * Ditto for the __ia64__ case accordingly. | | */ | | #define YY_BUF_SIZE 32768 | | #else | | #define YY_BUF_SIZE 16384 | | #endif /* __ia64__ */ | | #endif | | | | /* The state buf must be large enough to hold one state per character in the main buffer. | | */ | | #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) | | | | #ifndef YY_TYPEDEF_YY_BUFFER_STATE | | #define YY_TYPEDEF_YY_BUFFER_STATE | | typedef struct yy_buffer_state *YY_BUFFER_STATE; | | #endif | | | | #ifndef YY_TYPEDEF_YY_SIZE_T | | #define YY_TYPEDEF_YY_SIZE_T | | typedef size_t yy_size_t; | | #endif | | | | extern yy_size_t yyleng; | | | | extern FILE *yyin, *yyout; | | | | #define EOB_ACT_CONTINUE_SCAN 0 | | #define EOB_ACT_END_OF_FILE 1 | | #define EOB_ACT_LAST_MATCH 2 | | | | #define YY_LESS_LINENO(n) | | #define YY_LINENO_REWIND_TO(ptr) | | | | /* Return all but the first "n" matched characters back to the input stream. */ | | #define yyless(n) \ | | do \ | | { \ | | /* Undo effects of setting up yytext. */ \ | | int yyless_macro_arg = (n); \ | | YY_LESS_LINENO(yyless_macro_arg);\ | | *yy_cp = (yy_hold_char); \ | | YY_RESTORE_YY_MORE_OFFSET \ | | (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ | | YY_DO_BEFORE_ACTION; /* set up yytext again */ \ | | } \ | | while ( 0 ) | | | | #define unput(c) yyunput( c, (yytext_ptr) ) | | | | #ifndef YY_STRUCT_YY_BUFFER_STATE | | #define YY_STRUCT_YY_BUFFER_STATE | | struct yy_buffer_state | | { | | FILE *yy_input_file; | | | | char *yy_ch_buf; /* input buffer */ | | char *yy_buf_pos; /* current position in input buffer */ | | | | /* Size of input buffer in bytes, not including room for EOB | | * characters. | | */ | | yy_size_t yy_buf_size; | | | | /* Number of characters read into yy_ch_buf, not including EOB | | * characters. | | */ | | yy_size_t yy_n_chars; | | | | /* Whether we "own" the buffer - i.e., we know we created it, | | * and can realloc() it to grow it, and should free() it to | | * delete it. | | */ | | int yy_is_our_buffer; | | | | /* Whether this is an "interactive" input source; if so, and | | * if we're using stdio for input, then we want to use getc() | | * instead of fread(), to make sure we stop fetching input after | | * each newline. | | */ | | int yy_is_interactive; | | | | /* Whether we're considered to be at the beginning of a line. | | * If so, '^' rules will be active on the next match, otherwise | | * not. | | */ | | int yy_at_bol; | | | | int yy_bs_lineno; /**< The line count. */ | | int yy_bs_column; /**< The column count. */ | | | | /* Whether to try to fill the input buffer when we reach the | | * end of it. | | */ | | int yy_fill_buffer; | | | | int yy_buffer_status; | | | | #define YY_BUFFER_NEW 0 | | #define YY_BUFFER_NORMAL 1 | | /* When an EOF's been seen but there's still some text to process | | * then we mark the buffer as YY_EOF_PENDING, to indicate that we | | * shouldn't try reading from the input source any more. We might | | * still have a bunch of tokens to match, though, because of | | * possible backing-up. | | * | | * When we actually see the EOF, we change the status to "new" | | * (via yyrestart()), so that the user can continue scanning by | | * just pointing yyin at a new input file. | | */ | | #define YY_BUFFER_EOF_PENDING 2 | | | | }; | | #endif /* !YY_STRUCT_YY_BUFFER_STATE */ | | | | /* Stack of input buffers. */ | | static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ | | static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ | | static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ | | | | /* We provide macros for accessing buffer states in case in the | | * future we want to put the buffer states in a more general | | * "scanner state". | | * | | * Returns the top of the stack, or NULL. | | */ | | #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ | | ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ | | : NULL) | | | | /* Same as previous macro, but useful when we know that the buffer stack is not | | * NULL or when we need an lvalue. For internal use only. | | */ | | #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] | | | | /* yy_hold_char holds the character lost when yytext is formed. */ | | static char yy_hold_char; | | static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */ | | yy_size_t yyleng; | | | | /* Points to current character in buffer. */ | | static char *yy_c_buf_p = (char *) 0; | | static int yy_init = 0; /* whether we need to initialize */ | | static int yy_start = 0; /* start state number */ | | | | /* Flag which is used to allow yywrap()'s to do buffer switches | | * instead of setting up a fresh yyin. A bit of a hack ... | | */ | | static int yy_did_buffer_switch_on_eof; | | | | void yyrestart (FILE *input_file ); | | void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); | | YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); | | void yy_delete_buffer (YY_BUFFER_STATE b ); | | void yy_flush_buffer (YY_BUFFER_STATE b ); | | void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); | | void yypop_buffer_state (void ); | | | | static void yyensure_buffer_stack (void ); | | static void yy_load_buffer_state (void ); | | static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); | | | | #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) | | | | YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); | | YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); | | YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len ); | | | | void *yyalloc (yy_size_t ); | | void *yyrealloc (void *,yy_size_t ); | | void yyfree (void * ); | | | | #define yy_new_buffer yy_create_buffer | | | | #define yy_set_interactive(is_interactive) \ | | { \ | | if ( ! YY_CURRENT_BUFFER ){ \ | | yyensure_buffer_stack (); \ | | YY_CURRENT_BUFFER_LVALUE = \ | | yy_create_buffer(yyin,YY_BUF_SIZE ); \ | | } \ | | YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ | | } | | | | #define yy_set_bol(at_bol) \ | | { \ | | if ( ! YY_CURRENT_BUFFER ){\ | | yyensure_buffer_stack (); \ | | YY_CURRENT_BUFFER_LVALUE = \ | | yy_create_buffer(yyin,YY_BUF_SIZE ); \ | | } \ | | YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ | | } | | | | #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) | | | | /* Begin user sect3 */ | | | | typedef unsigned char YY_CHAR; | | | | FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; | | | | typedef int yy_state_type; | | | | extern int yylineno; | | | | int yylineno = 1; | | | | extern char *yytext; | | #define yytext_ptr yytext | | | | static yy_state_type yy_get_previous_state (void ); | | static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); | | static int yy_get_next_buffer (void ); | | static void yy_fatal_error (yyconst char msg[] ); | | | | /* Done after the current pattern has been matched and before the | | * corresponding action - sets up yytext. | | */ | | #define YY_DO_BEFORE_ACTION \ | | (yytext_ptr) = yy_bp; \ | | (yytext_ptr) -= (yy_more_len); \ | | yyleng = (size_t) (yy_cp - (yytext_ptr)); \ | | (yy_hold_char) = *yy_cp; \ | | *yy_cp = '\0'; \ | | (yy_c_buf_p) = yy_cp; | | | | #define YY_NUM_RULES 8 | | #define YY_END_OF_BUFFER 9 | | /* This struct is not used in this scanner, | | but its presence is necessary. */ | | struct yy_trans_info | | { | | flex_int32_t yy_verify; | | flex_int32_t yy_nxt; | | }; | | static yyconst flex_int16_t yy_acclist[23] = | | { 0, | | 9, 7, 8, 8, 1, 7, 8, 2, 7, 8, | | 3, 7, 8, 4, 7, 8, 5, 7, 8, 6, | | 7, 8 | | } ; | | | | static yyconst flex_int16_t yy_accept[14] = | | { 0, | | 1, 1, 1, 2, 4, 5, 8, 11, 14, 17, | | 20, 23, 23 | | } ; | | | | static yyconst flex_int32_t yy_ec[256] = | | { 0, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 3, 4, 5, 6, | | | | 7, 8, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1 | | } ; | | | | static yyconst flex_int32_t yy_meta[9] = | | { 0, | | 1, 1, 1, 1, 1, 1, 1, 1 | | } ; | | | | static yyconst flex_int16_t yy_base[13] = | | { 0, | | 0, 0, 9, 10, 10, 10, 10, 10, 10, 10, | | 10, 10 | | } ; | | | | static yyconst flex_int16_t yy_def[13] = | | { 0, | | 12, 1, 12, 12, 12, 12, 12, 12, 12, 12, | | 12, 0 | | } ; | | | | static yyconst flex_int16_t yy_nxt[19] = | | { 0, | | 4, 5, 6, 7, 8, 9, 10, 11, 12, 3, | | 12, 12, 12, 12, 12, 12, 12, 12 | | } ; | | | | static yyconst flex_int16_t yy_chk[19] = | | { 0, | | 1, 1, 1, 1, 1, 1, 1, 1, 3, 12, | | 12, 12, 12, 12, 12, 12, 12, 12 | | } ; | | | | extern int yy_flex_debug; | | int yy_flex_debug = 0; | | | | static yy_state_type *yy_state_buf=0, *yy_state_ptr=0; | | static char *yy_full_match; | | static int yy_lp; | | #define REJECT \ | | { \ | | *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \ | | yy_cp = (yy_full_match); /* restore poss. backed-over text */ \ | | ++(yy_lp); \ | | goto find_rule; \ | | } | | | | static int yy_more_flag = 0; | | static int yy_more_len = 0; | | #define yymore() ((yy_more_flag) = 1) | | #define YY_MORE_ADJ (yy_more_len) | | #define YY_RESTORE_YY_MORE_OFFSET | | char *yytext; | | #line 1 "conftest.l" | | #line 478 "lex.yy.c" | | | | #define INITIAL 0 | | | | #ifndef YY_NO_UNISTD_H | | /* Special case for "unistd.h", since it is non-ANSI. We include it way | | * down here because we want the user's section 1 to have been scanned first. | | * The user has a chance to override it with an option. | | */ | | #include | | #endif | | | | #ifndef YY_EXTRA_TYPE | | #define YY_EXTRA_TYPE void * | | #endif | | | | static int yy_init_globals (void ); | | | | /* Accessor methods to globals. | | These are made visible to non-reentrant scanners for convenience. */ | | | | int yylex_destroy (void ); | | | | int yyget_debug (void ); | | | | void yyset_debug (int debug_flag ); | | | | YY_EXTRA_TYPE yyget_extra (void ); | | | | void yyset_extra (YY_EXTRA_TYPE user_defined ); | | | | FILE *yyget_in (void ); | | | | void yyset_in (FILE * in_str ); | | | | FILE *yyget_out (void ); | | | | void yyset_out (FILE * out_str ); | | | | yy_size_t yyget_leng (void ); | | | | char *yyget_text (void ); | | | | int yyget_lineno (void ); | | | | void yyset_lineno (int line_number ); | | | | /* Macros after this point can all be overridden by user definitions in | | * section 1. | | */ | | | | #ifndef YY_SKIP_YYWRAP | | #ifdef __cplusplus | | extern "C" int yywrap (void ); | | #else | | extern int yywrap (void ); | | #endif | | #endif | | | | static void yyunput (int c,char *buf_ptr ); | | | | #ifndef yytext_ptr | | static void yy_flex_strncpy (char *,yyconst char *,int ); | | #endif | | | | #ifdef YY_NEED_STRLEN | | static int yy_flex_strlen (yyconst char * ); | | #endif | | | | #ifndef YY_NO_INPUT | | | | #ifdef __cplusplus | | static int yyinput (void ); | | #else | | static int input (void ); | | #endif | | | | #endif | | | | /* Amount of stuff to slurp up with each read. */ | | #ifndef YY_READ_BUF_SIZE | | #ifdef __ia64__ | | /* On IA-64, the buffer size is 16k, not 8k */ | | #define YY_READ_BUF_SIZE 16384 | | #else | | #define YY_READ_BUF_SIZE 8192 | | #endif /* __ia64__ */ | | #endif | | | | /* Copy whatever the last rule matched to the standard output. */ | | #ifndef ECHO | | /* This used to be an fputs(), but since the string might contain NUL's, | | * we now use fwrite(). | | */ | | #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) | | #endif | | | | /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, | | * is returned in "result". | | */ | | #ifndef YY_INPUT | | #define YY_INPUT(buf,result,max_size) \ | | if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ | | { \ | | int c = '*'; \ | | int n; \ | | for ( n = 0; n < max_size && \ | | (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ | | buf[n] = (char) c; \ | | if ( c == '\n' ) \ | | buf[n++] = (char) c; \ | | if ( c == EOF && ferror( yyin ) ) \ | | YY_FATAL_ERROR( "input in flex scanner failed" ); \ | | result = n; \ | | } \ | | else \ | | { \ | | errno=0; \ | | while ( (result = fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ | | { \ | | if( errno != EINTR) \ | | { \ | | YY_FATAL_ERROR( "input in flex scanner failed" ); \ | | break; \ | | } \ | | errno=0; \ | | clearerr(yyin); \ | | } \ | | }\ | | \ | | | | #endif | | | | /* No semi-colon after return; correct usage is to write "yyterminate();" - | | * we don't want an extra ';' after the "return" because that will cause | | * some compilers to complain about unreachable statements. | | */ | | #ifndef yyterminate | | #define yyterminate() return YY_NULL | | #endif | | | | /* Number of entries by which start-condition stack grows. */ | | #ifndef YY_START_STACK_INCR | | #define YY_START_STACK_INCR 25 | | #endif | | | | /* Report a fatal error. */ | | #ifndef YY_FATAL_ERROR | | #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) | | #endif | | | | /* end tables serialization structures and prototypes */ | | | | /* Default declaration of generated scanner - a define so the user can | | * easily add parameters. | | */ | | #ifndef YY_DECL | | #define YY_DECL_IS_OURS 1 | | | | extern int yylex (void); | | | | #define YY_DECL int yylex (void) | | #endif /* !YY_DECL */ | | | | /* Code executed at the beginning of each rule, after yytext and yyleng | | * have been set up. | | */ | | #ifndef YY_USER_ACTION | | #define YY_USER_ACTION | | #endif | | | | /* Code executed at the end of each rule. */ | | #ifndef YY_BREAK | | #define YY_BREAK break; | | #endif | | | | #define YY_RULE_SETUP \ | | YY_USER_ACTION | | | | /** The main scanner function which does all the work. | | */ | | YY_DECL | | { | | register yy_state_type yy_current_state; | | register char *yy_cp, *yy_bp; | | register int yy_act; | | | | if ( !(yy_init) ) | | { | | (yy_init) = 1; | | | | #ifdef YY_USER_INIT | | YY_USER_INIT; | | #endif | | | | /* Create the reject buffer large enough to save one state per allowed character. */ | | if ( ! (yy_state_buf) ) | | (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE ); | | if ( ! (yy_state_buf) ) | | YY_FATAL_ERROR( "out of dynamic memory in yylex()" ); | | | | if ( ! (yy_start) ) | | (yy_start) = 1; /* first start state */ | | | | if ( ! yyin ) | | yyin = stdin; | | | | if ( ! yyout ) | | yyout = stdout; | | | | if ( ! YY_CURRENT_BUFFER ) { | | yyensure_buffer_stack (); | | YY_CURRENT_BUFFER_LVALUE = | | yy_create_buffer(yyin,YY_BUF_SIZE ); | | } | | | | yy_load_buffer_state( ); | | } | | | | { | | #line 1 "conftest.l" | | | | #line 700 "lex.yy.c" | | | | while ( 1 ) /* loops until end-of-file is reached */ | | { | | (yy_more_len) = 0; | | if ( (yy_more_flag) ) | | { | | (yy_more_len) = (yy_c_buf_p) - (yytext_ptr); | | (yy_more_flag) = 0; | | } | | yy_cp = (yy_c_buf_p); | | | | /* Support of yytext. */ | | *yy_cp = (yy_hold_char); | | | | /* yy_bp points to the position in yy_ch_buf of the start of | | * the current run. | | */ | | yy_bp = yy_cp; | | | | yy_current_state = (yy_start); | | | | (yy_state_ptr) = (yy_state_buf); | | *(yy_state_ptr)++ = yy_current_state; | | | | yy_match: | | do | | { | | register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | | { | | yy_current_state = (int) yy_def[yy_current_state]; | | if ( yy_current_state >= 13 ) | | yy_c = yy_meta[(unsigned int) yy_c]; | | } | | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | | *(yy_state_ptr)++ = yy_current_state; | | ++yy_cp; | | } | | while ( yy_base[yy_current_state] != 10 ); | | | | yy_find_action: | | yy_current_state = *--(yy_state_ptr); | | (yy_lp) = yy_accept[yy_current_state]; | | find_rule: /* we branch to this label when backing up */ | | for ( ; ; ) /* until we find what rule we matched */ | | { | | if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] ) | | { | | yy_act = yy_acclist[(yy_lp)]; | | { | | (yy_full_match) = yy_cp; | | break; | | } | | } | | --yy_cp; | | yy_current_state = *--(yy_state_ptr); | | (yy_lp) = yy_accept[yy_current_state]; | | } | | | | YY_DO_BEFORE_ACTION; | | | | do_action: /* This label is used only to access EOF actions. */ | | | | switch ( yy_act ) | | { /* beginning of action switch */ | | case 1: | | YY_RULE_SETUP | | #line 2 "conftest.l" | | { ECHO; } | | YY_BREAK | | case 2: | | YY_RULE_SETUP | | #line 3 "conftest.l" | | { REJECT; } | | YY_BREAK | | case 3: | | YY_RULE_SETUP | | #line 4 "conftest.l" | | { yymore (); } | | YY_BREAK | | case 4: | | YY_RULE_SETUP | | #line 5 "conftest.l" | | { yyless (1); } | | YY_BREAK | | case 5: | | YY_RULE_SETUP | | #line 6 "conftest.l" | | { /* IRIX 6.5 flex 2.5.4 underquotes its yyless argument. */ | | yyless ((input () != 0)); } | | YY_BREAK | | case 6: | | YY_RULE_SETUP | | #line 8 "conftest.l" | | { unput (yytext[0]); } | | YY_BREAK | | case 7: | | YY_RULE_SETUP | | #line 9 "conftest.l" | | { BEGIN INITIAL; } | | YY_BREAK | | case 8: | | YY_RULE_SETUP | | #line 10 "conftest.l" | | ECHO; | | YY_BREAK | | #line 807 "lex.yy.c" | | case YY_STATE_EOF(INITIAL): | | yyterminate(); | | | | case YY_END_OF_BUFFER: | | { | | /* Amount of text matched not including the EOB char. */ | | int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; | | | | /* Undo the effects of YY_DO_BEFORE_ACTION. */ | | *yy_cp = (yy_hold_char); | | YY_RESTORE_YY_MORE_OFFSET | | | | if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) | | { | | /* We're scanning a new file or input source. It's | | * possible that this happened because the user | | * just pointed yyin at a new source and called | | * yylex(). If so, then we have to assure | | * consistency between YY_CURRENT_BUFFER and our | | * globals. Here is the right place to do so, because | | * this is the first action (other than possibly a | | * back-up) that will match for the new input source. | | */ | | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; | | YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; | | YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; | | } | | | | /* Note that here we test for yy_c_buf_p "<=" to the position | | * of the first EOB in the buffer, since yy_c_buf_p will | | * already have been incremented past the NUL character | | * (since all states make transitions on EOB to the | | * end-of-buffer state). Contrast this with the test | | * in input(). | | */ | | if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) | | { /* This was really a NUL. */ | | yy_state_type yy_next_state; | | | | (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; | | | | yy_current_state = yy_get_previous_state( ); | | | | /* Okay, we're now positioned to make the NUL | | * transition. We couldn't have | | * yy_get_previous_state() go ahead and do it | | * for us because it doesn't know how to deal | | * with the possibility of jamming (and we don't | | * want to build jamming into it because then it | | * will run more slowly). | | */ | | | | yy_next_state = yy_try_NUL_trans( yy_current_state ); | | | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | | | | if ( yy_next_state ) | | { | | /* Consume the NUL. */ | | yy_cp = ++(yy_c_buf_p); | | yy_current_state = yy_next_state; | | goto yy_match; | | } | | | | else | | { | | yy_cp = (yy_c_buf_p); | | goto yy_find_action; | | } | | } | | | | else switch ( yy_get_next_buffer( ) ) | | { | | case EOB_ACT_END_OF_FILE: | | { | | (yy_did_buffer_switch_on_eof) = 0; | | | | if ( yywrap( ) ) | | { | | /* Note: because we've taken care in | | * yy_get_next_buffer() to have set up | | * yytext, we can now set up | | * yy_c_buf_p so that if some total | | * hoser (like flex itself) wants to | | * call the scanner after we return the | | * YY_NULL, it'll still work - another | | * YY_NULL will get returned. | | */ | | (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; | | | | yy_act = YY_STATE_EOF(YY_START); | | goto do_action; | | } | | | | else | | { | | if ( ! (yy_did_buffer_switch_on_eof) ) | | YY_NEW_FILE; | | } | | break; | | } | | | | case EOB_ACT_CONTINUE_SCAN: | | (yy_c_buf_p) = | | (yytext_ptr) + yy_amount_of_matched_text; | | | | yy_current_state = yy_get_previous_state( ); | | | | yy_cp = (yy_c_buf_p); | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | | goto yy_match; | | | | case EOB_ACT_LAST_MATCH: | | (yy_c_buf_p) = | | &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; | | | | yy_current_state = yy_get_previous_state( ); | | | | yy_cp = (yy_c_buf_p); | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | | goto yy_find_action; | | } | | break; | | } | | | | default: | | YY_FATAL_ERROR( | | "fatal flex scanner internal error--no action found" ); | | } /* end of action switch */ | | } /* end of scanning one token */ | | } /* end of user's declarations */ | | } /* end of yylex */ | | | | /* yy_get_next_buffer - try to read in a new buffer | | * | | * Returns a code representing an action: | | * EOB_ACT_LAST_MATCH - | | * EOB_ACT_CONTINUE_SCAN - continue scanning from current position | | * EOB_ACT_END_OF_FILE - end of file | | */ | | static int yy_get_next_buffer (void) | | { | | register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; | | register char *source = (yytext_ptr); | | register int number_to_move, i; | | int ret_val; | | | | if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) | | YY_FATAL_ERROR( | | "fatal flex scanner internal error--end of buffer missed" ); | | | | if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) | | { /* Don't try to fill the buffer, so this is an EOF. */ | | if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) | | { | | /* We matched a single character, the EOB, so | | * treat this as a final EOF. | | */ | | return EOB_ACT_END_OF_FILE; | | } | | | | else | | { | | /* We matched some text prior to the EOB, first | | * process it. | | */ | | return EOB_ACT_LAST_MATCH; | | } | | } | | | | /* Try to read more data. */ | | | | /* First move last chars to start of buffer. */ | | number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; | | | | for ( i = 0; i < number_to_move; ++i ) | | *(dest++) = *(source++); | | | | if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) | | /* don't do the read, it's not guaranteed to return an EOF, | | * just force an EOF | | */ | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; | | | | else | | { | | int num_to_read = | | YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; | | | | while ( num_to_read <= 0 ) | | { /* Not enough room in the buffer - grow it. */ | | | | YY_FATAL_ERROR( | | "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); | | | | } | | | | if ( num_to_read > YY_READ_BUF_SIZE ) | | num_to_read = YY_READ_BUF_SIZE; | | | | /* Read in more data. */ | | YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), | | (yy_n_chars), num_to_read ); | | | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | | } | | | | if ( (yy_n_chars) == 0 ) | | { | | if ( number_to_move == YY_MORE_ADJ ) | | { | | ret_val = EOB_ACT_END_OF_FILE; | | yyrestart(yyin ); | | } | | | | else | | { | | ret_val = EOB_ACT_LAST_MATCH; | | YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = | | YY_BUFFER_EOF_PENDING; | | } | | } | | | | else | | ret_val = EOB_ACT_CONTINUE_SCAN; | | | | if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { | | /* Extend the array by 50%, plus the number we really need. */ | | yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); | | if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); | | } | | | | (yy_n_chars) += number_to_move; | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; | | | | (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; | | | | return ret_val; | | } | | | | /* yy_get_previous_state - get the state just before the EOB char was reached */ | | | | static yy_state_type yy_get_previous_state (void) | | { | | register yy_state_type yy_current_state; | | register char *yy_cp; | | | | yy_current_state = (yy_start); | | | | (yy_state_ptr) = (yy_state_buf); | | *(yy_state_ptr)++ = yy_current_state; | | | | for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) | | { | | register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | | { | | yy_current_state = (int) yy_def[yy_current_state]; | | if ( yy_current_state >= 13 ) | | yy_c = yy_meta[(unsigned int) yy_c]; | | } | | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | | *(yy_state_ptr)++ = yy_current_state; | | } | | | | return yy_current_state; | | } | | | | /* yy_try_NUL_trans - try to make a transition on the NUL character | | * | | * synopsis | | * next_state = yy_try_NUL_trans( current_state ); | | */ | | static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) | | { | | register int yy_is_jam; | | | | register YY_CHAR yy_c = 1; | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | | { | | yy_current_state = (int) yy_def[yy_current_state]; | | if ( yy_current_state >= 13 ) | | yy_c = yy_meta[(unsigned int) yy_c]; | | } | | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | | yy_is_jam = (yy_current_state == 12); | | if ( ! yy_is_jam ) | | *(yy_state_ptr)++ = yy_current_state; | | | | return yy_is_jam ? 0 : yy_current_state; | | } | | | | static void yyunput (int c, register char * yy_bp ) | | { | | register char *yy_cp; | | | | yy_cp = (yy_c_buf_p); | | | | /* undo effects of setting up yytext */ | | *yy_cp = (yy_hold_char); | | | | if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) | | { /* need to shift things up to make room */ | | /* +2 for EOB chars. */ | | register yy_size_t number_to_move = (yy_n_chars) + 2; | | register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ | | YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; | | register char *source = | | &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; | | | | while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) | | *--dest = *--source; | | | | yy_cp += (int) (dest - source); | | yy_bp += (int) (dest - source); | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = | | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size; | | | | if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) | | YY_FATAL_ERROR( "flex scanner push-back overflow" ); | | } | | | | *--yy_cp = (char) c; | | | | (yytext_ptr) = yy_bp; | | (yy_hold_char) = *yy_cp; | | (yy_c_buf_p) = yy_cp; | | } | | | | #ifndef YY_NO_INPUT | | #ifdef __cplusplus | | static int yyinput (void) | | #else | | static int input (void) | | #endif | | | | { | | int c; | | | | *(yy_c_buf_p) = (yy_hold_char); | | | | if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) | | { | | /* yy_c_buf_p now points to the character we want to return. | | * If this occurs *before* the EOB characters, then it's a | | * valid NUL; if not, then we've hit the end of the buffer. | | */ | | if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) | | /* This was really a NUL. */ | | *(yy_c_buf_p) = '\0'; | | | | else | | { /* need more input */ | | yy_size_t offset = (yy_c_buf_p) - (yytext_ptr); | | ++(yy_c_buf_p); | | | | switch ( yy_get_next_buffer( ) ) | | { | | case EOB_ACT_LAST_MATCH: | | /* This happens because yy_g_n_b() | | * sees that we've accumulated a | | * token and flags that we need to | | * try matching the token before | | * proceeding. But for input(), | | * there's no matching to consider. | | * So convert the EOB_ACT_LAST_MATCH | | * to EOB_ACT_END_OF_FILE. | | */ | | | | /* Reset buffer status. */ | | yyrestart(yyin ); | | | | /*FALLTHROUGH*/ | | | | case EOB_ACT_END_OF_FILE: | | { | | if ( yywrap( ) ) | | return EOF; | | | | if ( ! (yy_did_buffer_switch_on_eof) ) | | YY_NEW_FILE; | | #ifdef __cplusplus | | return yyinput(); | | #else | | return input(); | | #endif | | } | | | | case EOB_ACT_CONTINUE_SCAN: | | (yy_c_buf_p) = (yytext_ptr) + offset; | | break; | | } | | } | | } | | | | c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ | | *(yy_c_buf_p) = '\0'; /* preserve yytext */ | | (yy_hold_char) = *++(yy_c_buf_p); | | | | return c; | | } | | #endif /* ifndef YY_NO_INPUT */ | | | | /** Immediately switch to a different input stream. | | * @param input_file A readable stream. | | * | | * @note This function does not reset the start condition to @c INITIAL . | | */ | | void yyrestart (FILE * input_file ) | | { | | | | if ( ! YY_CURRENT_BUFFER ){ | | yyensure_buffer_stack (); | | YY_CURRENT_BUFFER_LVALUE = | | yy_create_buffer(yyin,YY_BUF_SIZE ); | | } | | | | yy_init_buffer(YY_CURRENT_BUFFER,input_file ); | | yy_load_buffer_state( ); | | } | | | | /** Switch to a different input buffer. | | * @param new_buffer The new input buffer. | | * | | */ | | void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) | | { | | | | /* TODO. We should be able to replace this entire function body | | * with | | * yypop_buffer_state(); | | * yypush_buffer_state(new_buffer); | | */ | | yyensure_buffer_stack (); | | if ( YY_CURRENT_BUFFER == new_buffer ) | | return; | | | | if ( YY_CURRENT_BUFFER ) | | { | | /* Flush out information for old buffer. */ | | *(yy_c_buf_p) = (yy_hold_char); | | YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | | } | | | | YY_CURRENT_BUFFER_LVALUE = new_buffer; | | yy_load_buffer_state( ); | | | | /* We don't actually know whether we did this switch during | | * EOF (yywrap()) processing, but the only time this flag | | * is looked at is after yywrap() is called, so it's safe | | * to go ahead and always set it. | | */ | | (yy_did_buffer_switch_on_eof) = 1; | | } | | | | static void yy_load_buffer_state (void) | | { | | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; | | (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; | | yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; | | (yy_hold_char) = *(yy_c_buf_p); | | } | | | | /** Allocate and initialize an input buffer state. | | * @param file A readable stream. | | * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. | | * | | * @return the allocated buffer state. | | */ | | YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) | | { | | YY_BUFFER_STATE b; | | | | b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); | | if ( ! b ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | | | | b->yy_buf_size = size; | | | | /* yy_ch_buf has to be 2 characters longer than the size given because | | * we need to put in 2 end-of-buffer characters. | | */ | | b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); | | if ( ! b->yy_ch_buf ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | | | | b->yy_is_our_buffer = 1; | | | | yy_init_buffer(b,file ); | | | | return b; | | } | | | | /** Destroy the buffer. | | * @param b a buffer created with yy_create_buffer() | | * | | */ | | void yy_delete_buffer (YY_BUFFER_STATE b ) | | { | | | | if ( ! b ) | | return; | | | | if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ | | YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; | | | | if ( b->yy_is_our_buffer ) | | yyfree((void *) b->yy_ch_buf ); | | | | yyfree((void *) b ); | | } | | | | /* Initializes or reinitializes a buffer. | | * This function is sometimes called more than once on the same buffer, | | * such as during a yyrestart() or at EOF. | | */ | | static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) | | | | { | | int oerrno = errno; | | | | yy_flush_buffer(b ); | | | | b->yy_input_file = file; | | b->yy_fill_buffer = 1; | | | | /* If b is the current buffer, then yy_init_buffer was _probably_ | | * called from yyrestart() or through yy_get_next_buffer. | | * In that case, we don't want to reset the lineno or column. | | */ | | if (b != YY_CURRENT_BUFFER){ | | b->yy_bs_lineno = 1; | | b->yy_bs_column = 0; | | } | | | | b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; | | | | errno = oerrno; | | } | | | | /** Discard all buffered characters. On the next scan, YY_INPUT will be called. | | * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. | | * | | */ | | void yy_flush_buffer (YY_BUFFER_STATE b ) | | { | | if ( ! b ) | | return; | | | | b->yy_n_chars = 0; | | | | /* We always need two end-of-buffer characters. The first causes | | * a transition to the end-of-buffer state. The second causes | | * a jam in that state. | | */ | | b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; | | b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; | | | | b->yy_buf_pos = &b->yy_ch_buf[0]; | | | | b->yy_at_bol = 1; | | b->yy_buffer_status = YY_BUFFER_NEW; | | | | if ( b == YY_CURRENT_BUFFER ) | | yy_load_buffer_state( ); | | } | | | | /** Pushes the new state onto the stack. The new state becomes | | * the current state. This function will allocate the stack | | * if necessary. | | * @param new_buffer The new state. | | * | | */ | | void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) | | { | | if (new_buffer == NULL) | | return; | | | | yyensure_buffer_stack(); | | | | /* This block is copied from yy_switch_to_buffer. */ | | if ( YY_CURRENT_BUFFER ) | | { | | /* Flush out information for old buffer. */ | | *(yy_c_buf_p) = (yy_hold_char); | | YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | | } | | | | /* Only push if top exists. Otherwise, replace top. */ | | if (YY_CURRENT_BUFFER) | | (yy_buffer_stack_top)++; | | YY_CURRENT_BUFFER_LVALUE = new_buffer; | | | | /* copied from yy_switch_to_buffer. */ | | yy_load_buffer_state( ); | | (yy_did_buffer_switch_on_eof) = 1; | | } | | | | /** Removes and deletes the top of the stack, if present. | | * The next element becomes the new top. | | * | | */ | | void yypop_buffer_state (void) | | { | | if (!YY_CURRENT_BUFFER) | | return; | | | | yy_delete_buffer(YY_CURRENT_BUFFER ); | | YY_CURRENT_BUFFER_LVALUE = NULL; | | if ((yy_buffer_stack_top) > 0) | | --(yy_buffer_stack_top); | | | | if (YY_CURRENT_BUFFER) { | | yy_load_buffer_state( ); | | (yy_did_buffer_switch_on_eof) = 1; | | } | | } | | | | /* Allocates the stack if it does not exist. | | * Guarantees space for at least one push. | | */ | | static void yyensure_buffer_stack (void) | | { | | yy_size_t num_to_alloc; | | | | if (!(yy_buffer_stack)) { | | | | /* First allocation is just for 2 elements, since we don't know if this | | * scanner will even need a stack. We use 2 instead of 1 to avoid an | | * immediate realloc on the next call. | | */ | | num_to_alloc = 1; | | (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc | | (num_to_alloc * sizeof(struct yy_buffer_state*) | | ); | | if ( ! (yy_buffer_stack) ) | | YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); | | | | memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); | | | | (yy_buffer_stack_max) = num_to_alloc; | | (yy_buffer_stack_top) = 0; | | return; | | } | | | | if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ | | | | /* Increase the buffer to prepare for a possible push. */ | | int grow_size = 8 /* arbitrary grow size */; | | | | num_to_alloc = (yy_buffer_stack_max) + grow_size; | | (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc | | ((yy_buffer_stack), | | num_to_alloc * sizeof(struct yy_buffer_state*) | | ); | | if ( ! (yy_buffer_stack) ) | | YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); | | | | /* zero only the new slots.*/ | | memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); | | (yy_buffer_stack_max) = num_to_alloc; | | } | | } | | | | /** Setup the input buffer state to scan directly from a user-specified character buffer. | | * @param base the character buffer | | * @param size the size in bytes of the character buffer | | * | | * @return the newly allocated buffer state object. | | */ | | YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) | | { | | YY_BUFFER_STATE b; | | | | if ( size < 2 || | | base[size-2] != YY_END_OF_BUFFER_CHAR || | | base[size-1] != YY_END_OF_BUFFER_CHAR ) | | /* They forgot to leave room for the EOB's. */ | | return 0; | | | | b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); | | if ( ! b ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); | | | | b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ | | b->yy_buf_pos = b->yy_ch_buf = base; | | b->yy_is_our_buffer = 0; | | b->yy_input_file = 0; | | b->yy_n_chars = b->yy_buf_size; | | b->yy_is_interactive = 0; | | b->yy_at_bol = 1; | | b->yy_fill_buffer = 0; | | b->yy_buffer_status = YY_BUFFER_NEW; | | | | yy_switch_to_buffer(b ); | | | | return b; | | } | | | | /** Setup the input buffer state to scan a string. The next call to yylex() will | | * scan from a @e copy of @a str. | | * @param yystr a NUL-terminated string to scan | | * | | * @return the newly allocated buffer state object. | | * @note If you want to scan bytes that may contain NUL values, then use | | * yy_scan_bytes() instead. | | */ | | YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) | | { | | | | return yy_scan_bytes(yystr,strlen(yystr) ); | | } | | | | /** Setup the input buffer state to scan the given bytes. The next call to yylex() will | | * scan from a @e copy of @a bytes. | | * @param yybytes the byte buffer to scan | | * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. | | * | | * @return the newly allocated buffer state object. | | */ | | YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len ) | | { | | YY_BUFFER_STATE b; | | char *buf; | | yy_size_t n; | | yy_size_t i; | | | | /* Get memory for full buffer, including space for trailing EOB's. */ | | n = _yybytes_len + 2; | | buf = (char *) yyalloc(n ); | | if ( ! buf ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); | | | | for ( i = 0; i < _yybytes_len; ++i ) | | buf[i] = yybytes[i]; | | | | buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; | | | | b = yy_scan_buffer(buf,n ); | | if ( ! b ) | | YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); | | | | /* It's okay to grow etc. this buffer, and we should throw it | | * away when we're done. | | */ | | b->yy_is_our_buffer = 1; | | | | return b; | | } | | | | #ifndef YY_EXIT_FAILURE | | #define YY_EXIT_FAILURE 2 | | #endif | | | | static void yy_fatal_error (yyconst char* msg ) | | { | | (void) fprintf( stderr, "%s\n", msg ); | | exit( YY_EXIT_FAILURE ); | | } | | | | /* Redefine yyless() so it works in section 3 code. */ | | | | #undef yyless | | #define yyless(n) \ | | do \ | | { \ | | /* Undo effects of setting up yytext. */ \ | | int yyless_macro_arg = (n); \ | | YY_LESS_LINENO(yyless_macro_arg);\ | | yytext[yyleng] = (yy_hold_char); \ | | (yy_c_buf_p) = yytext + yyless_macro_arg; \ | | (yy_hold_char) = *(yy_c_buf_p); \ | | *(yy_c_buf_p) = '\0'; \ | | yyleng = yyless_macro_arg; \ | | } \ | | while ( 0 ) | | | | /* Accessor methods (get/set functions) to struct members. */ | | | | /** Get the current line number. | | * | | */ | | int yyget_lineno (void) | | { | | | | return yylineno; | | } | | | | /** Get the input stream. | | * | | */ | | FILE *yyget_in (void) | | { | | return yyin; | | } | | | | /** Get the output stream. | | * | | */ | | FILE *yyget_out (void) | | { | | return yyout; | | } | | | | /** Get the length of the current token. | | * | | */ | | yy_size_t yyget_leng (void) | | { | | return yyleng; | | } | | | | /** Get the current token. | | * | | */ | | | | char *yyget_text (void) | | { | | return yytext; | | } | | | | /** Set the current line number. | | * @param line_number | | * | | */ | | void yyset_lineno (int line_number ) | | { | | | | yylineno = line_number; | | } | | | | /** Set the input stream. This does not discard the current | | * input buffer. | | * @param in_str A readable stream. | | * | | * @see yy_switch_to_buffer | | */ | | void yyset_in (FILE * in_str ) | | { | | yyin = in_str ; | | } | | | | void yyset_out (FILE * out_str ) | | { | | yyout = out_str ; | | } | | | | int yyget_debug (void) | | { | | return yy_flex_debug; | | } | | | | void yyset_debug (int bdebug ) | | { | | yy_flex_debug = bdebug ; | | } | | | | static int yy_init_globals (void) | | { | | /* Initialization is the same as for the non-reentrant scanner. | | * This function is called from yylex_destroy(), so don't allocate here. | | */ | | | | (yy_buffer_stack) = 0; | | (yy_buffer_stack_top) = 0; | | (yy_buffer_stack_max) = 0; | | (yy_c_buf_p) = (char *) 0; | | (yy_init) = 0; | | (yy_start) = 0; | | | | (yy_state_buf) = 0; | | (yy_state_ptr) = 0; | | (yy_full_match) = 0; | | (yy_lp) = 0; | | | | /* Defined in main.c */ | | #ifdef YY_STDINIT | | yyin = stdin; | | yyout = stdout; | | #else | | yyin = (FILE *) 0; | | yyout = (FILE *) 0; | | #endif | | | | /* For future reference: Set errno on error, since we are called by | | * yylex_init() | | */ | | return 0; | | } | | | | /* yylex_destroy is for both reentrant and non-reentrant scanners. */ | | int yylex_destroy (void) | | { | | | | /* Pop the buffer stack, destroying each element. */ | | while(YY_CURRENT_BUFFER){ | | yy_delete_buffer(YY_CURRENT_BUFFER ); | | YY_CURRENT_BUFFER_LVALUE = NULL; | | yypop_buffer_state(); | | } | | | | /* Destroy the stack itself. */ | | yyfree((yy_buffer_stack) ); | | (yy_buffer_stack) = NULL; | | | | yyfree ( (yy_state_buf) ); | | (yy_state_buf) = NULL; | | | | /* Reset the globals. This is important in a non-reentrant scanner so the next time | | * yylex() is called, initialization will occur. */ | | yy_init_globals( ); | | | | return 0; | | } | | | | /* | | * Internal utility routines. | | */ | | | | #ifndef yytext_ptr | | static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) | | { | | register int i; | | for ( i = 0; i < n; ++i ) | | s1[i] = s2[i]; | | } | | #endif | | | | #ifdef YY_NEED_STRLEN | | static int yy_flex_strlen (yyconst char * s ) | | { | | register int n; | | for ( n = 0; s[n]; ++n ) | | ; | | | | return n; | | } | | #endif | | | | void *yyalloc (yy_size_t size ) | | { | | return (void *) malloc( size ); | | } | | | | void *yyrealloc (void * ptr, yy_size_t size ) | | { | | /* The cast to (char *) in the following accommodates both | | * implementations that use char* generic pointers, and those | | * that use void* generic pointers. It works with the latter | | * because both ANSI C and C++ allow castless assignment from | | * any pointer type to void*, and deal with argument conversions | | * as though doing an assignment. | | */ | | return (void *) realloc( (char *) ptr, size ); | | } | | | | void yyfree (void * ptr ) | | { | | free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ | | } | | | | #define YYTABLES_NAME "yytables" | | | | #line 9 "conftest.l" | | | | | | #ifdef YYTEXT_POINTER | | extern char *yytext; | | #endif | | int | | main (void) | | { | | return ! yylex () + ! yywrap (); | | } | configure:11177: gcc -std=gnu11 -o conftest -g -O2 conftest.c -lfl >&5 | configure:11177: $? = 0 | configure:11187: result: -lfl | configure:11193: checking whether yytext is a pointer | configure:11210: gcc -std=gnu11 -o conftest -g -O2 conftest.c -lfl >&5 | configure:11210: $? = 0 | configure:11218: result: yes | configure:11253: checking for bison | configure:11269: found /usr/bin/bison | configure:11280: result: bison -y | configure:11335: checking for ranlib | configure:11362: result: ranlib | configure:11385: checking for GNU M4 that supports accurate traces | configure:11434: result: /usr/bin/m4 | configure:11437: checking whether /usr/bin/m4 accepts --gnu | configure:11447: result: yes | configure:11464: checking how m4 supports trace files | configure:11474: result: --debugfile | configure:11491: checking for perl | configure:11509: found /usr/bin/perl | configure:11521: result: /usr/bin/perl | configure:11537: checking for xsltproc | configure:11555: found /usr/bin/xsltproc | configure:11567: result: /usr/bin/xsltproc | configure:11584: checking for locale.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for sys/param.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for sys/socket.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for unistd.h | configure:11584: result: yes | configure:11584: checking for stdio_ext.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for features.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for getopt.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for sys/cdefs.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for sys/time.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for limits.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for wchar.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for stdint.h | configure:11584: result: yes | configure:11584: checking for inttypes.h | configure:11584: result: yes | configure:11584: checking for math.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for sys/mman.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for spawn.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for sys/resource.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for sys/times.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for sys/wait.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for crtdefs.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:96:21: fatal error: crtdefs.h: No such file or directory | #include | ^ | compilation terminated. | configure:11584: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | | | #include | configure:11584: result: no | configure:11584: checking for wctype.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11584: $? = 0 | configure:11584: result: yes | configure:11584: checking for sys/stat.h | configure:11584: result: yes | configure:11584: checking for threads.h | configure:11584: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:98:21: fatal error: threads.h: No such file or directory | #include | ^ | compilation terminated. | configure:11584: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | | | #include | configure:11584: result: no | configure:11600: checking for inline | configure:11616: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11616: $? = 0 | configure:11624: result: inline | configure:11673: checking for size_t | configure:11673: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11673: $? = 0 | configure:11673: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:100:21: error: expected expression before ')' token | if (sizeof ((size_t))) | ^ | configure:11673: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | int | | main () | | { | | if (sizeof ((size_t))) | | return 0; | | ; | | return 0; | | } | configure:11673: result: yes | configure:11686: checking for working alloca.h | configure:11703: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:11703: $? = 0 | configure:11711: result: yes | configure:11719: checking for alloca | configure:11756: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:11756: $? = 0 | configure:11764: result: yes | configure:11969: checking whether malloc, realloc, calloc are POSIX compliant | configure:11989: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:11989: $? = 0 | configure:11997: result: yes | configure:12006: checking for canonicalize_file_name | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for getcwd | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for readlink | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for realpath | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for readlinkat | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for _set_invalid_parameter_handler | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | /tmp/ccccnD8R.o: In function `main': | /home/richard/bison-3.4.2/conftest.c:105: undefined reference to `_set_invalid_parameter_handler' | collect2: error: ld returned 1 exit status | configure:12006: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | /* end confdefs.h. */ | | /* Define _set_invalid_parameter_handler to an innocuous variant, in case declares _set_invalid_parameter_handler. | | For example, HP-UX 11i declares gettimeofday. */ | | #define _set_invalid_parameter_handler innocuous__set_invalid_parameter_handler | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char _set_invalid_parameter_handler (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef _set_invalid_parameter_handler | | | | /* 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 _set_invalid_parameter_handler (); | | /* 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__set_invalid_parameter_handler || defined __stub____set_invalid_parameter_handler | | choke me | | #endif | | | | int | | main () | | { | | return _set_invalid_parameter_handler (); | | ; | | return 0; | | } | configure:12006: result: no | configure:12006: checking for fcntl | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for symlink | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for vasnprintf | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | /tmp/cckVWDPq.o: In function `main': | /home/richard/bison-3.4.2/conftest.c:107: undefined reference to `vasnprintf' | collect2: error: ld returned 1 exit status | configure:12006: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | /* end confdefs.h. */ | | /* Define vasnprintf to an innocuous variant, in case declares vasnprintf. | | For example, HP-UX 11i declares gettimeofday. */ | | #define vasnprintf innocuous_vasnprintf | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char vasnprintf (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef vasnprintf | | | | /* 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 vasnprintf (); | | /* 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_vasnprintf || defined __stub___vasnprintf | | choke me | | #endif | | | | int | | main () | | { | | return vasnprintf (); | | ; | | return 0; | | } | configure:12006: result: no | configure:12006: checking for snprintf | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | conftest.c:96:6: warning: conflicting types for built-in function 'snprintf' | char snprintf (); | ^ | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for fsync | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for microuptime | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | /tmp/cctDP8t9.o: In function `main': | /home/richard/bison-3.4.2/conftest.c:109: undefined reference to `microuptime' | collect2: error: ld returned 1 exit status | configure:12006: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | /* end confdefs.h. */ | | /* Define microuptime to an innocuous variant, in case declares microuptime. | | For example, HP-UX 11i declares gettimeofday. */ | | #define microuptime innocuous_microuptime | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char microuptime (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef microuptime | | | | /* 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 microuptime (); | | /* 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_microuptime || defined __stub___microuptime | | choke me | | #endif | | | | int | | main () | | { | | return microuptime (); | | ; | | return 0; | | } | configure:12006: result: no | configure:12006: checking for nanouptime | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | /tmp/ccwF51YC.o: In function `main': | /home/richard/bison-3.4.2/conftest.c:109: undefined reference to `nanouptime' | collect2: error: ld returned 1 exit status | configure:12006: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | /* end confdefs.h. */ | | /* Define nanouptime to an innocuous variant, in case declares nanouptime. | | For example, HP-UX 11i declares gettimeofday. */ | | #define nanouptime innocuous_nanouptime | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char nanouptime (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef nanouptime | | | | /* 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 nanouptime (); | | /* 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_nanouptime || defined __stub___nanouptime | | choke me | | #endif | | | | int | | main () | | { | | return nanouptime (); | | ; | | return 0; | | } | configure:12006: result: no | configure:12006: checking for getprogname | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | /tmp/ccEcOcge.o: In function `main': | /home/richard/bison-3.4.2/conftest.c:109: undefined reference to `getprogname' | collect2: error: ld returned 1 exit status | configure:12006: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | /* end confdefs.h. */ | | /* Define getprogname to an innocuous variant, in case declares getprogname. | | For example, HP-UX 11i declares gettimeofday. */ | | #define getprogname innocuous_getprogname | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char getprogname (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef getprogname | | | | /* 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 getprogname (); | | /* 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_getprogname || defined __stub___getprogname | | choke me | | #endif | | | | int | | main () | | { | | return getprogname (); | | ; | | return 0; | | } | configure:12006: result: no | configure:12006: checking for getexecname | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | /tmp/ccISWY3J.o: In function `main': | /home/richard/bison-3.4.2/conftest.c:109: undefined reference to `getexecname' | collect2: error: ld returned 1 exit status | configure:12006: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | /* end confdefs.h. */ | | /* Define getexecname to an innocuous variant, in case declares getexecname. | | For example, HP-UX 11i declares gettimeofday. */ | | #define getexecname innocuous_getexecname | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char getexecname (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef getexecname | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char getexecname (); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub_getexecname || defined __stub___getexecname | | choke me | | #endif | | | | int | | main () | | { | | return getexecname (); | | ; | | return 0; | | } | configure:12006: result: no | configure:12006: checking for getrusage | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for gettimeofday | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for tcdrain | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for mbsinit | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for mbrtowc | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for isascii | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | conftest.c:103:6: warning: conflicting types for built-in function 'isascii' | char isascii (); | ^ | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for mprotect | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for obstack_printf | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for lstat | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for strerror_r | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for __xpg_strerror_r | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for pipe2 | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for setenv | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for link | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for sigaction | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for sigaltstack | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for siginterrupt | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for strdup | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | conftest.c:115:6: warning: conflicting types for built-in function 'strdup' | char strdup (); | ^ | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for strndup | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | conftest.c:116:6: warning: conflicting types for built-in function 'strndup' | char strndup (); | ^ | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for pipe | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for iswcntrl | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | conftest.c:118:6: warning: conflicting types for built-in function 'iswcntrl' | char iswcntrl (); | ^ | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for wcwidth | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for __fseterr | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | /tmp/ccZEpJe1.o: In function `main': | /home/richard/bison-3.4.2/conftest.c:131: undefined reference to `__fseterr' | collect2: error: ld returned 1 exit status | configure:12006: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | /* end confdefs.h. */ | | /* Define __fseterr to an innocuous variant, in case declares __fseterr. | | For example, HP-UX 11i declares gettimeofday. */ | | #define __fseterr innocuous___fseterr | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char __fseterr (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef __fseterr | | | | /* 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 __fseterr (); | | /* 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___fseterr || defined __stub_____fseterr | | choke me | | #endif | | | | int | | main () | | { | | return __fseterr (); | | ; | | return 0; | | } | configure:12006: result: no | configure:12006: checking for getdtablesize | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for catgets | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12006: checking for setlocale | configure:12006: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12006: $? = 0 | configure:12006: result: yes | configure:12023: checking whether // is distinct from / | configure:12052: result: no | configure:12064: checking whether realpath works | configure:12244: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:12244: $? = 0 | configure:12244: ./conftest | configure:12244: $? = 0 | configure:12256: result: yes | configure:12442: checking if environ is properly declared | configure:12464: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:107:40: error: conflicting types for 'environ' | extern struct { int foo; } environ; | ^ | In file included from conftest.c:102:0: | /usr/include/unistd.h:545:15: note: previous declaration of 'environ' was here | extern char **environ; | ^ | configure:12464: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | /* end confdefs.h. */ | | #if HAVE_UNISTD_H | | #include | | #endif | | /* mingw, BeOS, Haiku declare environ in , not in . */ | | #include | | | | extern struct { int foo; } environ; | | int | | main () | | { | | environ.foo = 1; | | ; | | return 0; | | } | configure:12471: result: yes | configure:12486: checking whether the preprocessor supports include_next | configure:12524: gcc -std=gnu11 -c -g -O2 -Iconftestd1b -Iconftestd2 conftest.c >&5 | configure:12524: $? = 0 | configure:12545: result: yes | configure:12566: checking whether system header files limit the line length | configure:12589: result: no | configure:12600: checking for complete errno.h | configure:12673: result: yes | configure:12974: checking whether strerror_r is declared | configure:12974: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:12974: $? = 0 | configure:12974: result: yes | configure:12987: checking for strerror_r | configure:12987: result: yes | configure:12996: checking whether strerror_r returns char * | configure:13020: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:13020: $? = 0 | configure:13058: result: yes | configure:13073: checking for sig_atomic_t | configure:13073: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:13073: $? = 0 | configure:13073: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:110:27: error: expected expression before ')' token | if (sizeof ((sig_atomic_t))) | ^ | configure:13073: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | if (sizeof ((sig_atomic_t))) | | return 0; | | ; | | return 0; | | } | configure:13073: result: yes | configure:13109: checking for working fcntl.h | configure:13217: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:13217: $? = 0 | configure:13217: ./conftest | configure:13217: $? = 0 | configure:13233: result: yes | configure:13256: checking for pid_t | configure:13256: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:13256: $? = 0 | configure:13256: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:144:20: error: expected expression before ')' token | if (sizeof ((pid_t))) | ^ | configure:13256: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | int | | main () | | { | | if (sizeof ((pid_t))) | | return 0; | | ; | | return 0; | | } | configure:13256: result: yes | configure:13267: checking for mode_t | configure:13267: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:13267: $? = 0 | configure:13267: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:144:21: error: expected expression before ')' token | if (sizeof ((mode_t))) | ^ | configure:13267: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | int | | main () | | { | | if (sizeof ((mode_t))) | | return 0; | | ; | | return 0; | | } | configure:13267: result: yes | configure:13384: checking for stdint.h | configure:13401: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:13401: $? = 0 | configure:13408: result: yes | configure:13419: checking for inttypes.h | configure:13438: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:13438: $? = 0 | configure:13445: result: yes | configure:13459: checking whether printf supports size specifiers as in C99 | configure:13554: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:13554: $? = 0 | configure:13554: ./conftest | configure:13554: $? = 0 | configure:13565: result: yes | configure:13570: checking whether printf supports 'long double' arguments | configure:13628: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:13628: $? = 0 | configure:13628: ./conftest | configure:13628: $? = 0 | configure:13639: result: yes | configure:13644: checking whether printf supports infinite 'double' arguments | configure:13767: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:13767: $? = 0 | configure:13767: ./conftest | configure:13767: $? = 0 | configure:13778: result: yes | configure:13782: checking whether byte ordering is bigendian | configure:13797: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:111:9: error: unknown type name 'not' | not a universal capable compiler | ^ | conftest.c:111:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' | not a universal capable compiler | ^ | conftest.c:111:15: error: unknown type name 'universal' | configure:13797: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | /* end confdefs.h. */ | | #ifndef __APPLE_CC__ | | not a universal capable compiler | | #endif | | typedef int dummy; | | | configure:13842: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:13842: $? = 0 | configure:13860: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:117:4: error: unknown type name 'not' | not big endian | ^ | conftest.c:117:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' | not big endian | ^ | configure:13860: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main () | | { | | #if BYTE_ORDER != BIG_ENDIAN | | not big endian | | #endif | | | | ; | | return 0; | | } | configure:13988: result: no | configure:14008: checking whether long double and double are the same | configure:14029: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:114:13: error: size of array 'check' is negative | typedef int check[sizeof (long double) == sizeof (double) | ^ | configure:14029: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | /* end confdefs.h. */ | | #include | | int | | main () | | { | | typedef int check[sizeof (long double) == sizeof (double) | | && LDBL_MANT_DIG == DBL_MANT_DIG | | && LDBL_MAX_EXP == DBL_MAX_EXP | | && LDBL_MIN_EXP == DBL_MIN_EXP | | ? 1 : -1]; | | | | ; | | return 0; | | } | configure:14037: result: no | configure:14061: checking whether printf supports infinite 'long double' arguments | configure:14375: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:14375: $? = 0 | configure:14375: ./conftest | configure:14375: $? = 0 | configure:14386: result: yes | configure:14396: checking whether printf supports the 'a' and 'A' directives | configure:14497: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:14497: $? = 0 | configure:14497: ./conftest | configure:14497: $? = 0 | configure:14508: result: yes | configure:14513: checking whether printf supports the 'F' directive | configure:14583: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:14583: $? = 0 | configure:14583: ./conftest | configure:14583: $? = 0 | configure:14594: result: yes | configure:14599: checking whether printf supports the 'n' directive | configure:14651: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:14651: $? = 0 | configure:14651: ./conftest | configure:14651: $? = 0 | configure:14662: result: yes | configure:14667: checking whether printf supports the 'ls' directive | configure:14742: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:14742: $? = 0 | configure:14742: ./conftest | configure:14742: $? = 0 | configure:14753: result: yes | configure:14758: checking whether printf supports POSIX/XSI format strings with positions | configure:14793: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:14793: $? = 0 | configure:14793: ./conftest | configure:14793: $? = 0 | configure:14804: result: yes | configure:14809: checking whether printf supports the grouping flag | configure:14842: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:14842: $? = 0 | configure:14842: ./conftest | configure:14842: $? = 0 | configure:14853: result: yes | configure:14858: checking whether printf supports the left-adjust flag correctly | configure:14895: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:14895: $? = 0 | configure:14895: ./conftest | configure:14895: $? = 0 | configure:14906: result: yes | configure:14911: checking whether printf supports the zero flag correctly | configure:14951: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:14951: $? = 0 | configure:14951: ./conftest | configure:14951: $? = 0 | configure:14962: result: yes | configure:14967: checking whether printf supports large precisions | configure:15012: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:15012: $? = 0 | configure:15012: ./conftest | configure:15012: $? = 0 | configure:15023: result: yes | configure:15036: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:112:10: error: unknown type name 'not' | not a universal capable compiler | ^ | conftest.c:112:16: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' | not a universal capable compiler | ^ | conftest.c:112:16: error: unknown type name 'universal' | configure:15036: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | /* end confdefs.h. */ | | #ifndef __APPLE_CC__ | | not a universal capable compiler | | #endif | | typedef int dummy; | | | configure:15071: checking whether printf survives out-of-memory conditions | configure:15243: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:15246: $? = 0 | configure:15250: $? = 0 | configure:15297: result: yes | configure:15315: checking for unsigned long long int | configure:15354: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:15354: $? = 0 | configure:15363: result: yes | configure:15373: checking for long long int | configure:15411: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:15411: $? = 0 | configure:15411: ./conftest | configure:15411: $? = 0 | configure:15423: result: yes | configure:15432: checking for wchar_t | configure:15449: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:15449: $? = 0 | configure:15456: result: yes | configure:15465: checking for wint_t | configure:15490: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:15490: $? = 0 | configure:15497: result: yes | configure:15504: checking whether wint_t is too small | configure:15532: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:15532: $? = 0 | configure:15539: result: no | configure:15565: checking for intmax_t | configure:15590: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:15590: $? = 0 | configure:15597: result: yes | configure:15616: checking where to find the exponent in a 'double' | configure:15930: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:15930: $? = 0 | configure:15930: ./conftest | configure:15930: $? = 0 | configure:15942: result: word 1 bit 20 | configure:15969: checking whether snprintf returns a byte count as in C99 | configure:16060: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:16060: $? = 0 | configure:16060: ./conftest | configure:16060: $? = 0 | configure:16071: result: yes | configure:16082: checking for snprintf | configure:16082: result: yes | configure:16082: checking for strnlen | configure:16082: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:16082: $? = 0 | configure:16082: result: yes | configure:16082: checking for wcslen | configure:16082: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:16082: $? = 0 | configure:16082: result: yes | configure:16082: checking for wcsnlen | configure:16082: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:16082: $? = 0 | configure:16082: result: yes | configure:16082: checking for mbrtowc | configure:16082: result: yes | configure:16082: checking for wcrtomb | configure:16082: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:16082: $? = 0 | configure:16082: result: yes | configure:16091: checking whether _snprintf is declared | configure:16091: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:133:10: error: '_snprintf' undeclared (first use in this function) | (void) _snprintf; | ^ | conftest.c:133:10: note: each undeclared identifier is reported only once for each function it appears in | configure:16091: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | #ifndef _snprintf | | #ifdef __cplusplus | | (void) _snprintf; | | #else | | (void) _snprintf; | | #endif | | #endif | | | | ; | | return 0; | | } | configure:16091: result: no | configure:16117: checking for arithmetic hrtime_t | configure:16133: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:130:1: error: unknown type name 'hrtime_t' | hrtime_t x = 0; return x/x; | ^ | configure:16133: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | /* end confdefs.h. */ | | #include | | int | | main () | | { | | hrtime_t x = 0; return x/x; | | ; | | return 0; | | } | configure:16140: result: no | configure:16252: checking for getopt.h | configure:16252: result: yes | configure:16269: checking for getopt_long_only | configure:16269: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:16269: $? = 0 | configure:16269: result: yes | configure:16283: checking whether getopt is POSIX compatible | configure:16325: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:16325: $? = 0 | configure:16325: ./conftest | configure:16325: $? = 0 | configure:16384: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:16384: $? = 0 | configure:16384: ./conftest | configure:16384: $? = 0 | configure:16426: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:16426: $? = 0 | configure:16426: ./conftest | program: option requires an argument -- 'b' | configure:16426: $? = 0 | configure:16444: result: yes | configure:16452: checking for working GNU getopt function | configure:16674: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:16674: $? = 0 | configure:16674: ./conftest | configure:16674: $? = 0 | configure:16690: result: yes | configure:16695: checking for working GNU getopt_long function | configure:16740: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:16740: $? = 0 | configure:16740: ./conftest | configure:16740: $? = 0 | configure:16751: result: yes | configure:16783: checking for C/C++ restrict keyword | configure:16810: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:16810: $? = 0 | configure:16818: result: __restrict | configure:16947: checking for struct timeval | configure:16970: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:16970: $? = 0 | configure:16978: result: yes | configure:16983: checking for wide-enough struct timeval.tv_sec member | configure:17010: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:17010: $? = 0 | configure:17018: result: yes | configure:17146: checking whether limits.h has LLONG_MAX, WORD_BIT, ULLONG_WIDTH etc. | configure:17169: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:135:24: error: 'ULLONG_WIDTH' undeclared here (not in a function) | int ullw = ULLONG_WIDTH; | ^ | configure:17169: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | /* end confdefs.h. */ | | #ifndef __STDC_WANT_IEC_60559_BFP_EXT__ | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #endif | | #include | | long long llm = LLONG_MAX; | | int wb = WORD_BIT; | | int ullw = ULLONG_WIDTH; | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:17176: result: no | configure:17325: checking whether stdint.h conforms to C99 | configure:17505: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:17505: $? = 0 | configure:17592: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:17592: $? = 0 | configure:17592: ./conftest | configure:17592: $? = 0 | configure:17604: result: yes | configure:17615: checking whether stdint.h predates C++11 | configure:17651: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:17651: $? = 0 | configure:17656: result: no | configure:17667: checking whether stdint.h has UINTMAX_WIDTH etc. | configure:17703: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:147:24: error: 'UINTMAX_WIDTH' undeclared here (not in a function) | int iw = UINTMAX_WIDTH; | ^ | configure:17703: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | /* end confdefs.h. */ | | | | /* Work if build is not clean. */ | | #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 | | #ifndef __STDC_WANT_IEC_60559_BFP_EXT__ | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #endif | | #include | | | | /* BSD/OS 4.0.1 has a bug: , and must be | | included before . */ | | #include | | #include | | #if HAVE_WCHAR_H | | # include | | # include | | # include | | #endif | | | | int iw = UINTMAX_WIDTH; | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:17708: result: no | configure:18176: checking for inttypes.h | configure:18176: result: yes | configure:18187: checking whether the inttypes.h PRIxNN macros are broken | configure:18209: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:18209: $? = 0 | configure:18217: result: no | configure:18505: checking where to find the exponent in a 'float' | configure:18582: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:18582: $? = 0 | configure:18582: ./conftest | configure:18582: $? = 0 | configure:18594: result: word 0 bit 23 | configure:18617: checking whether isnan(float) can be used without linking with libm | configure:18642: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:18642: $? = 0 | configure:18651: result: yes | configure:18707: checking whether isnan(float) works | configure:18793: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:18793: $? = 0 | configure:18793: ./conftest | configure:18793: $? = 0 | configure:18804: result: yes | configure:18824: checking whether isnan(double) can be used without linking with libm | configure:18849: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:18849: $? = 0 | configure:18858: result: yes | configure:18920: checking whether isnan(long double) can be used without linking with libm | configure:18945: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:18945: $? = 0 | configure:18954: result: yes | configure:19011: checking whether isnanl works | configure:19154: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:19154: $? = 0 | configure:19154: ./conftest | configure:19154: $? = 0 | configure:19165: result: yes | configure:19260: checking whether ldexp() can be used without linking with libm | configure:19282: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:19282: $? = 0 | configure:19291: result: yes | configure:19382: checking for ld used by gcc -std=gnu11 | configure:19507: result: /usr/bin/ld | configure:19514: checking if the linker (/usr/bin/ld) is GNU ld | configure:19529: result: yes | configure:19536: checking for shared library run path origin | configure:19549: result: done | configure:19570: checking 32-bit host C ABI | configure:19795: result: yes | configure:19832: checking for the common suffixes of directories in the library search path | configure:19883: result: lib,lib | configure:19892: checking for nl_langinfo and CODESET | configure:19908: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:19908: $? = 0 | configure:19917: result: yes | configure:19925: checking for a sed that does not truncate output | configure:19989: result: /bin/sed | configure:20094: checking for mbstate_t | configure:20118: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:20118: $? = 0 | configure:20125: result: yes | configure:20144: checking for a traditional japanese locale | configure:20223: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:20226: $? = 0 | configure:20284: result: none | configure:20292: checking for a transitional chinese locale | configure:20372: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:20375: $? = 0 | configure:20426: result: none | configure:20433: checking for a french Unicode locale | configure:20505: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:20508: $? = 0 | configure:20554: result: none | configure:20650: checking for mmap | configure:20650: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:20650: $? = 0 | configure:20650: result: yes | configure:20661: checking for MAP_ANONYMOUS | configure:20698: result: yes | configure:20722: checking whether memchr works | configure:20802: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:20802: $? = 0 | configure:20802: ./conftest | configure:20802: $? = 0 | configure:20813: result: yes | configure:20825: checking whether defines MIN and MAX | configure:20842: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:136:13: warning: implicit declaration of function 'MIN' [-Wimplicit-function-declaration] | int x = MIN (42, 17); | ^ | conftest.c:136:13: error: initializer element is not constant | configure:20842: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | /* end confdefs.h. */ | | #include | | int x = MIN (42, 17); | | int | | main () | | { | | | | ; | | return 0; | | } | configure:20849: result: no | configure:20862: checking whether defines MIN and MAX | configure:20879: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:20879: $? = 0 | configure:20886: result: yes | configure:20902: checking whether obstack_printf is declared | configure:20902: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:20902: $? = 0 | configure:20902: result: yes | configure:20914: checking for O_CLOEXEC | configure:20934: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:20934: $? = 0 | configure:20941: result: yes | configure:20948: checking for promoted mode_t type | configure:20965: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:141:13: error: size of array 'array' is negative | typedef int array[2 * (sizeof (mode_t) < sizeof (int)) - 1]; | ^ | configure:20965: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | /* end confdefs.h. */ | | #include | | int | | main () | | { | | typedef int array[2 * (sizeof (mode_t) < sizeof (int)) - 1]; | | ; | | return 0; | | } | configure:20973: result: mode_t | configure:20983: checking whether strerror(0) succeeds | configure:21022: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:21022: $? = 0 | configure:21022: ./conftest | configure:21022: $? = 0 | configure:21033: result: yes | configure:21056: checking for strerror_r with POSIX signature | configure:21074: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:139:21: error: conflicting types for 'strerror_r' | int strerror_r (int, char *, size_t); | ^ | In file included from conftest.c:138:0: | /usr/include/string.h:438:14: note: previous declaration of 'strerror_r' was here | extern char *strerror_r (int __errnum, char *__buf, size_t __buflen) | ^ | configure:21074: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | /* end confdefs.h. */ | | #include | | int strerror_r (int, char *, size_t); | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:21082: result: no | configure:21156: checking whether __xpg_strerror_r works | configure:21196: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:21196: $? = 0 | configure:21196: ./conftest | configure:21196: $? = 0 | configure:21207: result: yes | configure:21214: checking whether strerror_r is declared | configure:21214: result: yes | configure:21302: checking for library containing posix_spawn | configure:21333: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:21333: $? = 0 | configure:21350: result: none required | configure:21361: checking for posix_spawn | configure:21361: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:21361: $? = 0 | configure:21361: result: yes | configure:21385: checking whether posix_spawn works | configure:21525: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:21525: $? = 0 | configure:21700: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:21700: $? = 0 | configure:21700: ./conftest | configure:21700: $? = 0 | configure:21718: result: yes | configure:21723: checking whether posix_spawnattr_setschedpolicy is supported | configure:21747: result: yes | configure:21749: checking whether posix_spawnattr_setschedparam is supported | configure:21773: result: yes | configure:22130: checking whether C symbols are prefixed with underscore at the linker level | configure:22143: gcc -std=gnu11 -g -O2 -S conftest.c | configure:22146: $? = 0 | configure:22156: result: no | configure:22192: checking for sigset_t | configure:22192: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:22192: $? = 0 | configure:22192: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:150:23: error: expected expression before ')' token | if (sizeof ((sigset_t))) | ^ | configure:22192: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | /* end confdefs.h. */ | | | | #include | | /* Mingw defines sigset_t not in , but in . */ | | #include | | | | | | int | | main () | | { | | if (sizeof ((sigset_t))) | | return 0; | | ; | | return 0; | | } | configure:22192: result: yes | configure:22214: checking for shared library path variable | configure:22227: result: LD_LIBRARY_PATH | configure:22232: checking whether to activate relocatable installation | configure:22247: result: no | configure:22411: checking for stdlib.h | configure:22411: result: yes | configure:22421: checking for GNU libc compatible malloc | configure:22457: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:22457: $? = 0 | configure:22457: ./conftest | configure:22457: $? = 0 | configure:22468: result: yes | configure:22485: checking whether setenv is declared | configure:22485: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:22485: $? = 0 | configure:22485: result: yes | configure:22507: checking for uid_t in sys/types.h | configure:22526: result: yes | configure:22541: checking whether snprintf is declared | configure:22541: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:22541: $? = 0 | configure:22541: result: yes | configure:22554: checking for stdbool.h that conforms to C99 | configure:22629: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:22629: $? = 0 | configure:22636: result: yes | configure:22638: checking for _Bool | configure:22638: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:22638: $? = 0 | configure:22638: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:183:20: error: expected expression before ')' token | if (sizeof ((_Bool))) | ^ | configure:22638: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | int | | main () | | { | | if (sizeof ((_Bool))) | | return 0; | | ; | | return 0; | | } | configure:22638: result: yes | configure:22656: checking whether strdup is declared | configure:22656: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:22656: $? = 0 | configure:22656: result: yes | configure:22746: checking whether strndup is declared | configure:22746: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:22746: $? = 0 | configure:22746: result: yes | configure:22872: checking for struct timespec in | configure:22889: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:22889: $? = 0 | configure:22896: result: yes | configure:23108: checking whether clearerr_unlocked is declared | configure:23108: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23108: $? = 0 | configure:23108: result: yes | configure:23119: checking whether feof_unlocked is declared | configure:23119: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23119: $? = 0 | configure:23119: result: yes | configure:23130: checking whether ferror_unlocked is declared | configure:23130: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23130: $? = 0 | configure:23130: result: yes | configure:23141: checking whether fflush_unlocked is declared | configure:23141: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23141: $? = 0 | configure:23141: result: yes | configure:23152: checking whether fgets_unlocked is declared | configure:23152: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23152: $? = 0 | configure:23152: result: yes | configure:23163: checking whether fputc_unlocked is declared | configure:23163: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23163: $? = 0 | configure:23163: result: yes | configure:23174: checking whether fputs_unlocked is declared | configure:23174: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23174: $? = 0 | configure:23174: result: yes | configure:23185: checking whether fread_unlocked is declared | configure:23185: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23185: $? = 0 | configure:23185: result: yes | configure:23196: checking whether fwrite_unlocked is declared | configure:23196: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23196: $? = 0 | configure:23196: result: yes | configure:23207: checking whether getc_unlocked is declared | configure:23207: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23207: $? = 0 | configure:23207: result: yes | configure:23218: checking whether getchar_unlocked is declared | configure:23218: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23218: $? = 0 | configure:23218: result: yes | configure:23229: checking whether putc_unlocked is declared | configure:23229: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23229: $? = 0 | configure:23229: result: yes | configure:23240: checking whether putchar_unlocked is declared | configure:23240: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23240: $? = 0 | configure:23240: result: yes | configure:23251: checking whether unsetenv is declared | configure:23251: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23251: $? = 0 | configure:23251: result: yes | configure:23262: checking whether vsnprintf is declared | configure:23262: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23262: $? = 0 | configure:23262: result: yes | configure:23274: checking whether uses 'inline' correctly | configure:23299: gcc -std=gnu11 -c -g -O2 conftest1.c >&5 | configure:23302: $? = 0 | configure:23321: gcc -std=gnu11 -c -g -O2 conftest2.c >&5 | configure:23324: $? = 0 | configure:23337: result: yes | configure:23380: checking whether frexp() can be used without linking with libm | configure:23398: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:23398: $? = 0 | configure:23407: result: yes | configure:23410: checking whether alarm is declared | configure:23410: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23410: $? = 0 | configure:23410: result: yes | configure:23459: checking whether stat file-mode macros are broken | configure:23486: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23486: $? = 0 | configure:23493: result: no | configure:23599: checking for nlink_t | configure:23599: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23599: $? = 0 | configure:23599: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:173:22: error: expected expression before ')' token | if (sizeof ((nlink_t))) | ^ | configure:23599: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main () | | { | | if (sizeof ((nlink_t))) | | return 0; | | ; | | return 0; | | } | configure:23599: result: yes | configure:23617: checking whether getdtablesize is declared | configure:23617: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23617: $? = 0 | configure:23617: result: yes | configure:23638: checking whether imported symbols can be declared weak | configure:23656: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:23656: $? = 0 | configure:23690: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:23690: $? = 0 | configure:23690: ./conftest | configure:23690: $? = 0 | configure:23705: result: yes | configure:23714: checking pthread.h usability | configure:23714: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:23714: $? = 0 | configure:23714: result: yes | configure:23714: checking pthread.h presence | configure:23714: gcc -std=gnu11 -E conftest.c | configure:23714: $? = 0 | configure:23714: result: yes | configure:23714: checking for pthread.h | configure:23714: result: yes | configure:23752: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | /tmp/cchsSuqI.o: In function `main': | /home/richard/bison-3.4.2/conftest.c:176: undefined reference to `pthread_mutexattr_init' | collect2: error: ld returned 1 exit status | configure:23752: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | /* end confdefs.h. */ | | #include | | pthread_mutex_t m; | | pthread_mutexattr_t ma; | | | | int | | main () | | { | | pthread_mutex_lock (&m); | | pthread_mutexattr_init (&ma); | | ; | | return 0; | | } | configure:23752: gcc -std=gnu11 -o conftest -g -O2 conftest.c -pthread >&5 | configure:23752: $? = 0 | configure:23945: checking for multithread API to use | configure:23947: result: posix | configure:23959: checking whether lstat correctly handles trailing slash | configure:24001: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:24001: $? = 0 | configure:24001: ./conftest | configure:24001: $? = 0 | configure:24013: result: yes | configure:24027: checking whether strnlen is declared | configure:24027: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:24027: $? = 0 | configure:24027: result: yes | configure:24069: checking for alloca as a compiler built-in | configure:24093: result: yes | configure:24124: checking whether to enable assertions | configure:24141: result: yes | configure:24268: checking for library containing clock_gettime | configure:24299: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:24299: $? = 0 | configure:24316: result: none required | configure:24328: checking for clock_gettime | configure:24328: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:24328: $? = 0 | configure:24328: result: yes | configure:24328: checking for clock_settime | configure:24328: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:24328: $? = 0 | configure:24328: result: yes | configure:24450: checking whether // is distinct from / | configure:24479: result: no | configure:24496: checking whether dup2 works | configure:24584: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:24584: $? = 0 | configure:24584: ./conftest | configure:24584: $? = 0 | configure:24595: result: yes | configure:24663: checking for error_at_line | configure:24679: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:24679: $? = 0 | configure:24687: result: yes | configure:24736: checking whether fcntl handles F_DUPFD correctly | configure:24794: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:24794: $? = 0 | configure:24794: ./conftest | configure:24794: $? = 0 | configure:24804: result: yes | configure:24822: checking whether fcntl understands F_DUPFD_CLOEXEC | configure:24843: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:24843: $? = 0 | configure:24861: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:191:1: error: unknown type name 'choke' | choke me | ^ | conftest.c:194:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'int' | int | ^ | configure:24861: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | /* end confdefs.h. */ | | | | #ifdef __linux__ | | /* The Linux kernel only added F_DUPFD_CLOEXEC in 2.6.24, so we always replace | | it to support the semantics on older kernels that failed with EINVAL. */ | | choke me | | #endif | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:24872: result: needs runtime check | configure:25057: checking whether conversion from 'int' to 'long double' works | configure:25101: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:25101: $? = 0 | configure:25101: ./conftest | configure:25101: $? = 0 | configure:25112: result: yes | configure:25238: checking whether fopen recognizes a trailing slash | configure:25268: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:25268: $? = 0 | configure:25268: ./conftest | configure:25268: $? = 0 | configure:25280: result: yes | configure:25336: checking for __fpending | configure:25353: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:25353: $? = 0 | configure:25362: result: yes | configure:25365: checking whether __fpending is declared | configure:25365: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:25365: $? = 0 | configure:25365: result: yes | configure:25764: checking whether gethrtime is declared | configure:25764: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:203:10: error: 'gethrtime' undeclared (first use in this function) | (void) gethrtime; | ^ | conftest.c:203:10: note: each undeclared identifier is reported only once for each function it appears in | configure:25764: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | #ifndef gethrtime | | #ifdef __cplusplus | | (void) gethrtime; | | #else | | (void) gethrtime; | | #endif | | #endif | | | | ; | | return 0; | | } | configure:25764: result: no | configure:25785: checking whether CLOCK_MONOTONIC or CLOCK_REALTIME is defined | configure:25808: result: yes | configure:25879: checking whether program_invocation_name is declared | configure:25879: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:25879: $? = 0 | configure:25879: result: yes | configure:25894: checking whether program_invocation_short_name is declared | configure:25894: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:25894: $? = 0 | configure:25894: result: yes | configure:25909: checking whether __argv is declared | configure:25909: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:206:10: error: '__argv' undeclared (first use in this function) | (void) __argv; | ^ | conftest.c:206:10: note: each undeclared identifier is reported only once for each function it appears in | configure:25909: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | #ifndef __argv | | #ifdef __cplusplus | | (void) __argv; | | #else | | (void) __argv; | | #endif | | #endif | | | | ; | | return 0; | | } | configure:25909: result: no | configure:26022: checking whether gettimeofday clobbers localtime buffer | configure:26065: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:26065: $? = 0 | configure:26065: ./conftest | configure:26065: $? = 0 | configure:26075: result: no | configure:26094: checking for gettimeofday with POSIX signature | configure:26122: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:201:19: error: conflicting types for 'gettimeofday' | int gettimeofday (struct timeval *restrict, void *restrict); | ^ | In file included from conftest.c:199:0: | /usr/include/i386-linux-gnu/sys/time.h:71:12: note: previous declaration of 'gettimeofday' was here | extern int gettimeofday (struct timeval *__restrict __tv, | ^ | configure:26122: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | /* end confdefs.h. */ | | #include | | struct timeval c; | | int gettimeofday (struct timeval *restrict, void *restrict); | | | | int | | main () | | { | | /* glibc uses struct timezone * rather than the POSIX void * | | if _GNU_SOURCE is defined. However, since the only portable | | use of gettimeofday uses NULL as the second parameter, and | | since the glibc definition is actually more typesafe, it is | | not worth wrapping this to get a compliant signature. */ | | int (*f) (struct timeval *restrict, void *restrict) | | = gettimeofday; | | int x = f (&c, 0); | | return !(x | c.tv_sec | c.tv_usec); | | | | ; | | return 0; | | } | configure:26138: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:26138: $? = 0 | configure:26147: result: almost | configure:26242: checking whether INT32_MAX < INTMAX_MAX | configure:26276: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:26276: $? = 0 | configure:26283: result: yes | configure:26294: checking whether INT64_MAX == LONG_MAX | configure:26328: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:219:17: error: size of array 'test' is negative | int test[CONDITION ? 1 : -1]; | ^ | configure:26328: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | /* end confdefs.h. */ | | /* Work also in C++ mode. */ | | #define __STDC_LIMIT_MACROS 1 | | | | /* Work if build is not clean. */ | | #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H | | | | #include | | #if HAVE_STDINT_H | | #include | | #endif | | | | #if defined INT64_MAX | | #define CONDITION (INT64_MAX == LONG_MAX) | | #elif HAVE_LONG_LONG_INT | | #define CONDITION (sizeof (long long int) == sizeof (long int)) | | #else | | #define CONDITION 0 | | #endif | | int test[CONDITION ? 1 : -1]; | | int | | main () | | { | | | | ; | | return 0; | | } | configure:26335: result: no | configure:26348: checking whether UINT32_MAX < UINTMAX_MAX | configure:26382: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:26382: $? = 0 | configure:26389: result: yes | configure:26400: checking whether UINT64_MAX == ULONG_MAX | configure:26434: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c:219:17: error: size of array 'test' is negative | int test[CONDITION ? 1 : -1]; | ^ | configure:26434: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | /* end confdefs.h. */ | | /* Work also in C++ mode. */ | | #define __STDC_LIMIT_MACROS 1 | | | | /* Work if build is not clean. */ | | #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H | | | | #include | | #if HAVE_STDINT_H | | #include | | #endif | | | | #if defined UINT64_MAX | | #define CONDITION (UINT64_MAX == ULONG_MAX) | | #elif HAVE_LONG_LONG_INT | | #define CONDITION (sizeof (unsigned long long int) == sizeof (unsigned long int)) | | #else | | #define CONDITION 0 | | #endif | | int test[CONDITION ? 1 : -1]; | | int | | main () | | { | | | | ; | | return 0; | | } | configure:26441: result: no | configure:26464: checking whether isnan macro works | configure:26469: result: yes | configure:26511: checking whether isnan(double) can be used without linking with libm | configure:26545: result: yes | configure:26640: checking whether isnan(float) can be used without linking with libm | configure:26674: result: yes | configure:26730: checking whether isnan(float) works | configure:26827: result: yes | configure:26988: checking whether isnan(long double) can be used without linking with libm | configure:27022: result: yes | configure:27079: checking whether isnanl works | configure:27233: result: yes | configure:27441: checking whether ldexpl is declared | configure:27441: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:27441: $? = 0 | configure:27441: result: yes | configure:27453: checking whether ldexpl() can be used without linking with libm | configure:27471: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:27471: $? = 0 | configure:27480: result: yes | configure:27526: checking whether ldexpl works | configure:27569: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:27569: $? = 0 | configure:27569: ./conftest | configure:27569: $? = 0 | configure:27580: result: yes | configure:28126: checking for libtextstyle | configure:28148: gcc -std=gnu11 -o conftest -g -O2 conftest.c -ltextstyle >&5 | conftest.c:207:23: fatal error: textstyle.h: No such file or directory | #include | ^ | compilation terminated. | configure:28148: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | /* end confdefs.h. */ | | #include | | int | | main () | | { | | term_styled_ostream_create(1,"",TTYCTL_AUTO,""); | | ; | | return 0; | | } | configure:28158: result: no | configure:28217: checking for stdlib.h | configure:28217: result: yes | configure:28227: checking for GNU libc compatible malloc | configure:28274: result: yes | configure:28429: checking whether NAN macro works | configure:28452: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:28452: $? = 0 | configure:28459: result: yes | configure:28464: checking whether HUGE_VAL works | configure:28482: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:28482: $? = 0 | configure:28489: result: yes | configure:28513: checking whether mbrtowc handles incomplete characters | configure:28570: result: guessing yes | configure:28576: checking whether mbrtowc works as well as mbtowc | configure:28637: result: guessing yes | configure:28688: checking whether mbrtowc handles a NULL pwc argument | configure:28759: result: guessing yes | configure:28765: checking whether mbrtowc handles a NULL string argument | configure:28824: result: guessing yes | configure:28832: checking whether mbrtowc has a correct return value | configure:28962: result: guessing yes | configure:28968: checking whether mbrtowc returns 0 when parsing a NUL character | configure:29024: result: guessing yes | configure:29029: checking whether mbrtowc works on empty input | configure:29057: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:29057: $? = 0 | configure:29057: ./conftest | configure:29057: $? = 1 | configure: program exited with status 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | /* end confdefs.h. */ | | | | #include | | static wchar_t wc; | | static mbstate_t mbs; | | int | | main (void) | | { | | return mbrtowc (&wc, "", 0, &mbs) != (size_t) -2; | | } | configure:29068: result: no | configure:29072: checking whether the C locale is free of encoding errors | configure:29116: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:29116: $? = 0 | configure:29116: ./conftest | configure:29116: $? = 3 | configure: program exited with status 3 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | /* end confdefs.h. */ | | #include | | #include | | #include | | | | int | | main () | | { | | | | int i; | | char *locale = setlocale (LC_ALL, "C"); | | if (! locale) | | return 2; | | for (i = CHAR_MIN; i <= CHAR_MAX; i++) | | { | | char c = i; | | wchar_t wc; | | mbstate_t mbs = { 0, }; | | size_t ss = mbrtowc (&wc, &c, 1, &mbs); | | if (1 < ss) | | return 3; | | } | | return 0; | | | | ; | | return 0; | | } | configure:29127: result: no | configure:29227: checking whether mbrtowc handles incomplete characters | configure:29284: result: guessing yes | configure:29290: checking whether mbrtowc works as well as mbtowc | configure:29351: result: guessing yes | configure:29439: checking whether mbswidth is declared in | configure:29467: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:230:22: error: 'mbswidth' undeclared (first use in this function) | char *p = (char *) mbswidth; | ^ | conftest.c:230:22: note: each undeclared identifier is reported only once for each function it appears in | configure:29467: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_EMPTY_INPUT_BUG 1 | | #define C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | /* end confdefs.h. */ | | | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | | . | | BSD/OS 4.0.1 has a bug: , and must be included | | before . */ | | #include | | #include | | #include | | #include | | | | int | | main () | | { | | | | char *p = (char *) mbswidth; | | return !p; | | | | ; | | return 0; | | } | configure:29474: result: no | configure:29489: checking for mbstate_t | configure:29520: result: yes | configure:29625: checking for obstacks that work with any size object | configure:29649: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | conftest.c:224:21: error: conflicting types for '_obstack_memory_used' | size_t _obstack_memory_used (struct obstack *); | ^ | In file included from conftest.c:220:0: | /usr/include/obstack.h:186:12: note: previous declaration of '_obstack_memory_used' was here | extern int _obstack_memory_used (struct obstack *); | ^ | configure:29649: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_EMPTY_INPUT_BUG 1 | | #define C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | /* end confdefs.h. */ | | #include "obstack.h" | | void *obstack_chunk_alloc (size_t n) { return 0; } | | void obstack_chunk_free (void *p) { } | | /* Check that an internal function returns size_t, not int. */ | | size_t _obstack_memory_used (struct obstack *); | | | | int | | main () | | { | | struct obstack mem; | | obstack_init (&mem); | | obstack_free (&mem, 0); | | | | ; | | return 0; | | } | configure:29657: result: no | configure:29736: checking whether open recognizes a trailing slash | configure:29775: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:29775: $? = 0 | configure:29775: ./conftest | configure:29775: $? = 0 | configure:29787: result: yes | configure:29846: checking whether perror matches strerror | configure:29884: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:29884: $? = 0 | configure:29884: ./conftest | configure:29884: $? = 0 | configure:29901: result: yes | configure:29981: checking whether posix_spawn_file_actions_addclose works | configure:30011: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:30011: $? = 0 | configure:30011: ./conftest | configure:30011: $? = 0 | configure:30022: result: yes | configure:30066: checking whether posix_spawn_file_actions_adddup2 works | configure:30096: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:30096: $? = 0 | configure:30096: ./conftest | configure:30096: $? = 0 | configure:30107: result: yes | configure:30151: checking whether posix_spawn_file_actions_addopen works | configure:30183: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:30183: $? = 0 | configure:30183: ./conftest | configure:30183: $? = 0 | configure:30194: result: yes | configure:30479: checking whether program_invocation_name is declared | configure:30479: result: yes | configure:30491: checking whether program_invocation_short_name is declared | configure:30491: result: yes | configure:30514: checking for raise | configure:30514: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:30514: $? = 0 | configure:30514: result: yes | configure:30537: checking for sigprocmask | configure:30537: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:30537: $? = 0 | configure:30537: result: yes | configure:30587: checking whether readlink signature is correct | configure:30605: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:30605: $? = 0 | configure:30612: result: yes | configure:30614: checking whether readlink handles trailing slash correctly | configure:30646: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:30646: $? = 0 | configure:30646: ./conftest | configure:30646: $? = 0 | configure:30657: result: yes | configure:30806: checking search.h usability | configure:30806: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:30806: $? = 0 | configure:30806: result: yes | configure:30806: checking search.h presence | configure:30806: gcc -std=gnu11 -E conftest.c | configure:30806: $? = 0 | configure:30806: result: yes | configure:30806: checking for search.h | configure:30806: result: yes | configure:30818: checking for tsearch | configure:30818: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:30818: $? = 0 | configure:30818: result: yes | configure:30837: checking whether rename honors trailing slash on destination | configure:30886: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:30886: $? = 0 | configure:30886: ./conftest | configure:30886: $? = 0 | configure:30898: result: yes | configure:30910: checking whether rename honors trailing slash on source | configure:30959: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:30959: $? = 0 | configure:30959: ./conftest | configure:30959: $? = 0 | configure:30971: result: yes | configure:30984: checking whether rename manages hard links correctly | configure:31032: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:31032: $? = 0 | configure:31032: ./conftest | configure:31032: $? = 0 | configure:31062: result: yes | configure:31074: checking whether rename manages existing destinations correctly | configure:31115: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:31115: $? = 0 | configure:31115: ./conftest | configure:31115: $? = 0 | configure:31127: result: yes | configure:31174: checking for sched.h | configure:31174: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:31174: $? = 0 | configure:31174: result: yes | configure:31268: checking for struct sched_param | configure:31268: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:31268: $? = 0 | configure:31268: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:256:33: error: expected expression before ')' token | if (sizeof ((struct sched_param))) | ^ | configure:31268: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_EMPTY_INPUT_BUG 1 | | #define C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | /* end confdefs.h. */ | | #if HAVE_SYS_CDEFS_H | | #include | | #endif | | #include | | | | | | int | | main () | | { | | if (sizeof ((struct sched_param))) | | return 0; | | ; | | return 0; | | } | configure:31268: result: yes | configure:31320: checking for struct sigaction.sa_sigaction | configure:31320: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:31320: $? = 0 | configure:31320: result: yes | configure:31465: checking for volatile sig_atomic_t | configure:31465: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:31465: $? = 0 | configure:31465: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:256:36: error: expected expression before ')' token | if (sizeof ((volatile sig_atomic_t))) | ^ | configure:31465: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_EMPTY_INPUT_BUG 1 | | #define C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | /* end confdefs.h. */ | | | | #include | | | | | | int | | main () | | { | | if (sizeof ((volatile sig_atomic_t))) | | return 0; | | ; | | return 0; | | } | configure:31465: result: yes | configure:31481: checking for sighandler_t | configure:31481: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:31481: $? = 0 | configure:31481: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:256:27: error: expected expression before ')' token | if (sizeof ((sighandler_t))) | ^ | configure:31481: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_EMPTY_INPUT_BUG 1 | | #define C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | /* end confdefs.h. */ | | | | #include | | | | | | int | | main () | | { | | if (sizeof ((sighandler_t))) | | return 0; | | ; | | return 0; | | } | configure:31481: result: yes | configure:31500: checking for sigprocmask | configure:31500: result: yes | configure:31541: checking for stdint.h | configure:31541: result: yes | configure:31551: checking for SIZE_MAX | configure:31622: result: yes | configure:31638: checking for snprintf | configure:31638: result: yes | configure:31651: checking whether snprintf respects a size of 1 | configure:31692: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:31692: $? = 0 | configure:31692: ./conftest | configure:31692: $? = 0 | configure:31703: result: yes | configure:31713: checking whether printf supports POSIX/XSI format strings with positions | configure:31759: result: yes | configure:31841: checking for snprintf | configure:31841: result: yes | configure:31854: checking whether snprintf truncates the result as in C99 | configure:31936: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:31936: $? = 0 | configure:31936: ./conftest | configure:31936: $? = 0 | configure:31947: result: yes | configure:31954: checking whether snprintf fully supports the 'n' directive | configure:32034: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:32034: $? = 0 | configure:32034: ./conftest | configure:32034: $? = 0 | configure:32045: result: yes | configure:32051: checking whether snprintf respects a size of 1 | configure:32103: result: yes | configure:32108: checking whether vsnprintf respects a zero size as in C99 | configure:32174: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:32174: $? = 0 | configure:32174: ./conftest | configure:32174: $? = 0 | configure:32185: result: yes | configure:32600: checking for posix_spawnattr_t | configure:32600: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:32600: $? = 0 | configure:32600: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:262:32: error: expected expression before ')' token | if (sizeof ((posix_spawnattr_t))) | ^ | configure:32600: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_EMPTY_INPUT_BUG 1 | | #define C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | /* end confdefs.h. */ | | | | #include | | | | | | int | | main () | | { | | if (sizeof ((posix_spawnattr_t))) | | return 0; | | ; | | return 0; | | } | configure:32600: result: yes | configure:32615: checking for posix_spawn_file_actions_t | configure:32615: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:32615: $? = 0 | configure:32615: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:263:41: error: expected expression before ')' token | if (sizeof ((posix_spawn_file_actions_t))) | ^ | configure:32615: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_EMPTY_INPUT_BUG 1 | | #define C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | /* end confdefs.h. */ | | | | #include | | | | | | int | | main () | | { | | if (sizeof ((posix_spawn_file_actions_t))) | | return 0; | | ; | | return 0; | | } | configure:32615: result: yes | configure:32984: checking for ssize_t | configure:33001: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:33001: $? = 0 | configure:33008: result: yes | configure:33048: checking for good max_align_t | configure:33070: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:33070: $? = 0 | configure:33078: result: yes | configure:33090: checking whether NULL can be used in arbitrary expressions | configure:33108: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:33108: $? = 0 | configure:33115: result: yes | configure:33283: checking which flavor of printf attribute matches inttypes macros | configure:33310: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:33310: $? = 0 | configure:33317: result: system | configure:33451: checking for stpcpy | configure:33451: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | conftest.c:284:6: warning: conflicting types for built-in function 'stpcpy' | char stpcpy (); | ^ | configure:33451: $? = 0 | configure:33451: result: yes | configure:33544: checking for working strerror function | configure:33572: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:33572: $? = 0 | configure:33572: ./conftest | configure:33572: $? = 0 | configure:33583: result: yes | configure:33650: checking for working strndup | configure:33691: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:33691: $? = 0 | configure:33691: ./conftest | configure:33691: $? = 0 | configure:33701: result: yes | configure:33743: checking for strverscmp | configure:33743: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:33743: $? = 0 | configure:33743: result: yes | configure:33965: checking for struct tms | configure:33965: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:33965: $? = 0 | configure:33965: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:276:25: error: expected expression before ')' token | if (sizeof ((struct tms))) | ^ | configure:33965: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_EMPTY_INPUT_BUG 1 | | #define C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define __USE_MINGW_ANSI_STDIO 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | /* end confdefs.h. */ | | | | #include | | | | | | int | | main () | | { | | if (sizeof ((struct tms))) | | return 0; | | ; | | return 0; | | } | configure:33965: result: yes | configure:34273: checking whether unlink honors trailing slashes | configure:34325: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:34325: $? = 0 | configure:34325: ./conftest | configure:34325: $? = 0 | configure:34336: result: yes | configure:34344: checking whether unlink of a parent directory fails as it should | configure:34416: result: guessing yes | configure:34483: checking for unsetenv | configure:34483: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:34483: $? = 0 | configure:34483: result: yes | configure:34496: checking for unsetenv() return type | configure:34521: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:34521: $? = 0 | configure:34528: result: int | configure:34537: checking whether unsetenv obeys POSIX | configure:34582: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:34582: $? = 0 | configure:34582: ./conftest | configure:34582: $? = 0 | configure:34592: result: yes | configure:34694: checking for ptrdiff_t | configure:34694: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:34694: $? = 0 | configure:34694: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:310:24: error: expected expression before ')' token | if (sizeof ((ptrdiff_t))) | ^ | configure:34694: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_EMPTY_INPUT_BUG 1 | | #define C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define __USE_MINGW_ANSI_STDIO 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_STRUCT_TMS 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | int | | main () | | { | | if (sizeof ((ptrdiff_t))) | | return 0; | | ; | | return 0; | | } | configure:34694: result: yes | configure:34717: checking for vsnprintf | configure:34717: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | conftest.c:297:6: warning: conflicting types for built-in function 'vsnprintf' | char vsnprintf (); | ^ | configure:34717: $? = 0 | configure:34717: result: yes | configure:34730: checking whether snprintf respects a size of 1 | configure:34782: result: yes | configure:34792: checking whether printf supports POSIX/XSI format strings with positions | configure:34838: result: yes | configure:34913: checking for vsnprintf | configure:34913: result: yes | configure:34926: checking whether snprintf truncates the result as in C99 | configure:35019: result: yes | configure:35026: checking whether snprintf fully supports the 'n' directive | configure:35117: result: yes | configure:35123: checking whether snprintf respects a size of 1 | configure:35175: result: yes | configure:35180: checking whether vsnprintf respects a zero size as in C99 | configure:35257: result: yes | configure:35923: checking for waitid | configure:35923: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:35923: $? = 0 | configure:35923: result: yes | configure:36173: checking whether iswcntrl works | configure:36217: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:36217: $? = 0 | configure:36217: ./conftest | configure:36217: $? = 0 | configure:36228: result: yes | configure:36252: checking for towlower | configure:36252: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | conftest.c:303:6: warning: conflicting types for built-in function 'towlower' | char towlower (); | ^ | configure:36252: $? = 0 | configure:36252: result: yes | configure:36300: checking for wctype_t | configure:36328: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:36328: $? = 0 | configure:36336: result: yes | configure:36342: checking for wctrans_t | configure:36368: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:36368: $? = 0 | configure:36376: result: yes | configure:36397: checking whether wcwidth is declared | configure:36397: gcc -std=gnu11 -c -g -O2 conftest.c >&5 | configure:36397: $? = 0 | configure:36397: result: yes | configure:36454: checking whether wcwidth works reasonably in UTF-8 locales | configure:36513: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:36513: $? = 0 | configure:36513: ./conftest | configure:36513: $? = 0 | configure:36524: result: yes | configure:36580: checking for stdint.h | configure:36580: result: yes | configure:37164: checking whether getdtablesize works | configure:37197: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:37197: $? = 0 | configure:37197: ./conftest | configure:37197: $? = 0 | configure:37210: result: yes | configure:41684: checking if malloc debugging is wanted | configure:41702: result: no | configure:41712: checking whether NLS is requested | configure:41721: result: yes | configure:41761: checking for msgfmt | configure: trying /usr/bin/msgfmt... | 0 translated messages. | configure:41793: result: /usr/bin/msgfmt | configure:41802: checking for gmsgfmt | configure:41833: result: /usr/bin/msgfmt | configure:41883: checking for xgettext | configure: trying /usr/bin/xgettext... | /usr/bin/xgettext: warning: file '/dev/null' extension '' is unknown; will try C | configure:41915: result: /usr/bin/xgettext | configure:41960: checking for msgmerge | configure: trying /usr/bin/msgmerge... | configure:41991: result: /usr/bin/msgmerge | configure:42496: checking for CFPreferencesCopyAppValue | configure:42514: gcc -std=gnu11 -o conftest -g -O2 conftest.c -Wl,-framework -Wl,CoreFoundation >&5 | conftest.c:285:42: fatal error: CoreFoundation/CFPreferences.h: No such file or directory | #include | ^ | compilation terminated. | configure:42514: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_EMPTY_INPUT_BUG 1 | | #define C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define __USE_MINGW_ANSI_STDIO 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_STRUCT_TMS 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSNPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSPRINTF_POSIX 1 | | #define HAVE_WAITID 1 | | #define GNULIB_TEST_WAITPID 1 | | #define HAVE_TOWLOWER 1 | | #define HAVE_DECL_WCWIDTH 1 | | #define GNULIB_TEST_WCWIDTH 1 | | #define HAVE_STDINT_H 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | /* end confdefs.h. */ | | #include | | int | | main () | | { | | CFPreferencesCopyAppValue(NULL, NULL) | | ; | | return 0; | | } | configure:42523: result: no | configure:42530: checking for CFLocaleCopyCurrent | configure:42548: gcc -std=gnu11 -o conftest -g -O2 conftest.c -Wl,-framework -Wl,CoreFoundation >&5 | conftest.c:285:37: fatal error: CoreFoundation/CFLocale.h: No such file or directory | #include | ^ | compilation terminated. | configure:42548: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.4.2" | | #define PACKAGE_STRING "GNU Bison 3.4.2" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2019 | | #define PACKAGE "bison" | | #define VERSION "3.4.2" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _FILE_OFFSET_BITS 64 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_GETCWD 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define restrict __restrict | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define HAVE_STDLIB_H 1 | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define HAVE_DUP2 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_EMPTY_INPUT_BUG 1 | | #define C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define __USE_MINGW_ANSI_STDIO 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_STRUCT_TMS 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSNPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSPRINTF_POSIX 1 | | #define HAVE_WAITID 1 | | #define GNULIB_TEST_WAITPID 1 | | #define HAVE_TOWLOWER 1 | | #define HAVE_DECL_WCWIDTH 1 | | #define GNULIB_TEST_WCWIDTH 1 | | #define HAVE_STDINT_H 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | /* end confdefs.h. */ | | #include | | int | | main () | | { | | CFLocaleCopyCurrent(); | | ; | | return 0; | | } | configure:42557: result: no | configure:42606: checking for GNU gettext in libc | configure:42630: gcc -std=gnu11 -o conftest -g -O2 conftest.c >&5 | configure:42630: $? = 0 | configure:42639: result: yes | configure:43465: checking whether to use NLS | configure:43467: result: yes | configure:43470: checking where the gettext function comes from | configure:43481: result: libc | configure:43590: checking for valgrind | configure:43606: found /usr/bin/valgrind | configure:43617: result: valgrind | configure:43643: checking Valgrind suppression file | configure:43645: result: build-aux/Linux.valgrind | configure:43781: checking that generated files are newer than configure | configure:43787: result: done | configure:44134: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GNU Bison config.status 3.4.2, which was | generated by GNU Autoconf 2.69. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on debian | | config.status:2491: creating src/yacc | config.status:2491: creating javacomp.sh | config.status:2491: creating javaexec.sh | config.status:2491: creating gnulib-po/Makefile.in | config.status:2491: creating runtime-po/Makefile.in | config.status:2491: creating etc/bench.pl | config.status:2491: creating tests/atlocal | config.status:2491: creating tests/bison | config.status:2491: creating Makefile | config.status:2491: creating po/Makefile.in | config.status:2491: creating doc/yacc.1 | config.status:2491: creating lib/config.h | config.status:2756: executing depfiles commands | config.status:2833: cd . && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | config.status:2838: $? = 0 | config.status:2756: executing po-directories commands | config.status:2756: executing tests/atconfig commands | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=i686-pc-linux-gnu | ac_cv_c_bigendian=no | ac_cv_c_compiler_gnu=yes | ac_cv_c_inline=inline | ac_cv_c_restrict=__restrict | ac_cv_cxx_compiler_gnu=yes | ac_cv_env_CCC_set= | ac_cv_env_CCC_value= | ac_cv_env_CC_set= | ac_cv_env_CC_value= | ac_cv_env_CFLAGS_set= | ac_cv_env_CFLAGS_value= | ac_cv_env_CPPFLAGS_set= | ac_cv_env_CPPFLAGS_value= | ac_cv_env_CPP_set= | ac_cv_env_CPP_value= | ac_cv_env_CXXFLAGS_set= | ac_cv_env_CXXFLAGS_value= | ac_cv_env_CXX_set= | ac_cv_env_CXX_value= | ac_cv_env_LDFLAGS_set= | ac_cv_env_LDFLAGS_value= | ac_cv_env_LIBS_set= | ac_cv_env_LIBS_value= | ac_cv_env_M4_set= | ac_cv_env_M4_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___fseterr=no | ac_cv_func___xpg_strerror_r=yes | ac_cv_func__set_invalid_parameter_handler=no | ac_cv_func_alloca_works=yes | ac_cv_func_canonicalize_file_name=yes | ac_cv_func_catgets=yes | ac_cv_func_clock_gettime=yes | ac_cv_func_clock_settime=yes | ac_cv_func_fcntl=yes | ac_cv_func_fsync=yes | ac_cv_func_getcwd=yes | ac_cv_func_getdtablesize=yes | ac_cv_func_getexecname=no | ac_cv_func_getopt_long_only=yes | ac_cv_func_getprogname=no | ac_cv_func_getrusage=yes | ac_cv_func_gettimeofday=yes | ac_cv_func_isascii=yes | ac_cv_func_iswcntrl=yes | ac_cv_func_link=yes | ac_cv_func_lstat=yes | ac_cv_func_malloc_0_nonnull=yes | ac_cv_func_mbrtowc=yes | ac_cv_func_mbsinit=yes | ac_cv_func_microuptime=no | ac_cv_func_mmap=yes | ac_cv_func_mprotect=yes | ac_cv_func_nanouptime=no | ac_cv_func_obstack=no | ac_cv_func_obstack_printf=yes | ac_cv_func_pipe2=yes | ac_cv_func_pipe=yes | ac_cv_func_posix_spawn=yes | ac_cv_func_raise=yes | ac_cv_func_readlink=yes | ac_cv_func_readlinkat=yes | ac_cv_func_realpath=yes | ac_cv_func_setenv=yes | ac_cv_func_setlocale=yes | ac_cv_func_sigaction=yes | ac_cv_func_sigaltstack=yes | ac_cv_func_siginterrupt=yes | ac_cv_func_sigprocmask=yes | ac_cv_func_snprintf=yes | ac_cv_func_stpcpy=yes | ac_cv_func_strdup=yes | ac_cv_func_strerror_r=yes | ac_cv_func_strerror_r_char_p=yes | ac_cv_func_strndup=yes | ac_cv_func_strnlen=yes | ac_cv_func_strverscmp=yes | ac_cv_func_symlink=yes | ac_cv_func_tcdrain=yes | ac_cv_func_towlower=yes | ac_cv_func_tsearch=yes | ac_cv_func_unsetenv=yes | ac_cv_func_vasnprintf=no | ac_cv_func_vsnprintf=yes | ac_cv_func_waitid=yes | ac_cv_func_wcrtomb=yes | ac_cv_func_wcslen=yes | ac_cv_func_wcsnlen=yes | ac_cv_func_wcwidth=yes | ac_cv_have_decl___argv=no | ac_cv_have_decl___fpending=yes | ac_cv_have_decl__snprintf=no | ac_cv_have_decl_alarm=yes | ac_cv_have_decl_clearerr_unlocked=yes | ac_cv_have_decl_feof_unlocked=yes | ac_cv_have_decl_ferror_unlocked=yes | ac_cv_have_decl_fflush_unlocked=yes | ac_cv_have_decl_fgets_unlocked=yes | ac_cv_have_decl_fputc_unlocked=yes | ac_cv_have_decl_fputs_unlocked=yes | ac_cv_have_decl_fread_unlocked=yes | ac_cv_have_decl_fwrite_unlocked=yes | ac_cv_have_decl_getc_unlocked=yes | ac_cv_have_decl_getchar_unlocked=yes | ac_cv_have_decl_getdtablesize=yes | ac_cv_have_decl_gethrtime=no | ac_cv_have_decl_ldexpl=yes | ac_cv_have_decl_mbswidth=no | ac_cv_have_decl_obstack_printf=yes | ac_cv_have_decl_program_invocation_name=yes | ac_cv_have_decl_program_invocation_short_name=yes | ac_cv_have_decl_putc_unlocked=yes | ac_cv_have_decl_putchar_unlocked=yes | ac_cv_have_decl_setenv=yes | ac_cv_have_decl_snprintf=yes | ac_cv_have_decl_strdup=yes | ac_cv_have_decl_strerror_r=yes | ac_cv_have_decl_strndup=yes | ac_cv_have_decl_strnlen=yes | ac_cv_have_decl_unsetenv=yes | ac_cv_have_decl_vsnprintf=yes | ac_cv_have_decl_wcwidth=yes | ac_cv_header_crtdefs_h=no | ac_cv_header_features_h=yes | ac_cv_header_getopt_h=yes | ac_cv_header_inttypes_h=yes | ac_cv_header_limits_h=yes | ac_cv_header_locale_h=yes | ac_cv_header_math_h=yes | ac_cv_header_memory_h=yes | ac_cv_header_minix_config_h=no | ac_cv_header_pthread_h=yes | ac_cv_header_sched_h=yes | ac_cv_header_search_h=yes | ac_cv_header_spawn_h=yes | ac_cv_header_stat_broken=no | ac_cv_header_stdbool_h=yes | ac_cv_header_stdc=yes | ac_cv_header_stdint_h=yes | ac_cv_header_stdio_ext_h=yes | ac_cv_header_stdlib_h=yes | ac_cv_header_string_h=yes | ac_cv_header_strings_h=yes | ac_cv_header_sys_cdefs_h=yes | ac_cv_header_sys_mman_h=yes | ac_cv_header_sys_param_h=yes | ac_cv_header_sys_resource_h=yes | ac_cv_header_sys_socket_h=yes | ac_cv_header_sys_stat_h=yes | ac_cv_header_sys_time_h=yes | ac_cv_header_sys_times_h=yes | ac_cv_header_sys_types_h=yes | ac_cv_header_sys_wait_h=yes | ac_cv_header_threads_h=no | ac_cv_header_unistd_h=yes | ac_cv_header_wchar_h=yes | ac_cv_header_wctype_h=yes | ac_cv_host=i686-pc-linux-gnu | ac_cv_lib_error_at_line=yes | ac_cv_lib_lex=-lfl | ac_cv_libtextstyle=no | ac_cv_member_struct_sigaction_sa_sigaction=yes | ac_cv_objext=o | ac_cv_path_EGREP='/bin/grep -E' | ac_cv_path_GMSGFMT=/usr/bin/msgfmt | ac_cv_path_GREP=/bin/grep | ac_cv_path_M4=/usr/bin/m4 | ac_cv_path_MSGFMT=/usr/bin/msgfmt | ac_cv_path_MSGMERGE=/usr/bin/msgmerge | ac_cv_path_PERL=/usr/bin/perl | ac_cv_path_SED=/bin/sed | ac_cv_path_XGETTEXT=/usr/bin/xgettext | ac_cv_path_XSLTPROC=/usr/bin/xsltproc | ac_cv_path_install='/usr/bin/install -c' | ac_cv_path_mkdir=/bin/mkdir | ac_cv_prog_AWK=gawk | ac_cv_prog_CPP='gcc -std=gnu11 -E' | ac_cv_prog_HAVE_JAVAC_IN_PATH=yes | ac_cv_prog_HAVE_JAVA_IN_PATH=yes | ac_cv_prog_LEX=flex | ac_cv_prog_VALGRIND=valgrind | ac_cv_prog_YACC='bison -y' | ac_cv_prog_ac_ct_AR=ar | ac_cv_prog_ac_ct_CC=gcc | ac_cv_prog_ac_ct_CXX=g++ | ac_cv_prog_ac_ct_RANLIB=ranlib | ac_cv_prog_cc_c11=-std=gnu11 | ac_cv_prog_cc_g=yes | ac_cv_prog_cc_stdc=-std=gnu11 | ac_cv_prog_cxx_cxx11=-std=gnu++11 | ac_cv_prog_cxx_cxx98=-std=gnu++11 | ac_cv_prog_cxx_g=yes | ac_cv_prog_cxx_stdcxx=-std=gnu++11 | ac_cv_prog_gnu_m4_debugfile=--debugfile | ac_cv_prog_gnu_m4_gnu=yes | ac_cv_prog_lex_is_flex=yes | 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_clock_gettime='none required' | ac_cv_search_posix_spawn='none required' | ac_cv_should_define__xopen_source=no | ac_cv_sys_file_offset_bits=64 | ac_cv_sys_largefile_CC=no | ac_cv_type__Bool=yes | ac_cv_type_long_long_int=yes | ac_cv_type_mbstate_t=yes | ac_cv_type_mode_t=yes | ac_cv_type_nlink_t=yes | ac_cv_type_pid_t=yes | ac_cv_type_posix_spawn_file_actions_t=yes | ac_cv_type_posix_spawnattr_t=yes | ac_cv_type_ptrdiff_t=yes | ac_cv_type_sig_atomic_t=yes | ac_cv_type_sighandler_t=yes | ac_cv_type_sigset_t=yes | ac_cv_type_size_t=yes | ac_cv_type_struct_sched_param=yes | ac_cv_type_struct_tms=yes | ac_cv_type_uid_t=yes | ac_cv_type_unsigned_long_long_int=yes | ac_cv_type_volatile_sig_atomic_t=yes | ac_cv_working_alloca_h=yes | acl_cv_hardcode_direct=no | acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' | acl_cv_hardcode_libdir_separator= | acl_cv_hardcode_minus_L=no | acl_cv_libdirstems=lib,lib | acl_cv_libext=a | acl_cv_libname_spec='lib$name' | acl_cv_libpath=LD_LIBRARY_PATH | acl_cv_library_names_spec='$libname$shrext' | acl_cv_path_LD=/usr/bin/ld | acl_cv_prog_gnu_ld=yes | acl_cv_rpath=done | acl_cv_shlibext=so | acl_cv_shlibpath_var=LD_LIBRARY_PATH | acl_cv_wl=-Wl, | am_cv_CC_dependencies_compiler_type=gcc3 | am_cv_CXX_dependencies_compiler_type=gcc3 | am_cv_langinfo_codeset=yes | am_cv_make_support_nested_variables=yes | ax_cv_check_cxxflags___std_cpp03=yes | ax_cv_check_cxxflags___std_cpp11=yes | ax_cv_check_cxxflags___std_cpp14=yes | ax_cv_check_cxxflags___std_cpp17=no | ax_cv_check_cxxflags___std_cpp17__stdlib_libcpp=no | ax_cv_check_cxxflags___std_cpp2a=no | ax_cv_check_cxxflags___std_cpp2a__stdlib_libcpp=no | ax_cv_check_cxxflags___std_cpp98=yes | bison_cv_c_supports_posixly_correct=yes | bison_cv_cxx_supports_posixly_correct=yes | bison_cv_cxx_works=yes | gl_cv_C_locale_sans_EILSEQ=no | gl_cv_arithmetic_hrtime_t=no | gl_cv_c_amsterdam_compiler=no | gl_cv_c_multiarch=no | gl_cv_cc_double_expbit0='word 1 bit 20' | gl_cv_cc_float_expbit0='word 0 bit 23' | gl_cv_decl_null_works=yes | gl_cv_decl_readlink_works=yes | gl_cv_double_slash_root=no | gl_cv_func___fpending=yes | gl_cv_func_dup2_works=yes | gl_cv_func_fcntl_f_dupfd_cloexec='needs runtime check' | gl_cv_func_fcntl_f_dupfd_works=yes | gl_cv_func_fopen_slash=yes | gl_cv_func_fprintf_posix=yes | gl_cv_func_frexp_no_libm=yes | gl_cv_func_getdtablesize_works=yes | gl_cv_func_getopt_gnu=yes | gl_cv_func_getopt_long_gnu=yes | gl_cv_func_getopt_posix=yes | gl_cv_func_gettimeofday_clobber=no | gl_cv_func_gettimeofday_posix_signature=almost | gl_cv_func_isnand_no_libm=yes | gl_cv_func_isnanf_no_libm=yes | gl_cv_func_isnanf_works=yes | gl_cv_func_isnanl_no_libm=yes | gl_cv_func_isnanl_works=yes | gl_cv_func_iswcntrl_works=yes | gl_cv_func_itold_works=yes | gl_cv_func_ldexp_no_libm=yes | gl_cv_func_ldexpl_no_libm=yes | gl_cv_func_ldexpl_works=yes | gl_cv_func_lstat_dereferences_slashed_symlink=yes | gl_cv_func_malloc_0_nonnull=1 | gl_cv_func_malloc_posix=yes | gl_cv_func_mbrtowc_empty_input=no | gl_cv_func_mbrtowc_incomplete_state='guessing yes' | gl_cv_func_mbrtowc_nul_retval='guessing yes' | gl_cv_func_mbrtowc_null_arg1='guessing yes' | gl_cv_func_mbrtowc_null_arg2='guessing yes' | gl_cv_func_mbrtowc_retval='guessing yes' | gl_cv_func_mbrtowc_sanitycheck='guessing yes' | gl_cv_func_memchr_works=yes | gl_cv_func_open_slash=yes | gl_cv_func_perror_works=yes | gl_cv_func_posix_spawn_file_actions_addclose_works=yes | gl_cv_func_posix_spawn_file_actions_adddup2_works=yes | gl_cv_func_posix_spawn_file_actions_addopen_works=yes | gl_cv_func_posix_spawn_works=yes | gl_cv_func_printf_attribute_flavor=system | gl_cv_func_printf_directive_a=yes | gl_cv_func_printf_directive_f=yes | gl_cv_func_printf_directive_ls=yes | gl_cv_func_printf_directive_n=yes | gl_cv_func_printf_enomem=yes | gl_cv_func_printf_flag_grouping=yes | gl_cv_func_printf_flag_leftadjust=yes | gl_cv_func_printf_flag_zero=yes | gl_cv_func_printf_infinite=yes | gl_cv_func_printf_infinite_long_double=yes | gl_cv_func_printf_long_double=yes | gl_cv_func_printf_positions=yes | gl_cv_func_printf_precision=yes | gl_cv_func_printf_sizes_c99=yes | gl_cv_func_readlink_works=yes | gl_cv_func_realpath_works=yes | gl_cv_func_rename_dest_works=yes | gl_cv_func_rename_link_works=yes | gl_cv_func_rename_slash_dst_works=yes | gl_cv_func_rename_slash_src_works=yes | gl_cv_func_sigprocmask=1 | gl_cv_func_snprintf_directive_n=yes | gl_cv_func_snprintf_posix=yes | gl_cv_func_snprintf_retval_c99=yes | gl_cv_func_snprintf_size1=yes | gl_cv_func_snprintf_truncation_c99=yes | gl_cv_func_snprintf_usable=yes | gl_cv_func_spawnattr_setschedparam=yes | gl_cv_func_spawnattr_setschedpolicy=yes | gl_cv_func_sprintf_posix=yes | gl_cv_func_strerror_0_works=yes | gl_cv_func_strerror_r_posix_signature=no | gl_cv_func_strerror_r_works=yes | gl_cv_func_strndup_works=yes | gl_cv_func_unlink_honors_slashes=yes | gl_cv_func_unlink_parent_fails='guessing yes' | gl_cv_func_unsetenv_works=yes | gl_cv_func_vfprintf_posix=yes | gl_cv_func_vsnprintf_posix=yes | gl_cv_func_vsnprintf_usable=yes | gl_cv_func_vsnprintf_zerosize_c99=yes | gl_cv_func_vsprintf_posix=yes | gl_cv_func_wcwidth_works=yes | gl_cv_func_working_strerror=yes | gl_cv_have_clock_gettime_macro=yes | gl_cv_have_include_next=yes | gl_cv_have_weak=yes | gl_cv_header_errno_h_complete=yes | gl_cv_header_inttypes_h=yes | gl_cv_header_limits_width=no | gl_cv_header_math_huge_val_works=yes | gl_cv_header_math_nan_works=yes | gl_cv_header_stdint_h=yes | gl_cv_header_stdint_predates_cxx11_h=no | gl_cv_header_stdint_width=no | gl_cv_header_wchar_h_correct_inline=yes | gl_cv_header_working_fcntl_h=yes | gl_cv_header_working_stdint_h=yes | gl_cv_host_cpu_c_abi_32bit=yes | gl_cv_long_double_equals_double=no | gl_cv_macro_O_CLOEXEC=yes | gl_cv_minmax_in_limits_h=no | gl_cv_minmax_in_sys_param_h=yes | gl_cv_next_fcntl_h='' | gl_cv_next_getopt_h='' | gl_cv_next_inttypes_h='' | gl_cv_next_limits_h='' | gl_cv_next_math_h='' | gl_cv_next_sched_h='' | gl_cv_next_signal_h='' | gl_cv_next_spawn_h='' | gl_cv_next_stdint_h='' | gl_cv_next_stdio_h='' | gl_cv_next_stdlib_h='' | gl_cv_next_string_h='' | gl_cv_next_sys_resource_h='' | gl_cv_next_sys_stat_h='' | gl_cv_next_sys_time_h='' | gl_cv_next_sys_times_h='' | gl_cv_next_sys_types_h='' | gl_cv_next_sys_wait_h='' | gl_cv_next_time_h='' | gl_cv_next_unistd_h='' | gl_cv_next_wchar_h='' | gl_cv_next_wctype_h='' | gl_cv_pragma_columns=no | gl_cv_prog_as_underscore=no | gl_cv_promoted_mode_t=mode_t | gl_cv_rpl_alloca=yes | gl_cv_size_max=yes | gl_cv_sys_struct_timespec_in_time_h=yes | gl_cv_sys_struct_timeval=yes | gl_cv_sys_struct_timeval_tv_sec=yes | gl_cv_test_INT32_MAX_LT_INTMAX_MAX=yes | gl_cv_test_INT64_MAX_EQ_LONG_MAX=no | gl_cv_test_UINT32_MAX_LT_UINTMAX_MAX=yes | gl_cv_test_UINT64_MAX_EQ_ULONG_MAX=no | gl_cv_type_max_align_t=yes | gl_cv_type_sigset_t=yes | gl_cv_type_wctrans_t=yes | gl_cv_type_wctype_t=yes | gl_cv_type_wint_t_too_small=no | gl_cv_warn_cxx__Werror__Wunknown_warning_option=no | gl_cv_warn_cxx__fno_exceptions=yes | gt_cv_c_intmax_t=yes | gt_cv_c_wchar_t=yes | gt_cv_c_wint_t=yes | gt_cv_func_CFLocaleCopyCurrent=no | gt_cv_func_CFPreferencesCopyAppValue=no | gt_cv_func_gnugettext2_libc=yes | gt_cv_func_unsetenv_ret=int | gt_cv_inttypes_pri_broken=no | gt_cv_locale_fr_utf8=none | gt_cv_locale_ja=none | gt_cv_locale_zh_CN=none | gt_cv_ssize_t=yes | gt_cv_var_environ_declaration=yes | lv_cv_gcc_pragma_push_works=yes | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | ACLOCAL='${SHELL} /home/richard/bison-3.4.2/build-aux/missing aclocal-1.16' | ALLOCA='' | ALLOCA_H='lib/alloca.h' | AMDEPBACKSLASH='\' | AMDEP_FALSE='#' | AMDEP_TRUE='' | AMTAR='$${TAR-tar}' | AM_BACKSLASH='\' | AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | AM_DEFAULT_VERBOSITY='0' | AM_V='$(V)' | APPLE_UNIVERSAL_BUILD='0' | AR='ar' | ARFLAGS='cr' | ASM_SYMBOL_PREFIX='""' | AUTOCONF='${SHELL} /home/richard/bison-3.4.2/build-aux/missing autoconf' | AUTOHEADER='${SHELL} /home/richard/bison-3.4.2/build-aux/missing autoheader' | AUTOM4TE='${SHELL} /home/richard/bison-3.4.2/build-aux/missing autom4te' | AUTOMAKE='${SHELL} /home/richard/bison-3.4.2/build-aux/missing automake-1.16' | AWK='gawk' | BISON_CXX_WORKS=':' | BISON_C_WORKS=':' | BISON_LOCALEDIR='/usr/share/locale' | BITSIZEOF_PTRDIFF_T='' | BITSIZEOF_SIG_ATOMIC_T='' | BITSIZEOF_SIZE_T='' | BITSIZEOF_WCHAR_T='' | BITSIZEOF_WINT_T='' | CC='gcc -std=gnu11' | CCDEPMODE='depmode=gcc3' | CFLAGS='-g -O2' | CLASSPATH='' | CLASSPATH_SEPARATOR=':' | CONFIG_INCLUDE='lib/config.h' | CONF_JAVA='java' | CONF_JAVAC='javac' | CPP='gcc -std=gnu11 -E' | CPPFLAGS='' | CROSS_COMPILING_FALSE='' | CROSS_COMPILING_TRUE='#' | CXX03_CXXFLAGS='-std=c++03' | CXX11_CXXFLAGS='-std=c++11' | CXX14_CXXFLAGS='-std=c++14' | CXX17_CXXFLAGS='' | CXX2A_CXXFLAGS='' | CXX98_CXXFLAGS='-std=c++98' | CXX='g++ -std=gnu++11' | CXXDEPMODE='depmode=gcc3' | CXXFLAGS='-g -O2' | CXX_COMPILER_POSIXLY_CORRECT='true' | CYGPATH_W='echo' | C_COMPILER_POSIXLY_CORRECT='true' | DC='' | DCFLAGS='' | DEFS='' | DEPDIR='.deps' | DOT='${SHELL} /home/richard/bison-3.4.2/build-aux/missing dot' | ECHO_C='' | ECHO_N='-n' | ECHO_T='' | EGREP='/bin/grep -E' | EMULTIHOP_HIDDEN='' | EMULTIHOP_VALUE='' | ENABLE_CXX11_FALSE='#' | ENABLE_CXX11_TRUE='' | ENABLE_CXX14_FALSE='#' | ENABLE_CXX14_TRUE='' | ENABLE_CXX_FALSE='#' | ENABLE_CXX_TRUE='' | ENABLE_D_FALSE='' | ENABLE_D_TRUE='#' | ENABLE_GCC_WARNINGS_FALSE='' | ENABLE_GCC_WARNINGS_TRUE='#' | ENABLE_JAVA_FALSE='#' | ENABLE_JAVA_TRUE='' | ENABLE_YACC_FALSE='#' | ENABLE_YACC_TRUE='' | ENOLINK_HIDDEN='' | ENOLINK_VALUE='' | EOVERFLOW_HIDDEN='' | EOVERFLOW_VALUE='' | ERRNO_H='' | EXEEXT='' | FLEX_CXX_WORKS_FALSE='#' | FLEX_CXX_WORKS_TRUE='' | FLEX_SCANNER_CXXFLAGS='' | FLEX_WORKS_FALSE='#' | FLEX_WORKS_TRUE='' | FLOAT_H='' | GCC='yes' | GETOPT_CDEFS_H='' | GETOPT_H='' | GETTEXT_MACRO_VERSION='0.19' | GL_COND_LIBTOOL_FALSE='' | GL_COND_LIBTOOL_TRUE='#' | GL_GENERATE_ALLOCA_H_FALSE='#' | GL_GENERATE_ALLOCA_H_TRUE='' | GL_GENERATE_ERRNO_H_FALSE='' | GL_GENERATE_ERRNO_H_TRUE='#' | GL_GENERATE_FLOAT_H_FALSE='' | GL_GENERATE_FLOAT_H_TRUE='#' | GL_GENERATE_LIMITS_H_FALSE='#' | GL_GENERATE_LIMITS_H_TRUE='' | GL_GENERATE_STDBOOL_H_FALSE='' | GL_GENERATE_STDBOOL_H_TRUE='#' | GL_GENERATE_STDDEF_H_FALSE='' | GL_GENERATE_STDDEF_H_TRUE='#' | GL_GENERATE_STDINT_H_FALSE='#' | GL_GENERATE_STDINT_H_TRUE='' | GL_GENERATE_TEXTSTYLE_H_FALSE='#' | GL_GENERATE_TEXTSTYLE_H_TRUE='' | GMSGFMT='/usr/bin/msgfmt' | GMSGFMT_015='/usr/bin/msgfmt' | GNULIB_ACOSF='0' | GNULIB_ACOSL='0' | GNULIB_ASINF='0' | GNULIB_ASINL='0' | GNULIB_ATAN2F='0' | GNULIB_ATANF='0' | GNULIB_ATANL='0' | GNULIB_ATOLL='0' | GNULIB_BTOWC='0' | GNULIB_CALLOC_POSIX='1' | GNULIB_CANONICALIZE_FILE_NAME='1' | GNULIB_CBRT='0' | GNULIB_CBRTF='0' | GNULIB_CBRTL='0' | GNULIB_CEIL='0' | GNULIB_CEILF='0' | GNULIB_CEILL='0' | GNULIB_CHDIR='0' | GNULIB_CHOWN='0' | GNULIB_CLOSE='1' | GNULIB_COPYSIGN='0' | GNULIB_COPYSIGNF='0' | GNULIB_COPYSIGNL='0' | GNULIB_COPY_FILE_RANGE='0' | GNULIB_COSF='0' | GNULIB_COSHF='0' | GNULIB_COSL='0' | GNULIB_CTIME='0' | GNULIB_DPRINTF='0' | GNULIB_DUP2='1' | GNULIB_DUP3='0' | GNULIB_DUP='0' | GNULIB_ENVIRON='1' | GNULIB_EUIDACCESS='0' | GNULIB_EXP2='0' | GNULIB_EXP2F='0' | GNULIB_EXP2L='0' | GNULIB_EXPF='0' | GNULIB_EXPL='0' | GNULIB_EXPLICIT_BZERO='0' | GNULIB_EXPM1='0' | GNULIB_EXPM1F='0' | GNULIB_EXPM1L='0' | GNULIB_FABSF='0' | GNULIB_FABSL='0' | GNULIB_FACCESSAT='0' | GNULIB_FCHDIR='0' | GNULIB_FCHMODAT='0' | GNULIB_FCHOWNAT='0' | GNULIB_FCLOSE='0' | GNULIB_FCNTL='1' | GNULIB_FDATASYNC='0' | GNULIB_FDOPEN='0' | GNULIB_FFLUSH='0' | GNULIB_FFSL='0' | GNULIB_FFSLL='0' | GNULIB_FGETC='1' | GNULIB_FGETS='1' | GNULIB_FLOOR='0' | GNULIB_FLOORF='0' | GNULIB_FLOORL='0' | GNULIB_FMA='0' | GNULIB_FMAF='0' | GNULIB_FMAL='0' | GNULIB_FMOD='0' | GNULIB_FMODF='0' | GNULIB_FMODL='0' | GNULIB_FOPEN='1' | GNULIB_FPRINTF='1' | GNULIB_FPRINTF_POSIX='1' | GNULIB_FPURGE='0' | GNULIB_FPUTC='1' | GNULIB_FPUTS='1' | GNULIB_FREAD='1' | GNULIB_FREOPEN='0' | GNULIB_FREXP='0' | GNULIB_FREXPF='0' | GNULIB_FREXPL='0' | GNULIB_FSCANF='1' | GNULIB_FSEEK='0' | GNULIB_FSEEKO='0' | GNULIB_FSTAT='0' | GNULIB_FSTATAT='0' | GNULIB_FSYNC='1' | GNULIB_FTELL='0' | GNULIB_FTELLO='0' | GNULIB_FTRUNCATE='0' | GNULIB_FUTIMENS='0' | GNULIB_FWRITE='1' | GNULIB_GETC='1' | GNULIB_GETCHAR='1' | GNULIB_GETCWD='0' | GNULIB_GETDELIM='0' | GNULIB_GETDOMAINNAME='0' | GNULIB_GETDTABLESIZE='1' | GNULIB_GETGROUPS='0' | GNULIB_GETHOSTNAME='0' | GNULIB_GETLINE='0' | GNULIB_GETLOADAVG='0' | GNULIB_GETLOGIN='0' | GNULIB_GETLOGIN_R='0' | GNULIB_GETPAGESIZE='0' | GNULIB_GETPASS='0' | GNULIB_GETRUSAGE='1' | GNULIB_GETSUBOPT='0' | GNULIB_GETTIMEOFDAY='1' | GNULIB_GETUSERSHELL='0' | GNULIB_GL_UNISTD_H_GETOPT='' | GNULIB_GRANTPT='0' | GNULIB_GROUP_MEMBER='0' | GNULIB_HYPOT='0' | GNULIB_HYPOTF='0' | GNULIB_HYPOTL='0' | GNULIB_ILOGB='0' | GNULIB_ILOGBF='0' | GNULIB_ILOGBL='0' | GNULIB_IMAXABS='0' | GNULIB_IMAXDIV='0' | GNULIB_ISATTY='0' | GNULIB_ISFINITE='0' | GNULIB_ISINF='0' | GNULIB_ISNAN='1' | GNULIB_ISNAND='1' | GNULIB_ISNANF='1' | GNULIB_ISNANL='1' | GNULIB_ISWBLANK='0' | GNULIB_ISWCTYPE='0' | GNULIB_LCHMOD='0' | GNULIB_LCHOWN='0' | GNULIB_LDEXPF='0' | GNULIB_LDEXPL='1' | GNULIB_LINK='0' | GNULIB_LINKAT='0' | GNULIB_LOCALTIME='0' | GNULIB_LOG10='0' | GNULIB_LOG10F='0' | GNULIB_LOG10L='0' | GNULIB_LOG1P='0' | GNULIB_LOG1PF='0' | GNULIB_LOG1PL='0' | GNULIB_LOG2='0' | GNULIB_LOG2F='0' | GNULIB_LOG2L='0' | GNULIB_LOG='0' | GNULIB_LOGB='0' | GNULIB_LOGBF='0' | GNULIB_LOGBL='0' | GNULIB_LOGF='0' | GNULIB_LOGL='0' | GNULIB_LSEEK='0' | GNULIB_LSTAT='0' | GNULIB_MALLOC_POSIX='1' | GNULIB_MBRLEN='0' | GNULIB_MBRTOWC='1' | GNULIB_MBSCASECMP='0' | GNULIB_MBSCASESTR='0' | GNULIB_MBSCHR='0' | GNULIB_MBSCSPN='0' | GNULIB_MBSINIT='1' | GNULIB_MBSLEN='0' | GNULIB_MBSNCASECMP='0' | GNULIB_MBSNLEN='0' | GNULIB_MBSNRTOWCS='0' | GNULIB_MBSPBRK='0' | GNULIB_MBSPCASECMP='0' | GNULIB_MBSRCHR='0' | GNULIB_MBSRTOWCS='0' | GNULIB_MBSSEP='0' | GNULIB_MBSSPN='0' | GNULIB_MBSSTR='0' | GNULIB_MBSTOK_R='0' | GNULIB_MBTOWC='0' | GNULIB_MEMCHR='1' | GNULIB_MEMMEM='0' | GNULIB_MEMPCPY='0' | GNULIB_MEMRCHR='0' | GNULIB_MKDIRAT='0' | GNULIB_MKDTEMP='0' | GNULIB_MKFIFO='0' | GNULIB_MKFIFOAT='0' | GNULIB_MKNOD='0' | GNULIB_MKNODAT='0' | GNULIB_MKOSTEMP='0' | GNULIB_MKOSTEMPS='0' | GNULIB_MKSTEMP='0' | GNULIB_MKSTEMPS='0' | GNULIB_MKTIME='0' | GNULIB_MODF='0' | GNULIB_MODFF='0' | GNULIB_MODFL='0' | GNULIB_NANOSLEEP='0' | GNULIB_NONBLOCKING='0' | GNULIB_OBSTACK_PRINTF='1' | GNULIB_OBSTACK_PRINTF_POSIX='0' | GNULIB_OPEN='1' | GNULIB_OPENAT='0' | GNULIB_OVERRIDES_STRUCT_STAT='0' | GNULIB_OVERRIDES_WINT_T='0' | GNULIB_PCLOSE='0' | GNULIB_PERROR='1' | GNULIB_PIPE2='1' | GNULIB_PIPE='0' | GNULIB_POPEN='0' | GNULIB_POSIX_OPENPT='0' | GNULIB_POSIX_SPAWN='0' | GNULIB_POSIX_SPAWNATTR_DESTROY='1' | GNULIB_POSIX_SPAWNATTR_GETFLAGS='0' | GNULIB_POSIX_SPAWNATTR_GETPGROUP='0' | GNULIB_POSIX_SPAWNATTR_GETSCHEDPARAM='0' | GNULIB_POSIX_SPAWNATTR_GETSCHEDPOLICY='0' | GNULIB_POSIX_SPAWNATTR_GETSIGDEFAULT='0' | GNULIB_POSIX_SPAWNATTR_GETSIGMASK='0' | GNULIB_POSIX_SPAWNATTR_INIT='1' | GNULIB_POSIX_SPAWNATTR_SETFLAGS='1' | GNULIB_POSIX_SPAWNATTR_SETPGROUP='0' | GNULIB_POSIX_SPAWNATTR_SETSCHEDPARAM='0' | GNULIB_POSIX_SPAWNATTR_SETSCHEDPOLICY='0' | GNULIB_POSIX_SPAWNATTR_SETSIGDEFAULT='0' | GNULIB_POSIX_SPAWNATTR_SETSIGMASK='1' | GNULIB_POSIX_SPAWNP='1' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDCHDIR='0' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE='1' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2='1' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDFCHDIR='0' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN='1' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_DESTROY='1' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_INIT='1' | GNULIB_POWF='0' | GNULIB_PREAD='0' | GNULIB_PRINTF='1' | GNULIB_PRINTF_POSIX='1' | GNULIB_PTHREAD_SIGMASK='0' | GNULIB_PTSNAME='0' | GNULIB_PTSNAME_R='0' | GNULIB_PUTC='1' | GNULIB_PUTCHAR='1' | GNULIB_PUTENV='0' | GNULIB_PUTS='1' | GNULIB_PWRITE='0' | GNULIB_QSORT_R='0' | GNULIB_RAISE='1' | GNULIB_RANDOM='0' | GNULIB_RANDOM_R='0' | GNULIB_RAWMEMCHR='0' | GNULIB_READ='0' | GNULIB_READLINK='1' | GNULIB_READLINKAT='0' | GNULIB_REALLOCARRAY='0' | GNULIB_REALLOC_POSIX='1' | GNULIB_REALPATH='1' | GNULIB_REMAINDER='0' | GNULIB_REMAINDERF='0' | GNULIB_REMAINDERL='0' | GNULIB_REMOVE='0' | GNULIB_RENAME='1' | GNULIB_RENAMEAT='0' | GNULIB_RINT='0' | GNULIB_RINTF='0' | GNULIB_RINTL='0' | GNULIB_RMDIR='0' | GNULIB_ROUND='0' | GNULIB_ROUNDF='0' | GNULIB_ROUNDL='0' | GNULIB_RPMATCH='0' | GNULIB_SCANF='1' | GNULIB_SCHED_YIELD='0' | GNULIB_SECURE_GETENV='0' | GNULIB_SETENV='0' | GNULIB_SETHOSTNAME='0' | GNULIB_SIGACTION='1' | GNULIB_SIGNAL_H_SIGPIPE='0' | GNULIB_SIGNBIT='0' | GNULIB_SIGPROCMASK='1' | GNULIB_SINF='0' | GNULIB_SINHF='0' | GNULIB_SINL='0' | GNULIB_SLEEP='0' | GNULIB_SNPRINTF='1' | GNULIB_SPRINTF_POSIX='1' | GNULIB_SQRTF='0' | GNULIB_SQRTL='0' | GNULIB_STAT='0' | GNULIB_STDIO_H_NONBLOCKING='0' | GNULIB_STDIO_H_SIGPIPE='0' | GNULIB_STPCPY='1' | GNULIB_STPNCPY='0' | GNULIB_STRCASESTR='0' | GNULIB_STRCHRNUL='0' | GNULIB_STRDUP='1' | GNULIB_STRERROR='1' | GNULIB_STRERROR_R='0' | GNULIB_STRFTIME='0' | GNULIB_STRNCAT='0' | GNULIB_STRNDUP='1' | GNULIB_STRNLEN='0' | GNULIB_STRPBRK='0' | GNULIB_STRPTIME='0' | GNULIB_STRSEP='0' | GNULIB_STRSIGNAL='0' | GNULIB_STRSTR='0' | GNULIB_STRTOD='0' | GNULIB_STRTOIMAX='0' | GNULIB_STRTOK_R='0' | GNULIB_STRTOLD='0' | GNULIB_STRTOLL='0' | GNULIB_STRTOULL='0' | GNULIB_STRTOUMAX='0' | GNULIB_STRVERSCMP='1' | GNULIB_SYMLINK='0' | GNULIB_SYMLINKAT='0' | GNULIB_SYSTEM_POSIX='0' | GNULIB_TANF='0' | GNULIB_TANHF='0' | GNULIB_TANL='0' | GNULIB_TIMEGM='0' | GNULIB_TIMES='0' | GNULIB_TIME_R='0' | GNULIB_TIME_RZ='0' | GNULIB_TMPFILE='0' | GNULIB_TOWCTRANS='0' | GNULIB_TRUNC='0' | GNULIB_TRUNCATE='0' | GNULIB_TRUNCF='0' | GNULIB_TRUNCL='0' | GNULIB_TTYNAME_R='0' | GNULIB_TZSET='0' | GNULIB_UNISTD_H_NONBLOCKING='0' | GNULIB_UNISTD_H_SIGPIPE='0' | GNULIB_UNLINK='1' | GNULIB_UNLINKAT='0' | GNULIB_UNLOCKPT='0' | GNULIB_UNSETENV='1' | GNULIB_USLEEP='0' | GNULIB_UTIMENSAT='0' | GNULIB_VASPRINTF='0' | GNULIB_VDPRINTF='0' | GNULIB_VFPRINTF='1' | GNULIB_VFPRINTF_POSIX='0' | GNULIB_VFSCANF='0' | GNULIB_VPRINTF='1' | GNULIB_VPRINTF_POSIX='0' | GNULIB_VSCANF='0' | GNULIB_VSNPRINTF='1' | GNULIB_VSPRINTF_POSIX='1' | GNULIB_WAITPID='1' | GNULIB_WCPCPY='0' | GNULIB_WCPNCPY='0' | GNULIB_WCRTOMB='0' | GNULIB_WCSCASECMP='0' | GNULIB_WCSCAT='0' | GNULIB_WCSCHR='0' | GNULIB_WCSCMP='0' | GNULIB_WCSCOLL='0' | GNULIB_WCSCPY='0' | GNULIB_WCSCSPN='0' | GNULIB_WCSDUP='0' | GNULIB_WCSFTIME='0' | GNULIB_WCSLEN='0' | GNULIB_WCSNCASECMP='0' | GNULIB_WCSNCAT='0' | GNULIB_WCSNCMP='0' | GNULIB_WCSNCPY='0' | GNULIB_WCSNLEN='0' | GNULIB_WCSNRTOMBS='0' | GNULIB_WCSPBRK='0' | GNULIB_WCSRCHR='0' | GNULIB_WCSRTOMBS='0' | GNULIB_WCSSPN='0' | GNULIB_WCSSTR='0' | GNULIB_WCSTOK='0' | GNULIB_WCSWIDTH='0' | GNULIB_WCSXFRM='0' | GNULIB_WCTOB='0' | GNULIB_WCTOMB='0' | GNULIB_WCTRANS='0' | GNULIB_WCTYPE='0' | GNULIB_WCWIDTH='1' | GNULIB_WMEMCHR='0' | GNULIB_WMEMCMP='0' | GNULIB_WMEMCPY='0' | GNULIB_WMEMMOVE='0' | GNULIB_WMEMSET='0' | GNULIB_WRITE='0' | GNULIB__EXIT='0' | GREP='/bin/grep' | HAVE_ACOSF='1' | HAVE_ACOSL='1' | HAVE_ALLOCA_H='1' | HAVE_ASINF='1' | HAVE_ASINL='1' | HAVE_ATAN2F='1' | HAVE_ATANF='1' | HAVE_ATANL='1' | HAVE_ATOLL='1' | HAVE_BTOWC='1' | HAVE_C99_STDINT_H='1' | HAVE_CANONICALIZE_FILE_NAME='1' | HAVE_CBRT='1' | HAVE_CBRTF='1' | HAVE_CBRTL='1' | HAVE_CHOWN='1' | HAVE_COPYSIGN='1' | HAVE_COPYSIGNL='1' | HAVE_COPY_FILE_RANGE='1' | HAVE_COSF='1' | HAVE_COSHF='1' | HAVE_COSL='1' | HAVE_CRTDEFS_H='0' | HAVE_DECL_ACOSL='1' | HAVE_DECL_ASINL='1' | HAVE_DECL_ATANL='1' | HAVE_DECL_CBRTF='1' | HAVE_DECL_CBRTL='1' | HAVE_DECL_CEILF='1' | HAVE_DECL_CEILL='1' | HAVE_DECL_COPYSIGNF='1' | HAVE_DECL_COSL='1' | HAVE_DECL_ENVIRON='1' | HAVE_DECL_EXP2='1' | HAVE_DECL_EXP2F='1' | HAVE_DECL_EXP2L='1' | HAVE_DECL_EXPL='1' | HAVE_DECL_EXPM1L='1' | HAVE_DECL_FCHDIR='1' | HAVE_DECL_FDATASYNC='1' | HAVE_DECL_FLOORF='1' | HAVE_DECL_FLOORL='1' | HAVE_DECL_FPURGE='1' | HAVE_DECL_FREXPL='1' | HAVE_DECL_FSEEKO='1' | HAVE_DECL_FTELLO='1' | HAVE_DECL_GETDELIM='1' | HAVE_DECL_GETDOMAINNAME='1' | HAVE_DECL_GETLINE='1' | HAVE_DECL_GETLOADAVG='1' | HAVE_DECL_GETLOGIN='1' | HAVE_DECL_GETLOGIN_R='1' | HAVE_DECL_GETPAGESIZE='1' | HAVE_DECL_GETUSERSHELL='1' | HAVE_DECL_IMAXABS='1' | HAVE_DECL_IMAXDIV='1' | HAVE_DECL_INITSTATE='1' | HAVE_DECL_LDEXPL='1' | HAVE_DECL_LOCALTIME_R='1' | HAVE_DECL_LOG10L='1' | HAVE_DECL_LOG2='1' | HAVE_DECL_LOG2F='1' | HAVE_DECL_LOG2L='1' | HAVE_DECL_LOGB='1' | HAVE_DECL_LOGL='1' | HAVE_DECL_MEMMEM='1' | HAVE_DECL_MEMRCHR='1' | HAVE_DECL_OBSTACK_PRINTF='1' | HAVE_DECL_REMAINDER='1' | HAVE_DECL_REMAINDERL='1' | HAVE_DECL_RINTF='1' | HAVE_DECL_ROUND='1' | HAVE_DECL_ROUNDF='1' | HAVE_DECL_ROUNDL='1' | HAVE_DECL_SETENV='1' | HAVE_DECL_SETHOSTNAME='1' | HAVE_DECL_SETSTATE='1' | HAVE_DECL_SINL='1' | HAVE_DECL_SNPRINTF='1' | HAVE_DECL_SQRTL='1' | HAVE_DECL_STRDUP='1' | HAVE_DECL_STRERROR_R='1' | HAVE_DECL_STRNDUP='1' | HAVE_DECL_STRNLEN='1' | HAVE_DECL_STRSIGNAL='1' | HAVE_DECL_STRTOIMAX='1' | HAVE_DECL_STRTOK_R='1' | HAVE_DECL_STRTOUMAX='1' | HAVE_DECL_TANL='1' | HAVE_DECL_TRUNC='1' | HAVE_DECL_TRUNCATE='1' | HAVE_DECL_TRUNCF='1' | HAVE_DECL_TRUNCL='1' | HAVE_DECL_TTYNAME_R='1' | HAVE_DECL_UNSETENV='1' | HAVE_DECL_VSNPRINTF='1' | HAVE_DECL_WCTOB='1' | HAVE_DECL_WCWIDTH='1' | HAVE_DPRINTF='1' | HAVE_DUP2='1' | HAVE_DUP3='1' | HAVE_EUIDACCESS='1' | HAVE_EXPF='1' | HAVE_EXPL='1' | HAVE_EXPLICIT_BZERO='1' | HAVE_EXPM1='1' | HAVE_EXPM1F='1' | HAVE_FABSF='1' | HAVE_FABSL='1' | HAVE_FACCESSAT='1' | HAVE_FCHDIR='1' | HAVE_FCHMODAT='1' | HAVE_FCHOWNAT='1' | HAVE_FCNTL='1' | HAVE_FDATASYNC='1' | HAVE_FEATURES_H='1' | HAVE_FFSL='1' | HAVE_FFSLL='1' | HAVE_FMA='1' | HAVE_FMAF='1' | HAVE_FMAL='1' | HAVE_FMODF='1' | HAVE_FMODL='1' | HAVE_FREXPF='1' | HAVE_FSEEKO='1' | HAVE_FSTATAT='1' | HAVE_FSYNC='1' | HAVE_FTELLO='1' | HAVE_FTRUNCATE='1' | HAVE_FUTIMENS='1' | HAVE_GCJ_C='' | HAVE_GCJ_IN_PATH='' | HAVE_GETDTABLESIZE='1' | HAVE_GETGROUPS='1' | HAVE_GETHOSTNAME='1' | HAVE_GETLOGIN='1' | HAVE_GETOPT_H='1' | HAVE_GETPAGESIZE='1' | HAVE_GETPASS='1' | HAVE_GETRUSAGE='1' | HAVE_GETSUBOPT='1' | HAVE_GETTIMEOFDAY='1' | HAVE_GIJ='' | HAVE_GIJ_IN_PATH='' | HAVE_GRANTPT='1' | HAVE_GROUP_MEMBER='1' | HAVE_HYPOTF='1' | HAVE_HYPOTL='1' | HAVE_ILOGB='1' | HAVE_ILOGBF='1' | HAVE_ILOGBL='1' | HAVE_IMAXDIV_T='1' | HAVE_INITSTATE='1' | HAVE_INTTYPES_H='1' | HAVE_ISNAND='1' | HAVE_ISNANF='1' | HAVE_ISNANL='1' | HAVE_ISWBLANK='1' | HAVE_ISWCNTRL='1' | HAVE_JAVA='1' | HAVE_JAVAC='1' | HAVE_JAVAC_ENVVAR='' | HAVE_JAVAC_IN_PATH='yes' | HAVE_JAVA_ENVVAR='' | HAVE_JAVA_IN_PATH='yes' | HAVE_JIKES='' | HAVE_JIKES_IN_PATH='' | HAVE_JRE='' | HAVE_JRE_IN_PATH='' | HAVE_JVIEW='' | HAVE_JVIEW_IN_PATH='' | HAVE_LCHMOD='1' | HAVE_LCHOWN='1' | HAVE_LDEXPF='1' | HAVE_LIBTEXTSTYLE='no' | HAVE_LINK='1' | HAVE_LINKAT='1' | HAVE_LOG10F='1' | HAVE_LOG10L='1' | HAVE_LOG1P='1' | HAVE_LOG1PF='1' | HAVE_LOG1PL='1' | HAVE_LOGBF='1' | HAVE_LOGBL='1' | HAVE_LOGF='1' | HAVE_LOGL='1' | HAVE_LONG_LONG_INT='1' | HAVE_LSTAT='1' | HAVE_MAX_ALIGN_T='1' | HAVE_MBRLEN='1' | HAVE_MBRTOWC='1' | HAVE_MBSINIT='1' | HAVE_MBSLEN='0' | HAVE_MBSNRTOWCS='1' | HAVE_MBSRTOWCS='1' | HAVE_MBTOWC='1' | HAVE_MEMCHR='1' | HAVE_MEMPCPY='1' | HAVE_MKDIRAT='1' | HAVE_MKDTEMP='1' | HAVE_MKFIFO='1' | HAVE_MKFIFOAT='1' | HAVE_MKNOD='1' | HAVE_MKNODAT='1' | HAVE_MKOSTEMP='1' | HAVE_MKOSTEMPS='1' | HAVE_MKSTEMP='1' | HAVE_MKSTEMPS='1' | HAVE_MODFF='1' | HAVE_MODFL='1' | HAVE_MSVC_INVALID_PARAMETER_HANDLER='0' | HAVE_NANOSLEEP='1' | HAVE_OPENAT='1' | HAVE_OS_H='0' | HAVE_PCLOSE='1' | HAVE_PIPE2='1' | HAVE_PIPE='1' | HAVE_POPEN='1' | HAVE_POSIX_OPENPT='1' | HAVE_POSIX_SIGNALBLOCKING='1' | HAVE_POSIX_SPAWN='1' | HAVE_POSIX_SPAWNATTR_T='1' | HAVE_POSIX_SPAWN_FILE_ACTIONS_ADDCHDIR='1' | HAVE_POSIX_SPAWN_FILE_ACTIONS_ADDFCHDIR='1' | HAVE_POSIX_SPAWN_FILE_ACTIONS_T='1' | HAVE_POWF='1' | HAVE_PREAD='1' | HAVE_PTHREAD_SIGMASK='1' | HAVE_PTSNAME='1' | HAVE_PTSNAME_R='1' | HAVE_PWRITE='1' | HAVE_QSORT_R='1' | HAVE_RAISE='1' | HAVE_RANDOM='1' | HAVE_RANDOM_H='1' | HAVE_RANDOM_R='1' | HAVE_RAWMEMCHR='1' | HAVE_READLINK='1' | HAVE_READLINKAT='1' | HAVE_REALLOCARRAY='1' | HAVE_REALPATH='1' | HAVE_REMAINDER='1' | HAVE_REMAINDERF='1' | HAVE_RENAMEAT='1' | HAVE_RINT='1' | HAVE_RINTL='1' | HAVE_RPMATCH='1' | HAVE_SAME_LONG_DOUBLE_AS_DOUBLE='0' | HAVE_SCHED_H='1' | HAVE_SCHED_YIELD='1' | HAVE_SECURE_GETENV='1' | HAVE_SETENV='1' | HAVE_SETHOSTNAME='1' | HAVE_SETSTATE='1' | HAVE_SIGACTION='1' | HAVE_SIGHANDLER_T='1' | HAVE_SIGINFO_T='1' | HAVE_SIGNED_SIG_ATOMIC_T='' | HAVE_SIGNED_WCHAR_T='' | HAVE_SIGNED_WINT_T='' | HAVE_SIGSET_T='1' | HAVE_SINF='1' | HAVE_SINHF='1' | HAVE_SINL='1' | HAVE_SLEEP='1' | HAVE_SPAWN_H='1' | HAVE_SQRTF='1' | HAVE_SQRTL='1' | HAVE_STDINT_H='1' | HAVE_STPCPY='1' | HAVE_STPNCPY='1' | HAVE_STRCASESTR='1' | HAVE_STRCHRNUL='1' | HAVE_STRPBRK='1' | HAVE_STRPTIME='1' | HAVE_STRSEP='1' | HAVE_STRTOD='1' | HAVE_STRTOLD='1' | HAVE_STRTOLL='1' | HAVE_STRTOULL='1' | HAVE_STRUCT_RANDOM_DATA='1' | HAVE_STRUCT_SCHED_PARAM='1' | HAVE_STRUCT_SIGACTION_SA_SIGACTION='1' | HAVE_STRUCT_TIMEVAL='1' | HAVE_STRUCT_TMS='1' | HAVE_STRVERSCMP='1' | HAVE_SYMLINK='1' | HAVE_SYMLINKAT='1' | HAVE_SYS_BITYPES_H='0' | HAVE_SYS_CDEFS_H='1' | HAVE_SYS_INTTYPES_H='0' | HAVE_SYS_LOADAVG_H='0' | HAVE_SYS_PARAM_H='0' | HAVE_SYS_RESOURCE_H='1' | HAVE_SYS_TIMES_H='1' | HAVE_SYS_TIME_H='1' | HAVE_SYS_TYPES_H='1' | HAVE_TANF='1' | HAVE_TANHF='1' | HAVE_TANL='1' | HAVE_TIMEGM='1' | HAVE_TIMES='1' | HAVE_TIMEZONE_T='0' | HAVE_TYPE_VOLATILE_SIG_ATOMIC_T='1' | HAVE_TZSET='1' | HAVE_UNISTD_H='1' | HAVE_UNLINKAT='1' | HAVE_UNLOCKPT='1' | HAVE_UNSIGNED_LONG_LONG_INT='1' | HAVE_USLEEP='1' | HAVE_UTIMENSAT='1' | HAVE_VASPRINTF='1' | HAVE_VDPRINTF='1' | HAVE_WCHAR_H='1' | HAVE_WCHAR_T='1' | HAVE_WCPCPY='1' | HAVE_WCPNCPY='1' | HAVE_WCRTOMB='1' | HAVE_WCSCASECMP='1' | HAVE_WCSCAT='1' | HAVE_WCSCHR='1' | HAVE_WCSCMP='1' | HAVE_WCSCOLL='1' | HAVE_WCSCPY='1' | HAVE_WCSCSPN='1' | HAVE_WCSDUP='1' | HAVE_WCSFTIME='1' | HAVE_WCSLEN='1' | HAVE_WCSNCASECMP='1' | HAVE_WCSNCAT='1' | HAVE_WCSNCMP='1' | HAVE_WCSNCPY='1' | HAVE_WCSNLEN='1' | HAVE_WCSNRTOMBS='1' | HAVE_WCSPBRK='1' | HAVE_WCSRCHR='1' | HAVE_WCSRTOMBS='1' | HAVE_WCSSPN='1' | HAVE_WCSSTR='1' | HAVE_WCSTOK='1' | HAVE_WCSWIDTH='1' | HAVE_WCSXFRM='1' | HAVE_WCTRANS_T='1' | HAVE_WCTYPE_H='1' | HAVE_WCTYPE_T='1' | HAVE_WINSOCK2_H='0' | HAVE_WINT_T='1' | HAVE_WMEMCHR='1' | HAVE_WMEMCMP='1' | HAVE_WMEMCPY='1' | HAVE_WMEMMOVE='1' | HAVE_WMEMSET='1' | HAVE__BOOL='1' | HAVE__EXIT='1' | HELP2MAN='${SHELL} /home/richard/bison-3.4.2/build-aux/missing help2man' | INCLUDE_NEXT='include_next' | INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' | INSTALL_DATA='${INSTALL} -m 644' | INSTALL_PROGRAM='${INSTALL}' | INSTALL_PROGRAM_ENV='' | INSTALL_SCRIPT='${INSTALL}' | INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' | INT32_MAX_LT_INTMAX_MAX='1' | INT64_MAX_EQ_LONG_MAX='0' | INTLLIBS='' | INTL_MACOSX_LIBS='' | ISNAND_LIBM='' | ISNANF_LIBM='' | ISNANL_LIBM='' | ISNAN_LIBM='' | LDEXPL_LIBM='' | LDEXP_LIBM='' | LDFLAGS='' | LEX='flex' | LEXLIB='-lfl' | LEX_IS_FLEX='true' | LEX_OUTPUT_ROOT='lex.yy' | LIBBISON_LIBDEPS='' | LIBBISON_LTLIBDEPS='' | LIBICONV='-liconv' | LIBINTL='' | LIBMULTITHREAD='-pthread' | LIBOBJS='' | LIBS='' | LIBTEXTSTYLE='' | LIBTEXTSTYLE_PREFIX='' | LIBTHREAD='' | LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_FALSE='#' | LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE='' | LIBUNISTRING_UNITYPES_H='lib/unitypes.h' | LIBUNISTRING_UNIWIDTH_H='lib/uniwidth.h' | LIB_CLOCK_GETTIME='' | LIB_GETHRXTIME='' | LIB_POSIX_SPAWN='' | LIMITS_H='lib/limits.h' | LOCALCHARSET_TESTS_ENVIRONMENT='' | LOCALE_FR_UTF8='none' | LOCALE_JA='none' | LOCALE_ZH_CN='none' | LTLIBICONV='-liconv' | LTLIBINTL='' | LTLIBMULTITHREAD='-pthread' | LTLIBOBJS='' | LTLIBTEXTSTYLE='' | LTLIBTHREAD='' | M4='/usr/bin/m4' | M4_DEBUGFILE='--debugfile' | M4_GNU='--gnu' | MAKEINFO='${SHELL} /home/richard/bison-3.4.2/build-aux/missing makeinfo' | MKDIR_P='/bin/mkdir -p' | MSGFMT='/usr/bin/msgfmt' | MSGFMT_015='/usr/bin/msgfmt' | MSGMERGE='/usr/bin/msgmerge' | NEXT_AS_FIRST_DIRECTIVE_ERRNO_H='' | NEXT_AS_FIRST_DIRECTIVE_FCNTL_H='' | NEXT_AS_FIRST_DIRECTIVE_FLOAT_H='' | NEXT_AS_FIRST_DIRECTIVE_GETOPT_H='' | NEXT_AS_FIRST_DIRECTIVE_INTTYPES_H='' | NEXT_AS_FIRST_DIRECTIVE_LIMITS_H='' | NEXT_AS_FIRST_DIRECTIVE_MATH_H='' | NEXT_AS_FIRST_DIRECTIVE_SCHED_H='' | NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H='' | NEXT_AS_FIRST_DIRECTIVE_SPAWN_H='' | NEXT_AS_FIRST_DIRECTIVE_STDDEF_H='' | NEXT_AS_FIRST_DIRECTIVE_STDINT_H='' | NEXT_AS_FIRST_DIRECTIVE_STDIO_H='' | NEXT_AS_FIRST_DIRECTIVE_STDLIB_H='' | NEXT_AS_FIRST_DIRECTIVE_STRING_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_RESOURCE_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_TIMES_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_WAIT_H='' | NEXT_AS_FIRST_DIRECTIVE_TIME_H='' | NEXT_AS_FIRST_DIRECTIVE_UNISTD_H='' | NEXT_AS_FIRST_DIRECTIVE_WCHAR_H='' | NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H='' | NEXT_ERRNO_H='' | NEXT_FCNTL_H='' | NEXT_FLOAT_H='' | NEXT_GETOPT_H='' | NEXT_INTTYPES_H='' | NEXT_LIMITS_H='' | NEXT_MATH_H='' | NEXT_SCHED_H='' | NEXT_SIGNAL_H='' | NEXT_SPAWN_H='' | NEXT_STDDEF_H='' | NEXT_STDINT_H='' | NEXT_STDIO_H='' | NEXT_STDLIB_H='' | NEXT_STRING_H='' | NEXT_SYS_RESOURCE_H='' | NEXT_SYS_STAT_H='' | NEXT_SYS_TIMES_H='' | NEXT_SYS_TIME_H='' | NEXT_SYS_TYPES_H='' | NEXT_SYS_WAIT_H='' | NEXT_TIME_H='' | NEXT_UNISTD_H='' | NEXT_WCHAR_H='' | NEXT_WCTYPE_H='' | NO_EXCEPTIONS_CXXFLAGS=' -fno-exceptions' | OBJEXT='o' | PACKAGE='bison' | PACKAGE_BUGREPORT='address@hidden' | PACKAGE_COPYRIGHT_YEAR='2019' | PACKAGE_NAME='GNU Bison' | PACKAGE_STRING='GNU Bison 3.4.2' | PACKAGE_TARNAME='bison' | PACKAGE_URL='http://www.gnu.org/software/bison/' | PACKAGE_VERSION='3.4.2' | PATH_SEPARATOR=':' | PERL='/usr/bin/perl' | POSUB='po' | PRAGMA_COLUMNS='' | PRAGMA_SYSTEM_HEADER='#pragma GCC system_header' | PRIPTR_PREFIX='"l"' | PRI_MACROS_BROKEN='0' | PTHREAD_H_DEFINES_STRUCT_TIMESPEC='0' | PTRDIFF_T_SUFFIX='' | RANLIB='ranlib' | RELOCATABLE='no' | RELOCATABLE_BUILD_DIR='$(top_builddir)/lib' | RELOCATABLE_CONFIG_H_DIR='$(top_builddir)' | RELOCATABLE_LDFLAGS='' | RELOCATABLE_LIBRARY_PATH='' | RELOCATABLE_SRC_DIR='$(top_srcdir)/lib' | RELOCATABLE_STRIP=':' | RELOCATABLE_VIA_LD_FALSE='' | RELOCATABLE_VIA_LD_TRUE='#' | RELOCATABLE_VIA_WRAPPER_FALSE='' | RELOCATABLE_VIA_WRAPPER_TRUE='#' | REPLACE_ACOSF='0' | REPLACE_ASINF='0' | REPLACE_ATAN2F='0' | REPLACE_ATANF='0' | REPLACE_BTOWC='0' | REPLACE_CALLOC='0' | REPLACE_CANONICALIZE_FILE_NAME='0' | REPLACE_CBRTF='0' | REPLACE_CBRTL='0' | REPLACE_CEIL='0' | REPLACE_CEILF='0' | REPLACE_CEILL='0' | REPLACE_CHOWN='0' | REPLACE_CLOSE='0' | REPLACE_COSF='0' | REPLACE_COSHF='0' | REPLACE_CTIME='GNULIB_PORTCHECK' | REPLACE_DPRINTF='0' | REPLACE_DUP2='0' | REPLACE_DUP='0' | REPLACE_EXP2='0' | REPLACE_EXP2L='0' | REPLACE_EXPF='0' | REPLACE_EXPL='0' | REPLACE_EXPM1='0' | REPLACE_EXPM1F='0' | REPLACE_EXPM1L='0' | REPLACE_FABSL='0' | REPLACE_FACCESSAT='0' | REPLACE_FCHOWNAT='0' | REPLACE_FCLOSE='0' | REPLACE_FCNTL='1' | REPLACE_FDOPEN='0' | REPLACE_FFLUSH='0' | REPLACE_FLOOR='0' | REPLACE_FLOORF='0' | REPLACE_FLOORL='0' | REPLACE_FMA='0' | REPLACE_FMAF='0' | REPLACE_FMAL='0' | REPLACE_FMOD='0' | REPLACE_FMODF='0' | REPLACE_FMODL='0' | REPLACE_FOPEN='0' | REPLACE_FPRINTF='0' | REPLACE_FPURGE='0' | REPLACE_FREOPEN='0' | REPLACE_FREXP='0' | REPLACE_FREXPF='0' | REPLACE_FREXPL='0' | REPLACE_FSEEK='0' | REPLACE_FSEEKO='0' | REPLACE_FSTAT='0' | REPLACE_FSTATAT='0' | REPLACE_FTELL='0' | REPLACE_FTELLO='0' | REPLACE_FTRUNCATE='0' | REPLACE_FUTIMENS='0' | REPLACE_GETCWD='0' | REPLACE_GETDELIM='0' | REPLACE_GETDOMAINNAME='0' | REPLACE_GETDTABLESIZE='0' | REPLACE_GETGROUPS='0' | REPLACE_GETLINE='0' | REPLACE_GETLOGIN_R='0' | REPLACE_GETPAGESIZE='0' | REPLACE_GETPASS='0' | REPLACE_GETTIMEOFDAY='0' | REPLACE_GMTIME='0' | REPLACE_HUGE_VAL='0' | REPLACE_HYPOT='0' | REPLACE_HYPOTF='0' | REPLACE_HYPOTL='0' | REPLACE_ILOGB='0' | REPLACE_ILOGBF='0' | REPLACE_ILOGBL='0' | REPLACE_INITSTATE='0' | REPLACE_ISATTY='0' | REPLACE_ISFINITE='0' | REPLACE_ISINF='0' | REPLACE_ISNAN='0' | REPLACE_ISWBLANK='0' | REPLACE_ISWCNTRL='0' | REPLACE_ITOLD='0' | REPLACE_LCHOWN='0' | REPLACE_LDEXPL='0' | REPLACE_LINK='0' | REPLACE_LINKAT='0' | REPLACE_LOCALTIME='0' | REPLACE_LOCALTIME_R='GNULIB_PORTCHECK' | REPLACE_LOG10='0' | REPLACE_LOG10F='0' | REPLACE_LOG10L='0' | REPLACE_LOG1P='0' | REPLACE_LOG1PF='0' | REPLACE_LOG1PL='0' | REPLACE_LOG2='0' | REPLACE_LOG2F='0' | REPLACE_LOG2L='0' | REPLACE_LOG='0' | REPLACE_LOGB='0' | REPLACE_LOGBF='0' | REPLACE_LOGBL='0' | REPLACE_LOGF='0' | REPLACE_LOGL='0' | REPLACE_LSEEK='0' | REPLACE_LSTAT='0' | REPLACE_MALLOC='0' | REPLACE_MBRLEN='0' | REPLACE_MBRTOWC='1' | REPLACE_MBSINIT='0' | REPLACE_MBSNRTOWCS='0' | REPLACE_MBSRTOWCS='0' | REPLACE_MBSTATE_T='0' | REPLACE_MBTOWC='0' | REPLACE_MEMCHR='0' | REPLACE_MEMMEM='0' | REPLACE_MKDIR='0' | REPLACE_MKFIFO='0' | REPLACE_MKNOD='0' | REPLACE_MKSTEMP='0' | REPLACE_MKTIME='GNULIB_PORTCHECK' | REPLACE_MODF='0' | REPLACE_MODFF='0' | REPLACE_MODFL='0' | REPLACE_NAN='0' | REPLACE_NANOSLEEP='GNULIB_PORTCHECK' | REPLACE_NULL='0' | REPLACE_OBSTACK_PRINTF='0' | REPLACE_OPEN='0' | REPLACE_OPENAT='0' | REPLACE_PERROR='0' | REPLACE_POPEN='0' | REPLACE_POSIX_SPAWN='0' | REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDCHDIR='0' | REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE='0' | REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2='0' | REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDFCHDIR='0' | REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN='0' | REPLACE_PREAD='0' | REPLACE_PRINTF='0' | REPLACE_PTHREAD_SIGMASK='0' | REPLACE_PTSNAME='0' | REPLACE_PTSNAME_R='0' | REPLACE_PUTENV='0' | REPLACE_PWRITE='0' | REPLACE_QSORT_R='0' | REPLACE_RAISE='0' | REPLACE_RANDOM='0' | REPLACE_RANDOM_R='0' | REPLACE_READ='0' | REPLACE_READLINK='0' | REPLACE_READLINKAT='0' | REPLACE_REALLOC='0' | REPLACE_REALPATH='0' | REPLACE_REMAINDER='0' | REPLACE_REMAINDERF='0' | REPLACE_REMAINDERL='0' | REPLACE_REMOVE='0' | REPLACE_RENAME='0' | REPLACE_RENAMEAT='0' | REPLACE_RINTL='0' | REPLACE_RMDIR='0' | REPLACE_ROUND='0' | REPLACE_ROUNDF='0' | REPLACE_ROUNDL='0' | REPLACE_SCHED_YIELD='0' | REPLACE_SETENV='0' | REPLACE_SETSTATE='0' | REPLACE_SIGNBIT='0' | REPLACE_SIGNBIT_USING_GCC='0' | REPLACE_SINF='0' | REPLACE_SINHF='0' | REPLACE_SLEEP='0' | REPLACE_SNPRINTF='0' | REPLACE_SPRINTF='0' | REPLACE_SQRTF='0' | REPLACE_SQRTL='0' | REPLACE_STAT='0' | REPLACE_STDIO_READ_FUNCS='0' | REPLACE_STDIO_WRITE_FUNCS='0' | REPLACE_STPNCPY='0' | REPLACE_STRCASESTR='0' | REPLACE_STRCHRNUL='0' | REPLACE_STRDUP='0' | REPLACE_STRERROR='0' | REPLACE_STRERROR_R='1' | REPLACE_STRFTIME='GNULIB_PORTCHECK' | REPLACE_STRNCAT='0' | REPLACE_STRNDUP='0' | REPLACE_STRNLEN='0' | REPLACE_STRSIGNAL='0' | REPLACE_STRSTR='0' | REPLACE_STRTOD='0' | REPLACE_STRTOIMAX='0' | REPLACE_STRTOK_R='0' | REPLACE_STRTOLD='0' | REPLACE_STRTOUMAX='0' | REPLACE_STRUCT_TIMEVAL='0' | REPLACE_SYMLINK='0' | REPLACE_SYMLINKAT='0' | REPLACE_TANF='0' | REPLACE_TANHF='0' | REPLACE_TIMEGM='GNULIB_PORTCHECK' | REPLACE_TMPFILE='0' | REPLACE_TOWLOWER='0' | REPLACE_TRUNC='0' | REPLACE_TRUNCATE='0' | REPLACE_TRUNCF='0' | REPLACE_TRUNCL='0' | REPLACE_TTYNAME_R='0' | REPLACE_TZSET='GNULIB_PORTCHECK' | REPLACE_UNLINK='0' | REPLACE_UNLINKAT='0' | REPLACE_UNSETENV='0' | REPLACE_USLEEP='0' | REPLACE_UTIMENSAT='0' | REPLACE_VASPRINTF='0' | REPLACE_VDPRINTF='0' | REPLACE_VFPRINTF='0' | REPLACE_VPRINTF='0' | REPLACE_VSNPRINTF='0' | REPLACE_VSPRINTF='0' | REPLACE_WCRTOMB='0' | REPLACE_WCSFTIME='0' | REPLACE_WCSNRTOMBS='0' | REPLACE_WCSRTOMBS='0' | REPLACE_WCSWIDTH='0' | REPLACE_WCTOB='0' | REPLACE_WCTOMB='0' | REPLACE_WCWIDTH='0' | REPLACE_WRITE='0' | SED='/bin/sed' | SET_MAKE='' | SHELL='/bin/bash' | SIG_ATOMIC_T_SUFFIX='' | SIZE_T_SUFFIX='' | STDBOOL_H='' | STDDEF_H='' | STDINT_H='lib/stdint.h' | STRIP='' | SYS_TIME_H_DEFINES_STRUCT_TIMESPEC='0' | TEXTSTYLE_H='lib/textstyle.h' | TIME_H_DEFINES_STRUCT_TIMESPEC='1' | UINT32_MAX_LT_UINTMAX_MAX='1' | UINT64_MAX_EQ_ULONG_MAX='0' | UNDEFINE_STRTOK_R='0' | UNISTD_H_DEFINES_STRUCT_TIMESPEC='0' | UNISTD_H_HAVE_WINSOCK2_H='0' | UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS='0' | USE_NLS='yes' | VALGRIND='valgrind' | VALGRIND_OPTS_SUPPRESSION='--suppressions=$(abs_top_srcdir)/build-aux/Linux.valgrind' | VERSION='3.4.2' | WARN_CFLAGS='' | WARN_CFLAGS_TEST='' | WARN_CXXFLAGS='' | WARN_CXXFLAGS_TEST='' | WCHAR_T_SUFFIX='' | WERROR_CFLAGS='' | WERROR_CXXFLAGS='' | WINDOWS_64_BIT_OFF_T='0' | WINDOWS_64_BIT_ST_SIZE='0' | WINDOWS_STAT_INODES='0' | WINDOWS_STAT_TIMESPEC='0' | WINT_T_SUFFIX='' | WNO_DEPRECATED_CXXFLAGS='' | XGETTEXT='/usr/bin/xgettext' | XGETTEXT_015='/usr/bin/xgettext' | XGETTEXT_EXTRA_OPTIONS=' --flag=error:3:c-format --flag=error_at_line:5:c-format' | XSLTPROC='/usr/bin/xsltproc' | YACC='bison -y' | YFLAGS='' | ac_ct_CC='gcc' | ac_ct_CXX='g++' | aclocaldir='${datadir}/aclocal' | am__EXEEXT_FALSE='' | am__EXEEXT_TRUE='#' | am__fastdepCC_FALSE='#' | am__fastdepCC_TRUE='' | am__fastdepCXX_FALSE='#' | am__fastdepCXX_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='i686-pc-linux-gnu' | build_alias='' | build_cpu='i686' | build_os='linux-gnu' | build_vendor='pc' | datadir='${datarootdir}' | datarootdir='${prefix}/share' | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' | dvidir='${docdir}' | exec_prefix='${prefix}' | gl_GNULIB_ENABLED_0137e3d3638b33e5819d132d0b23165c_FALSE='' | gl_GNULIB_ENABLED_0137e3d3638b33e5819d132d0b23165c_TRUE='#' | gl_GNULIB_ENABLED_1f32594a85e6221ba15f884daeee8c2a_FALSE='' | gl_GNULIB_ENABLED_1f32594a85e6221ba15f884daeee8c2a_TRUE='#' | gl_GNULIB_ENABLED_2049e887c7e5308faad27b3f894bb8c9_FALSE='' | gl_GNULIB_ENABLED_2049e887c7e5308faad27b3f894bb8c9_TRUE='#' | gl_GNULIB_ENABLED_21ee726a3540c09237a8e70c0baf7467_FALSE='' | gl_GNULIB_ENABLED_21ee726a3540c09237a8e70c0baf7467_TRUE='#' | gl_GNULIB_ENABLED_2f551a684aab5400633cbfd56df3bf94_FALSE='' | gl_GNULIB_ENABLED_2f551a684aab5400633cbfd56df3bf94_TRUE='#' | gl_GNULIB_ENABLED_30838f5439487421042f2225bed3af76_FALSE='#' | gl_GNULIB_ENABLED_30838f5439487421042f2225bed3af76_TRUE='' | gl_GNULIB_ENABLED_332607f759618fb73dfc3076748afea7_FALSE='' | gl_GNULIB_ENABLED_332607f759618fb73dfc3076748afea7_TRUE='#' | gl_GNULIB_ENABLED_3f0e593033d1fc2c127581960f641b66_FALSE='' | gl_GNULIB_ENABLED_3f0e593033d1fc2c127581960f641b66_TRUE='#' | gl_GNULIB_ENABLED_43fe87a341d9b4b93c47c3ad819a5239_FALSE='' | gl_GNULIB_ENABLED_43fe87a341d9b4b93c47c3ad819a5239_TRUE='#' | gl_GNULIB_ENABLED_503a4cb75d69c787103d0aa2ab7d8440_FALSE='' | gl_GNULIB_ENABLED_503a4cb75d69c787103d0aa2ab7d8440_TRUE='#' | gl_GNULIB_ENABLED_68a4501daeca58988392c7e60b4917ab_FALSE='' | gl_GNULIB_ENABLED_68a4501daeca58988392c7e60b4917ab_TRUE='#' | gl_GNULIB_ENABLED_8bb827fe37eaccf1b97feb0c87bc92ef_FALSE='' | gl_GNULIB_ENABLED_8bb827fe37eaccf1b97feb0c87bc92ef_TRUE='#' | gl_GNULIB_ENABLED_9bc5f216d57e231e4834049d67d0db62_FALSE='' | gl_GNULIB_ENABLED_9bc5f216d57e231e4834049d67d0db62_TRUE='#' | gl_GNULIB_ENABLED_b1df7117b479d2da59d76deba468ee21_FALSE='' | gl_GNULIB_ENABLED_b1df7117b479d2da59d76deba468ee21_TRUE='#' | gl_GNULIB_ENABLED_bba639f0cfd658540d716f3a2ba5e68f_FALSE='' | gl_GNULIB_ENABLED_bba639f0cfd658540d716f3a2ba5e68f_TRUE='#' | gl_GNULIB_ENABLED_cdeb0f2aaf9d280baa6526bfa1b07f70_FALSE='' | gl_GNULIB_ENABLED_cdeb0f2aaf9d280baa6526bfa1b07f70_TRUE='#' | gl_GNULIB_ENABLED_chdir_FALSE='' | gl_GNULIB_ENABLED_chdir_TRUE='#' | gl_GNULIB_ENABLED_dbb57f49352be8fb86869629a254fb72_FALSE='' | gl_GNULIB_ENABLED_dbb57f49352be8fb86869629a254fb72_TRUE='#' | gl_GNULIB_ENABLED_dbdf22868a5367f28bf18e0013ac6f8f_FALSE='' | gl_GNULIB_ENABLED_dbdf22868a5367f28bf18e0013ac6f8f_TRUE='#' | gl_GNULIB_ENABLED_e0ca81912f23214e44f5700922db34be_FALSE='' | gl_GNULIB_ENABLED_e0ca81912f23214e44f5700922db34be_TRUE='#' | gl_GNULIB_ENABLED_e1c6a1281ce2cc59c716894550bcb2b5_FALSE='' | gl_GNULIB_ENABLED_e1c6a1281ce2cc59c716894550bcb2b5_TRUE='#' | gl_GNULIB_ENABLED_ed5616be3593d355b981ffab56b9f37b_FALSE='' | gl_GNULIB_ENABLED_ed5616be3593d355b981ffab56b9f37b_TRUE='#' | gl_GNULIB_ENABLED_f0efff84a70f4afba30902bb8ffe9354_FALSE='' | gl_GNULIB_ENABLED_f0efff84a70f4afba30902bb8ffe9354_TRUE='#' | gl_GNULIB_ENABLED_fpucw_FALSE='' | gl_GNULIB_ENABLED_fpucw_TRUE='#' | gl_GNULIB_ENABLED_fseterr_FALSE='' | gl_GNULIB_ENABLED_fseterr_TRUE='#' | gl_GNULIB_ENABLED_fstat_FALSE='' | gl_GNULIB_ENABLED_fstat_TRUE='#' | gl_GNULIB_ENABLED_getdtablesize_FALSE='#' | gl_GNULIB_ENABLED_getdtablesize_TRUE='' | gl_GNULIB_ENABLED_intprops_FALSE='' | gl_GNULIB_ENABLED_intprops_TRUE='#' | gl_GNULIB_ENABLED_ldexp_FALSE='' | gl_GNULIB_ENABLED_ldexp_TRUE='#' | gl_GNULIB_ENABLED_lock_FALSE='' | gl_GNULIB_ENABLED_lock_TRUE='#' | gl_GNULIB_ENABLED_lstat_FALSE='' | gl_GNULIB_ENABLED_lstat_TRUE='#' | gl_GNULIB_ENABLED_malloca_FALSE='' | gl_GNULIB_ENABLED_malloca_TRUE='#' | gl_GNULIB_ENABLED_rawmemchr_FALSE='' | gl_GNULIB_ENABLED_rawmemchr_TRUE='#' | gl_GNULIB_ENABLED_rmdir_FALSE='' | gl_GNULIB_ENABLED_rmdir_TRUE='#' | gl_GNULIB_ENABLED_signbit_FALSE='' | gl_GNULIB_ENABLED_signbit_TRUE='#' | gl_GNULIB_ENABLED_stat_FALSE='' | gl_GNULIB_ENABLED_stat_TRUE='#' | gl_GNULIB_ENABLED_strchrnul_FALSE='' | gl_GNULIB_ENABLED_strchrnul_TRUE='#' | gl_GNULIB_ENABLED_strnlen_FALSE='' | gl_GNULIB_ENABLED_strnlen_TRUE='#' | gl_GNULIB_ENABLED_sys_stat_FALSE='' | gl_GNULIB_ENABLED_sys_stat_TRUE='#' | gl_GNULIB_ENABLED_threadlib_FALSE='' | gl_GNULIB_ENABLED_threadlib_TRUE='#' | gl_LIBOBJS=' lib/libbison_a-asnprintf.o lib/libbison_a-fcntl.o lib/libbison_a-mbrtowc.o lib/libbison_a-obstack.o lib/libbison_a-printf-args.o lib/libbison_a-printf-parse.o lib/libbison_a-vasnprintf.o lib/libbison_a-xmemdup0.o' | gl_LTLIBOBJS=' lib/asnprintf.lo lib/fcntl.lo lib/mbrtowc.lo lib/obstack.lo lib/printf-args.lo lib/printf-parse.lo lib/vasnprintf.lo lib/xmemdup0.lo' | gltests_LIBOBJS='' | gltests_LTLIBOBJS='' | gltests_WITNESS='IN_BISON_GNULIB_TESTS' | host='i686-pc-linux-gnu' | host_alias='' | host_cpu='i686' | host_os='linux-gnu' | host_vendor='pc' | htmldir='${docdir}' | includedir='${prefix}/include' | infodir='${datarootdir}/info' | install_sh='${SHELL} /home/richard/bison-3.4.2/build-aux/install-sh' | libdir='${exec_prefix}/lib' | libexecdir='${exec_prefix}/libexec' | lispdir='${datarootdir}/emacs/site-lisp' | localedir='${datarootdir}/locale' | localstatedir='${prefix}/var' | mandir='${datarootdir}/man' | mkdir_p='$(MKDIR_P)' | oldincludedir='/usr/include' | pdfdir='${docdir}' | pkglibexecdir='${libexecdir}/${PACKAGE}' | 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='' | | ## ------------------- ## | ## File substitutions. ## | ## ------------------- ## | | relocatable_sh='build-aux/relocatable.sh.in' | | ## ----------- ## | ## confdefs.h. ## | ## ----------- ## | | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "3.4.2" | #define PACKAGE_STRING "GNU Bison 3.4.2" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2019 | #define PACKAGE "bison" | #define VERSION "3.4.2" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _DARWIN_C_SOURCE 1 | #define _GNU_SOURCE 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 _HPUX_ALT_XOPEN_SOCKET_API 1 | #define _FILE_OFFSET_BITS 64 | #define _DARWIN_USE_64_BIT_INODE 1 | #define YYTEXT_POINTER 1 | #define M4 "/usr/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDIO_EXT_H 1 | #define HAVE_FEATURES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_SYS_CDEFS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_CANONICALIZE_FILE_NAME 1 | #define HAVE_GETCWD 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_READLINKAT 1 | #define HAVE_FCNTL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_FSYNC 1 | #define HAVE_GETRUSAGE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TCDRAIN 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_OBSTACK_PRINTF 1 | #define HAVE_LSTAT 1 | #define HAVE_STRERROR_R 1 | #define HAVE___XPG_STRERROR_R 1 | #define HAVE_PIPE2 1 | #define HAVE_SETENV 1 | #define HAVE_LINK 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_PIPE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_WCWIDTH 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_CATGETS 1 | #define HAVE_SETLOCALE 1 | #define FUNC_REALPATH_WORKS 1 | #define HAVE_ENVIRON_DECL 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define STRERROR_R_CHAR_P 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define DBL_EXPBIT0_WORD 1 | #define DBL_EXPBIT0_BIT 20 | #define HAVE_SNPRINTF 1 | #define HAVE_STRNLEN 1 | #define HAVE_WCSLEN 1 | #define HAVE_WCSNLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define restrict __restrict | #define HAVE_INTTYPES_H 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | #define HAVE_DECL_OBSTACK_PRINTF 1 | #define PROMOTED_MODE_T mode_t | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_POSIX_SPAWN 1 | #define USER_LABEL_PREFIX | #define HAVE_SIGSET_T 1 | #define INSTALLPREFIX "/usr/local" | #define HAVE_STDLIB_H 1 | #define MALLOC_0_IS_NONNULL 1 | #define HAVE_DECL_SETENV 1 | #define HAVE_DECL_SNPRINTF 1 | #define HAVE__BOOL 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_DECL_STRNDUP 1 | #define _USE_STD_STAT 1 | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | #define HAVE_DECL_FEOF_UNLOCKED 1 | #define HAVE_DECL_FERROR_UNLOCKED 1 | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | #define HAVE_DECL_FGETS_UNLOCKED 1 | #define HAVE_DECL_FPUTC_UNLOCKED 1 | #define HAVE_DECL_FPUTS_UNLOCKED 1 | #define HAVE_DECL_FREAD_UNLOCKED 1 | #define HAVE_DECL_FWRITE_UNLOCKED 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_DECL_ALARM 1 | #define HAVE_DECL_GETDTABLESIZE 1 | #define USE_POSIX_THREADS 1 | #define USE_POSIX_THREADS_WEAK 1 | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | #define HAVE_DECL_STRNLEN 1 | #define HAVE_ALLOCA 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_CANONICALIZE_LGPL 1 | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | #define GNULIB_TEST_REALPATH 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_SETTIME 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_CLOSE_STREAM 1 | #define GNULIB_DIRNAME 1 | #define HAVE_DUP2 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCNTL 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define HAVE_DECL___FPENDING 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define GNULIB_TEST_FSYNC 1 | #define HAVE_DECL_GETHRTIME 0 | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | #define HAVE_DECL___ARGV 0 | #define GNULIB_TEST_GETRUSAGE 1 | #define GETTIMEOFDAY_TIMEZONE struct timezone | #define GNULIB_TEST_GETTIMEOFDAY 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define GNULIB_TEST_ISNANF 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define MBRTOWC_EMPTY_INPUT_BUG 1 | #define C_LOCALE_MAYBE_EILSEQ 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSINIT 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_MSVC_NOTHROW 1 | #define GNULIB_TEST_OBSTACK_PRINTF 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | #define HAVE_RAISE 1 | #define GNULIB_TEST_RAISE 1 | #define GNULIB_TEST_READLINK 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_SEARCH_H 1 | #define HAVE_TSEARCH 1 | #define GNULIB_TEST_RENAME 1 | #define HAVE_SCHED_H 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define __USE_MINGW_ANSI_STDIO 1 | #define GNULIB_FSCANF 1 | #define GNULIB_SCANF 1 | #define HAVE_STPCPY 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_STRERROR 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define HAVE_STRVERSCMP 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_STRUCT_TMS 1 | #define GNULIB_TEST_UNLINK 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_TOWLOWER 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define YYENABLE_NLS 1 | | configure: exit 0 | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GNU Bison config.status 3.4.2, which was | generated by GNU Autoconf 2.69. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status src/yacc | | on debian | | config.status:2491: creating src/yacc