## --------------------------- ## ## GNU Bison 3.0.4 test suite. ## ## --------------------------- ## testsuite: command line was: $ ../tests/testsuite -C tests ## ---------- ## ## ChangeLog. ## ## ---------- ## | 2015-01-23 Akim Demaille | | version 3.0.4 | * NEWS: Record release date. | | 2015-01-23 Akim Demaille | | gnulib: update | | 2015-01-23 Akim Demaille ## --------- ## ## Platform. ## ## --------- ## hostname = sunhaiyong uname -m = mips64 uname -r = 4.9.80-1.fc21.lemote.1.mips64el uname -s = Linux uname -v = #1 SMP PREEMPT Mon Feb 5 08:32:27 UTC 2018 /usr/bin/uname -p = mips64 /bin/uname -X = unknown /bin/arch = mips64 /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /mnt/lfs/sources/bison-3.0.4/build/tests PATH: /mnt/lfs/sources/bison-3.0.4/tests PATH: /tools/bin PATH: /bin PATH: /usr/bin testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2012 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/mnt/lfs/sources/bison-3.0.4/build/tests' | at_srcdir='../../tests' | abs_srcdir='/mnt/lfs/sources/bison-3.0.4/build/../tests' | at_top_srcdir='../..' | abs_top_srcdir='/mnt/lfs/sources/bison-3.0.4/build/..' | at_top_build_prefix='../' | abs_top_builddir='/mnt/lfs/sources/bison-3.0.4/build' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/sh'} testsuite: atlocal: | # tests/atlocal. Generated from atlocal.in by configure. -*- shell-script -*- | # Configurable variable values for Bison test suite. | | # Copyright (C) 2000-2015 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 'config.h'. | CPPFLAGS="-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'} | : ${CXX='g++'} | | # 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 ' | | # 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=':' | | # 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" << std::endl; | } | 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="as_fn_error 77 POSIXLY_CORRECT" | $CXX_COMPILER_POSIXLY_CORRECT || | BISON_CXX_WORKS="as_fn_error 77 POSIXLY_CORRECT" | 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 | BISON_C_WORKS=$BISON_CXX_WORKS | else | CC_IS_CXX=0 | fi | | | ## ------- ## | ## Other. ## | ## ------- ## | | # Empty if no javac was found | CONF_JAVAC='' | | # Empty if no Java VM was found | CONF_JAVA='' | | # We need egrep and perl. | : ${EGREP='/bin/grep -E'} | : ${PERL='/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='/bin/xsltproc'} | | # 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. | : ${C_COMPILER_POSIXLY_CORRECT='true'} | if env | grep '^POSIXLY_CORRECT=' >/dev/null; then | POSIXLY_CORRECT_IS_EXPORTED=true | else | POSIXLY_CORRECT_IS_EXPORTED=false | fi ## ---------------- ## ## Tested programs. ## ## ---------------- ## ../../tests/local.at:1102: /mnt/lfs/sources/bison-3.0.4/build/tests/bison --version bison (GNU Bison) 3.0.4 Written by Robert Corbett and Richard Stallman. Copyright (C) 2015 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 Mar 12 14:56:22 CST 2018 1. Invalid options (input.at:27): ok (0m0.004s 0m0.004s) 2. Invalid inputs (input.at:50): ok (0m0.008s 0m0.000s) 3. Invalid inputs with {} (input.at:80): ok (0m0.000s 0m0.004s) 4. Invalid $n and @n (input.at:107): ok (0m0.000s 0m0.004s) 5. Type Clashes (input.at:131): ok (0m0.000s 0m0.004s) 6. Unused values (input.at:317): ok (0m2.148s 0m0.105s) 7. Unused values before symbol declarations (input.at:327): ok (0m2.141s 0m0.121s) 8. Default %printer and %destructor redeclared (input.at:337): ok (0m0.004s 0m0.012s) 9. Per-type %printer and %destructor redeclared (input.at:408): ok (0m0.004s 0m0.000s) 10. Undefined symbols (input.at:450): ok (0m0.004s 0m0.000s) 11. Unassociated types used for a printer or destructor (input.at:482): ok (0m0.469s 0m0.023s) 12. Useless printers or destructors (input.at:511): ok (0m1.527s 0m0.047s) 13. Unused values with default %destructor (input.at:576): ok (0m0.906s 0m0.039s) 14. Unused values with per-type %destructor (input.at:624): ok (0m0.453s 0m0.020s) 15. Incompatible Aliases (input.at:655): ok (0m0.016s 0m0.012s) 16. Torturing the Scanner (input.at:780): ok (0m0.629s 0m0.039s) 17. Typed symbol aliases (input.at:935): ok (0m0.090s 0m0.004s) 18. Require 1.0 (input.at:971): ok (0m0.082s 0m0.004s) 19. Require 3.0.4 (input.at:972): ok (0m0.086s 0m0.000s) 20. Require 100.0 (input.at:974): ok (0m0.004s 0m0.000s) 21. String aliases for character tokens (input.at:981): ok (0m0.082s 0m0.004s) 22. Symbols (input.at:1002): ok (0m0.480s 0m0.035s) 23. Numbered tokens (input.at:1062): ok (0m0.125s 0m0.012s) 24. Unclosed constructs (input.at:1100): ok (0m0.004s 0m0.000s) 25. %start after first rule (input.at:1155): ok (0m0.082s 0m0.004s) 26. %prec takes a token (input.at:1176): ok (0m0.004s 0m0.000s) 27. %prec's token must be defined (input.at:1197): ok (0m0.438s 0m0.016s) 28. Reject unused %code qualifiers (input.at:1217): ok (0m0.508s 0m0.008s) 29. Multiple %code (input.at:1306): ok (0m0.375s 0m0.023s) 30. errors (input.at:1345): ok (0m0.082s 0m0.008s) 31. %define, --define, --force-define (input.at:1381): ok (0m0.125s 0m0.004s) 32. "%define" Boolean variables (input.at:1446): ok (0m0.066s 0m0.004s) 33. "%define" code variables (input.at:1466): ok (0m0.879s 0m0.027s) 34. "%define" keyword variables (input.at:1499): ok (0m0.918s 0m0.027s) 35. "%define" enum variables (input.at:1532): ok (0m0.090s 0m0.008s) 36. "%define" backward compatibility (input.at:1574): ok (0m0.004s 0m0.004s) 37. Unused api.pure (input.at:1613): ok (0m0.543s 0m0.020s) 38. C++ namespace reference errors (input.at:1646): ok (0m0.906s 0m0.031s) 39. Bad character literals (input.at:1702): ok (0m0.012s 0m0.008s) 40. Bad escapes in literals (input.at:1765): ok (0m0.004s 0m0.004s) 41. LAC: Errors for %define (input.at:1814): ok (0m0.168s 0m0.004s) 42. -Werror combinations (input.at:1837): ok (0m1.680s 0m0.051s) 43. %name-prefix and api.prefix are incompatible (input.at:1882): ok (0m0.332s 0m0.012s) 44. Redefined %union name (input.at:1911): ok (0m0.172s 0m0.004s) 45. Stray $ or @ (input.at:1956): ok (0m0.516s 0m0.020s) 46. Code injection (input.at:1994): ok (0m1.086s 0m0.027s) 47. Deprecated directives (input.at:2057): ok (0m0.492s 0m0.012s) 48. Unput's effect on locations (input.at:2110): ok (0m0.000s 0m0.004s) 49. Non-deprecated directives (input.at:2143): ok (0m0.434s 0m0.012s) 50. Tutorial calculator (named-refs.at:21): ok (0m0.641s 0m0.031s) 51. Undefined and ambiguous references (named-refs.at:196): ok (0m0.000s 0m0.012s) 52. Misleading references (named-refs.at:297): ok (0m0.438s 0m0.016s) 53. Many kinds of errors (named-refs.at:314): ok (0m0.012s 0m0.023s) 54. Missing identifiers in brackets (named-refs.at:547): ok (0m0.004s 0m0.000s) 55. Redundant words in brackets (named-refs.at:561): ok (0m0.004s 0m0.000s) 56. Comments in brackets (named-refs.at:575): ok (0m0.004s 0m0.000s) 57. Stray symbols in brackets (named-refs.at:589): ok (0m0.008s 0m0.000s) 58. Redundant words in LHS brackets (named-refs.at:606): ok (0m0.004s 0m0.000s) 59. Factored LHS (named-refs.at:621): ok (0m0.086s 0m0.004s) 60. Unresolved references (named-refs.at:632): ok (0m0.004s 0m0.004s) 61. $ or @ followed by . or - (named-refs.at:697): ok (0m0.422s 0m0.031s) 62. Output files: -dv (output.at:56): ok (0m0.094s 0m0.004s) 63. Output files: -dv >&- (output.at:62): ok (0m0.094s 0m0.004s) 64. Output files: -dv -o foo.c (output.at:67): ok (0m0.094s 0m0.004s) 65. Output files: -dv -o foo.tab.c (output.at:69): ok (0m0.098s 0m0.000s) 66. Output files: -dv -g --xml -y (output.at:72): ok (0m0.098s 0m0.004s) 67. Output files: -dv -g --xml -o y.tab.c (output.at:75): ok (0m0.094s 0m0.004s) 68. Output files: -dv -b bar (output.at:78): ok (0m0.090s 0m0.008s) 69. Output files: -dv -g -o foo.c (output.at:80): ok (0m0.098s 0m0.000s) 70. Output files: %defines %verbose (output.at:84): ok (0m0.094s 0m0.004s) 71. Output files: %defines %verbose %yacc (output.at:86): ok (0m0.098s 0m0.000s) 72. Output files: %defines %verbose %yacc (output.at:89): ok (0m0.094s 0m0.008s) 73. Output files: %file-prefix "bar" %defines %verbose (output.at:93): ok (0m0.098s 0m0.000s) 74. Output files: %output "bar.c" %defines %verbose %yacc (output.at:95): ok (0m0.090s 0m0.008s) 75. Output files: %file-prefix "baz" %output "bar.c" %defines %verbose %yacc (output.at:97): ok (0m0.090s 0m0.008s) 76. Output files: %defines %verbose (output.at:104): ok (0m0.094s 0m0.004s) 77. Output files: %defines %verbose -o foo.c (output.at:107): ok (0m0.098s 0m0.000s) 78. Output files: --defines=foo.hpp -o foo.c++ (output.at:110): ok (0m0.094s 0m0.004s) 79. Output files: %defines "foo.hpp" -o foo.c++ (output.at:114): ok (0m0.098s 0m0.000s) 80. Output files: -o foo.c++ --graph=foo.gph (output.at:118): ok (0m0.090s 0m0.000s) 81. Output files: %type useless --defines --graph --xml --report=all -Wall -Werror (output.at:124): ok (0m0.090s 0m0.008s) 82. Output files: useless=--defines --graph --xml --report=all -Wall -Werror (output.at:131): ok (0m0.090s 0m0.008s) 83. Output files: lalr1.cc %verbose (output.at:147): ok (0m0.082s 0m0.004s) 84. Output files: lalr1.cc %defines %verbose (output.at:150): ok (0m0.090s 0m0.004s) 85. Output files: lalr1.cc %verbose %locations (output.at:153): ok (0m0.086s 0m0.004s) 86. Output files: lalr1.cc %defines %verbose %locations (output.at:156): ok (0m0.102s 0m0.004s) 87. Output files: lalr1.cc %defines %verbose (output.at:159): ok (0m0.090s 0m0.004s) 88. Output files: lalr1.cc %defines %verbose %locations -o subdir/foo.cc (output.at:163): ok (0m0.102s 0m0.004s) 89. Output files: lalr1.cc %defines %verbose %file-prefix "output_dir/foo" (output.at:168): ok (0m0.090s 0m0.004s) 90. Output files: lalr1.cc %defines %locations %verbose %file-prefix "output_dir/foo" (output.at:173): ok (0m0.098s 0m0.008s) 91. Conflicting output files: --graph="foo.tab.c" (output.at:203): ok (0m0.430s 0m0.004s) 92. Conflicting output files: %defines "foo.output" -v (output.at:208): ok (0m0.449s 0m0.023s) 93. Conflicting output files: lalr1.cc %defines %locations --graph="location.hh" (output.at:213): ok (0m0.484s 0m0.023s) 94. Conflicting output files: -o foo.y (output.at:218): ok (0m0.082s 0m0.004s) 95. Output file name: address@hidden&*()-=_+{}[]|\:;<>, .' (output.at:264): ok (0m3.137s 0m0.117s) 96. Output file name: ( (output.at:271): ok (0m3.129s 0m0.125s) 97. Output file name: ) (output.at:272): ok (0m3.160s 0m0.094s) 98. Output file name: # (output.at:273): ok (0m3.129s 0m0.125s) 99. Output file name: @@ (output.at:274): ok (0m3.141s 0m0.113s) 100. Output file name: @{ (output.at:275): ok (0m3.145s 0m0.109s) 101. Output file name: @} (output.at:276): ok (0m3.141s 0m0.113s) 102. Output file name: [ (output.at:277): ok (0m3.148s 0m0.105s) 103. Output file name: ] (output.at:278): ok (0m3.164s 0m0.090s) 104. Graph with no conflicts (output.at:305): ok (0m0.090s 0m0.000s) 105. Graph with unsolved S/R (output.at:339): ok (0m0.086s 0m0.004s) 106. Graph with solved S/R (output.at:403): ok (0m0.090s 0m0.000s) 107. Graph with R/R (output.at:462): ok (0m0.086s 0m0.000s) 108. Graph with reductions with multiple LAT (output.at:494): ok (0m0.090s 0m0.004s) 109. Graph with a reduction rule both enabled and disabled (output.at:553): ok (0m0.086s 0m0.008s) 110. Relative skeleton file names (skeletons.at:24): ok (0m0.102s 0m0.004s) 111. Installed skeleton file names (skeletons.at:84): ok (0m1.219s 0m0.070s) 112. Boolean=variables: invalid skeleton defaults (skeletons.at:141): ok (0m0.027s 0m0.008s) 113. Complaining during macro argument expansion (skeletons.at:165): ok (0m0.008s 0m0.008s) 114. Fatal errors make M4 exit immediately (skeletons.at:247): ok (0m0.008s 0m0.000s) 115. Fatal errors but M4 continues producing output (skeletons.at:301): ok (0m0.016s 0m0.000s) 116. Nullable (sets.at:66): ok (0m0.086s 0m0.000s) 117. Broken Closure (sets.at:151): ok (0m0.102s 0m0.000s) 118. Firsts (sets.at:193): ok (0m0.102s 0m0.004s) 119. Accept (sets.at:269): ok (0m0.094s 0m0.004s) 120. Useless Terminals (reduce.at:25): ok (0m0.098s 0m0.008s) 121. Useless Nonterminals (reduce.at:69): ok (0m0.434s 0m0.020s) 122. Useless Rules (reduce.at:124): ok (0m0.504s 0m0.020s) 123. Reduced Automaton (reduce.at:249): ok (0m0.543s 0m0.020s) 124. Underivable Rules (reduce.at:349): ok (0m0.434s 0m0.020s) 125. Empty Language (reduce.at:391): ok (0m0.004s 0m0.000s) 126. no lr.type: Single State Split (reduce.at:442): ok (0m0.457s 0m0.039s) 127. lr.type=lalr: Single State Split (reduce.at:442): ok (0m0.469s 0m0.027s) 128. lr.type=ielr: Single State Split (reduce.at:442): ok (0m0.461s 0m0.035s) 129. lr.type=canonical-lr: Single State Split (reduce.at:442): ok (0m0.461s 0m0.035s) 130. no lr.type: Lane Split (reduce.at:675): ok (0m0.457s 0m0.039s) 131. lr.type=lalr: Lane Split (reduce.at:675): ok (0m0.465s 0m0.031s) 132. lr.type=ielr: Lane Split (reduce.at:675): ok (0m0.473s 0m0.023s) 133. lr.type=canonical-lr: Lane Split (reduce.at:675): ok (0m0.461s 0m0.035s) 134. no lr.type: Complex Lane Split (reduce.at:919): ok (0m0.477s 0m0.020s) 135. lr.type=lalr: Complex Lane Split (reduce.at:919): ok (0m0.477s 0m0.020s) 136. lr.type=ielr: Complex Lane Split (reduce.at:919): ok (0m0.461s 0m0.035s) 137. lr.type=canonical-lr: Complex Lane Split (reduce.at:919): ok (0m0.473s 0m0.023s) 138. no lr.type: Split During Added Lookahead Propagation (reduce.at:1188): ok (0m0.902s 0m0.043s) 139. lr.type=lalr: Split During Added Lookahead Propagation (reduce.at:1188): ok (0m0.895s 0m0.055s) 140. lr.type=ielr: Split During Added Lookahead Propagation (reduce.at:1188): ok (0m0.473s 0m0.031s) 141. lr.type=canonical-lr: Split During Added Lookahead Propagation (reduce.at:1188): ok (0m0.488s 0m0.016s) 142. no lr.default-reduction (reduce.at:1518): ok (0m0.441s 0m0.055s) 143. lr.default-reduction=most (reduce.at:1518): ok (0m0.465s 0m0.031s) 144. lr.default-reduction=consistent (reduce.at:1518): ok (0m0.457s 0m0.039s) 145. lr.default-reduction=accepting (reduce.at:1518): ok (0m0.457s 0m0.039s) 146. Token declaration order (conflicts.at:27): ok (0m0.473s 0m0.035s) 147. Token declaration order: literals vs. identifiers (conflicts.at:100): ok (0m0.117s 0m0.000s) 148. Useless associativity warning (conflicts.at:180): ok (0m0.504s 0m0.008s) 149. Useless precedence warning (conflicts.at:215): ok (0m0.527s 0m0.004s) 150. S/R in initial (conflicts.at:272): ok (0m0.824s 0m0.043s) 151. %nonassoc and eof (conflicts.at:298): ok (0m2.922s 0m0.094s) 152. parse.error=verbose and consistent errors: lr.type=ielr (conflicts.at:522): ok (0m0.746s 0m0.004s) 153. parse.error=verbose and consistent errors: lr.type=ielr %glr-parser (conflicts.at:526): ok (0m2.305s 0m0.051s) 154. parse.error=verbose and consistent errors: lr.type=ielr c++ (conflicts.at:531): ok (0m2.844s 0m0.105s) 155. parse.error=verbose and consistent errors: lr.type=ielr java (conflicts.at:536): skipped (conflicts.at:536) 156. parse.error=verbose and consistent errors: lr.type=ielr lr.default-reduction=consistent (conflicts.at:543): ok (0m0.703s 0m0.035s) 157. parse.error=verbose and consistent errors: lr.type=ielr lr.default-reduction=accepting (conflicts.at:548): ok (0m0.719s 0m0.020s) 158. parse.error=verbose and consistent errors: lr.type=canonical-lr (conflicts.at:553): ok (0m0.715s 0m0.023s) 159. parse.error=verbose and consistent errors: lr.type=canonical-lr parse.lac=full (conflicts.at:559): ok (0m0.871s 0m0.027s) 160. parse.error=verbose and consistent errors: lr.type=ielr parse.lac=full (conflicts.at:564): ok (0m0.871s 0m0.035s) 161. parse.error=verbose and consistent errors: (conflicts.at:620): ok (0m0.785s 0m0.031s) 162. parse.error=verbose and consistent errors: %glr-parser (conflicts.at:624): ok (0m2.367s 0m0.051s) 163. parse.error=verbose and consistent errors: lr.default-reduction=consistent (conflicts.at:630): ok (0m0.805s 0m0.027s) 164. parse.error=verbose and consistent errors: lr.default-reduction=accepting (conflicts.at:636): ok (0m0.793s 0m0.039s) 165. parse.error=verbose and consistent errors: lr.type=canonical-lr (conflicts.at:640): ok (0m0.805s 0m0.027s) 166. parse.error=verbose and consistent errors: parse.lac=full (conflicts.at:645): ok (0m0.980s 0m0.031s) 167. parse.error=verbose and consistent errors: parse.lac=full lr.default-reduction=accepting (conflicts.at:649): ok (0m0.980s 0m0.039s) 168. LAC: %nonassoc requires splitting canonical LR states (conflicts.at:674): ok (0m3.508s 0m0.156s) 169. Unresolved SR Conflicts (conflicts.at:759): ok (0m0.430s 0m0.023s) 170. Resolved SR Conflicts (conflicts.at:866): ok (0m0.082s 0m0.008s) 171. %precedence suffices (conflicts.at:967): ok (0m0.086s 0m0.004s) 172. %precedence does not suffice (conflicts.at:993): ok (0m0.449s 0m0.004s) 173. Defaulted Conflicted Reduction (conflicts.at:1044): ok (0m0.422s 0m0.016s) 174. %expect not enough (conflicts.at:1163): ok (0m0.000s 0m0.004s) 175. %expect right (conflicts.at:1182): ok (0m0.086s 0m0.004s) 176. %expect too much (conflicts.at:1199): ok (0m0.004s 0m0.000s) 177. %expect with reduce conflicts (conflicts.at:1218): ok (0m0.004s 0m0.000s) 178. %prec with user string (conflicts.at:1237): ok (0m0.086s 0m0.000s) 179. %no-default-prec without %prec (conflicts.at:1254): ok (0m0.434s 0m0.008s) 180. %no-default-prec with %prec (conflicts.at:1282): ok (0m0.078s 0m0.012s) 181. %default-prec (conflicts.at:1306): ok (0m0.086s 0m0.000s) 182. Unreachable States After Conflict Resolution (conflicts.at:1330): ok (0m0.879s 0m0.027s) 183. Solved conflicts report for multiple reductions in a state (conflicts.at:1543): ok (0m0.094s 0m0.000s) 184. %nonassoc error actions for multiple reductions in a state (conflicts.at:1623): ok (0m0.090s 0m0.004s) 185. %expect-rr non GLR (conflicts.at:1692): ok (0m0.844s 0m0.023s) 186. -W versus %expect and %expect-rr (conflicts.at:1723): ok (0m2.512s 0m0.141s) 187. Prologue syncline (synclines.at:173): skipped (synclines.at:173) 188. %union syncline (synclines.at:191): skipped (synclines.at:191) 189. %union name syncline (synclines.at:214): skipped (synclines.at:231) 190. Postprologue syncline (synclines.at:241): skipped (synclines.at:241) 191. Action syncline (synclines.at:265): skipped (synclines.at:265) 192. Epilogue syncline (synclines.at:284): skipped (synclines.at:284) 193. %code top syncline (synclines.at:301): skipped (synclines.at:301) 194. %no-lines: yacc.c (synclines.at:342): ok (0m0.094s 0m0.000s) 195. %no-lines: glr.c (synclines.at:343): ok (0m0.094s 0m0.000s) 196. %no-lines: lalr1.cc (synclines.at:344): ok (0m0.090s 0m0.000s) 197. %no-lines: glr.cc (synclines.at:345): ok (0m0.121s 0m0.004s) 198. Invalid CPP guards: --defines=input/input.h (headers.at:57): ok (0m0.273s 0m0.031s) 199. Invalid CPP guards: --defines=9foo.h (headers.at:58): ok (0m0.289s 0m0.016s) 200. Invalid CPP guards: %glr-parser --defines=input/input.h (headers.at:59): ok (0m0.922s 0m0.043s) 201. Invalid CPP guards: %glr-parser --defines=9foo.h (headers.at:60): ok (0m0.938s 0m0.027s) 202. export YYLTYPE (headers.at:69): ok (0m0.512s 0m0.059s) 203. Several parsers (headers.at:112): ok (0m20.813s 0m0.742s) 204. Mid-rule actions (actions.at:24): ok (0m1.043s 0m0.023s) 205. Implicitly empty rule (actions.at:71): ok (0m0.977s 0m0.020s) 206. Invalid uses of %empty (actions.at:112): ok (0m0.004s 0m0.004s) 207. Valid uses of %empty (actions.at:157): ok (0m0.633s 0m0.039s) 208. Initial location: yacc.c (actions.at:241): ok (0m0.770s 0m0.035s) 209. Initial location: yacc.c api.pure=full (actions.at:242): ok (0m0.758s 0m0.039s) 210. Initial location: yacc.c api.pure %parse-param { int x } (actions.at:243): ok (0m0.766s 0m0.035s) 211. Initial location: yacc.c api.push-pull=both (actions.at:244): ok (0m0.918s 0m0.047s) 212. Initial location: yacc.c api.push-pull=both api.pure=full (actions.at:245): ok (0m0.922s 0m0.031s) 213. Initial location: glr.c (actions.at:246): ok (0m1.629s 0m0.043s) 214. Initial location: glr.c api.pure (actions.at:247): ok (0m1.633s 0m0.043s) 215. Initial location: lalr1.cc (actions.at:248): ok (0m3.871s 0m0.125s) 216. Initial location: glr.cc (actions.at:249): ok (0m3.418s 0m0.105s) 217. Initial location: yacc.c api.pure=full (actions.at:258): ok (0m0.699s 0m0.023s) 218. Initial location: yacc.c api.pure=full (actions.at:269): ok (0m0.680s 0m0.047s) 219. Location print: yacc.c (actions.at:352): ok (0m0.762s 0m0.039s) 220. Location print: glr.c (actions.at:353): ok (0m1.672s 0m0.035s) 221. Location print: lalr1.cc (actions.at:354): ok (0m3.754s 0m0.109s) 222. Location print: glr.cc (actions.at:355): ok (0m3.461s 0m0.102s) 223. Exotic Dollars (actions.at:365): ok (0m1.383s 0m0.043s) 224. Printers and Destructors (actions.at:850): ok (0m1.254s 0m0.055s) 225. Printers and Destructors with union (actions.at:851): ok (0m1.254s 0m0.059s) 226. Printers and Destructors: %defines lalr1.cc (actions.at:853): ok (0m5.367s 0m0.129s) 227. Printers and Destructors with union: %defines lalr1.cc (actions.at:854): ok (0m5.309s 0m0.152s) 228. Printers and Destructors: %glr-parser (actions.at:856): ok (0m4.027s 0m0.039s) 229. Printers and Destructors with union: %glr-parser (actions.at:857): ok (0m4.012s 0m0.066s) 230. Default tagless %printer and %destructor (actions.at:868): ok (0m1.672s 0m0.039s) 231. Default tagged and per-type %printer and %destructor (actions.at:961): ok (0m1.535s 0m0.063s) 232. Default %printer and %destructor for user-defined end token (actions.at:1080): ok (0m2.934s 0m0.066s) 233. Default %printer and %destructor are not for error or $undefined (actions.at:1190): ok (0m1.223s 0m0.027s) 234. Default %printer and %destructor are not for $accept (actions.at:1283): ok (0m1.016s 0m0.066s) 235. Default %printer and %destructor for mid-rule values (actions.at:1347): ok (0m1.891s 0m0.059s) 236. @$ in %initial-action implies %locations (actions.at:1492): ok (0m0.742s 0m0.043s) 237. @$ in %destructor implies %locations (actions.at:1493): ok (0m0.750s 0m0.035s) 238. @$ in %printer implies %locations (actions.at:1494): ok (0m0.762s 0m0.031s) 239. Qualified $$ in actions: yacc.c (actions.at:1606): ok (0m0.805s 0m0.023s) 240. Qualified $$ in actions: glr.c (actions.at:1607): ok (0m3.355s 0m0.047s) 241. Qualified $$ in actions: lalr1.cc (actions.at:1608): ok (0m3.664s 0m0.090s) 242. Qualified $$ in actions: glr.cc (actions.at:1609): ok (0m4.988s 0m0.113s) 243. Destroying lookahead assigned by semantic action (actions.at:1617): ok (0m0.559s 0m0.020s) 244. YYBACKUP (actions.at:1672): ok (0m1.023s 0m0.043s) 245. %union vs. api.value.type (types.at:25): ok (0m0.090s 0m0.000s) 246. %yacc vs. api.value.type=union (types.at:44): ok (0m0.082s 0m0.008s) 247. yacc.c api.value.type={double} (types.at:128): ok (0m0.754s 0m0.035s) 248. yacc.c api.value.type={double} %defines (types.at:128): ok (0m0.762s 0m0.035s) 249. yacc.c api.value.type={variant} (types.at:128): ok (0m0.746s 0m0.047s) 250. yacc.c api.value.type={variant} %defines (types.at:128): ok (0m0.781s 0m0.020s) 251. yacc.c api.value.type={struct foo} (types.at:128): ok (0m0.770s 0m0.035s) 252. yacc.c api.value.type={struct foo} %defines (types.at:128): ok (0m0.801s 0m0.012s) 253. yacc.c api.value.type={struct bar} (types.at:128): ok (0m0.785s 0m0.031s) 254. yacc.c api.value.type={struct bar} %defines (types.at:128): ok (0m0.797s 0m0.027s) 255. yacc.c api.value.type={union foo} (types.at:128): ok (0m0.773s 0m0.023s) 256. yacc.c api.value.type={union foo} %defines (types.at:128): ok (0m0.766s 0m0.039s) 257. yacc.c %union { float fval; int ival; }; (types.at:128): ok (0m0.773s 0m0.020s) 258. yacc.c %union { float fval; int ival; }; %defines (types.at:128): ok (0m0.773s 0m0.027s) 259. yacc.c %union foo { float fval; int ival; }; (types.at:128): ok (0m0.770s 0m0.027s) 260. yacc.c %union foo { float fval; int ival; }; %defines (types.at:128): ok (0m0.762s 0m0.051s) 261. yacc.c api.value.union.name=foo; %union { float fval; int ival; }; (types.at:128): ok (0m0.762s 0m0.039s) 262. yacc.c api.value.union.name=foo; %union { float fval; int ival; }; %defines (types.at:128): ok (0m0.777s 0m0.035s) 263. yacc.c api.value.type=union (types.at:128): ok (0m0.809s 0m0.051s) 264. yacc.c api.value.type=union %defines (types.at:128): ok (0m0.828s 0m0.027s) 265. glr.c api.value.type={double} (types.at:128): ok (0m3.305s 0m0.051s) 266. glr.c api.value.type={double} %defines (types.at:128): ok (0m3.301s 0m0.055s) 267. glr.c api.value.type={variant} (types.at:128): ok (0m3.297s 0m0.055s) 268. glr.c api.value.type={variant} %defines (types.at:128): ok (0m3.305s 0m0.047s) 269. glr.c api.value.type={struct foo} (types.at:128): ok (0m3.371s 0m0.039s) 270. glr.c api.value.type={struct foo} %defines (types.at:128): ok (0m3.316s 0m0.059s) 271. glr.c api.value.type={struct bar} (types.at:128): ok (0m3.363s 0m0.031s) 272. glr.c api.value.type={struct bar} %defines (types.at:128): ok (0m3.313s 0m0.090s) 273. glr.c api.value.type={union foo} (types.at:128): ok (0m3.309s 0m0.016s) 274. glr.c api.value.type={union foo} %defines (types.at:128): ok (0m3.316s 0m0.020s) 275. glr.c %union { float fval; int ival; }; (types.at:128): ok (0m3.277s 0m0.047s) 276. glr.c %union { float fval; int ival; }; %defines (types.at:128): ok (0m3.266s 0m0.059s) 277. glr.c %union foo { float fval; int ival; }; (types.at:128): ok (0m3.250s 0m0.078s) 278. glr.c %union foo { float fval; int ival; }; %defines (types.at:128): ok (0m3.289s 0m0.039s) 279. glr.c api.value.union.name=foo; %union { float fval; int ival; }; (types.at:128): ok (0m3.277s 0m0.055s) 280. glr.c api.value.union.name=foo; %union { float fval; int ival; }; %defines (types.at:128): ok (0m3.277s 0m0.051s) 281. glr.c api.value.type=union (types.at:128): ok (0m3.336s 0m0.051s) 282. glr.c api.value.type=union %defines (types.at:128): ok (0m3.336s 0m0.047s) 283. lalr1.cc api.value.type={double} (types.at:128): ok (0m3.520s 0m0.133s) 284. lalr1.cc api.value.type={double} %defines (types.at:128): ok (0m3.574s 0m0.090s) 285. lalr1.cc api.value.type={variant} (types.at:128): ok (0m3.547s 0m0.125s) 286. lalr1.cc api.value.type={variant} %defines (types.at:128): ok (0m3.539s 0m0.117s) 287. lalr1.cc api.value.type={struct foo} (types.at:128): ok (0m3.664s 0m0.090s) 288. lalr1.cc api.value.type={struct foo} %defines (types.at:128): ok (0m3.676s 0m0.094s) 289. lalr1.cc api.value.type={struct bar} (types.at:128): ok (0m3.570s 0m0.117s) 290. lalr1.cc api.value.type={struct bar} %defines (types.at:128): ok (0m3.598s 0m0.109s) 291. lalr1.cc api.value.type={union foo} (types.at:128): ok (0m3.539s 0m0.117s) 292. lalr1.cc api.value.type={union foo} %defines (types.at:128): ok (0m3.563s 0m0.113s) 293. lalr1.cc %union { float fval; int ival; }; (types.at:128): ok (0m3.539s 0m0.141s) 294. lalr1.cc %union { float fval; int ival; }; %defines (types.at:128): ok (0m3.594s 0m0.074s) 295. lalr1.cc api.value.type=union (types.at:128): ok (0m3.598s 0m0.113s) 296. lalr1.cc api.value.type=union %defines (types.at:128): ok (0m3.629s 0m0.102s) 297. lalr1.cc api.value.type=variant (types.at:128): ok (0m4.680s 0m0.148s) 298. lalr1.cc api.value.type=variant %defines (types.at:128): ok (0m4.684s 0m0.109s) 299. glr.cc api.value.type={double} (types.at:128): ok (0m4.914s 0m0.121s) 300. glr.cc api.value.type={double} %defines (types.at:128): ok (0m4.922s 0m0.129s) 301. glr.cc api.value.type={variant} (types.at:128): ok (0m4.926s 0m0.105s) 302. glr.cc api.value.type={variant} %defines (types.at:128): ok (0m4.961s 0m0.070s) 303. glr.cc api.value.type={struct foo} (types.at:128): ok (0m4.949s 0m0.109s) 304. glr.cc api.value.type={struct foo} %defines (types.at:128): ok (0m4.949s 0m0.113s) 305. glr.cc api.value.type={struct bar} (types.at:128): ok (0m4.969s 0m0.125s) 306. glr.cc api.value.type={struct bar} %defines (types.at:128): ok (0m4.973s 0m0.125s) 307. glr.cc api.value.type={union foo} (types.at:128): ok (0m4.941s 0m0.137s) 308. glr.cc api.value.type={union foo} %defines (types.at:128): ok (0m4.949s 0m0.113s) 309. glr.cc %union { float fval; int ival; }; (types.at:128): ok (0m4.992s 0m0.094s) 310. glr.cc %union { float fval; int ival; }; %defines (types.at:128): ok (0m4.961s 0m0.113s) 311. glr.cc api.value.type=union (types.at:128): ok (0m4.957s 0m0.125s) 312. glr.cc api.value.type=union %defines (types.at:128): ok (0m4.918s 0m0.156s) 313. lalr1.cc: Named %union (types.at:263): ok (0m0.086s 0m0.000s) 314. glr.cc: Named %union (types.at:263): ok (0m0.125s 0m0.000s) 315. Calculator (calc.at:596): ok (0m0.648s 0m0.047s) 316. Calculator %defines (calc.at:598): ok (0m0.844s 0m0.047s) 317. Calculator %locations (calc.at:599): ok (0m0.789s 0m0.039s) 318. Calculator %name-prefix "calc" (calc.at:601): ok (0m0.660s 0m0.035s) 319. Calculator %verbose (calc.at:602): ok (0m0.656s 0m0.043s) 320. Calculator %yacc (calc.at:603): ok (0m0.688s 0m0.023s) 321. Calculator parse.error=verbose (calc.at:604): ok (0m0.895s 0m0.016s) 322. Calculator api.pure=full %locations (calc.at:606): ok (0m0.773s 0m0.047s) 323. Calculator api.push-pull=both api.pure=full %locations (calc.at:607): ok (0m0.934s 0m0.035s) 324. Calculator parse.error=verbose %locations (calc.at:608): ok (0m1.031s 0m0.023s) 325. Calculator parse.error=verbose %locations %defines api.prefix={calc} %verbose %yacc (calc.at:610): ok (0m1.254s 0m0.043s) 326. Calculator parse.error=verbose %locations %defines %name-prefix "calc" api.token.prefix={TOK_} %verbose %yacc (calc.at:611): ok (0m1.242s 0m0.055s) 327. Calculator %debug (calc.at:613): ok (0m0.957s 0m0.063s) 328. Calculator parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:614): ok (0m1.566s 0m0.105s) 329. Calculator parse.error=verbose %debug %locations %defines api.prefix={calc} %verbose %yacc (calc.at:615): ok (0m1.570s 0m0.105s) 330. Calculator api.pure=full parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:617): ok (0m1.605s 0m0.074s) 331. Calculator api.push-pull=both api.pure=full parse.error=verbose %debug %locations %defines api.prefix={calc} %verbose %yacc (calc.at:618): ok (0m1.715s 0m0.109s) 332. 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:620): ok (0m1.613s 0m0.109s) 333. Calculator %glr-parser (calc.at:637): ok (0m2.609s 0m0.063s) 334. Calculator %glr-parser %defines (calc.at:639): ok (0m2.801s 0m0.051s) 335. Calculator %glr-parser %locations (calc.at:640): ok (0m2.766s 0m0.051s) 336. Calculator %glr-parser %name-prefix "calc" (calc.at:641): ok (0m2.602s 0m0.074s) 337. Calculator %glr-parser api.prefix={calc} (calc.at:642): ok (0m2.617s 0m0.055s) 338. Calculator %glr-parser %verbose (calc.at:643): ok (0m2.609s 0m0.066s) 339. Calculator %glr-parser %yacc (calc.at:644): ok (0m2.633s 0m0.039s) 340. Calculator %glr-parser parse.error=verbose (calc.at:645): ok (0m2.801s 0m0.059s) 341. Calculator %glr-parser api.pure %locations (calc.at:647): ok (0m2.789s 0m0.027s) 342. Calculator %glr-parser parse.error=verbose %locations (calc.at:648): ok (0m2.949s 0m0.051s) 343. Calculator %glr-parser parse.error=verbose %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:650): ok (0m3.098s 0m0.074s) 344. Calculator %glr-parser %debug (calc.at:652): ok (0m3.664s 0m0.066s) 345. Calculator %glr-parser parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:653): ok (0m4.453s 0m0.133s) 346. Calculator %glr-parser parse.error=verbose %debug %locations %defines api.prefix={calc} api.token.prefix={TOK_} %verbose %yacc (calc.at:654): ok (0m4.473s 0m0.125s) 347. Calculator %glr-parser api.pure parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:656): ok (0m4.496s 0m0.105s) 348. 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:658): ok (0m4.656s 0m0.117s) 349. 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:659): ok (0m4.641s 0m0.133s) 350. Calculator lalr1.cc %defines (calc.at:669): ok (0m5.391s 0m0.234s) 351. Calculator C++ (calc.at:678): ok (0m3.008s 0m0.078s) 352. Calculator C++ %locations (calc.at:679): ok (0m3.402s 0m0.082s) 353. Calculator C++ %locations api.location.type={Span} (calc.at:680): ok (0m3.246s 0m0.125s) 354. Calculator C++ %defines %locations parse.error=verbose %name-prefix "calc" %verbose %yacc (calc.at:681): ok (0m6.555s 0m0.254s) 355. Calculator C++ %locations parse.error=verbose api.prefix={calc} %verbose %yacc (calc.at:683): ok (0m3.578s 0m0.148s) 356. Calculator C++ %locations parse.error=verbose %debug %name-prefix "calc" %verbose %yacc (calc.at:684): ok (0m4.773s 0m0.191s) 357. Calculator C++ %locations parse.error=verbose %debug api.prefix={calc} %verbose %yacc (calc.at:686): ok (0m4.738s 0m0.227s) 358. Calculator C++ %locations parse.error=verbose %debug api.prefix={calc} api.token.prefix={TOK_} %verbose %yacc (calc.at:687): ok (0m4.746s 0m0.227s) 359. Calculator C++ %defines %locations parse.error=verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:689): ok (0m7.691s 0m0.410s) 360. Calculator C++ parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:691): ok (0m4.219s 0m0.164s) 361. Calculator C++ %defines %locations parse.error=verbose %debug api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} (calc.at:692): ok (0m7.734s 0m0.383s) 362. Calculator glr.cc (calc.at:703): ok (0m4.148s 0m0.141s) 363. Calculator C++ %glr-parser (calc.at:712): ok (0m4.164s 0m0.125s) 364. Calculator C++ %glr-parser %locations (calc.at:713): ok (0m3.949s 0m0.148s) 365. Calculator C++ %glr-parser %locations api.location.type={Span} (calc.at:714): ok (0m4.336s 0m0.117s) 366. Calculator C++ %glr-parser %defines parse.error=verbose %name-prefix "calc" %verbose %yacc (calc.at:715): ok (0m6.527s 0m0.273s) 367. Calculator C++ %glr-parser parse.error=verbose api.prefix={calc} %verbose %yacc (calc.at:716): ok (0m4.355s 0m0.133s) 368. Calculator C++ %glr-parser %debug (calc.at:718): ok (0m5.320s 0m0.188s) 369. Calculator C++ %glr-parser parse.error=verbose %debug %name-prefix "calc" %verbose %yacc (calc.at:720): ok (0m5.496s 0m0.184s) 370. Calculator C++ %glr-parser parse.error=verbose %debug %name-prefix "calc" api.token.prefix={TOK_} %verbose %yacc (calc.at:721): ok (0m5.496s 0m0.195s) 371. 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:723): ok (0m8.234s 0m0.285s) 372. 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:724): ok (0m8.238s 0m0.293s) 373. Big triangle (torture.at:132): ok (0m3.398s 0m0.094s) 374. Big horizontal (torture.at:216): ok (0m3.918s 0m0.035s) 375. Many lookahead tokens (torture.at:348): ok (0m19.055s 0m0.148s) 376. Exploding the Stack Size with Alloca (torture.at:450): ok (0m4.199s 0m14.832s) 377. Exploding the Stack Size with Malloc (torture.at:496): ok (0m4.215s 0m14.836s) 378. GNU AWK 3.1.0 Grammar: LALR(1) (existing.at:79): ok (0m2.992s 0m0.082s) 379. GNU AWK 3.1.0 Grammar: IELR(1) (existing.at:79): ok (0m3.133s 0m0.066s) 380. GNU AWK 3.1.0 Grammar: Canonical LR(1) (existing.at:79): ok (0m15.320s 0m0.254s) 381. GNU Cim Grammar: LALR(1) (existing.at:811): ok (0m4.535s 0m0.086s) 382. GNU Cim Grammar: IELR(1) (existing.at:811): ok (0m4.637s 0m0.063s) 383. GNU Cim Grammar: Canonical LR(1) (existing.at:811): ok (1m43.035s 0m0.820s) 384. GNU pic (Groff 1.18.1) Grammar: LALR(1) (existing.at:1461): ok (0m4.672s 0m0.078s) 385. GNU pic (Groff 1.18.1) Grammar: IELR(1) (existing.at:1461): ok (0m4.980s 0m0.109s) 386. GNU pic (Groff 1.18.1) Grammar: Canonical LR(1) (existing.at:1461): ok (0m51.535s 0m0.559s) 387. Trivial grammars (regression.at:25): ok (0m1.297s 0m0.063s) 388. YYSTYPE typedef (regression.at:55): ok (0m0.289s 0m0.016s) 389. Early token definitions with --yacc (regression.at:85): ok (0m0.344s 0m0.012s) 390. Early token definitions without --yacc (regression.at:125): ok (0m0.367s 0m0.023s) 391. Braces parsing (regression.at:170): ok (0m0.086s 0m0.000s) 392. Duplicate string (regression.at:194): ok (0m0.465s 0m0.023s) 393. Rule Line Numbers (regression.at:222): ok (0m0.090s 0m0.004s) 394. Mixing %token styles (regression.at:368): ok (0m0.441s 0m0.012s) 395. Invalid inputs (regression.at:394): ok (0m0.000s 0m0.004s) 396. Invalid inputs with {} (regression.at:421): ok (0m0.000s 0m0.004s) 397. Token definitions (regression.at:446): ok (0m1.582s 0m0.074s) 398. Characters Escapes (regression.at:507): ok (0m0.332s 0m0.012s) 399. Web2c Report (regression.at:540): ok (0m0.094s 0m0.004s) 400. Web2c Actions (regression.at:717): ok (0m0.109s 0m0.000s) 401. Dancer (regression.at:906): ok (0m0.711s 0m0.039s) 402. Dancer %glr-parser (regression.at:907): ok (0m2.266s 0m0.055s) 403. Dancer lalr1.cc (regression.at:908): ok (0m2.832s 0m0.117s) 404. Expecting two tokens (regression.at:983): ok (0m0.715s 0m0.020s) 405. Expecting two tokens %glr-parser (regression.at:984): ok (0m2.316s 0m0.059s) 406. Expecting two tokens lalr1.cc (regression.at:985): ok (0m2.902s 0m0.102s) 407. Braced code in declaration in rules section (regression.at:993): ok (0m0.926s 0m0.027s) 408. String alias declared after use (regression.at:1052): ok (0m0.082s 0m0.004s) 409. Extra lookahead sets in report (regression.at:1075): ok (0m0.078s 0m0.008s) 410. Token number in precedence declaration (regression.at:1116): ok (0m1.074s 0m0.047s) 411. parse-gram.y: LALR = IELR (regression.at:1169): ok (0m1.043s 0m0.012s) 412. parse.error=verbose and YYSTACK_USE_ALLOCA (regression.at:1191): ok (0m0.672s 0m0.031s) 413. parse.error=verbose overflow (regression.at:1265): ok (0m0.668s 0m0.039s) 414. LAC: Exploratory stack (regression.at:1375): ok (0m6.973s 0m0.262s) 415. LAC: Memory exhaustion (regression.at:1463): ok (0m3.016s 0m0.125s) 416. Lex and parse params: yacc.c (regression.at:1593): ok (0m0.543s 0m0.051s) 417. Lex and parse params: glr.c (regression.at:1594): ok (0m2.430s 0m0.063s) 418. Lex and parse params: lalr1.cc (regression.at:1595): ok (0m2.996s 0m0.102s) 419. Lex and parse params: glr.cc (regression.at:1596): ok (0m4.113s 0m0.094s) 420. stdio.h is not needed (regression.at:1607): ok (0m0.426s 0m0.016s) 421. Memory Leak for Early Deletion (push.at:24): ok (0m0.543s 0m0.012s) 422. Multiple impure instances (push.at:83): ok (0m1.047s 0m0.063s) 423. Unsupported Skeletons (push.at:144): ok (0m0.090s 0m0.004s) 424. C++ Locations (c++.at:25): ok (0m4.656s 0m0.117s) 425. C++ Variant-based Symbols (c++.at:94): ok (0m7.039s 0m0.125s) 426. Variants lalr1.cc (c++.at:370): ok (0m7.266s 0m0.176s) 427. Variants lalr1.cc parse.assert (c++.at:371): ok (0m9.215s 0m0.141s) 428. Variants lalr1.cc parse.assert %locations (c++.at:372): ok (0m9.477s 0m0.145s) 429. Variants lalr1.cc parse.assert %code {\n#define TWO_STAGE_BUILD\n} (c++.at:373): ok (0m9.238s 0m0.129s) 433. Doxygen Public Documentation (c++.at:460): skipped (c++.at:460) 434. Doxygen Private Documentation (c++.at:461): skipped (c++.at:461) 435. Relative namespace references (c++.at:515): ok (0m8.387s 0m0.277s) 436. Absolute namespace references (c++.at:521): ok (0m16.766s 0m0.594s) 437. Syntactically invalid namespace references (c++.at:530): ok (0m0.465s 0m0.004s) 438. Syntax error discarding no lookahead (c++.at:550): ok (0m3.148s 0m0.102s) 439. Syntax error as exception (c++.at:623): ok (0m3.941s 0m0.109s) 440. Exception safety with error recovery (c++.at:973): ok (0m10.277s 0m0.230s) 441. Exception safety without error recovery (c++.at:974): ok (0m10.262s 0m0.246s) 442. Exception safety with error recovery api.value.type=variant (c++.at:975): ok (0m10.676s 0m0.254s) 443. Exception safety without error recovery api.value.type=variant (c++.at:976): ok (0m10.672s 0m0.285s) 444. C++ GLR parser identifier shadowing (c++.at:984): ok (0m3.520s 0m0.102s) 445. Calculator (java.at:360): skipped (java.at:360) 446. Calculator %error-verbose (java.at:360): skipped (java.at:360) 447. Calculator %locations (java.at:360): skipped (java.at:360) 448. Calculator %error-verbose %locations (java.at:360): skipped (java.at:360) 449. Calculator %lex-param { InputStream is } (java.at:369): skipped (java.at:369) 450. Calculator %error-verbose %lex-param { InputStream is } (java.at:369): skipped (java.at:369) 451. Calculator %locations %lex-param { InputStream is } (java.at:369): skipped (java.at:369) 452. Calculator %error-verbose %locations %lex-param { InputStream is } (java.at:369): skipped (java.at:369) 453. Java parser class and package names (java.at:455): skipped (java.at:457) 454. Java parser class modifiers (java.at:479): skipped (java.at:481) 455. Java parser class extends and implements (java.at:543): skipped (java.at:545) 456. Java %parse-param and %lex-param (java.at:563): skipped (java.at:565) 457. Java throws specifications (java.at:637): skipped (java.at:697) 458. Java constructor init and init_throws (java.at:726): skipped (java.at:731) 459. Java value, position, and location types (java.at:753): skipped (java.at:755) 460. Java syntax error handling without error token (java.at:784): skipped (java.at:836) 461. Trivial Push Parser with api.push-pull verification (javapush.at:168): skipped (javapush.at:203) 462. Trivial Push Parser with %initial-action (javapush.at:213): skipped (javapush.at:225) 463. Calc parser with api.push-pull both (javapush.at:311): skipped (javapush.at:580) 464. Calc parser with %locations %code lexer and api.push-pull both (javapush.at:599): skipped (javapush.at:852) 465. GLR: Resolve ambiguity, impure, no locations (cxx-type.at:394): ok (0m2.750s 0m0.031s) 466. GLR: Resolve ambiguity, impure, locations (cxx-type.at:401): ok (0m2.750s 0m0.063s) 467. GLR: Resolve ambiguity, pure, no locations (cxx-type.at:407): ok (0m2.746s 0m0.047s) 468. GLR: Resolve ambiguity, pure, locations (cxx-type.at:414): ok (0m2.738s 0m0.070s) 469. GLR: Merge conflicting parses, impure, no locations (cxx-type.at:421): ok (0m2.738s 0m0.063s) 470. GLR: Merge conflicting parses, impure, locations (cxx-type.at:428): ok (0m2.781s 0m0.047s) 471. GLR: Merge conflicting parses, pure, no locations (cxx-type.at:435): ok (0m2.750s 0m0.051s) 472. GLR: Merge conflicting parses, pure, locations (cxx-type.at:441): ok (0m2.805s 0m0.012s) 473. GLR: Verbose messages, resolve ambiguity, impure, no locations (cxx-type.at:448): ok (0m2.945s 0m0.027s) 474. Badly Collapsed GLR States (glr-regression.at:25): ok (0m2.547s 0m0.070s) 475. Improper handling of embedded actions and dollar(-N) in GLR parsers (glr-regression.at:112): ok (0m2.738s 0m0.059s) 476. Improper merging of GLR delayed action sets (glr-regression.at:244): ok (0m2.793s 0m0.070s) 477. Duplicate representation of merged trees (glr-regression.at:365): ok (0m2.766s 0m0.074s) 478. User destructor for unresolved GLR semantic value (glr-regression.at:456): ok (0m2.633s 0m0.102s) 479. User destructor after an error during a split parse (glr-regression.at:512): ok (0m2.570s 0m0.063s) 480. Duplicated user destructor for lookahead (glr-regression.at:562): ok (0m2.465s 0m0.090s) 481. Incorrectly initialized location for empty right-hand side in GLR (glr-regression.at:651): ok (0m2.863s 0m0.074s) 482. No users destructors if stack 0 deleted (glr-regression.at:740): ok (0m2.508s 0m0.047s) 483. Corrupted semantic options if user action cuts parse (glr-regression.at:817): ok (0m2.523s 0m0.086s) 484. Undesirable destructors if user action cuts parse (glr-regression.at:871): ok (0m2.598s 0m0.070s) 485. Leaked semantic values if user action cuts parse (glr-regression.at:929): ok (0m2.754s 0m0.039s) 486. Incorrect lookahead during deterministic GLR (glr-regression.at:1053): ok (0m2.348s 0m0.047s) 487. Incorrect lookahead during nondeterministic GLR (glr-regression.at:1177): ok (0m2.965s 0m0.043s) 488. Leaked semantic values when reporting ambiguity (glr-regression.at:1394): ok (0m2.656s 0m0.059s) 489. Leaked lookahead after nondeterministic parse syntax error (glr-regression.at:1476): ok (0m2.637s 0m0.051s) 490. Uninitialized location when reporting ambiguity (glr-regression.at:1536): ok (0m3.043s 0m0.043s) 491. Missed %merge type warnings when LHS type is declared later (glr-regression.at:1610): ok (0m0.000s 0m0.004s) 492. Ambiguity reports (glr-regression.at:1659): ok (0m3.707s 0m0.063s) 493. Predicates (glr-regression.at:1760): ok (0m0.098s 0m0.012s) testsuite: ending at: Mon Mar 12 15:17:28 CST 2018 testsuite: test suite duration: 0h 21m 6s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 463 tests were run, 3 failed unexpectedly. 30 tests were skipped. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Failed tests: GNU Bison 3.0.4 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 430: c++.at:374 Variants lalr1.cc parse.assert api.token.constructor c++ 431: c++.at:375 Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} c++ 432: c++.at:376 Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} %locations c++ Skipped tests: GNU Bison 3.0.4 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 155: conflicts.at:536 parse.error=verbose and consistent errors: lr.type=ielr java java 187: synclines.at:173 Prologue syncline 188: synclines.at:191 %union syncline 189: synclines.at:214 %union name syncline 190: synclines.at:241 Postprologue syncline 191: synclines.at:265 Action syncline 192: synclines.at:284 Epilogue syncline 193: synclines.at:301 %code top syncline 433: c++.at:460 Doxygen Public Documentation 434: c++.at:461 Doxygen Private Documentation 445: java.at:360 Calculator java 446: java.at:360 Calculator %error-verbose java 447: java.at:360 Calculator %locations java 448: java.at:360 Calculator %error-verbose %locations java 449: java.at:369 Calculator %lex-param { InputStream is } java 450: java.at:369 Calculator %error-verbose %lex-param { InputStream is } java 451: java.at:369 Calculator %locations %lex-param { InputStream is } java 452: java.at:369 Calculator %error-verbose %locations %lex-param { InputStream is } java 453: java.at:455 Java parser class and package names java 454: java.at:479 Java parser class modifiers java 455: java.at:543 Java parser class extends and implements java 456: java.at:563 Java %parse-param and %lex-param java 457: java.at:637 Java throws specifications java 458: java.at:726 Java constructor init and init_throws java 459: java.at:753 Java value, position, and location types java 460: java.at:784 Java syntax error handling without error token java 461: javapush.at:168 Trivial Push Parser with api.push-pull verification java 462: javapush.at:213 Trivial Push Parser with %initial-action java 463: javapush.at:311 Calc parser with api.push-pull both java 464: javapush.at:599 Calc parser with %locations %code lexer and api.push-pull both java ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## # -*- compilation -*- 430. c++.at:374: testing Variants lalr1.cc parse.assert api.token.constructor ... ../../tests/c++.at:374: bison -fno-caret -o list.cc list.y ../../tests/c++.at:374: $BISON_CXX_WORKS stderr: stdout: ../../tests/c++.at:374: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o list list.cc $LIBS stderr: In file included from list.y:2:0: /mnt/lfs/sources/bison-3.0.4/build/lib/config.h:2220:5: warning: option '-Wmissing-prototypes' is valid for C/ObjC but not for C++ [-Wpragmas] _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ ^ list.y: In member function 'void yy::parser::basic_symbol::clear()': list.y:75:36: error: no match for 'operator<<' (operand types are 'std::basic_ostream' and 'std::__cxx11::list >') %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:108:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__ostream_type& (*)(std::basic_ostream<_CharT, _Traits>::__ostream_type&)) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(__ostream_type& (*__pf)(__ostream_type&)) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:108:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::basic_ostream::__ostream_type& (*)(std::basic_ostream::__ostream_type&) {aka std::basic_ostream& (*)(std::basic_ostream&)}' /mnt/lfs/tools/include/c++/7.3.0/ostream:117:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__ios_type& (*)(std::basic_ostream<_CharT, _Traits>::__ios_type&)) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream; std::basic_ostream<_CharT, _Traits>::__ios_type = std::basic_ios] operator<<(__ios_type& (*__pf)(__ios_type&)) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:117:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::basic_ostream::__ios_type& (*)(std::basic_ostream::__ios_type&) {aka std::basic_ios& (*)(std::basic_ios&)}' /mnt/lfs/tools/include/c++/7.3.0/ostream:127:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::ios_base& (*)(std::ios_base&)) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(ios_base& (*__pf) (ios_base&)) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:127:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::ios_base& (*)(std::ios_base&)' /mnt/lfs/tools/include/c++/7.3.0/ostream:166:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:166:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long int' /mnt/lfs/tools/include/c++/7.3.0/ostream:170:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:170:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long unsigned int' /mnt/lfs/tools/include/c++/7.3.0/ostream:174:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(bool) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(bool __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:174:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'bool' In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:91:5: note: candidate: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(short int) [with _CharT = char; _Traits = std::char_traits] basic_ostream<_CharT, _Traits>:: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:91:5: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'short int' In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:181:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(short unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned short __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:181:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'short unsigned int' In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:105:5: note: candidate: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(int) [with _CharT = char; _Traits = std::char_traits] basic_ostream<_CharT, _Traits>:: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:105:5: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'int' In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:192:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned int __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:192:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'unsigned int' /mnt/lfs/tools/include/c++/7.3.0/ostream:201:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(long long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:201:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long long int' /mnt/lfs/tools/include/c++/7.3.0/ostream:205:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned long long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:205:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long long unsigned int' /mnt/lfs/tools/include/c++/7.3.0/ostream:220:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(double) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(double __f) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:220:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'double' /mnt/lfs/tools/include/c++/7.3.0/ostream:224:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(float) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(float __f) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:224:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'float' /mnt/lfs/tools/include/c++/7.3.0/ostream:232:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long double) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(long double __f) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:232:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long double' /mnt/lfs/tools/include/c++/7.3.0/ostream:245:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(const void*) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(const void* __p) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:245:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'const void*' In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:119:5: note: candidate: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__streambuf_type*) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__streambuf_type = std::basic_streambuf] basic_ostream<_CharT, _Traits>:: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:119:5: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::basic_ostream::__streambuf_type* {aka std::basic_streambuf*}' In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:682:5: note: candidate: template typename std::enable_if >, std::__is_convertible_to_basic_ostream<_Ostream>, std::__is_insertable::__ostream_type, const _Tp&, void> >::value, typename std::__is_convertible_to_basic_ostream<_Tp>::__ostream_type>::type std::operator<<(_Ostream&&, const _Tp&) operator<<(_Ostream&& __os, const _Tp& __x) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:682:5: note: template argument deduction/substitution failed: /mnt/lfs/tools/include/c++/7.3.0/ostream: In substitution of 'template typename std::enable_if >, std::__is_convertible_to_basic_ostream<_Ostream>, std::__is_insertable::__ostream_type, const _Tp&, void> >::value, typename std::__is_convertible_to_basic_ostream<_Tp>::__ostream_type>::type std::operator<<(_Ostream&&, const _Tp&) [with _Ostream = std::basic_ostream&; _Tp = std::__cxx11::list >]': list.y:75:92: required from here /mnt/lfs/tools/include/c++/7.3.0/ostream:682:5: error: no type named 'type' in 'struct std::enable_if&>' /mnt/lfs/tools/include/c++/7.3.0/ostream:574:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, const unsigned char*) operator<<(basic_ostream& __out, const unsigned char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:574:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const unsigned char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:569:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, const signed char*) operator<<(basic_ostream& __out, const signed char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:569:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const signed char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:556:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, const char*) operator<<(basic_ostream& __out, const char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:556:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:321:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const char*) operator<<(basic_ostream<_CharT, _Traits>& __out, const char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:321:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:539:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const _CharT*) operator<<(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:539:5: note: template argument deduction/substitution failed: list.y:75:92: note: mismatched types 'const _CharT*' and 'std::__cxx11::list >' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:519:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, unsigned char) operator<<(basic_ostream& __out, unsigned char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:519:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'unsigned char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:514:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, signed char) operator<<(basic_ostream& __out, signed char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:514:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'signed char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:508:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, char) operator<<(basic_ostream& __out, char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:508:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:502:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, char) operator<<(basic_ostream<_CharT, _Traits>& __out, char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:502:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:497:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, _CharT) operator<<(basic_ostream<_CharT, _Traits>& __out, _CharT __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:497:5: note: template argument deduction/substitution failed: list.y:75:92: note: deduced conflicting types for parameter '_CharT' ('char' and 'std::__cxx11::list >') %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/bits/ios_base.h:46:0, from /mnt/lfs/tools/include/c++/7.3.0/ios:42, from /mnt/lfs/tools/include/c++/7.3.0/ostream:38, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/system_error:217:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const std::error_code&) operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __e) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/system_error:217:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const std::error_code&' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/string:52:0, from list.y:16: /mnt/lfs/tools/include/c++/7.3.0/bits/basic_string.h:6272:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>&) operator<<(basic_ostream<_CharT, _Traits>& __os, ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/basic_string.h:6272:5: note: template argument deduction/substitution failed: list.y:75:92: note: 'std::__cxx11::list >' is not derived from 'const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ stdout: ../../tests/c++.at:374: exit code was 1, expected 0 430. c++.at:374: 430. Variants lalr1.cc parse.assert api.token.constructor (c++.at:374): FAILED (c++.at:374) # -*- compilation -*- 431. c++.at:375: testing Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} ... ../../tests/c++.at:375: bison -fno-caret -o list.cc list.y ../../tests/c++.at:375: $BISON_CXX_WORKS stderr: stdout: ../../tests/c++.at:375: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o list list.cc $LIBS stderr: In file included from list.y:2:0: /mnt/lfs/sources/bison-3.0.4/build/lib/config.h:2220:5: warning: option '-Wmissing-prototypes' is valid for C/ObjC but not for C++ [-Wpragmas] _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ ^ list.y: In member function 'void yy::parser::basic_symbol::clear()': list.y:75:36: error: no match for 'operator<<' (operand types are 'std::basic_ostream' and 'std::__cxx11::list >') %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:108:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__ostream_type& (*)(std::basic_ostream<_CharT, _Traits>::__ostream_type&)) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(__ostream_type& (*__pf)(__ostream_type&)) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:108:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::basic_ostream::__ostream_type& (*)(std::basic_ostream::__ostream_type&) {aka std::basic_ostream& (*)(std::basic_ostream&)}' /mnt/lfs/tools/include/c++/7.3.0/ostream:117:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__ios_type& (*)(std::basic_ostream<_CharT, _Traits>::__ios_type&)) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream; std::basic_ostream<_CharT, _Traits>::__ios_type = std::basic_ios] operator<<(__ios_type& (*__pf)(__ios_type&)) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:117:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::basic_ostream::__ios_type& (*)(std::basic_ostream::__ios_type&) {aka std::basic_ios& (*)(std::basic_ios&)}' /mnt/lfs/tools/include/c++/7.3.0/ostream:127:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::ios_base& (*)(std::ios_base&)) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(ios_base& (*__pf) (ios_base&)) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:127:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::ios_base& (*)(std::ios_base&)' /mnt/lfs/tools/include/c++/7.3.0/ostream:166:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:166:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long int' /mnt/lfs/tools/include/c++/7.3.0/ostream:170:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:170:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long unsigned int' /mnt/lfs/tools/include/c++/7.3.0/ostream:174:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(bool) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(bool __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:174:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'bool' In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:91:5: note: candidate: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(short int) [with _CharT = char; _Traits = std::char_traits] basic_ostream<_CharT, _Traits>:: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:91:5: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'short int' In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:181:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(short unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned short __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:181:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'short unsigned int' In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:105:5: note: candidate: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(int) [with _CharT = char; _Traits = std::char_traits] basic_ostream<_CharT, _Traits>:: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:105:5: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'int' In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:192:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned int __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:192:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'unsigned int' /mnt/lfs/tools/include/c++/7.3.0/ostream:201:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(long long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:201:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long long int' /mnt/lfs/tools/include/c++/7.3.0/ostream:205:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned long long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:205:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long long unsigned int' /mnt/lfs/tools/include/c++/7.3.0/ostream:220:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(double) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(double __f) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:220:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'double' /mnt/lfs/tools/include/c++/7.3.0/ostream:224:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(float) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(float __f) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:224:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'float' /mnt/lfs/tools/include/c++/7.3.0/ostream:232:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long double) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(long double __f) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:232:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long double' /mnt/lfs/tools/include/c++/7.3.0/ostream:245:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(const void*) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(const void* __p) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:245:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'const void*' In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:119:5: note: candidate: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__streambuf_type*) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__streambuf_type = std::basic_streambuf] basic_ostream<_CharT, _Traits>:: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:119:5: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::basic_ostream::__streambuf_type* {aka std::basic_streambuf*}' In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:682:5: note: candidate: template typename std::enable_if >, std::__is_convertible_to_basic_ostream<_Ostream>, std::__is_insertable::__ostream_type, const _Tp&, void> >::value, typename std::__is_convertible_to_basic_ostream<_Tp>::__ostream_type>::type std::operator<<(_Ostream&&, const _Tp&) operator<<(_Ostream&& __os, const _Tp& __x) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:682:5: note: template argument deduction/substitution failed: /mnt/lfs/tools/include/c++/7.3.0/ostream: In substitution of 'template typename std::enable_if >, std::__is_convertible_to_basic_ostream<_Ostream>, std::__is_insertable::__ostream_type, const _Tp&, void> >::value, typename std::__is_convertible_to_basic_ostream<_Tp>::__ostream_type>::type std::operator<<(_Ostream&&, const _Tp&) [with _Ostream = std::basic_ostream&; _Tp = std::__cxx11::list >]': list.y:75:92: required from here /mnt/lfs/tools/include/c++/7.3.0/ostream:682:5: error: no type named 'type' in 'struct std::enable_if&>' /mnt/lfs/tools/include/c++/7.3.0/ostream:574:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, const unsigned char*) operator<<(basic_ostream& __out, const unsigned char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:574:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const unsigned char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:569:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, const signed char*) operator<<(basic_ostream& __out, const signed char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:569:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const signed char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:556:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, const char*) operator<<(basic_ostream& __out, const char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:556:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:321:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const char*) operator<<(basic_ostream<_CharT, _Traits>& __out, const char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:321:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:539:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const _CharT*) operator<<(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:539:5: note: template argument deduction/substitution failed: list.y:75:92: note: mismatched types 'const _CharT*' and 'std::__cxx11::list >' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:519:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, unsigned char) operator<<(basic_ostream& __out, unsigned char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:519:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'unsigned char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:514:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, signed char) operator<<(basic_ostream& __out, signed char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:514:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'signed char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:508:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, char) operator<<(basic_ostream& __out, char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:508:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:502:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, char) operator<<(basic_ostream<_CharT, _Traits>& __out, char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:502:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:497:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, _CharT) operator<<(basic_ostream<_CharT, _Traits>& __out, _CharT __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:497:5: note: template argument deduction/substitution failed: list.y:75:92: note: deduced conflicting types for parameter '_CharT' ('char' and 'std::__cxx11::list >') %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/bits/ios_base.h:46:0, from /mnt/lfs/tools/include/c++/7.3.0/ios:42, from /mnt/lfs/tools/include/c++/7.3.0/ostream:38, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/system_error:217:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const std::error_code&) operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __e) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/system_error:217:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const std::error_code&' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/string:52:0, from list.y:16: /mnt/lfs/tools/include/c++/7.3.0/bits/basic_string.h:6272:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>&) operator<<(basic_ostream<_CharT, _Traits>& __os, ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/basic_string.h:6272:5: note: template argument deduction/substitution failed: list.y:75:92: note: 'std::__cxx11::list >' is not derived from 'const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ stdout: ../../tests/c++.at:375: exit code was 1, expected 0 431. c++.at:375: 431. Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} (c++.at:375): FAILED (c++.at:375) # -*- compilation -*- 432. c++.at:376: testing Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} %locations ... ../../tests/c++.at:376: bison -fno-caret -o list.cc list.y ../../tests/c++.at:376: $BISON_CXX_WORKS stderr: stdout: ../../tests/c++.at:376: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o list list.cc $LIBS stderr: In file included from list.y:2:0: /mnt/lfs/sources/bison-3.0.4/build/lib/config.h:2220:5: warning: option '-Wmissing-prototypes' is valid for C/ObjC but not for C++ [-Wpragmas] _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ ^ list.y: In member function 'void yy::parser::basic_symbol::clear()': list.y:75:36: error: no match for 'operator<<' (operand types are 'std::basic_ostream' and 'std::__cxx11::list >') %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:108:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__ostream_type& (*)(std::basic_ostream<_CharT, _Traits>::__ostream_type&)) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(__ostream_type& (*__pf)(__ostream_type&)) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:108:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::basic_ostream::__ostream_type& (*)(std::basic_ostream::__ostream_type&) {aka std::basic_ostream& (*)(std::basic_ostream&)}' /mnt/lfs/tools/include/c++/7.3.0/ostream:117:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__ios_type& (*)(std::basic_ostream<_CharT, _Traits>::__ios_type&)) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream; std::basic_ostream<_CharT, _Traits>::__ios_type = std::basic_ios] operator<<(__ios_type& (*__pf)(__ios_type&)) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:117:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::basic_ostream::__ios_type& (*)(std::basic_ostream::__ios_type&) {aka std::basic_ios& (*)(std::basic_ios&)}' /mnt/lfs/tools/include/c++/7.3.0/ostream:127:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::ios_base& (*)(std::ios_base&)) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(ios_base& (*__pf) (ios_base&)) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:127:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::ios_base& (*)(std::ios_base&)' /mnt/lfs/tools/include/c++/7.3.0/ostream:166:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:166:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long int' /mnt/lfs/tools/include/c++/7.3.0/ostream:170:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:170:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long unsigned int' /mnt/lfs/tools/include/c++/7.3.0/ostream:174:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(bool) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(bool __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:174:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'bool' In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:91:5: note: candidate: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(short int) [with _CharT = char; _Traits = std::char_traits] basic_ostream<_CharT, _Traits>:: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:91:5: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'short int' In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:181:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(short unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned short __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:181:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'short unsigned int' In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:105:5: note: candidate: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(int) [with _CharT = char; _Traits = std::char_traits] basic_ostream<_CharT, _Traits>:: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:105:5: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'int' In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:192:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned int __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:192:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'unsigned int' /mnt/lfs/tools/include/c++/7.3.0/ostream:201:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(long long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:201:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long long int' /mnt/lfs/tools/include/c++/7.3.0/ostream:205:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long unsigned int) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(unsigned long long __n) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:205:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long long unsigned int' /mnt/lfs/tools/include/c++/7.3.0/ostream:220:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(double) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(double __f) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:220:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'double' /mnt/lfs/tools/include/c++/7.3.0/ostream:224:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(float) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(float __f) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:224:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'float' /mnt/lfs/tools/include/c++/7.3.0/ostream:232:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long double) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(long double __f) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:232:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'long double' /mnt/lfs/tools/include/c++/7.3.0/ostream:245:7: note: candidate: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(const void*) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream] operator<<(const void* __p) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:245:7: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'const void*' In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:119:5: note: candidate: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__streambuf_type*) [with _CharT = char; _Traits = std::char_traits; std::basic_ostream<_CharT, _Traits>::__streambuf_type = std::basic_streambuf] basic_ostream<_CharT, _Traits>:: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:119:5: note: no known conversion for argument 1 from 'std::__cxx11::list >' to 'std::basic_ostream::__streambuf_type* {aka std::basic_streambuf*}' list.cc:361:3: note: candidate: template std::basic_ostream& yy::operator<<(std::basic_ostream&, const yy::position&) operator<< (std::basic_ostream& ostr, const position& pos) ^~~~~~~~ list.cc:361:3: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const yy::position&' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ list.cc:496:3: note: candidate: template std::basic_ostream& yy::operator<<(std::basic_ostream&, const yy::location&) operator<< (std::basic_ostream& ostr, const location& loc) ^~~~~~~~ list.cc:496:3: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const yy::location&' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:682:5: note: candidate: template typename std::enable_if >, std::__is_convertible_to_basic_ostream<_Ostream>, std::__is_insertable::__ostream_type, const _Tp&, void> >::value, typename std::__is_convertible_to_basic_ostream<_Tp>::__ostream_type>::type std::operator<<(_Ostream&&, const _Tp&) operator<<(_Ostream&& __os, const _Tp& __x) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:682:5: note: template argument deduction/substitution failed: /mnt/lfs/tools/include/c++/7.3.0/ostream: In substitution of 'template typename std::enable_if >, std::__is_convertible_to_basic_ostream<_Ostream>, std::__is_insertable::__ostream_type, const _Tp&, void> >::value, typename std::__is_convertible_to_basic_ostream<_Tp>::__ostream_type>::type std::operator<<(_Ostream&&, const _Tp&) [with _Ostream = std::basic_ostream&; _Tp = std::__cxx11::list >]': list.y:75:92: required from here /mnt/lfs/tools/include/c++/7.3.0/ostream:682:5: error: no type named 'type' in 'struct std::enable_if&>' /mnt/lfs/tools/include/c++/7.3.0/ostream:574:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, const unsigned char*) operator<<(basic_ostream& __out, const unsigned char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:574:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const unsigned char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:569:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, const signed char*) operator<<(basic_ostream& __out, const signed char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:569:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const signed char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:556:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, const char*) operator<<(basic_ostream& __out, const char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:556:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/ostream:693:0, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:321:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const char*) operator<<(basic_ostream<_CharT, _Traits>& __out, const char* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/ostream.tcc:321:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const char*' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:539:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const _CharT*) operator<<(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:539:5: note: template argument deduction/substitution failed: list.y:75:92: note: mismatched types 'const _CharT*' and 'std::__cxx11::list >' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:519:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, unsigned char) operator<<(basic_ostream& __out, unsigned char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:519:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'unsigned char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:514:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, signed char) operator<<(basic_ostream& __out, signed char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:514:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'signed char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:508:5: note: candidate: template std::basic_ostream& std::operator<<(std::basic_ostream&, char) operator<<(basic_ostream& __out, char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:508:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:502:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, char) operator<<(basic_ostream<_CharT, _Traits>& __out, char __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:502:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'char' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/iostream:39:0, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/ostream:497:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, _CharT) operator<<(basic_ostream<_CharT, _Traits>& __out, _CharT __c) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/ostream:497:5: note: template argument deduction/substitution failed: list.y:75:92: note: deduced conflicting types for parameter '_CharT' ('char' and 'std::__cxx11::list >') %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/bits/ios_base.h:46:0, from /mnt/lfs/tools/include/c++/7.3.0/ios:42, from /mnt/lfs/tools/include/c++/7.3.0/ostream:38, from /mnt/lfs/tools/include/c++/7.3.0/iostream:39, from list.cc:67: /mnt/lfs/tools/include/c++/7.3.0/system_error:217:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const std::error_code&) operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __e) ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/system_error:217:5: note: template argument deduction/substitution failed: list.y:75:92: note: cannot convert 'yysym.value.as, std::allocator >, std::allocator, std::allocator > > > >()' (type 'std::__cxx11::list >') to type 'const std::error_code&' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ In file included from /mnt/lfs/tools/include/c++/7.3.0/string:52:0, from list.y:16: /mnt/lfs/tools/include/c++/7.3.0/bits/basic_string.h:6272:5: note: candidate: template std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>&) operator<<(basic_ostream<_CharT, _Traits>& __os, ^~~~~~~~ /mnt/lfs/tools/include/c++/7.3.0/bits/basic_string.h:6272:5: note: template argument deduction/substitution failed: list.y:75:92: note: 'std::__cxx11::list >' is not derived from 'const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>' %destructor { std::cerr << "Destroy: " << $$ << '\n'; } <*>; ^ stdout: ../../tests/c++.at:376: exit code was 1, expected 0 432. c++.at:376: 432. Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} %locations (c++.at:376): FAILED (c++.at:376) ## ------------- ## ## ../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.0.4, which was | generated by GNU Autoconf 2.69. Invocation command line was | | $ ../configure --prefix=/tools | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = sunhaiyong | uname -m = mips64 | uname -r = 4.9.80-1.fc21.lemote.1.mips64el | uname -s = Linux | uname -v = #1 SMP PREEMPT Mon Feb 5 08:32:27 UTC 2018 | | /usr/bin/uname -p = mips64 | /bin/uname -X = unknown | | /bin/arch = mips64 | /usr/bin/arch -k = unknown | /usr/convex/getsysinfo = unknown | /usr/bin/hostinfo = unknown | /bin/machine = unknown | /usr/bin/oslevel = unknown | /bin/universe = unknown | | PATH: /tools/bin | PATH: /bin | PATH: /usr/bin | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:3853: checking for a BSD-compatible install | configure:3921: result: /bin/install -c | configure:3932: checking whether build environment is sane | configure:3987: result: yes | configure:4138: checking for a thread-safe mkdir -p | configure:4177: result: /bin/mkdir -p | configure:4184: checking for gawk | configure:4200: found /bin/gawk | configure:4211: result: gawk | configure:4222: checking whether make sets $(MAKE) | configure:4244: result: yes | configure:4273: checking whether make supports nested variables | configure:4290: result: yes | configure:4427: checking whether make supports nested variables | configure:4444: result: yes | configure:4471: checking for style of include used by make | configure:4499: result: GNU | configure:4570: checking for gcc | configure:4586: found /tools/bin/gcc | configure:4597: result: gcc | configure:4826: checking for C compiler version | configure:4835: gcc --version >&5 | gcc (GCC) 7.3.0 | Copyright (C) 2017 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:4846: $? = 0 | configure:4835: gcc -v >&5 | Using built-in specs. | COLLECT_GCC=gcc | COLLECT_LTO_WRAPPER=/mnt/lfs/tools/bin/../libexec/gcc/mips64el-unknown-linux-gnu/7.3.0/lto-wrapper | Target: mips64el-unknown-linux-gnu | Configured with: ../configure --prefix=/tools --with-local-prefix=/tools --with-native-system-header-dir=/tools/include --enable-languages=c,c++ --disable-libstdcxx-pch --disable-multilib --disable-bootstrap --disable-libgomp --with-abi=64 --with-arch=loongson3a --with-float=hard --with-endian=little | Thread model: posix | gcc version 7.3.0 (GCC) | configure:4846: $? = 0 | configure:4835: gcc -V >&5 | gcc: error: unrecognized command line option '-V' | gcc: fatal error: no input files | compilation terminated. | configure:4846: $? = 1 | configure:4835: gcc -qversion >&5 | gcc: error: unrecognized command line option '-qversion'; did you mean '--version'? | gcc: fatal error: no input files | compilation terminated. | configure:4846: $? = 1 | configure:4866: checking whether the C compiler works | configure:4888: gcc conftest.c >&5 | configure:4892: $? = 0 | configure:4940: result: yes | configure:4943: checking for C compiler default output file name | configure:4945: result: a.out | configure:4951: checking for suffix of executables | configure:4958: gcc -o conftest conftest.c >&5 | configure:4962: $? = 0 | configure:4984: result: | configure:5006: checking whether we are cross compiling | configure:5014: gcc -o conftest conftest.c >&5 | configure:5018: $? = 0 | configure:5025: ./conftest | configure:5029: $? = 0 | configure:5044: result: no | configure:5049: checking for suffix of object files | configure:5071: gcc -c conftest.c >&5 | configure:5075: $? = 0 | configure:5096: result: o | configure:5100: checking whether we are using the GNU C compiler | configure:5119: gcc -c conftest.c >&5 | configure:5119: $? = 0 | configure:5128: result: yes | configure:5137: checking whether gcc accepts -g | configure:5157: gcc -c -g conftest.c >&5 | configure:5157: $? = 0 | configure:5198: result: yes | configure:5215: checking for gcc option to accept ISO C89 | configure:5278: gcc -c -g -O2 conftest.c >&5 | configure:5278: $? = 0 | configure:5291: result: none needed | configure:5316: checking whether gcc understands -c and -o together | configure:5338: gcc -c conftest.c -o conftest2.o | configure:5341: $? = 0 | configure:5338: gcc -c conftest.c -o conftest2.o | configure:5341: $? = 0 | configure:5353: result: yes | configure:5372: checking dependency style of gcc | configure:5483: result: gcc3 | configure:5502: checking for gcc option to accept ISO C99 | configure:5651: gcc -c -g -O2 conftest.c >&5 | configure:5651: $? = 0 | configure:5664: result: none needed | configure:5772: checking for gcc option to accept ISO Standard C | configure:5783: result: none needed | configure:5848: checking for g++ | configure:5864: found /tools/bin/g++ | configure:5875: result: g++ | configure:5902: checking for C++ compiler version | configure:5911: g++ --version >&5 | g++ (GCC) 7.3.0 | Copyright (C) 2017 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:5922: $? = 0 | configure:5911: g++ -v >&5 | Using built-in specs. | COLLECT_GCC=g++ | COLLECT_LTO_WRAPPER=/mnt/lfs/tools/bin/../libexec/gcc/mips64el-unknown-linux-gnu/7.3.0/lto-wrapper | Target: mips64el-unknown-linux-gnu | Configured with: ../configure --prefix=/tools --with-local-prefix=/tools --with-native-system-header-dir=/tools/include --enable-languages=c,c++ --disable-libstdcxx-pch --disable-multilib --disable-bootstrap --disable-libgomp --with-abi=64 --with-arch=loongson3a --with-float=hard --with-endian=little | Thread model: posix | gcc version 7.3.0 (GCC) | configure:5922: $? = 0 | configure:5911: g++ -V >&5 | g++: error: unrecognized command line option '-V' | g++: fatal error: no input files | compilation terminated. | configure:5922: $? = 1 | configure:5911: g++ -qversion >&5 | g++: error: unrecognized command line option '-qversion'; did you mean '--version'? | g++: fatal error: no input files | compilation terminated. | configure:5922: $? = 1 | configure:5926: checking whether we are using the GNU C++ compiler | configure:5945: g++ -c conftest.cpp >&5 | configure:5945: $? = 0 | configure:5954: result: yes | configure:5963: checking whether g++ accepts -g | configure:5983: g++ -c -g conftest.cpp >&5 | configure:5983: $? = 0 | configure:6024: result: yes | configure:6049: checking dependency style of g++ | configure:6160: result: gcc3 | configure:6183: checking how to run the C preprocessor | configure:6214: gcc -E conftest.c | configure:6214: $? = 0 | configure:6228: gcc -E conftest.c | conftest.c:12:10: fatal error: ac_nonexistent.h: No such file or directory | #include | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:6228: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | /* end confdefs.h. */ | | #include | configure:6253: result: gcc -E | configure:6273: gcc -E conftest.c | configure:6273: $? = 0 | configure:6287: gcc -E conftest.c | conftest.c:12:10: fatal error: ac_nonexistent.h: No such file or directory | #include | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:6287: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | /* end confdefs.h. */ | | #include | configure:6316: checking for grep that handles long lines and -e | configure:6374: result: /bin/grep | configure:6379: checking for egrep | configure:6441: result: /bin/grep -E | configure:6448: checking for Minix Amsterdam compiler | configure:6472: result: no | configure:6524: checking for ar | configure:6540: found /tools/bin/ar | configure:6551: result: ar | configure:6631: checking for ranlib | configure:6647: found /tools/bin/ranlib | configure:6658: result: ranlib | configure:6685: checking for ANSI C header files | configure:6705: gcc -c -g -O2 conftest.c >&5 | configure:6705: $? = 0 | configure:6778: gcc -o conftest -g -O2 conftest.c >&5 | configure:6778: $? = 0 | configure:6778: ./conftest | configure:6778: $? = 0 | configure:6789: result: yes | configure:6802: checking for sys/types.h | configure:6802: gcc -c -g -O2 conftest.c >&5 | configure:6802: $? = 0 | configure:6802: result: yes | configure:6802: checking for sys/stat.h | configure:6802: gcc -c -g -O2 conftest.c >&5 | configure:6802: $? = 0 | configure:6802: result: yes | configure:6802: checking for stdlib.h | configure:6802: gcc -c -g -O2 conftest.c >&5 | configure:6802: $? = 0 | configure:6802: result: yes | configure:6802: checking for string.h | configure:6802: gcc -c -g -O2 conftest.c >&5 | configure:6802: $? = 0 | configure:6802: result: yes | configure:6802: checking for memory.h | configure:6802: gcc -c -g -O2 conftest.c >&5 | configure:6802: $? = 0 | configure:6802: result: yes | configure:6802: checking for strings.h | configure:6802: gcc -c -g -O2 conftest.c >&5 | configure:6802: $? = 0 | configure:6802: result: yes | configure:6802: checking for inttypes.h | configure:6802: gcc -c -g -O2 conftest.c >&5 | configure:6802: $? = 0 | configure:6802: result: yes | configure:6802: checking for stdint.h | configure:6802: gcc -c -g -O2 conftest.c >&5 | configure:6802: $? = 0 | configure:6802: result: yes | configure:6802: checking for unistd.h | configure:6802: gcc -c -g -O2 conftest.c >&5 | configure:6802: $? = 0 | configure:6802: result: yes | configure:6815: checking minix/config.h usability | configure:6815: gcc -c -g -O2 conftest.c >&5 | conftest.c:55:10: fatal error: minix/config.h: No such file or directory | #include | ^~~~~~~~~~~~~~~~ | compilation terminated. | configure:6815: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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:6815: result: no | configure:6815: checking minix/config.h presence | configure:6815: gcc -E conftest.c | conftest.c:22:10: fatal error: minix/config.h: No such file or directory | #include | ^~~~~~~~~~~~~~~~ | compilation terminated. | configure:6815: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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:6815: result: no | configure:6815: checking for minix/config.h | configure:6815: result: no | configure:6839: checking whether it is safe to define __EXTENSIONS__ | configure:6857: gcc -c -g -O2 conftest.c >&5 | configure:6857: $? = 0 | configure:6864: result: yes | configure:6881: checking whether _XOPEN_SOURCE should be defined | configure:6900: gcc -c -g -O2 conftest.c >&5 | configure:6900: $? = 0 | configure:6924: result: no | configure:6940: checking build system type | configure:6954: result: mips64el-unknown-linux-gnu | configure:6974: checking host system type | configure:6987: result: mips64el-unknown-linux-gnu | configure:7043: checking for special C compiler options needed for large files | configure:7088: result: no | configure:7094: checking for _FILE_OFFSET_BITS value needed for large files | configure:7119: gcc -c -g -O2 conftest.c >&5 | configure:7119: $? = 0 | configure:7151: result: no | configure:7494: checking whether pragma GCC diagnostic push works | configure:7516: gcc -c -Wunknown-pragmas -Werror conftest.c >&5 | configure:7516: $? = 0 | configure:7524: result: yes | configure:8214: gcc -c -g -O2 conftest.c >&5 | configure:8214: $? = 0 | configure:8232: checking whether gcc supports POSIXLY_CORRECT=1 | configure:8256: gcc -o conftest -g -O2 conftest.c >&5 | configure:8256: $? = 0 | configure:8270: result: yes | configure:8287: checking whether g++ builds executables that work | configure:8322: g++ -c -g -O2 conftest.cpp >&5 | configure:8322: $? = 0 | configure:8324: g++ -o conftest -g -O2 conftest.o >&5 | configure:8327: $? = 0 | configure:8333: ./conftest | configure:8336: $? = 0 | configure:8352: result: yes | configure:8378: checking whether g++ supports POSIXLY_CORRECT=1 | configure:8402: g++ -o conftest -g -O2 conftest.cpp >&5 | configure:8402: $? = 0 | configure:8416: result: yes | configure:8457: checking for flex | configure:8473: found /bin/flex | configure:8484: result: flex | configure:8497: checking whether lex is flex | configure:8513: flex conftest.l | conftest.l:5: warning, -s option given but default rule can be matched | configure:8517: $? = 0 | configure:8525: result: yes | configure:8554: flex conftest.l | configure:8558: $? = 0 | configure:8560: checking lex output file root | configure:8574: result: lex.yy | configure:8579: checking lex library | configure:8593: gcc -o conftest -g -O2 conftest.c >&5 | /tmp/cc30VaXF.o: In function `input': | /mnt/lfs/sources/bison-3.0.4/build/lex.yy.c:1170: undefined reference to `yywrap' | /mnt/lfs/sources/bison-3.0.4/build/lex.yy.c:1170: undefined reference to `yywrap' | /tmp/cc30VaXF.o: In function `yylex': | /mnt/lfs/sources/bison-3.0.4/build/lex.yy.c:869: undefined reference to `yywrap' | /mnt/lfs/sources/bison-3.0.4/build/lex.yy.c:869: undefined reference to `yywrap' | /tmp/cc30VaXF.o: In function `main': | /mnt/lfs/sources/bison-3.0.4/build/conftest.l:18: undefined reference to `yywrap' | /tmp/cc30VaXF.o:/mnt/lfs/sources/bison-3.0.4/build/conftest.l:18: more undefined references to `yywrap' follow | collect2: error: ld returned 1 exit status | configure:8593: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #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 37 | | #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 | | #define YY_BUF_SIZE 16384 | | #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) | | | | /* 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 469 "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 | | #define YY_READ_BUF_SIZE 8192 | | #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 = '*'; \ | | size_t 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, 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; | | | | #line 1 "conftest.l" | | | | #line 653 "lex.yy.c" | | | | 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( ); | | } | | | | 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 792 "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 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 | | { | | yy_size_t 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 10 "conftest.l" | | | | | | #ifdef YYTEXT_POINTER | | extern char *yytext; | | #endif | | int | | main (void) | | { | | return ! yylex () + ! yywrap (); | | } | configure:8593: gcc -o conftest -g -O2 conftest.c -lfl >&5 | /mnt/lfs/tools/bin/../lib/gcc/mips64el-unknown-linux-gnu/7.3.0/../../../../mips64el-unknown-linux-gnu/bin/ld: cannot find -lfl | collect2: error: ld returned 1 exit status | configure:8593: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #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 37 | | #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 | | #define YY_BUF_SIZE 16384 | | #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) | | | | /* 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 469 "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 | | #define YY_READ_BUF_SIZE 8192 | | #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 = '*'; \ | | size_t 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, 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; | | | | #line 1 "conftest.l" | | | | #line 653 "lex.yy.c" | | | | 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( ); | | } | | | | 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 792 "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 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 | | { | | yy_size_t 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 10 "conftest.l" | | | | | | #ifdef YYTEXT_POINTER | | extern char *yytext; | | #endif | | int | | main (void) | | { | | return ! yylex () + ! yywrap (); | | } | configure:8593: gcc -o conftest -g -O2 conftest.c -ll >&5 | /mnt/lfs/tools/bin/../lib/gcc/mips64el-unknown-linux-gnu/7.3.0/../../../../mips64el-unknown-linux-gnu/bin/ld: cannot find -ll | collect2: error: ld returned 1 exit status | configure:8593: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #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 37 | | #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 | | #define YY_BUF_SIZE 16384 | | #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) | | | | /* 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 469 "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 | | #define YY_READ_BUF_SIZE 8192 | | #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 = '*'; \ | | size_t 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, 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; | | | | #line 1 "conftest.l" | | | | #line 653 "lex.yy.c" | | | | 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( ); | | } | | | | 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 792 "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 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 | | { | | yy_size_t 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 10 "conftest.l" | | | | | | #ifdef YYTEXT_POINTER | | extern char *yytext; | | #endif | | int | | main (void) | | { | | return ! yylex () + ! yywrap (); | | } | configure:8603: result: none needed | configure:8609: checking whether yytext is a pointer | configure:8626: gcc -o conftest -g -O2 conftest.c >&5 | /tmp/ccJchCmE.o: In function `input': | /mnt/lfs/sources/bison-3.0.4/build/lex.yy.c:1170: undefined reference to `yywrap' | /mnt/lfs/sources/bison-3.0.4/build/lex.yy.c:1170: undefined reference to `yywrap' | /tmp/ccJchCmE.o: In function `yylex': | /mnt/lfs/sources/bison-3.0.4/build/lex.yy.c:869: undefined reference to `yywrap' | /mnt/lfs/sources/bison-3.0.4/build/lex.yy.c:869: undefined reference to `yywrap' | /tmp/ccJchCmE.o: In function `main': | /mnt/lfs/sources/bison-3.0.4/build/conftest.l:18: undefined reference to `yywrap' | /tmp/ccJchCmE.o:/mnt/lfs/sources/bison-3.0.4/build/conftest.l:18: more undefined references to `yywrap' follow | collect2: error: ld returned 1 exit status | configure:8626: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | /* end confdefs.h. */ | | | | #define YYTEXT_POINTER 1 | | | | #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 37 | | #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 | | #define YY_BUF_SIZE 16384 | | #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) | | | | /* 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 469 "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 | | #define YY_READ_BUF_SIZE 8192 | | #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 = '*'; \ | | size_t 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, 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; | | | | #line 1 "conftest.l" | | | | #line 653 "lex.yy.c" | | | | 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( ); | | } | | | | 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 792 "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 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 | | { | | yy_size_t 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 10 "conftest.l" | | | | | | #ifdef YYTEXT_POINTER | | extern char *yytext; | | #endif | | int | | main (void) | | { | | return ! yylex () + ! yywrap (); | | } | configure:8634: result: no | configure:8661: checking for bison | configure:8677: found /bin/bison | configure:8688: result: bison -y | configure:8743: checking for ranlib | configure:8770: result: ranlib | configure:8793: checking for GNU M4 that supports accurate traces | configure:8842: result: /tools/bin/m4 | configure:8845: checking whether /tools/bin/m4 accepts --gnu | configure:8855: result: yes | configure:8872: checking how m4 supports trace files | configure:8882: result: --debugfile | configure:8899: checking for perl | configure:8917: found /bin/perl | configure:8929: result: /bin/perl | configure:8945: checking for xsltproc | configure:8963: found /bin/xsltproc | configure:8975: result: /bin/xsltproc | configure:8992: checking for locale.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for sys/socket.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for unistd.h | configure:8992: result: yes | configure:8992: checking for stdio_ext.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for features.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for sys/stat.h | configure:8992: result: yes | configure:8992: checking for getopt.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for sys/time.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for wchar.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for stdint.h | configure:8992: result: yes | configure:8992: checking for inttypes.h | configure:8992: result: yes | configure:8992: checking for math.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for sys/mman.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for sys/param.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for sched.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for spawn.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for sys/wait.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:8992: checking for wctype.h | configure:8992: gcc -c -g -O2 conftest.c >&5 | configure:8992: $? = 0 | configure:8992: result: yes | configure:9008: checking for inline | configure:9024: gcc -c -g -O2 conftest.c >&5 | configure:9024: $? = 0 | configure:9032: result: inline | configure:9061: checking for size_t | configure:9061: gcc -c -g -O2 conftest.c >&5 | configure:9061: $? = 0 | configure:9061: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:86:21: error: expected expression before ')' token | if (sizeof ((size_t))) | ^ | configure:9061: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_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:9061: result: yes | configure:9074: checking for working alloca.h | configure:9091: gcc -o conftest -g -O2 conftest.c >&5 | configure:9091: $? = 0 | configure:9099: result: yes | configure:9107: checking for alloca | configure:9144: gcc -o conftest -g -O2 conftest.c >&5 | configure:9144: $? = 0 | configure:9152: result: yes | configure:9343: checking whether malloc, realloc, calloc are POSIX compliant | configure:9363: gcc -c -g -O2 conftest.c >&5 | configure:9363: $? = 0 | configure:9371: result: yes | configure:9506: checking for _set_invalid_parameter_handler | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | /tmp/cccYz6lV.o: In function `main': | /mnt/lfs/sources/bison-3.0.4/build/conftest.c:86: undefined reference to `_set_invalid_parameter_handler' | /mnt/lfs/sources/bison-3.0.4/build/conftest.c:86: undefined reference to `_set_invalid_parameter_handler' | collect2: error: ld returned 1 exit status | configure:9506: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 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:9506: result: no | configure:9506: checking for getdtablesize | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for fcntl | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for symlink | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for vasnprintf | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | /tmp/ccOwg21n.o: In function `main': | /mnt/lfs/sources/bison-3.0.4/build/conftest.c:89: undefined reference to `vasnprintf' | /mnt/lfs/sources/bison-3.0.4/build/conftest.c:89: undefined reference to `vasnprintf' | collect2: error: ld returned 1 exit status | configure:9506: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 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:9506: result: no | configure:9506: checking for snprintf | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | conftest.c:78:6: warning: conflicting types for built-in function 'snprintf' [-Wbuiltin-declaration-mismatch] | char snprintf (); | ^~~~~~~~ | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for __fseterr | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | /tmp/ccSlFGbU.o: In function `main': | /mnt/lfs/sources/bison-3.0.4/build/conftest.c:90: undefined reference to `__fseterr' | /mnt/lfs/sources/bison-3.0.4/build/conftest.c:90: undefined reference to `__fseterr' | collect2: error: ld returned 1 exit status | configure:9506: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 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:9506: result: no | configure:9506: checking for gettimeofday | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for lstat | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for mbsinit | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for mbrtowc | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for isascii | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | conftest.c:83:6: warning: conflicting types for built-in function 'isascii' [-Wbuiltin-declaration-mismatch] | char isascii (); | ^~~~~~~ | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for mprotect | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for obstack_printf | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for strerror_r | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for __xpg_strerror_r | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for pipe2 | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for sigaction | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for sigaltstack | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for siginterrupt | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for strdup | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | conftest.c:92:6: warning: conflicting types for built-in function 'strdup' [-Wbuiltin-declaration-mismatch] | char strdup (); | ^~~~~~ | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for catgets | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for strndup | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | conftest.c:94:6: warning: conflicting types for built-in function 'strndup' [-Wbuiltin-declaration-mismatch] | char strndup (); | ^~~~~~~ | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for pipe | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for iswcntrl | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | conftest.c:96:6: warning: conflicting types for built-in function 'iswcntrl' [-Wbuiltin-declaration-mismatch] | char iswcntrl (); | ^~~~~~~~ | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for wcwidth | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9506: checking for setlocale | configure:9506: gcc -o conftest -g -O2 conftest.c >&5 | configure:9506: $? = 0 | configure:9506: result: yes | configure:9533: checking whether // is distinct from / | configure:9562: result: no | configure:9585: checking if environ is properly declared | configure:9608: gcc -c -g -O2 conftest.c >&5 | conftest.c:82:39: error: conflicting types for 'environ' | extern struct { int foo; } environ; | ^~~~~~~ | In file included from conftest.c:77:0: | /tools/include/unistd.h:548:15: note: previous declaration of 'environ' was here | extern char **environ; | ^~~~~~~ | configure:9608: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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:9616: result: yes | configure:9631: checking whether the preprocessor supports include_next | configure:9669: gcc -c -g -O2 -Iconftestd1b -Iconftestd2 conftest.c >&5 | configure:9669: $? = 0 | configure:9690: result: yes | configure:9711: checking whether system header files limit the line length | configure:9734: result: no | configure:9745: checking for complete errno.h | configure:9818: result: yes | configure:10119: checking whether strerror_r is declared | configure:10119: gcc -c -g -O2 conftest.c >&5 | configure:10119: $? = 0 | configure:10119: result: yes | configure:10132: checking for strerror_r | configure:10132: result: yes | configure:10141: checking whether strerror_r returns char * | configure:10165: gcc -c -g -O2 conftest.c >&5 | configure:10165: $? = 0 | configure:10203: result: yes | configure:10218: checking for sig_atomic_t | configure:10218: gcc -c -g -O2 conftest.c >&5 | configure:10218: $? = 0 | configure:10218: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:85:27: error: expected expression before ')' token | if (sizeof ((sig_atomic_t))) | ^ | configure:10218: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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:10218: result: yes | configure:10254: checking for working fcntl.h | configure:10357: gcc -o conftest -g -O2 conftest.c >&5 | configure:10357: $? = 0 | configure:10357: ./conftest | configure:10357: $? = 0 | configure:10372: result: yes | configure:10395: checking for pid_t | configure:10395: gcc -c -g -O2 conftest.c >&5 | configure:10395: $? = 0 | configure:10395: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:119:20: error: expected expression before ')' token | if (sizeof ((pid_t))) | ^ | configure:10395: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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:10395: result: yes | configure:10406: checking for mode_t | configure:10406: gcc -c -g -O2 conftest.c >&5 | configure:10406: $? = 0 | configure:10406: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:119:21: error: expected expression before ')' token | if (sizeof ((mode_t))) | ^ | configure:10406: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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:10406: result: yes | configure:10523: checking for stdint.h | configure:10540: gcc -c -g -O2 conftest.c >&5 | configure:10540: $? = 0 | configure:10547: result: yes | configure:10558: checking for inttypes.h | configure:10577: gcc -c -g -O2 conftest.c >&5 | configure:10577: $? = 0 | configure:10584: result: yes | configure:10598: checking whether printf supports size specifiers as in C99 | configure:10669: gcc -o conftest -g -O2 conftest.c >&5 | configure:10669: $? = 0 | configure:10669: ./conftest | configure:10669: $? = 0 | configure:10680: result: yes | configure:10685: checking whether printf supports 'long double' arguments | configure:10724: gcc -o conftest -g -O2 conftest.c >&5 | configure:10724: $? = 0 | configure:10724: ./conftest | configure:10724: $? = 0 | configure:10735: result: yes | configure:10740: checking whether printf supports infinite 'double' arguments | configure:10841: gcc -o conftest -g -O2 conftest.c >&5 | configure:10841: $? = 0 | configure:10841: ./conftest | configure:10841: $? = 0 | configure:10852: result: yes | configure:10856: checking whether byte ordering is bigendian | configure:10871: gcc -c -g -O2 conftest.c >&5 | conftest.c:86:9: error: unknown type name 'not' | not a universal capable compiler | ^~~ | conftest.c:86:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' | not a universal capable compiler | ^~~~~~~~~ | conftest.c:86:15: error: unknown type name 'universal' | configure:10871: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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:10916: gcc -c -g -O2 conftest.c >&5 | configure:10916: $? = 0 | configure:10934: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:92:4: error: unknown type name 'not'; did you mean 'ino_t'? | not big endian | ^~~ | ino_t | conftest.c:92:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' | not big endian | ^~~~~~ | configure:10934: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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:11062: result: no | configure:11082: checking whether long double and double are the same | configure:11103: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:89:13: error: size of array 'check' is negative | typedef int check[sizeof (long double) == sizeof (double) | ^~~~~ | configure:11103: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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:11111: result: no | configure:11135: checking whether printf supports infinite 'long double' arguments | configure:11442: gcc -o conftest -g -O2 conftest.c >&5 | configure:11442: $? = 0 | configure:11442: ./conftest | configure:11442: $? = 0 | configure:11453: result: yes | configure:11463: checking whether printf supports the 'a' and 'A' directives | configure:11551: gcc -o conftest -g -O2 conftest.c >&5 | configure:11551: $? = 0 | configure:11551: ./conftest | configure:11551: $? = 0 | configure:11562: result: yes | configure:11567: checking whether printf supports the 'F' directive | configure:11615: gcc -o conftest -g -O2 conftest.c >&5 | configure:11615: $? = 0 | configure:11615: ./conftest | configure:11615: $? = 0 | configure:11626: result: yes | configure:11631: checking whether printf supports the 'n' directive | configure:11681: gcc -o conftest -g -O2 conftest.c >&5 | configure:11681: $? = 0 | configure:11681: ./conftest | configure:11681: $? = 0 | configure:11692: result: yes | configure:11697: checking whether printf supports the 'ls' directive | configure:11768: gcc -o conftest -g -O2 conftest.c >&5 | configure:11768: $? = 0 | configure:11768: ./conftest | configure:11768: $? = 0 | configure:11779: result: yes | configure:11784: checking whether printf supports POSIX/XSI format strings with positions | configure:11816: gcc -o conftest -g -O2 conftest.c >&5 | configure:11816: $? = 0 | configure:11816: ./conftest | configure:11816: $? = 0 | configure:11827: result: yes | configure:11832: checking whether printf supports the grouping flag | configure:11862: gcc -o conftest -g -O2 conftest.c >&5 | configure:11862: $? = 0 | configure:11862: ./conftest | configure:11862: $? = 0 | configure:11873: result: yes | configure:11878: checking whether printf supports the left-adjust flag correctly | configure:11911: gcc -o conftest -g -O2 conftest.c >&5 | configure:11911: $? = 0 | configure:11911: ./conftest | configure:11911: $? = 0 | configure:11922: result: yes | configure:11927: checking whether printf supports the zero flag correctly | configure:11961: gcc -o conftest -g -O2 conftest.c >&5 | configure:11961: $? = 0 | configure:11961: ./conftest | configure:11961: $? = 0 | configure:11972: result: yes | configure:11977: checking whether printf supports large precisions | configure:12020: gcc -o conftest -g -O2 conftest.c >&5 | configure:12020: $? = 0 | configure:12020: ./conftest | configure:12020: $? = 0 | configure:12031: result: yes | configure:12044: gcc -c -g -O2 conftest.c >&5 | conftest.c:87:10: error: unknown type name 'not' | not a universal capable compiler | ^~~ | conftest.c:87:16: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' | not a universal capable compiler | ^~~~~~~~~ | conftest.c:87:16: error: unknown type name 'universal' | configure:12044: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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:12079: checking whether printf survives out-of-memory conditions | configure:12250: gcc -o conftest -g -O2 conftest.c >&5 | configure:12253: $? = 0 | configure:12257: $? = 0 | configure:12302: result: yes | configure:12320: checking for unsigned long long int | configure:12368: result: yes | configure:12378: checking for long long int | configure:12428: result: yes | configure:12437: checking for wchar_t | configure:12454: gcc -c -g -O2 conftest.c >&5 | configure:12454: $? = 0 | configure:12461: result: yes | configure:12470: checking for wint_t | configure:12495: gcc -c -g -O2 conftest.c >&5 | configure:12495: $? = 0 | configure:12502: result: yes | configure:12524: checking for intmax_t | configure:12549: gcc -c -g -O2 conftest.c >&5 | configure:12549: $? = 0 | configure:12556: result: yes | configure:12575: checking where to find the exponent in a 'double' | configure:12889: gcc -o conftest -g -O2 conftest.c >&5 | configure:12889: $? = 0 | configure:12889: ./conftest | configure:12889: $? = 0 | configure:12901: result: word 1 bit 20 | configure:12928: checking whether snprintf returns a byte count as in C99 | configure:12998: gcc -o conftest -g -O2 conftest.c >&5 | configure:12998: $? = 0 | configure:12998: ./conftest | configure:12998: $? = 0 | configure:13009: result: yes | configure:13020: checking for snprintf | configure:13020: result: yes | configure:13020: checking for strnlen | configure:13020: gcc -o conftest -g -O2 conftest.c >&5 | configure:13020: $? = 0 | configure:13020: result: yes | configure:13020: checking for wcslen | configure:13020: gcc -o conftest -g -O2 conftest.c >&5 | configure:13020: $? = 0 | configure:13020: result: yes | configure:13020: checking for wcsnlen | configure:13020: gcc -o conftest -g -O2 conftest.c >&5 | configure:13020: $? = 0 | configure:13020: result: yes | configure:13020: checking for mbrtowc | configure:13020: result: yes | configure:13020: checking for wcrtomb | configure:13020: gcc -o conftest -g -O2 conftest.c >&5 | configure:13020: $? = 0 | configure:13020: result: yes | configure:13029: checking whether _snprintf is declared | configure:13029: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:108:10: error: '_snprintf' undeclared (first use in this function); did you mean 'vsnprintf'? | (void) _snprintf; | ^~~~~~~~~ | vsnprintf | conftest.c:108:10: note: each undeclared identifier is reported only once for each function it appears in | configure:13029: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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:13029: result: no | configure:13308: checking whether frexp() can be used without linking with libm | configure:13326: gcc -o conftest -g -O2 conftest.c >&5 | configure:13326: $? = 0 | configure:13335: result: yes | configure:13338: checking whether alarm is declared | configure:13338: gcc -c -g -O2 conftest.c >&5 | configure:13338: $? = 0 | configure:13338: result: yes | configure:13386: checking whether stat file-mode macros are broken | configure:13413: gcc -c -g -O2 conftest.c >&5 | configure:13413: $? = 0 | configure:13420: result: no | configure:13571: checking for nlink_t | configure:13571: gcc -c -g -O2 conftest.c >&5 | configure:13571: $? = 0 | configure:13571: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:108:22: error: expected expression before ')' token | if (sizeof ((nlink_t))) | ^ | configure:13571: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main () | | { | | if (sizeof ((nlink_t))) | | return 0; | | ; | | return 0; | | } | configure:13571: result: yes | configure:13586: checking whether fchmodat is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether fstat is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether fstatat is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether futimens is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether lchmod is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether lstat is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether mkdirat is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether mkfifo is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether mkfifoat is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether mknod is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether mknodat is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether stat is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13586: checking whether utimensat is declared without a macro | configure:13604: gcc -c -g -O2 conftest.c >&5 | configure:13604: $? = 0 | configure:13612: result: yes | configure:13720: checking for getopt.h | configure:13720: result: yes | configure:13737: checking for getopt_long_only | configure:13737: gcc -o conftest -g -O2 conftest.c >&5 | configure:13737: $? = 0 | configure:13737: result: yes | configure:13751: checking whether getopt is POSIX compatible | configure:13793: gcc -o conftest -g -O2 conftest.c >&5 | configure:13793: $? = 0 | configure:13793: ./conftest | configure:13793: $? = 0 | configure:13852: gcc -o conftest -g -O2 conftest.c >&5 | configure:13852: $? = 0 | configure:13852: ./conftest | configure:13852: $? = 0 | configure:13894: gcc -o conftest -g -O2 conftest.c >&5 | configure:13894: $? = 0 | configure:13894: ./conftest | program: option requires an argument -- 'b' | configure:13894: $? = 0 | configure:13912: result: yes | configure:13920: checking for working GNU getopt function | configure:14141: gcc -o conftest -g -O2 conftest.c >&5 | configure:14141: $? = 0 | configure:14141: ./conftest | configure:14141: $? = 0 | configure:14157: result: yes | configure:14162: checking for working GNU getopt_long function | configure:14207: gcc -o conftest -g -O2 conftest.c >&5 | configure:14207: $? = 0 | configure:14207: ./conftest | configure:14207: $? = 0 | configure:14218: result: yes | configure:14247: checking whether getenv is declared | configure:14247: gcc -c -g -O2 conftest.c >&5 | configure:14247: $? = 0 | configure:14247: result: yes | configure:14258: checking for C/C++ restrict keyword | configure:14285: gcc -c -g -O2 conftest.c >&5 | configure:14285: $? = 0 | configure:14293: result: __restrict | configure:14430: checking for struct timeval | configure:14453: gcc -c -g -O2 conftest.c >&5 | configure:14453: $? = 0 | configure:14461: result: yes | configure:14466: checking for wide-enough struct timeval.tv_sec member | configure:14493: gcc -c -g -O2 conftest.c >&5 | configure:14493: $? = 0 | configure:14501: result: yes | configure:14511: checking whether gettimeofday is declared without a macro | configure:14533: gcc -c -g -O2 conftest.c >&5 | configure:14533: $? = 0 | configure:14541: result: yes | configure:14687: checking whether stdint.h conforms to C99 | configure:14856: gcc -c -g -O2 conftest.c >&5 | configure:14856: $? = 0 | configure:14936: gcc -o conftest -g -O2 conftest.c >&5 | configure:14936: $? = 0 | configure:14936: ./conftest | configure:14936: $? = 0 | configure:14948: result: yes | configure:15400: checking whether imaxabs is declared without a macro | configure:15418: gcc -c -g -O2 conftest.c >&5 | configure:15418: $? = 0 | configure:15426: result: yes | configure:15400: checking whether imaxdiv is declared without a macro | configure:15418: gcc -c -g -O2 conftest.c >&5 | configure:15418: $? = 0 | configure:15426: result: yes | configure:15400: checking whether strtoimax is declared without a macro | configure:15418: gcc -c -g -O2 conftest.c >&5 | configure:15418: $? = 0 | configure:15426: result: yes | configure:15400: checking whether strtoumax is declared without a macro | configure:15418: gcc -c -g -O2 conftest.c >&5 | configure:15418: $? = 0 | configure:15426: result: yes | configure:15441: checking for inttypes.h | configure:15441: result: yes | configure:15452: checking whether the inttypes.h PRIxNN macros are broken | configure:15474: gcc -c -g -O2 conftest.c >&5 | configure:15474: $? = 0 | configure:15482: result: no | configure:15498: checking where to find the exponent in a 'float' | configure:15575: gcc -o conftest -g -O2 conftest.c >&5 | configure:15575: $? = 0 | configure:15575: ./conftest | configure:15575: $? = 0 | configure:15587: result: word 0 bit 23 | configure:15610: checking whether isnan(float) can be used without linking with libm | configure:15635: gcc -o conftest -g -O2 conftest.c >&5 | configure:15635: $? = 0 | configure:15644: result: yes | configure:15700: checking whether isnan(float) works | configure:15768: gcc -o conftest -g -O2 conftest.c >&5 | configure:15768: $? = 0 | configure:15768: ./conftest | configure:15768: $? = 0 | configure:15779: result: yes | configure:15799: checking whether isnan(double) can be used without linking with libm | configure:15824: gcc -o conftest -g -O2 conftest.c >&5 | configure:15824: $? = 0 | configure:15833: result: yes | configure:15895: checking whether isnan(long double) can be used without linking with libm | configure:15920: gcc -o conftest -g -O2 conftest.c >&5 | configure:15920: $? = 0 | configure:15929: result: yes | configure:15986: checking whether isnanl works | configure:16124: gcc -o conftest -g -O2 conftest.c >&5 | configure:16124: $? = 0 | configure:16124: ./conftest | configure:16124: $? = 0 | configure:16135: result: yes | configure:16152: checking whether ldexp() can be used without linking with libm | configure:16174: gcc -o conftest -g -O2 conftest.c >&5 | configure:16174: $? = 0 | configure:16183: result: yes | configure:16187: checking for nl_langinfo and CODESET | configure:16203: gcc -o conftest -g -O2 conftest.c >&5 | configure:16203: $? = 0 | configure:16212: result: yes | configure:16220: checking whether getc_unlocked is declared | configure:16220: gcc -c -g -O2 conftest.c >&5 | configure:16220: $? = 0 | configure:16220: result: yes | configure:16232: checking whether we are using the GNU C Library >= 2.1 or uClibc | configure:16262: result: yes | configure:16309: checking for ld used by gcc | configure:16376: result: /mnt/lfs/tools/mips64el-unknown-linux-gnu/bin/ld | configure:16383: checking if the linker (/mnt/lfs/tools/mips64el-unknown-linux-gnu/bin/ld) is GNU ld | configure:16398: result: yes | configure:16405: checking for shared library run path origin | configure:16418: result: done | configure:16508: checking whether imported symbols can be declared weak | configure:16526: gcc -o conftest -g -O2 conftest.c >&5 | configure:16526: $? = 0 | configure:16560: gcc -o conftest -g -O2 conftest.c >&5 | configure:16560: $? = 0 | configure:16560: ./conftest | configure:16560: $? = 0 | configure:16572: result: yes | configure:16577: checking pthread.h usability | configure:16577: gcc -c -g -O2 conftest.c >&5 | configure:16577: $? = 0 | configure:16577: result: yes | configure:16577: checking pthread.h presence | configure:16577: gcc -E conftest.c | configure:16577: $? = 0 | configure:16577: result: yes | configure:16577: checking for pthread.h | configure:16577: result: yes | configure:16615: gcc -o conftest -g -O2 conftest.c >&5 | /tmp/cc2OPw0O.o: In function `main': | /mnt/lfs/sources/bison-3.0.4/build/conftest.c:137: undefined reference to `pthread_mutexattr_init' | /mnt/lfs/sources/bison-3.0.4/build/conftest.c:137: undefined reference to `pthread_mutexattr_init' | collect2: error: ld returned 1 exit status | configure:16615: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 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:16615: gcc -o conftest -g -O2 conftest.c -pthread >&5 | configure:16615: $? = 0 | configure:17408: checking for multithread API to use | configure:17410: result: posix | configure:17424: checking whether lstat correctly handles trailing slash | configure:17457: gcc -o conftest -g -O2 conftest.c >&5 | configure:17457: $? = 0 | configure:17457: ./conftest | configure:17457: $? = 0 | configure:17474: result: yes | configure:17486: checking for a sed that does not truncate output | configure:17550: result: /bin/sed | configure:17652: checking for mbstate_t | configure:17676: gcc -c -g -O2 conftest.c >&5 | configure:17676: $? = 0 | configure:17683: result: yes | configure:17702: checking for a traditional japanese locale | configure:17772: gcc -o conftest -g -O2 conftest.c >&5 | configure:17775: $? = 0 | configure:17833: result: none | configure:17841: checking for a transitional chinese locale | configure:17912: gcc -o conftest -g -O2 conftest.c >&5 | configure:17915: $? = 0 | configure:17966: result: none | configure:17973: checking for a french Unicode locale | configure:18045: gcc -o conftest -g -O2 conftest.c >&5 | configure:18048: $? = 0 | configure:18094: result: none | configure:18187: checking for mmap | configure:18187: gcc -o conftest -g -O2 conftest.c >&5 | configure:18187: $? = 0 | configure:18187: result: yes | configure:18198: checking for MAP_ANONYMOUS | configure:18235: result: yes | configure:18257: checking whether memchr works | configure:18320: gcc -o conftest -g -O2 conftest.c >&5 | configure:18320: $? = 0 | configure:18320: ./conftest | configure:18320: $? = 0 | configure:18330: result: yes | configure:18339: checking whether obstack_printf is declared | configure:18339: gcc -c -g -O2 conftest.c >&5 | configure:18339: $? = 0 | configure:18339: result: yes | configure:18352: checking for promoted mode_t type | configure:18369: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:139:13: error: size of array 'array' is negative | typedef int array[2 * (sizeof (mode_t) < sizeof (int)) - 1]; | ^~~~~ | configure:18369: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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:18377: result: mode_t | configure:18389: checking whether strerror(0) succeeds | configure:18424: gcc -o conftest -g -O2 conftest.c >&5 | configure:18424: $? = 0 | configure:18424: ./conftest | configure:18424: $? = 0 | configure:18435: result: yes | configure:18458: checking for strerror_r with POSIX signature | configure:18476: gcc -c -g -O2 conftest.c >&5 | conftest.c:137:21: error: conflicting types for 'strerror_r' | int strerror_r (int, char *, size_t); | ^~~~~~~~~~ | In file included from conftest.c:136:0: | /tools/include/string.h:420:14: note: previous declaration of 'strerror_r' was here | extern char *strerror_r (int __errnum, char *__buf, size_t __buflen) | ^~~~~~~~~~ | configure:18476: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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:18484: result: no | configure:18558: checking whether __xpg_strerror_r works | configure:18598: gcc -o conftest -g -O2 conftest.c >&5 | configure:18598: $? = 0 | configure:18598: ./conftest | configure:18598: $? = 0 | configure:18609: result: yes | configure:18616: checking whether strerror_r is declared | configure:18616: result: yes | configure:18694: checking for library containing posix_spawn | configure:18725: gcc -o conftest -g -O2 conftest.c >&5 | configure:18725: $? = 0 | configure:18742: result: none required | configure:18753: checking for posix_spawn | configure:18753: gcc -o conftest -g -O2 conftest.c >&5 | configure:18753: $? = 0 | configure:18753: result: yes | configure:18774: checking whether posix_spawn works | configure:18914: gcc -o conftest -g -O2 conftest.c >&5 | configure:18914: $? = 0 | configure:19089: gcc -o conftest -g -O2 conftest.c >&5 | configure:19089: $? = 0 | configure:19089: ./conftest | configure:19089: $? = 0 | configure:19107: result: yes | configure:19115: checking whether posix_spawnattr_setschedpolicy is supported | configure:19139: result: yes | configure:19141: checking whether posix_spawnattr_setschedparam is supported | configure:19165: result: yes | configure:19515: checking whether C symbols are prefixed with underscore at the linker level | configure:19528: gcc -g -O2 -S conftest.c | configure:19531: $? = 0 | configure:19541: result: no | configure:19577: checking for sigset_t | configure:19577: gcc -c -g -O2 conftest.c >&5 | configure:19577: $? = 0 | configure:19577: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:149:23: error: expected expression before ')' token | if (sizeof ((sigset_t))) | ^ | configure:19577: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_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:19577: result: yes | configure:19602: checking for uid_t in sys/types.h | configure:19621: result: yes | configure:19636: checking whether snprintf is declared | configure:19636: gcc -c -g -O2 conftest.c >&5 | configure:19636: $? = 0 | configure:19636: result: yes | configure:19649: checking for stdbool.h that conforms to C99 | configure:19716: gcc -c -g -O2 conftest.c >&5 | configure:19716: $? = 0 | configure:19723: result: yes | configure:19725: checking for _Bool | configure:19725: gcc -c -g -O2 conftest.c >&5 | configure:19725: $? = 0 | configure:19725: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:178:20: error: expected expression before ')' token | if (sizeof ((_Bool))) | ^ | configure:19725: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 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:19725: result: yes | configure:19743: checking whether strdup is declared | configure:19743: gcc -c -g -O2 conftest.c >&5 | configure:19743: $? = 0 | configure:19743: result: yes | configure:19834: checking whether ffsl is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether ffsll is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether memmem is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether mempcpy is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether memrchr is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether rawmemchr is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether stpcpy is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether stpncpy is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strchrnul is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strdup is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strncat is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strndup is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strnlen is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strpbrk is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strsep is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strcasestr is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strtok_r is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strerror_r is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strsignal is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19834: checking whether strverscmp is declared without a macro | configure:19852: gcc -c -g -O2 conftest.c >&5 | configure:19852: $? = 0 | configure:19860: result: yes | configure:19872: checking whether strndup is declared | configure:19872: result: yes | configure:19885: checking whether strnlen is declared | configure:19885: result: yes | configure:20010: checking for struct timespec in | configure:20027: gcc -c -g -O2 conftest.c >&5 | configure:20027: $? = 0 | configure:20034: result: yes | configure:20246: checking whether clearerr_unlocked is declared | configure:20246: gcc -c -g -O2 conftest.c >&5 | configure:20246: $? = 0 | configure:20246: result: yes | configure:20257: checking whether feof_unlocked is declared | configure:20257: gcc -c -g -O2 conftest.c >&5 | configure:20257: $? = 0 | configure:20257: result: yes | configure:20268: checking whether ferror_unlocked is declared | configure:20268: gcc -c -g -O2 conftest.c >&5 | configure:20268: $? = 0 | configure:20268: result: yes | configure:20279: checking whether fflush_unlocked is declared | configure:20279: gcc -c -g -O2 conftest.c >&5 | configure:20279: $? = 0 | configure:20279: result: yes | configure:20290: checking whether fgets_unlocked is declared | configure:20290: gcc -c -g -O2 conftest.c >&5 | configure:20290: $? = 0 | configure:20290: result: yes | configure:20301: checking whether fputc_unlocked is declared | configure:20301: gcc -c -g -O2 conftest.c >&5 | configure:20301: $? = 0 | configure:20301: result: yes | configure:20312: checking whether fputs_unlocked is declared | configure:20312: gcc -c -g -O2 conftest.c >&5 | configure:20312: $? = 0 | configure:20312: result: yes | configure:20323: checking whether fread_unlocked is declared | configure:20323: gcc -c -g -O2 conftest.c >&5 | configure:20323: $? = 0 | configure:20323: result: yes | configure:20334: checking whether fwrite_unlocked is declared | configure:20334: gcc -c -g -O2 conftest.c >&5 | configure:20334: $? = 0 | configure:20334: result: yes | configure:20345: checking whether getchar_unlocked is declared | configure:20345: gcc -c -g -O2 conftest.c >&5 | configure:20345: $? = 0 | configure:20345: result: yes | configure:20356: checking whether putc_unlocked is declared | configure:20356: gcc -c -g -O2 conftest.c >&5 | configure:20356: $? = 0 | configure:20356: result: yes | configure:20367: checking whether putchar_unlocked is declared | configure:20367: gcc -c -g -O2 conftest.c >&5 | configure:20367: $? = 0 | configure:20367: result: yes | configure:20378: checking whether unsetenv is declared | configure:20378: gcc -c -g -O2 conftest.c >&5 | configure:20378: $? = 0 | configure:20378: result: yes | configure:20389: checking whether vsnprintf is declared | configure:20389: gcc -c -g -O2 conftest.c >&5 | configure:20389: $? = 0 | configure:20389: result: yes | configure:20401: checking whether uses 'inline' correctly | configure:20423: gcc -c -g -O2 conftest.c >&5 | configure:20426: $? = 0 | configure:20444: gcc -c -g -O2 conftest.c >&5 | configure:20447: $? = 0 | configure:20460: result: yes | configure:20522: checking for alloca as a compiler built-in | configure:20546: result: yes | configure:20570: checking whether to enable assertions | configure:20587: result: yes | configure:20771: checking whether // is distinct from / | configure:20800: result: no | configure:20818: checking whether dup2 works | configure:20884: gcc -o conftest -g -O2 conftest.c >&5 | configure:20884: $? = 0 | configure:20884: ./conftest | configure:20884: $? = 0 | configure:20895: result: yes | configure:20963: checking for error_at_line | configure:20979: gcc -o conftest -g -O2 conftest.c >&5 | configure:20979: $? = 0 | configure:20987: result: yes | configure:21036: checking whether fcntl handles F_DUPFD correctly | configure:21076: gcc -o conftest -g -O2 conftest.c >&5 | configure:21076: $? = 0 | configure:21076: ./conftest | configure:21076: $? = 0 | configure:21086: result: yes | configure:21104: checking whether fcntl understands F_DUPFD_CLOEXEC | configure:21125: gcc -c -g -O2 conftest.c >&5 | configure:21125: $? = 0 | configure:21143: gcc -c -g -O2 conftest.c >&5 | conftest.c:194:1: error: unknown type name 'choke' | choke me | ^~~~~ | conftest.c:197:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'int' | int | ^~~ | configure:21143: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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:21154: result: needs runtime check | configure:21279: checking whether fcntl is declared without a macro | configure:21297: gcc -c -g -O2 conftest.c >&5 | configure:21297: $? = 0 | configure:21305: result: yes | configure:21279: checking whether openat is declared without a macro | configure:21297: gcc -c -g -O2 conftest.c >&5 | configure:21297: $? = 0 | configure:21305: result: yes | configure:21375: checking whether conversion from 'int' to 'long double' works | configure:21416: gcc -o conftest -g -O2 conftest.c >&5 | configure:21416: $? = 0 | configure:21416: ./conftest | configure:21416: $? = 0 | configure:21427: result: yes | configure:21553: checking whether fopen recognizes a trailing slash | configure:21579: gcc -o conftest -g -O2 conftest.c >&5 | configure:21579: $? = 0 | configure:21579: ./conftest | configure:21579: $? = 0 | configure:21591: result: yes | configure:21647: checking for __fpending | configure:21664: gcc -o conftest -g -O2 conftest.c >&5 | configure:21664: $? = 0 | configure:21673: result: yes | configure:21676: checking whether __fpending is declared | configure:21676: gcc -c -g -O2 conftest.c >&5 | configure:21676: $? = 0 | configure:21676: result: yes | configure:22123: checking whether frexp works | configure:22203: gcc -o conftest -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:257:21: warning: passing argument 2 of 'memcmp' discards 'volatile' qualifier from pointer target type [-Wdiscarded-qualifiers] | if (memcmp (&y, &x, sizeof x)) | ^ | In file included from conftest.c:201:0: | /tools/include/string.h:63:12: note: expected 'const void *' but argument is of type 'volatile double *' | extern int memcmp (const void *__s1, const void *__s2, size_t __n) | ^~~~~~ | configure:22203: $? = 0 | configure:22203: ./conftest | configure:22203: $? = 0 | configure:22214: result: yes | configure:22261: checking whether frexpl is declared | configure:22261: gcc -c -g -O2 conftest.c >&5 | configure:22261: $? = 0 | configure:22261: result: yes | configure:22271: checking whether frexpl() can be used without linking with libm | configure:22289: gcc -o conftest -g -O2 conftest.c >&5 | configure:22289: $? = 0 | configure:22298: result: yes | configure:22304: checking whether frexpl works | configure:22415: gcc -o conftest -g -O2 conftest.c >&5 | configure:22415: $? = 0 | configure:22415: ./conftest | configure:22415: $? = 0 | configure:22426: result: yes | configure:22537: checking whether getdtablesize works | configure:22566: gcc -o conftest -g -O2 conftest.c >&5 | configure:22566: $? = 0 | configure:22566: ./conftest | configure:22566: $? = 0 | configure:22577: result: yes | configure:22715: checking whether gettimeofday clobbers localtime buffer | configure:22754: gcc -o conftest -g -O2 conftest.c >&5 | configure:22754: $? = 0 | configure:22754: ./conftest | configure:22754: $? = 0 | configure:22764: result: no | configure:22780: checking for gettimeofday with POSIX signature | configure:22808: gcc -c -g -O2 conftest.c >&5 | conftest.c:207:19: error: conflicting types for 'gettimeofday' | int gettimeofday (struct timeval *restrict, void *restrict); | ^~~~~~~~~~~~ | In file included from conftest.c:205:0: | /tools/include/sys/time.h:68:12: note: previous declaration of 'gettimeofday' was here | extern int gettimeofday (struct timeval *__restrict __tv, | ^~~~~~~~~~~~ | configure:22808: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 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:22824: gcc -c -g -O2 conftest.c >&5 | configure:22824: $? = 0 | configure:22833: result: almost | configure:22940: gcc -c -g -O2 conftest.c >&5 | conftest.c:209:23: error: conflicting types for 'foo' | extern int foo; | ^~~ | conftest.c:208:28: note: previous declaration of 'foo' was here | extern intptr_t foo; | ^~~ | configure:22940: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | /* end confdefs.h. */ | | #include | | extern intptr_t foo; | | extern int foo; | | int | | main () | | { | | | | ; | | return 0; | | } | configure:22940: gcc -c -g -O2 conftest.c >&5 | configure:22940: $? = 0 | configure:22950: checking whether INT32_MAX < INTMAX_MAX | configure:22984: gcc -c -g -O2 conftest.c >&5 | configure:22984: $? = 0 | configure:22991: result: yes | configure:23002: checking whether INT64_MAX == LONG_MAX | configure:23036: gcc -c -g -O2 conftest.c >&5 | configure:23036: $? = 0 | configure:23043: result: yes | configure:23056: checking whether UINT32_MAX < UINTMAX_MAX | configure:23090: gcc -c -g -O2 conftest.c >&5 | configure:23090: $? = 0 | configure:23097: result: yes | configure:23108: checking whether UINT64_MAX == ULONG_MAX | configure:23142: gcc -c -g -O2 conftest.c >&5 | configure:23142: $? = 0 | configure:23149: result: yes | configure:23172: checking whether isnan macro works | configure:23177: result: yes | configure:23219: checking whether isnan(double) can be used without linking with libm | configure:23253: result: yes | configure:23346: checking whether isnan(double) can be used without linking with libm | configure:23380: result: yes | configure:23409: checking whether isnan(float) can be used without linking with libm | configure:23443: result: yes | configure:23499: checking whether isnan(float) works | configure:23578: result: yes | configure:23737: checking whether isnan(float) can be used without linking with libm | configure:23771: result: yes | configure:23778: checking whether isnan(float) works | configure:23857: result: yes | configure:24002: checking whether isnan(long double) can be used without linking with libm | configure:24036: result: yes | configure:24093: checking whether isnanl works | configure:24242: result: yes | configure:24406: checking whether isnan(long double) can be used without linking with libm | configure:24440: result: yes | configure:24449: checking whether isnanl works | configure:24598: result: yes | configure:24799: checking whether ldexpl is declared | configure:24799: gcc -c -g -O2 conftest.c >&5 | configure:24799: $? = 0 | configure:24799: result: yes | configure:24811: checking whether ldexpl() can be used without linking with libm | configure:24829: gcc -o conftest -g -O2 conftest.c >&5 | configure:24829: $? = 0 | configure:24838: result: yes | configure:24884: checking whether ldexpl works | configure:24925: gcc -o conftest -g -O2 conftest.c >&5 | configure:24925: $? = 0 | configure:24925: ./conftest | configure:24925: $? = 0 | configure:24936: result: yes | configure:25005: checking for pthread_rwlock_t | configure:25005: gcc -c -g -O2 conftest.c >&5 | configure:25005: $? = 0 | configure:25005: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:221:31: error: expected expression before ')' token | if (sizeof ((pthread_rwlock_t))) | ^ | configure:25005: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | if (sizeof ((pthread_rwlock_t))) | | return 0; | | ; | | return 0; | | } | configure:25005: result: yes | configure:25036: gcc -c -g -O2 conftest.c >&5 | configure:25036: $? = 0 | configure:25101: checking for stdlib.h | configure:25101: result: yes | configure:25111: checking for GNU libc compatible malloc | configure:25144: gcc -o conftest -g -O2 conftest.c >&5 | configure:25144: $? = 0 | configure:25144: ./conftest | configure:25144: $? = 0 | configure:25155: result: yes | configure:25307: checking whether NAN macro works | configure:25330: gcc -c -g -O2 conftest.c >&5 | configure:25330: $? = 0 | configure:25337: result: yes | configure:25342: checking whether HUGE_VAL works | configure:25360: gcc -c -g -O2 conftest.c >&5 | configure:25360: $? = 0 | configure:25367: result: yes | configure:25376: checking whether acosf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether acosl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether asinf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether asinl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether atanf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether atanl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether cbrt is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether cbrtf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether cbrtl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether ceilf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether ceill is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether copysign is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether copysignf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether copysignl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether cosf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether cosl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether coshf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether expf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether expl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether exp2 is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether exp2f is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether exp2l is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether expm1 is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether expm1f is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether expm1l is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether fabsf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether fabsl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether floorf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether floorl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether fma is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether fmaf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether fmal is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether fmod is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether fmodf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether fmodl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether frexpf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether frexpl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether hypotf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether hypotl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether ilogb is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether ilogbf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether ilogbl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether ldexpf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether ldexpl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether log is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether logf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether logl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether log10 is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether log10f is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether log10l is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether log1p is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether log1pf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether log1pl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether log2 is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether log2f is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether log2l is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether logb is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether logbf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether logbl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether modf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether modff is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether modfl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether powf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether remainder is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether remainderf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether remainderl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether rint is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether rintf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether rintl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether round is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether roundf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether roundl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether sinf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether sinl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether sinhf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether sqrtf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether sqrtl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether tanf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether tanl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether tanhf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether trunc is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether truncf is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25376: checking whether truncl is declared without a macro | configure:25393: gcc -c -g -O2 conftest.c >&5 | configure:25393: $? = 0 | configure:25401: result: yes | configure:25427: checking whether mbrtowc handles incomplete characters | configure:25484: result: guessing yes | configure:25490: checking whether mbrtowc works as well as mbtowc | configure:25551: result: guessing yes | configure:25602: checking whether mbrtowc handles a NULL pwc argument | configure:25673: result: guessing yes | configure:25679: checking whether mbrtowc handles a NULL string argument | configure:25738: result: guessing yes | configure:25746: checking whether mbrtowc has a correct return value | configure:25876: result: guessing yes | configure:25882: checking whether mbrtowc returns 0 when parsing a NUL character | configure:25938: result: guessing yes | configure:25943: checking whether mbrtowc works on empty input | configure:25970: gcc -o conftest -g -O2 conftest.c >&5 | configure:25970: $? = 0 | configure:25970: ./conftest | configure:25970: $? = 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.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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:25981: result: yes | configure:26072: checking whether mbrtowc handles incomplete characters | configure:26129: result: guessing yes | configure:26135: checking whether mbrtowc works as well as mbtowc | configure:26196: result: guessing yes | configure:26284: checking whether mbswidth is declared in | configure:26312: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:324:22: error: 'mbswidth' undeclared (first use in this function); did you mean 'wcswidth'? | char *p = (char *) mbswidth; | ^~~~~~~~ | wcswidth | conftest.c:324:22: note: each undeclared identifier is reported only once for each function it appears in | configure:26312: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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:26319: result: no | configure:26334: checking for mbstate_t | configure:26365: result: yes | configure:26473: checking for obstacks that work with any size object | configure:26497: gcc -o conftest -g -O2 conftest.c >&5 | conftest.c:317:21: error: conflicting types for '_obstack_memory_used' | size_t _obstack_memory_used (struct obstack *); | ^~~~~~~~~~~~~~~~~~~~ | In file included from conftest.c:313:0: | /tools/include/obstack.h:190:12: note: previous declaration of '_obstack_memory_used' was here | extern int _obstack_memory_used (struct obstack *) __attribute_pure__; | ^~~~~~~~~~~~~~~~~~~~ | configure:26497: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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 | | /* 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:26505: result: no | configure:26580: checking whether open recognizes a trailing slash | configure:26619: gcc -o conftest -g -O2 conftest.c >&5 | configure:26619: $? = 0 | configure:26619: ./conftest | configure:26619: $? = 0 | configure:26631: result: yes | configure:26690: checking whether perror matches strerror | configure:26721: gcc -o conftest -g -O2 conftest.c >&5 | configure:26721: $? = 0 | configure:26721: ./conftest | configure:26721: $? = 0 | configure:26738: result: yes | configure:26817: checking whether posix_spawn_file_actions_addclose works | configure:26844: gcc -o conftest -g -O2 conftest.c >&5 | configure:26844: $? = 0 | configure:26844: ./conftest | configure:26844: $? = 0 | configure:26855: result: yes | configure:26899: checking whether posix_spawn_file_actions_adddup2 works | configure:26926: gcc -o conftest -g -O2 conftest.c >&5 | configure:26926: $? = 0 | configure:26926: ./conftest | configure:26926: $? = 0 | configure:26937: result: yes | configure:26981: checking whether posix_spawn_file_actions_addopen works | configure:27010: gcc -o conftest -g -O2 conftest.c >&5 | configure:27010: $? = 0 | configure:27010: ./conftest | configure:27010: $? = 0 | configure:27021: result: yes | configure:27308: checking whether frexp works | configure:27399: result: yes | configure:27411: checking whether ldexp can be used without linking with libm | configure:27439: result: yes | configure:27452: checking whether frexpl() can be used without linking with libm | configure:27479: result: yes | configure:27485: checking whether frexpl works | configure:27607: result: yes | configure:27622: checking whether frexpl is declared | configure:27622: result: yes | configure:27633: checking whether ldexpl() can be used without linking with libm | configure:27660: result: yes | configure:27666: checking whether ldexpl works | configure:27718: result: yes | configure:27726: checking whether ldexpl is declared | configure:27726: result: yes | configure:27778: checking whether program_invocation_name is declared | configure:27778: gcc -c -g -O2 conftest.c >&5 | configure:27778: $? = 0 | configure:27778: result: yes | configure:27790: checking whether program_invocation_short_name is declared | configure:27790: gcc -c -g -O2 conftest.c >&5 | configure:27790: $? = 0 | configure:27790: result: yes | configure:27814: checking for raise | configure:27814: gcc -o conftest -g -O2 conftest.c >&5 | configure:27814: $? = 0 | configure:27814: result: yes | configure:27834: checking for sigprocmask | configure:27834: gcc -o conftest -g -O2 conftest.c >&5 | configure:27834: $? = 0 | configure:27834: result: yes | configure:27884: checking for rawmemchr | configure:27884: gcc -o conftest -g -O2 conftest.c >&5 | configure:27884: $? = 0 | configure:27884: result: yes | configure:27980: gcc -c -g -O2 conftest.c >&5 | configure:27980: $? = 0 | configure:28110: checking for struct sigaction.sa_sigaction | configure:28110: gcc -c -g -O2 conftest.c >&5 | configure:28110: $? = 0 | configure:28110: result: yes | configure:28255: checking for volatile sig_atomic_t | configure:28255: gcc -c -g -O2 conftest.c >&5 | configure:28255: $? = 0 | configure:28255: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:350:36: error: expected expression before ')' token | if (sizeof ((volatile sig_atomic_t))) | ^ | configure:28255: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 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:28255: result: yes | configure:28271: checking for sighandler_t | configure:28271: gcc -c -g -O2 conftest.c >&5 | configure:28271: $? = 0 | configure:28271: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:350:27: error: expected expression before ')' token | if (sizeof ((sighandler_t))) | ^ | configure:28271: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 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:28271: result: yes | configure:28285: checking whether pthread_sigmask is declared without a macro | configure:28303: gcc -c -g -O2 conftest.c >&5 | configure:28303: $? = 0 | configure:28311: result: yes | configure:28285: checking whether sigaction is declared without a macro | configure:28303: gcc -c -g -O2 conftest.c >&5 | configure:28303: $? = 0 | configure:28311: result: yes | configure:28285: checking whether sigaddset is declared without a macro | configure:28303: gcc -c -g -O2 conftest.c >&5 | configure:28303: $? = 0 | configure:28311: result: yes | configure:28285: checking whether sigdelset is declared without a macro | configure:28303: gcc -c -g -O2 conftest.c >&5 | configure:28303: $? = 0 | configure:28311: result: yes | configure:28285: checking whether sigemptyset is declared without a macro | configure:28303: gcc -c -g -O2 conftest.c >&5 | configure:28303: $? = 0 | configure:28311: result: yes | configure:28285: checking whether sigfillset is declared without a macro | configure:28303: gcc -c -g -O2 conftest.c >&5 | configure:28303: $? = 0 | configure:28311: result: yes | configure:28285: checking whether sigismember is declared without a macro | configure:28303: gcc -c -g -O2 conftest.c >&5 | configure:28303: $? = 0 | configure:28311: result: yes | configure:28285: checking whether sigpending is declared without a macro | configure:28303: gcc -c -g -O2 conftest.c >&5 | configure:28303: $? = 0 | configure:28311: result: yes | configure:28285: checking whether sigprocmask is declared without a macro | configure:28303: gcc -c -g -O2 conftest.c >&5 | configure:28303: $? = 0 | configure:28311: result: yes | configure:28325: checking for signbit macro | configure:28430: gcc -o conftest -g -O2 conftest.c >&5 | configure:28430: $? = 0 | configure:28430: ./conftest | configure:28430: $? = 0 | configure:28441: result: yes | configure:28443: checking for signbit compiler built-ins | configure:28545: gcc -o conftest -g -O2 conftest.c >&5 | configure:28545: $? = 0 | configure:28545: ./conftest | configure:28545: $? = 0 | configure:28556: result: yes | configure:29085: checking for sigprocmask | configure:29085: result: yes | configure:29126: checking for stdint.h | configure:29126: result: yes | configure:29136: checking for SIZE_MAX | configure:29207: result: yes | configure:29223: checking for snprintf | configure:29223: result: yes | configure:29236: checking whether snprintf respects a size of 1 | configure:29270: gcc -o conftest -g -O2 conftest.c >&5 | configure:29270: $? = 0 | configure:29270: ./conftest | configure:29270: $? = 0 | configure:29281: result: yes | configure:29291: checking whether printf supports POSIX/XSI format strings with positions | configure:29334: result: yes | configure:29411: checking for snprintf | configure:29411: result: yes | configure:29424: checking whether snprintf truncates the result as in C99 | configure:29500: gcc -o conftest -g -O2 conftest.c >&5 | configure:29500: $? = 0 | configure:29500: ./conftest | configure:29500: $? = 0 | configure:29511: result: yes | configure:29518: checking whether snprintf fully supports the 'n' directive | configure:29592: gcc -o conftest -g -O2 conftest.c >&5 | configure:29592: $? = 0 | configure:29592: ./conftest | configure:29592: $? = 0 | configure:29603: result: yes | configure:29609: checking whether snprintf respects a size of 1 | configure:29654: result: yes | configure:29659: checking whether vsnprintf respects a zero size as in C99 | configure:29721: gcc -o conftest -g -O2 conftest.c >&5 | configure:29721: $? = 0 | configure:29721: ./conftest | configure:29721: $? = 0 | configure:29732: result: yes | configure:30142: checking for posix_spawnattr_t | configure:30142: gcc -c -g -O2 conftest.c >&5 | configure:30142: $? = 0 | configure:30142: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:366:32: error: expected expression before ')' token | if (sizeof ((posix_spawnattr_t))) | ^ | configure:30142: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | | #define HAVE_RAW_DECL_SIGACTION 1 | | #define HAVE_RAW_DECL_SIGADDSET 1 | | #define HAVE_RAW_DECL_SIGDELSET 1 | | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | | #define HAVE_RAW_DECL_SIGFILLSET 1 | | #define HAVE_RAW_DECL_SIGISMEMBER 1 | | #define HAVE_RAW_DECL_SIGPENDING 1 | | #define HAVE_RAW_DECL_SIGPROCMASK 1 | | #define GNULIB_TEST_SIGNBIT 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:30142: result: yes | configure:30157: checking for posix_spawn_file_actions_t | configure:30157: gcc -c -g -O2 conftest.c >&5 | configure:30157: $? = 0 | configure:30157: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:367:41: error: expected expression before ')' token | if (sizeof ((posix_spawn_file_actions_t))) | ^ | configure:30157: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | | #define HAVE_RAW_DECL_SIGACTION 1 | | #define HAVE_RAW_DECL_SIGADDSET 1 | | #define HAVE_RAW_DECL_SIGDELSET 1 | | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | | #define HAVE_RAW_DECL_SIGFILLSET 1 | | #define HAVE_RAW_DECL_SIGISMEMBER 1 | | #define HAVE_RAW_DECL_SIGPENDING 1 | | #define HAVE_RAW_DECL_SIGPROCMASK 1 | | #define GNULIB_TEST_SIGNBIT 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:30157: result: yes | configure:30190: checking whether posix_spawn is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnp is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_init is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_destroy is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_getsigdefault is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_setsigdefault is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_getsigmask is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_setsigmask is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_getflags is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_setflags is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_getpgroup is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_setpgroup is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_getschedpolicy is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_setschedpolicy is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_getschedparam is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawnattr_setschedparam is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawn_file_actions_init is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawn_file_actions_destroy is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawn_file_actions_addopen is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawn_file_actions_addclose is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30190: checking whether posix_spawn_file_actions_adddup2 is declared without a macro | configure:30208: gcc -c -g -O2 conftest.c >&5 | configure:30208: $? = 0 | configure:30216: result: yes | configure:30563: checking for ssize_t | configure:30580: gcc -c -g -O2 conftest.c >&5 | configure:30580: $? = 0 | configure:30587: result: yes | configure:30598: checking whether stat handles trailing slashes on directories | configure:30621: gcc -o conftest -g -O2 conftest.c >&5 | configure:30621: $? = 0 | configure:30621: ./conftest | configure:30621: $? = 0 | configure:30631: result: yes | configure:30633: checking whether stat handles trailing slashes on files | configure:30673: gcc -o conftest -g -O2 conftest.c >&5 | configure:30673: $? = 0 | configure:30673: ./conftest | configure:30673: $? = 0 | configure:30684: result: yes | configure:30758: checking for max_align_t | configure:30758: gcc -c -g -O2 conftest.c >&5 | configure:30758: $? = 0 | configure:30758: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:390:26: error: expected expression before ')' token | if (sizeof ((max_align_t))) | ^ | configure:30758: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | | #define HAVE_RAW_DECL_SIGACTION 1 | | #define HAVE_RAW_DECL_SIGADDSET 1 | | #define HAVE_RAW_DECL_SIGDELSET 1 | | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | | #define HAVE_RAW_DECL_SIGFILLSET 1 | | #define HAVE_RAW_DECL_SIGISMEMBER 1 | | #define HAVE_RAW_DECL_SIGPENDING 1 | | #define HAVE_RAW_DECL_SIGPROCMASK 1 | | #define GNULIB_TEST_SIGNBIT 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 HAVE_RAW_DECL_POSIX_SPAWN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define GNULIB_TEST_STAT 1 | | /* end confdefs.h. */ | | #include | | | | | | int | | main () | | { | | if (sizeof ((max_align_t))) | | return 0; | | ; | | return 0; | | } | configure:30758: result: yes | configure:30771: checking whether NULL can be used in arbitrary expressions | configure:30789: gcc -c -g -O2 conftest.c >&5 | configure:30789: $? = 0 | configure:30796: result: yes | configure:30962: checking whether inttypes macros match system or gnu printf | configure:30984: result: system | configure:31031: checking whether dprintf is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31031: checking whether fpurge is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:393:10: error: 'fpurge' undeclared (first use in this function); did you mean 'fputs'? | (void) fpurge; | ^~~~~~ | fputs | conftest.c:393:10: note: each undeclared identifier is reported only once for each function it appears in | configure:31049: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | | #define HAVE_RAW_DECL_SIGACTION 1 | | #define HAVE_RAW_DECL_SIGADDSET 1 | | #define HAVE_RAW_DECL_SIGDELSET 1 | | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | | #define HAVE_RAW_DECL_SIGFILLSET 1 | | #define HAVE_RAW_DECL_SIGISMEMBER 1 | | #define HAVE_RAW_DECL_SIGPENDING 1 | | #define HAVE_RAW_DECL_SIGPROCMASK 1 | | #define GNULIB_TEST_SIGNBIT 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 HAVE_RAW_DECL_POSIX_SPAWN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define GNULIB_TEST_STAT 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_RAW_DECL_DPRINTF 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | #undef fpurge | | (void) fpurge; | | ; | | return 0; | | } | configure:31057: result: no | configure:31031: checking whether fseeko is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31031: checking whether ftello is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31031: checking whether getdelim is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31031: checking whether getline is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31031: checking whether gets is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:397:10: error: 'gets' undeclared (first use in this function); did you mean 'fgets'? | (void) gets; | ^~~~ | fgets | conftest.c:397:10: note: each undeclared identifier is reported only once for each function it appears in | configure:31049: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | | #define HAVE_RAW_DECL_SIGACTION 1 | | #define HAVE_RAW_DECL_SIGADDSET 1 | | #define HAVE_RAW_DECL_SIGDELSET 1 | | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | | #define HAVE_RAW_DECL_SIGFILLSET 1 | | #define HAVE_RAW_DECL_SIGISMEMBER 1 | | #define HAVE_RAW_DECL_SIGPENDING 1 | | #define HAVE_RAW_DECL_SIGPROCMASK 1 | | #define GNULIB_TEST_SIGNBIT 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 HAVE_RAW_DECL_POSIX_SPAWN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define GNULIB_TEST_STAT 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_RAW_DECL_DPRINTF 1 | | #define HAVE_RAW_DECL_FSEEKO 1 | | #define HAVE_RAW_DECL_FTELLO 1 | | #define HAVE_RAW_DECL_GETDELIM 1 | | #define HAVE_RAW_DECL_GETLINE 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | #undef gets | | (void) gets; | | ; | | return 0; | | } | configure:31057: result: no | configure:31031: checking whether pclose is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31031: checking whether popen is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31031: checking whether renameat is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31031: checking whether snprintf is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31031: checking whether tmpfile is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31031: checking whether vdprintf is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31031: checking whether vsnprintf is declared without a macro | configure:31049: gcc -c -g -O2 conftest.c >&5 | configure:31049: $? = 0 | configure:31057: result: yes | configure:31146: checking whether _Exit is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether atoll is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether canonicalize_file_name is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether getloadavg is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether getsubopt is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether grantpt is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether initstate is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether initstate_r is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether mkdtemp is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether mkostemp is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether mkostemps is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether mkstemp is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether mkstemps is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether posix_openpt is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether ptsname is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether ptsname_r is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether random is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether random_r is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether realpath is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether rpmatch is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether secure_getenv is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether setenv is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether setstate is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether setstate_r is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether srandom is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether srandom_r is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether strtod is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether strtoll is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether strtoull is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether unlockpt is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31146: checking whether unsetenv is declared without a macro | configure:31170: gcc -c -g -O2 conftest.c >&5 | configure:31170: $? = 0 | configure:31178: result: yes | configure:31198: checking for stpcpy | configure:31198: gcc -o conftest -g -O2 conftest.c >&5 | conftest.c:452:6: warning: conflicting types for built-in function 'stpcpy' [-Wbuiltin-declaration-mismatch] | char stpcpy (); | ^~~~~~ | configure:31198: $? = 0 | configure:31198: result: yes | configure:31247: checking for strchrnul | configure:31247: gcc -o conftest -g -O2 conftest.c >&5 | configure:31247: $? = 0 | configure:31247: result: yes | configure:31259: checking whether strchrnul works | configure:31303: gcc -o conftest -g -O2 conftest.c >&5 | configure:31303: $? = 0 | configure:31303: ./conftest | configure:31303: $? = 0 | configure:31314: result: yes | configure:31400: checking for working strerror function | configure:31426: gcc -o conftest -g -O2 conftest.c >&5 | configure:31426: $? = 0 | configure:31426: ./conftest | configure:31426: $? = 0 | configure:31437: result: yes | configure:31602: checking for working strndup | configure:31640: gcc -o conftest -g -O2 conftest.c >&5 | configure:31640: $? = 0 | configure:31640: ./conftest | configure:31640: $? = 0 | configure:31650: result: yes | configure:31696: checking for working strnlen | configure:31734: gcc -o conftest -g -O2 conftest.c >&5 | configure:31734: $? = 0 | configure:31734: ./conftest | configure:31734: $? = 0 | configure:31744: result: yes | configure:31788: checking for strverscmp | configure:31788: gcc -o conftest -g -O2 conftest.c >&5 | configure:31788: $? = 0 | configure:31788: result: yes | configure:31927: checking for nlink_t | configure:31927: result: yes | configure:31942: checking whether fchmodat is declared without a macro | configure:31968: result: yes | configure:31942: checking whether fstat is declared without a macro | configure:31968: result: yes | configure:31942: checking whether fstatat is declared without a macro | configure:31968: result: yes | configure:31942: checking whether futimens is declared without a macro | configure:31968: result: yes | configure:31942: checking whether lchmod is declared without a macro | configure:31968: result: yes | configure:31942: checking whether lstat is declared without a macro | configure:31968: result: yes | configure:31942: checking whether mkdirat is declared without a macro | configure:31968: result: yes | configure:31942: checking whether mkfifo is declared without a macro | configure:31968: result: yes | configure:31942: checking whether mkfifoat is declared without a macro | configure:31968: result: yes | configure:31942: checking whether mknod is declared without a macro | configure:31968: result: yes | configure:31942: checking whether mknodat is declared without a macro | configure:31968: result: yes | configure:31942: checking whether stat is declared without a macro | configure:31968: result: yes | configure:31942: checking whether utimensat is declared without a macro | configure:31968: result: yes | configure:32074: checking whether waitpid is declared without a macro | configure:32091: gcc -c -g -O2 conftest.c >&5 | configure:32091: $? = 0 | configure:32099: result: yes | configure:32214: checking whether chdir is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether chown is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether dup is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether dup2 is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether dup3 is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether environ is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether euidaccess is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether faccessat is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether fchdir is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether fchownat is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether fdatasync is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether fsync is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether ftruncate is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether getcwd is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether getdomainname is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether getdtablesize is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether getgroups is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether gethostname is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether getlogin is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether getlogin_r is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether getpagesize is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether getusershell is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether setusershell is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether endusershell is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether group_member is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether isatty is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether lchown is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether link is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether linkat is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether lseek is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether pipe is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether pipe2 is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether pread is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether pwrite is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether readlink is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether readlinkat is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether rmdir is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether sethostname is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether sleep is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether symlink is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether symlinkat is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether ttyname_r is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether unlink is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether unlinkat is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32214: checking whether usleep is declared without a macro | configure:32244: gcc -c -g -O2 conftest.c >&5 | configure:32244: $? = 0 | configure:32252: result: yes | configure:32355: checking whether unlink honors trailing slashes | configure:32403: gcc -o conftest -g -O2 conftest.c >&5 | configure:32403: $? = 0 | configure:32403: ./conftest | configure:32403: $? = 0 | configure:32414: result: yes | configure:32422: checking whether unlink of a parent directory fails as it should | configure:32494: result: guessing yes | configure:32561: checking for unsetenv | configure:32561: gcc -o conftest -g -O2 conftest.c >&5 | configure:32561: $? = 0 | configure:32561: result: yes | configure:32574: checking for unsetenv() return type | configure:32599: gcc -c -g -O2 conftest.c >&5 | configure:32599: $? = 0 | configure:32606: result: int | configure:32615: checking whether unsetenv obeys POSIX | configure:32660: gcc -o conftest -g -O2 conftest.c >&5 | configure:32660: $? = 0 | configure:32660: ./conftest | configure:32660: $? = 0 | configure:32670: result: yes | configure:32772: checking for ptrdiff_t | configure:32772: gcc -c -g -O2 conftest.c >&5 | configure:32772: $? = 0 | configure:32772: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:540:24: error: expected expression before ')' token | if (sizeof ((ptrdiff_t))) | ^ | configure:32772: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | | #define HAVE_RAW_DECL_SIGACTION 1 | | #define HAVE_RAW_DECL_SIGADDSET 1 | | #define HAVE_RAW_DECL_SIGDELSET 1 | | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | | #define HAVE_RAW_DECL_SIGFILLSET 1 | | #define HAVE_RAW_DECL_SIGISMEMBER 1 | | #define HAVE_RAW_DECL_SIGPENDING 1 | | #define HAVE_RAW_DECL_SIGPROCMASK 1 | | #define GNULIB_TEST_SIGNBIT 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 HAVE_RAW_DECL_POSIX_SPAWN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define GNULIB_TEST_STAT 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_RAW_DECL_DPRINTF 1 | | #define HAVE_RAW_DECL_FSEEKO 1 | | #define HAVE_RAW_DECL_FTELLO 1 | | #define HAVE_RAW_DECL_GETDELIM 1 | | #define HAVE_RAW_DECL_GETLINE 1 | | #define HAVE_RAW_DECL_PCLOSE 1 | | #define HAVE_RAW_DECL_POPEN 1 | | #define HAVE_RAW_DECL_RENAMEAT 1 | | #define HAVE_RAW_DECL_SNPRINTF 1 | | #define HAVE_RAW_DECL_TMPFILE 1 | | #define HAVE_RAW_DECL_VDPRINTF 1 | | #define HAVE_RAW_DECL_VSNPRINTF 1 | | #define HAVE_RAW_DECL__EXIT 1 | | #define HAVE_RAW_DECL_ATOLL 1 | | #define HAVE_RAW_DECL_CANONICALIZE_FILE_NAME 1 | | #define HAVE_RAW_DECL_GETLOADAVG 1 | | #define HAVE_RAW_DECL_GETSUBOPT 1 | | #define HAVE_RAW_DECL_GRANTPT 1 | | #define HAVE_RAW_DECL_INITSTATE 1 | | #define HAVE_RAW_DECL_INITSTATE_R 1 | | #define HAVE_RAW_DECL_MKDTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMPS 1 | | #define HAVE_RAW_DECL_MKSTEMP 1 | | #define HAVE_RAW_DECL_MKSTEMPS 1 | | #define HAVE_RAW_DECL_POSIX_OPENPT 1 | | #define HAVE_RAW_DECL_PTSNAME 1 | | #define HAVE_RAW_DECL_PTSNAME_R 1 | | #define HAVE_RAW_DECL_RANDOM 1 | | #define HAVE_RAW_DECL_RANDOM_R 1 | | #define HAVE_RAW_DECL_REALPATH 1 | | #define HAVE_RAW_DECL_RPMATCH 1 | | #define HAVE_RAW_DECL_SECURE_GETENV 1 | | #define HAVE_RAW_DECL_SETENV 1 | | #define HAVE_RAW_DECL_SETSTATE 1 | | #define HAVE_RAW_DECL_SETSTATE_R 1 | | #define HAVE_RAW_DECL_SRANDOM 1 | | #define HAVE_RAW_DECL_SRANDOM_R 1 | | #define HAVE_RAW_DECL_STRTOD 1 | | #define HAVE_RAW_DECL_STRTOLL 1 | | #define HAVE_RAW_DECL_STRTOULL 1 | | #define HAVE_RAW_DECL_UNLOCKPT 1 | | #define HAVE_RAW_DECL_UNSETENV 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STRCHRNUL 1 | | #define GNULIB_TEST_STRCHRNUL 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRERROR_R 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define GNULIB_TEST_STRNLEN 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_RAW_DECL_WAITPID 1 | | #define HAVE_RAW_DECL_CHDIR 1 | | #define HAVE_RAW_DECL_CHOWN 1 | | #define HAVE_RAW_DECL_DUP 1 | | #define HAVE_RAW_DECL_DUP2 1 | | #define HAVE_RAW_DECL_DUP3 1 | | #define HAVE_RAW_DECL_ENVIRON 1 | | #define HAVE_RAW_DECL_EUIDACCESS 1 | | #define HAVE_RAW_DECL_FACCESSAT 1 | | #define HAVE_RAW_DECL_FCHDIR 1 | | #define HAVE_RAW_DECL_FCHOWNAT 1 | | #define HAVE_RAW_DECL_FDATASYNC 1 | | #define HAVE_RAW_DECL_FSYNC 1 | | #define HAVE_RAW_DECL_FTRUNCATE 1 | | #define HAVE_RAW_DECL_GETCWD 1 | | #define HAVE_RAW_DECL_GETDOMAINNAME 1 | | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | | #define HAVE_RAW_DECL_GETGROUPS 1 | | #define HAVE_RAW_DECL_GETHOSTNAME 1 | | #define HAVE_RAW_DECL_GETLOGIN 1 | | #define HAVE_RAW_DECL_GETLOGIN_R 1 | | #define HAVE_RAW_DECL_GETPAGESIZE 1 | | #define HAVE_RAW_DECL_GETUSERSHELL 1 | | #define HAVE_RAW_DECL_SETUSERSHELL 1 | | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | | #define HAVE_RAW_DECL_GROUP_MEMBER 1 | | #define HAVE_RAW_DECL_ISATTY 1 | | #define HAVE_RAW_DECL_LCHOWN 1 | | #define HAVE_RAW_DECL_LINK 1 | | #define HAVE_RAW_DECL_LINKAT 1 | | #define HAVE_RAW_DECL_LSEEK 1 | | #define HAVE_RAW_DECL_PIPE 1 | | #define HAVE_RAW_DECL_PIPE2 1 | | #define HAVE_RAW_DECL_PREAD 1 | | #define HAVE_RAW_DECL_PWRITE 1 | | #define HAVE_RAW_DECL_READLINK 1 | | #define HAVE_RAW_DECL_READLINKAT 1 | | #define HAVE_RAW_DECL_RMDIR 1 | | #define HAVE_RAW_DECL_SETHOSTNAME 1 | | #define HAVE_RAW_DECL_SLEEP 1 | | #define HAVE_RAW_DECL_SYMLINK 1 | | #define HAVE_RAW_DECL_SYMLINKAT 1 | | #define HAVE_RAW_DECL_TTYNAME_R 1 | | #define HAVE_RAW_DECL_UNLINK 1 | | #define HAVE_RAW_DECL_UNLINKAT 1 | | #define HAVE_RAW_DECL_USLEEP 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:32772: result: yes | configure:33129: checking for vsnprintf | configure:33129: gcc -o conftest -g -O2 conftest.c >&5 | conftest.c:528:6: warning: conflicting types for built-in function 'vsnprintf' [-Wbuiltin-declaration-mismatch] | char vsnprintf (); | ^~~~~~~~~ | configure:33129: $? = 0 | configure:33129: result: yes | configure:33142: checking whether snprintf respects a size of 1 | configure:33187: result: yes | configure:33197: checking whether printf supports POSIX/XSI format strings with positions | configure:33240: result: yes | configure:33310: checking for vsnprintf | configure:33310: result: yes | configure:33323: checking whether snprintf truncates the result as in C99 | configure:33410: result: yes | configure:33417: checking whether snprintf fully supports the 'n' directive | configure:33502: result: yes | configure:33508: checking whether snprintf respects a size of 1 | configure:33553: result: yes | configure:33558: checking whether vsnprintf respects a zero size as in C99 | configure:33631: result: yes | configure:34292: checking for waitid | configure:34292: gcc -o conftest -g -O2 conftest.c >&5 | configure:34292: $? = 0 | configure:34292: result: yes | configure:34437: checking whether btowc is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wctob is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether mbsinit is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether mbrtowc is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether mbrlen is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether mbsrtowcs is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether mbsnrtowcs is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcrtomb is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsrtombs is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsnrtombs is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcwidth is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wmemchr is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wmemcmp is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wmemcpy is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wmemmove is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wmemset is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcslen is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsnlen is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcscpy is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcpcpy is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsncpy is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcpncpy is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcscat is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsncat is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcscmp is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsncmp is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcscasecmp is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsncasecmp is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcscoll is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsxfrm is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsdup is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcschr is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsrchr is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcscspn is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsspn is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcspbrk is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcsstr is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcstok is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34437: checking whether wcswidth is declared without a macro | configure:34465: gcc -c -g -O2 conftest.c >&5 | configure:34465: $? = 0 | configure:34473: result: yes | configure:34585: checking whether iswcntrl works | configure:34629: gcc -o conftest -g -O2 conftest.c >&5 | configure:34629: $? = 0 | configure:34629: ./conftest | configure:34629: $? = 0 | configure:34640: result: yes | configure:34664: checking for towlower | configure:34664: gcc -o conftest -g -O2 conftest.c >&5 | conftest.c:573:6: warning: conflicting types for built-in function 'towlower' [-Wbuiltin-declaration-mismatch] | char towlower (); | ^~~~~~~~ | configure:34664: $? = 0 | configure:34664: result: yes | configure:34712: checking for wctype_t | configure:34740: gcc -c -g -O2 conftest.c >&5 | configure:34740: $? = 0 | configure:34748: result: yes | configure:34754: checking for wctrans_t | configure:34780: gcc -c -g -O2 conftest.c >&5 | configure:34780: $? = 0 | configure:34788: result: yes | configure:34797: checking whether wctype is declared without a macro | configure:34826: gcc -c -g -O2 conftest.c >&5 | configure:34826: $? = 0 | configure:34834: result: yes | configure:34797: checking whether iswctype is declared without a macro | configure:34826: gcc -c -g -O2 conftest.c >&5 | configure:34826: $? = 0 | configure:34834: result: yes | configure:34797: checking whether wctrans is declared without a macro | configure:34826: gcc -c -g -O2 conftest.c >&5 | configure:34826: $? = 0 | configure:34834: result: yes | configure:34797: checking whether towctrans is declared without a macro | configure:34826: gcc -c -g -O2 conftest.c >&5 | configure:34826: $? = 0 | configure:34834: result: yes | configure:34857: checking whether wcwidth is declared | configure:34857: result: yes | configure:34886: checking whether wcwidth works reasonably in UTF-8 locales | configure:34937: gcc -o conftest -g -O2 conftest.c >&5 | configure:34937: $? = 0 | configure:34937: ./conftest | configure:34937: $? = 0 | configure:34948: result: yes | configure:35000: checking for stdint.h | configure:35000: result: yes | configure:35060: checking if malloc debugging is wanted | configure:35078: result: no | configure:35086: checking for sys/time.h | configure:35086: result: yes | configure:35086: checking sys/times.h usability | configure:35086: gcc -c -g -O2 conftest.c >&5 | configure:35086: $? = 0 | configure:35086: result: yes | configure:35086: checking sys/times.h presence | configure:35086: gcc -E conftest.c | configure:35086: $? = 0 | configure:35086: result: yes | configure:35086: checking for sys/times.h | configure:35086: result: yes | configure:35098: checking for sys/resource.h | configure:35098: gcc -c -g -O2 conftest.c >&5 | configure:35098: $? = 0 | configure:35098: result: yes | configure:35118: checking for times | configure:35118: gcc -o conftest -g -O2 conftest.c >&5 | configure:35118: $? = 0 | configure:35118: result: yes | configure:35128: checking whether getrusage is declared | configure:35128: gcc -c -g -O2 conftest.c >&5 | configure:35128: $? = 0 | configure:35128: result: yes | configure:35149: checking whether times is declared | configure:35149: gcc -c -g -O2 conftest.c >&5 | configure:35149: $? = 0 | configure:35149: result: yes | configure:35170: checking whether clock is declared | configure:35170: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:615:10: error: 'clock' undeclared (first use in this function); did you mean 'lockf'? | (void) clock; | ^~~~~ | lockf | conftest.c:615:10: note: each undeclared identifier is reported only once for each function it appears in | configure:35170: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | | #define HAVE_RAW_DECL_SIGACTION 1 | | #define HAVE_RAW_DECL_SIGADDSET 1 | | #define HAVE_RAW_DECL_SIGDELSET 1 | | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | | #define HAVE_RAW_DECL_SIGFILLSET 1 | | #define HAVE_RAW_DECL_SIGISMEMBER 1 | | #define HAVE_RAW_DECL_SIGPENDING 1 | | #define HAVE_RAW_DECL_SIGPROCMASK 1 | | #define GNULIB_TEST_SIGNBIT 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 HAVE_RAW_DECL_POSIX_SPAWN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define GNULIB_TEST_STAT 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_RAW_DECL_DPRINTF 1 | | #define HAVE_RAW_DECL_FSEEKO 1 | | #define HAVE_RAW_DECL_FTELLO 1 | | #define HAVE_RAW_DECL_GETDELIM 1 | | #define HAVE_RAW_DECL_GETLINE 1 | | #define HAVE_RAW_DECL_PCLOSE 1 | | #define HAVE_RAW_DECL_POPEN 1 | | #define HAVE_RAW_DECL_RENAMEAT 1 | | #define HAVE_RAW_DECL_SNPRINTF 1 | | #define HAVE_RAW_DECL_TMPFILE 1 | | #define HAVE_RAW_DECL_VDPRINTF 1 | | #define HAVE_RAW_DECL_VSNPRINTF 1 | | #define HAVE_RAW_DECL__EXIT 1 | | #define HAVE_RAW_DECL_ATOLL 1 | | #define HAVE_RAW_DECL_CANONICALIZE_FILE_NAME 1 | | #define HAVE_RAW_DECL_GETLOADAVG 1 | | #define HAVE_RAW_DECL_GETSUBOPT 1 | | #define HAVE_RAW_DECL_GRANTPT 1 | | #define HAVE_RAW_DECL_INITSTATE 1 | | #define HAVE_RAW_DECL_INITSTATE_R 1 | | #define HAVE_RAW_DECL_MKDTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMPS 1 | | #define HAVE_RAW_DECL_MKSTEMP 1 | | #define HAVE_RAW_DECL_MKSTEMPS 1 | | #define HAVE_RAW_DECL_POSIX_OPENPT 1 | | #define HAVE_RAW_DECL_PTSNAME 1 | | #define HAVE_RAW_DECL_PTSNAME_R 1 | | #define HAVE_RAW_DECL_RANDOM 1 | | #define HAVE_RAW_DECL_RANDOM_R 1 | | #define HAVE_RAW_DECL_REALPATH 1 | | #define HAVE_RAW_DECL_RPMATCH 1 | | #define HAVE_RAW_DECL_SECURE_GETENV 1 | | #define HAVE_RAW_DECL_SETENV 1 | | #define HAVE_RAW_DECL_SETSTATE 1 | | #define HAVE_RAW_DECL_SETSTATE_R 1 | | #define HAVE_RAW_DECL_SRANDOM 1 | | #define HAVE_RAW_DECL_SRANDOM_R 1 | | #define HAVE_RAW_DECL_STRTOD 1 | | #define HAVE_RAW_DECL_STRTOLL 1 | | #define HAVE_RAW_DECL_STRTOULL 1 | | #define HAVE_RAW_DECL_UNLOCKPT 1 | | #define HAVE_RAW_DECL_UNSETENV 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STRCHRNUL 1 | | #define GNULIB_TEST_STRCHRNUL 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRERROR_R 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define GNULIB_TEST_STRNLEN 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_RAW_DECL_WAITPID 1 | | #define HAVE_RAW_DECL_CHDIR 1 | | #define HAVE_RAW_DECL_CHOWN 1 | | #define HAVE_RAW_DECL_DUP 1 | | #define HAVE_RAW_DECL_DUP2 1 | | #define HAVE_RAW_DECL_DUP3 1 | | #define HAVE_RAW_DECL_ENVIRON 1 | | #define HAVE_RAW_DECL_EUIDACCESS 1 | | #define HAVE_RAW_DECL_FACCESSAT 1 | | #define HAVE_RAW_DECL_FCHDIR 1 | | #define HAVE_RAW_DECL_FCHOWNAT 1 | | #define HAVE_RAW_DECL_FDATASYNC 1 | | #define HAVE_RAW_DECL_FSYNC 1 | | #define HAVE_RAW_DECL_FTRUNCATE 1 | | #define HAVE_RAW_DECL_GETCWD 1 | | #define HAVE_RAW_DECL_GETDOMAINNAME 1 | | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | | #define HAVE_RAW_DECL_GETGROUPS 1 | | #define HAVE_RAW_DECL_GETHOSTNAME 1 | | #define HAVE_RAW_DECL_GETLOGIN 1 | | #define HAVE_RAW_DECL_GETLOGIN_R 1 | | #define HAVE_RAW_DECL_GETPAGESIZE 1 | | #define HAVE_RAW_DECL_GETUSERSHELL 1 | | #define HAVE_RAW_DECL_SETUSERSHELL 1 | | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | | #define HAVE_RAW_DECL_GROUP_MEMBER 1 | | #define HAVE_RAW_DECL_ISATTY 1 | | #define HAVE_RAW_DECL_LCHOWN 1 | | #define HAVE_RAW_DECL_LINK 1 | | #define HAVE_RAW_DECL_LINKAT 1 | | #define HAVE_RAW_DECL_LSEEK 1 | | #define HAVE_RAW_DECL_PIPE 1 | | #define HAVE_RAW_DECL_PIPE2 1 | | #define HAVE_RAW_DECL_PREAD 1 | | #define HAVE_RAW_DECL_PWRITE 1 | | #define HAVE_RAW_DECL_READLINK 1 | | #define HAVE_RAW_DECL_READLINKAT 1 | | #define HAVE_RAW_DECL_RMDIR 1 | | #define HAVE_RAW_DECL_SETHOSTNAME 1 | | #define HAVE_RAW_DECL_SLEEP 1 | | #define HAVE_RAW_DECL_SYMLINK 1 | | #define HAVE_RAW_DECL_SYMLINKAT 1 | | #define HAVE_RAW_DECL_TTYNAME_R 1 | | #define HAVE_RAW_DECL_UNLINK 1 | | #define HAVE_RAW_DECL_UNLINKAT 1 | | #define HAVE_RAW_DECL_USLEEP 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | #define GNULIB_TEST_VFPRINTF_POSIX 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_RAW_DECL_BTOWC 1 | | #define HAVE_RAW_DECL_WCTOB 1 | | #define HAVE_RAW_DECL_MBSINIT 1 | | #define HAVE_RAW_DECL_MBRTOWC 1 | | #define HAVE_RAW_DECL_MBRLEN 1 | | #define HAVE_RAW_DECL_MBSRTOWCS 1 | | #define HAVE_RAW_DECL_MBSNRTOWCS 1 | | #define HAVE_RAW_DECL_WCRTOMB 1 | | #define HAVE_RAW_DECL_WCSRTOMBS 1 | | #define HAVE_RAW_DECL_WCSNRTOMBS 1 | | #define HAVE_RAW_DECL_WCWIDTH 1 | | #define HAVE_RAW_DECL_WMEMCHR 1 | | #define HAVE_RAW_DECL_WMEMCMP 1 | | #define HAVE_RAW_DECL_WMEMCPY 1 | | #define HAVE_RAW_DECL_WMEMMOVE 1 | | #define HAVE_RAW_DECL_WMEMSET 1 | | #define HAVE_RAW_DECL_WCSLEN 1 | | #define HAVE_RAW_DECL_WCSNLEN 1 | | #define HAVE_RAW_DECL_WCSCPY 1 | | #define HAVE_RAW_DECL_WCPCPY 1 | | #define HAVE_RAW_DECL_WCSNCPY 1 | | #define HAVE_RAW_DECL_WCPNCPY 1 | | #define HAVE_RAW_DECL_WCSCAT 1 | | #define HAVE_RAW_DECL_WCSNCAT 1 | | #define HAVE_RAW_DECL_WCSCMP 1 | | #define HAVE_RAW_DECL_WCSNCMP 1 | | #define HAVE_RAW_DECL_WCSCASECMP 1 | | #define HAVE_RAW_DECL_WCSNCASECMP 1 | | #define HAVE_RAW_DECL_WCSCOLL 1 | | #define HAVE_RAW_DECL_WCSXFRM 1 | | #define HAVE_RAW_DECL_WCSDUP 1 | | #define HAVE_RAW_DECL_WCSCHR 1 | | #define HAVE_RAW_DECL_WCSRCHR 1 | | #define HAVE_RAW_DECL_WCSCSPN 1 | | #define HAVE_RAW_DECL_WCSSPN 1 | | #define HAVE_RAW_DECL_WCSPBRK 1 | | #define HAVE_RAW_DECL_WCSSTR 1 | | #define HAVE_RAW_DECL_WCSTOK 1 | | #define HAVE_RAW_DECL_WCSWIDTH 1 | | #define HAVE_TOWLOWER 1 | | #define HAVE_RAW_DECL_WCTYPE 1 | | #define HAVE_RAW_DECL_ISWCTYPE 1 | | #define HAVE_RAW_DECL_WCTRANS 1 | | #define HAVE_RAW_DECL_TOWCTRANS 1 | | #define HAVE_DECL_WCWIDTH 1 | | #define GNULIB_TEST_WCWIDTH 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_TIMES 1 | | #define HAVE_DECL_GETRUSAGE 1 | | #define HAVE_DECL_TIMES 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 | | #if HAVE_SYS_TIME_H | | # include | | #endif | | #if HAVE_SYS_TIMES_H | | # include | | #endif | | #if HAVE_SYS_RESOURCE_H | | # include | | #endif | | | | | | int | | main () | | { | | #ifndef clock | | #ifdef __cplusplus | | (void) clock; | | #else | | (void) clock; | | #endif | | #endif | | | | ; | | return 0; | | } | configure:35170: result: no | configure:35191: checking whether sysconf is declared | configure:35191: gcc -c -g -O2 conftest.c >&5 | configure:35191: $? = 0 | configure:35191: result: yes | configure:35214: checking for clock_t | configure:35214: gcc -c -g -O2 conftest.c >&5 | configure:35214: $? = 0 | configure:35214: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:613:22: error: expected expression before ')' token | if (sizeof ((clock_t))) | ^ | configure:35214: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | | #define HAVE_RAW_DECL_SIGACTION 1 | | #define HAVE_RAW_DECL_SIGADDSET 1 | | #define HAVE_RAW_DECL_SIGDELSET 1 | | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | | #define HAVE_RAW_DECL_SIGFILLSET 1 | | #define HAVE_RAW_DECL_SIGISMEMBER 1 | | #define HAVE_RAW_DECL_SIGPENDING 1 | | #define HAVE_RAW_DECL_SIGPROCMASK 1 | | #define GNULIB_TEST_SIGNBIT 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 HAVE_RAW_DECL_POSIX_SPAWN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define GNULIB_TEST_STAT 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_RAW_DECL_DPRINTF 1 | | #define HAVE_RAW_DECL_FSEEKO 1 | | #define HAVE_RAW_DECL_FTELLO 1 | | #define HAVE_RAW_DECL_GETDELIM 1 | | #define HAVE_RAW_DECL_GETLINE 1 | | #define HAVE_RAW_DECL_PCLOSE 1 | | #define HAVE_RAW_DECL_POPEN 1 | | #define HAVE_RAW_DECL_RENAMEAT 1 | | #define HAVE_RAW_DECL_SNPRINTF 1 | | #define HAVE_RAW_DECL_TMPFILE 1 | | #define HAVE_RAW_DECL_VDPRINTF 1 | | #define HAVE_RAW_DECL_VSNPRINTF 1 | | #define HAVE_RAW_DECL__EXIT 1 | | #define HAVE_RAW_DECL_ATOLL 1 | | #define HAVE_RAW_DECL_CANONICALIZE_FILE_NAME 1 | | #define HAVE_RAW_DECL_GETLOADAVG 1 | | #define HAVE_RAW_DECL_GETSUBOPT 1 | | #define HAVE_RAW_DECL_GRANTPT 1 | | #define HAVE_RAW_DECL_INITSTATE 1 | | #define HAVE_RAW_DECL_INITSTATE_R 1 | | #define HAVE_RAW_DECL_MKDTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMPS 1 | | #define HAVE_RAW_DECL_MKSTEMP 1 | | #define HAVE_RAW_DECL_MKSTEMPS 1 | | #define HAVE_RAW_DECL_POSIX_OPENPT 1 | | #define HAVE_RAW_DECL_PTSNAME 1 | | #define HAVE_RAW_DECL_PTSNAME_R 1 | | #define HAVE_RAW_DECL_RANDOM 1 | | #define HAVE_RAW_DECL_RANDOM_R 1 | | #define HAVE_RAW_DECL_REALPATH 1 | | #define HAVE_RAW_DECL_RPMATCH 1 | | #define HAVE_RAW_DECL_SECURE_GETENV 1 | | #define HAVE_RAW_DECL_SETENV 1 | | #define HAVE_RAW_DECL_SETSTATE 1 | | #define HAVE_RAW_DECL_SETSTATE_R 1 | | #define HAVE_RAW_DECL_SRANDOM 1 | | #define HAVE_RAW_DECL_SRANDOM_R 1 | | #define HAVE_RAW_DECL_STRTOD 1 | | #define HAVE_RAW_DECL_STRTOLL 1 | | #define HAVE_RAW_DECL_STRTOULL 1 | | #define HAVE_RAW_DECL_UNLOCKPT 1 | | #define HAVE_RAW_DECL_UNSETENV 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STRCHRNUL 1 | | #define GNULIB_TEST_STRCHRNUL 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRERROR_R 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define GNULIB_TEST_STRNLEN 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_RAW_DECL_WAITPID 1 | | #define HAVE_RAW_DECL_CHDIR 1 | | #define HAVE_RAW_DECL_CHOWN 1 | | #define HAVE_RAW_DECL_DUP 1 | | #define HAVE_RAW_DECL_DUP2 1 | | #define HAVE_RAW_DECL_DUP3 1 | | #define HAVE_RAW_DECL_ENVIRON 1 | | #define HAVE_RAW_DECL_EUIDACCESS 1 | | #define HAVE_RAW_DECL_FACCESSAT 1 | | #define HAVE_RAW_DECL_FCHDIR 1 | | #define HAVE_RAW_DECL_FCHOWNAT 1 | | #define HAVE_RAW_DECL_FDATASYNC 1 | | #define HAVE_RAW_DECL_FSYNC 1 | | #define HAVE_RAW_DECL_FTRUNCATE 1 | | #define HAVE_RAW_DECL_GETCWD 1 | | #define HAVE_RAW_DECL_GETDOMAINNAME 1 | | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | | #define HAVE_RAW_DECL_GETGROUPS 1 | | #define HAVE_RAW_DECL_GETHOSTNAME 1 | | #define HAVE_RAW_DECL_GETLOGIN 1 | | #define HAVE_RAW_DECL_GETLOGIN_R 1 | | #define HAVE_RAW_DECL_GETPAGESIZE 1 | | #define HAVE_RAW_DECL_GETUSERSHELL 1 | | #define HAVE_RAW_DECL_SETUSERSHELL 1 | | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | | #define HAVE_RAW_DECL_GROUP_MEMBER 1 | | #define HAVE_RAW_DECL_ISATTY 1 | | #define HAVE_RAW_DECL_LCHOWN 1 | | #define HAVE_RAW_DECL_LINK 1 | | #define HAVE_RAW_DECL_LINKAT 1 | | #define HAVE_RAW_DECL_LSEEK 1 | | #define HAVE_RAW_DECL_PIPE 1 | | #define HAVE_RAW_DECL_PIPE2 1 | | #define HAVE_RAW_DECL_PREAD 1 | | #define HAVE_RAW_DECL_PWRITE 1 | | #define HAVE_RAW_DECL_READLINK 1 | | #define HAVE_RAW_DECL_READLINKAT 1 | | #define HAVE_RAW_DECL_RMDIR 1 | | #define HAVE_RAW_DECL_SETHOSTNAME 1 | | #define HAVE_RAW_DECL_SLEEP 1 | | #define HAVE_RAW_DECL_SYMLINK 1 | | #define HAVE_RAW_DECL_SYMLINKAT 1 | | #define HAVE_RAW_DECL_TTYNAME_R 1 | | #define HAVE_RAW_DECL_UNLINK 1 | | #define HAVE_RAW_DECL_UNLINKAT 1 | | #define HAVE_RAW_DECL_USLEEP 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | #define GNULIB_TEST_VFPRINTF_POSIX 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_RAW_DECL_BTOWC 1 | | #define HAVE_RAW_DECL_WCTOB 1 | | #define HAVE_RAW_DECL_MBSINIT 1 | | #define HAVE_RAW_DECL_MBRTOWC 1 | | #define HAVE_RAW_DECL_MBRLEN 1 | | #define HAVE_RAW_DECL_MBSRTOWCS 1 | | #define HAVE_RAW_DECL_MBSNRTOWCS 1 | | #define HAVE_RAW_DECL_WCRTOMB 1 | | #define HAVE_RAW_DECL_WCSRTOMBS 1 | | #define HAVE_RAW_DECL_WCSNRTOMBS 1 | | #define HAVE_RAW_DECL_WCWIDTH 1 | | #define HAVE_RAW_DECL_WMEMCHR 1 | | #define HAVE_RAW_DECL_WMEMCMP 1 | | #define HAVE_RAW_DECL_WMEMCPY 1 | | #define HAVE_RAW_DECL_WMEMMOVE 1 | | #define HAVE_RAW_DECL_WMEMSET 1 | | #define HAVE_RAW_DECL_WCSLEN 1 | | #define HAVE_RAW_DECL_WCSNLEN 1 | | #define HAVE_RAW_DECL_WCSCPY 1 | | #define HAVE_RAW_DECL_WCPCPY 1 | | #define HAVE_RAW_DECL_WCSNCPY 1 | | #define HAVE_RAW_DECL_WCPNCPY 1 | | #define HAVE_RAW_DECL_WCSCAT 1 | | #define HAVE_RAW_DECL_WCSNCAT 1 | | #define HAVE_RAW_DECL_WCSCMP 1 | | #define HAVE_RAW_DECL_WCSNCMP 1 | | #define HAVE_RAW_DECL_WCSCASECMP 1 | | #define HAVE_RAW_DECL_WCSNCASECMP 1 | | #define HAVE_RAW_DECL_WCSCOLL 1 | | #define HAVE_RAW_DECL_WCSXFRM 1 | | #define HAVE_RAW_DECL_WCSDUP 1 | | #define HAVE_RAW_DECL_WCSCHR 1 | | #define HAVE_RAW_DECL_WCSRCHR 1 | | #define HAVE_RAW_DECL_WCSCSPN 1 | | #define HAVE_RAW_DECL_WCSSPN 1 | | #define HAVE_RAW_DECL_WCSPBRK 1 | | #define HAVE_RAW_DECL_WCSSTR 1 | | #define HAVE_RAW_DECL_WCSTOK 1 | | #define HAVE_RAW_DECL_WCSWIDTH 1 | | #define HAVE_TOWLOWER 1 | | #define HAVE_RAW_DECL_WCTYPE 1 | | #define HAVE_RAW_DECL_ISWCTYPE 1 | | #define HAVE_RAW_DECL_WCTRANS 1 | | #define HAVE_RAW_DECL_TOWCTRANS 1 | | #define HAVE_DECL_WCWIDTH 1 | | #define GNULIB_TEST_WCWIDTH 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_TIMES 1 | | #define HAVE_DECL_GETRUSAGE 1 | | #define HAVE_DECL_TIMES 1 | | #define HAVE_DECL_CLOCK 0 | | #define HAVE_DECL_SYSCONF 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 | | #if HAVE_SYS_TIME_H | | # include | | #endif | | #if HAVE_SYS_TIMES_H | | # include | | #endif | | #if HAVE_SYS_RESOURCE_H | | # include | | #endif | | | | | | int | | main () | | { | | if (sizeof ((clock_t))) | | return 0; | | ; | | return 0; | | } | configure:35214: result: yes | configure:35234: checking for struct tms | configure:35234: gcc -c -g -O2 conftest.c >&5 | configure:35234: $? = 0 | configure:35234: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:614:25: error: expected expression before ')' token | if (sizeof ((struct tms))) | ^ | configure:35234: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | | #define HAVE_RAW_DECL_SIGACTION 1 | | #define HAVE_RAW_DECL_SIGADDSET 1 | | #define HAVE_RAW_DECL_SIGDELSET 1 | | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | | #define HAVE_RAW_DECL_SIGFILLSET 1 | | #define HAVE_RAW_DECL_SIGISMEMBER 1 | | #define HAVE_RAW_DECL_SIGPENDING 1 | | #define HAVE_RAW_DECL_SIGPROCMASK 1 | | #define GNULIB_TEST_SIGNBIT 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 HAVE_RAW_DECL_POSIX_SPAWN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define GNULIB_TEST_STAT 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_RAW_DECL_DPRINTF 1 | | #define HAVE_RAW_DECL_FSEEKO 1 | | #define HAVE_RAW_DECL_FTELLO 1 | | #define HAVE_RAW_DECL_GETDELIM 1 | | #define HAVE_RAW_DECL_GETLINE 1 | | #define HAVE_RAW_DECL_PCLOSE 1 | | #define HAVE_RAW_DECL_POPEN 1 | | #define HAVE_RAW_DECL_RENAMEAT 1 | | #define HAVE_RAW_DECL_SNPRINTF 1 | | #define HAVE_RAW_DECL_TMPFILE 1 | | #define HAVE_RAW_DECL_VDPRINTF 1 | | #define HAVE_RAW_DECL_VSNPRINTF 1 | | #define HAVE_RAW_DECL__EXIT 1 | | #define HAVE_RAW_DECL_ATOLL 1 | | #define HAVE_RAW_DECL_CANONICALIZE_FILE_NAME 1 | | #define HAVE_RAW_DECL_GETLOADAVG 1 | | #define HAVE_RAW_DECL_GETSUBOPT 1 | | #define HAVE_RAW_DECL_GRANTPT 1 | | #define HAVE_RAW_DECL_INITSTATE 1 | | #define HAVE_RAW_DECL_INITSTATE_R 1 | | #define HAVE_RAW_DECL_MKDTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMPS 1 | | #define HAVE_RAW_DECL_MKSTEMP 1 | | #define HAVE_RAW_DECL_MKSTEMPS 1 | | #define HAVE_RAW_DECL_POSIX_OPENPT 1 | | #define HAVE_RAW_DECL_PTSNAME 1 | | #define HAVE_RAW_DECL_PTSNAME_R 1 | | #define HAVE_RAW_DECL_RANDOM 1 | | #define HAVE_RAW_DECL_RANDOM_R 1 | | #define HAVE_RAW_DECL_REALPATH 1 | | #define HAVE_RAW_DECL_RPMATCH 1 | | #define HAVE_RAW_DECL_SECURE_GETENV 1 | | #define HAVE_RAW_DECL_SETENV 1 | | #define HAVE_RAW_DECL_SETSTATE 1 | | #define HAVE_RAW_DECL_SETSTATE_R 1 | | #define HAVE_RAW_DECL_SRANDOM 1 | | #define HAVE_RAW_DECL_SRANDOM_R 1 | | #define HAVE_RAW_DECL_STRTOD 1 | | #define HAVE_RAW_DECL_STRTOLL 1 | | #define HAVE_RAW_DECL_STRTOULL 1 | | #define HAVE_RAW_DECL_UNLOCKPT 1 | | #define HAVE_RAW_DECL_UNSETENV 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STRCHRNUL 1 | | #define GNULIB_TEST_STRCHRNUL 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRERROR_R 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define GNULIB_TEST_STRNLEN 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_RAW_DECL_WAITPID 1 | | #define HAVE_RAW_DECL_CHDIR 1 | | #define HAVE_RAW_DECL_CHOWN 1 | | #define HAVE_RAW_DECL_DUP 1 | | #define HAVE_RAW_DECL_DUP2 1 | | #define HAVE_RAW_DECL_DUP3 1 | | #define HAVE_RAW_DECL_ENVIRON 1 | | #define HAVE_RAW_DECL_EUIDACCESS 1 | | #define HAVE_RAW_DECL_FACCESSAT 1 | | #define HAVE_RAW_DECL_FCHDIR 1 | | #define HAVE_RAW_DECL_FCHOWNAT 1 | | #define HAVE_RAW_DECL_FDATASYNC 1 | | #define HAVE_RAW_DECL_FSYNC 1 | | #define HAVE_RAW_DECL_FTRUNCATE 1 | | #define HAVE_RAW_DECL_GETCWD 1 | | #define HAVE_RAW_DECL_GETDOMAINNAME 1 | | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | | #define HAVE_RAW_DECL_GETGROUPS 1 | | #define HAVE_RAW_DECL_GETHOSTNAME 1 | | #define HAVE_RAW_DECL_GETLOGIN 1 | | #define HAVE_RAW_DECL_GETLOGIN_R 1 | | #define HAVE_RAW_DECL_GETPAGESIZE 1 | | #define HAVE_RAW_DECL_GETUSERSHELL 1 | | #define HAVE_RAW_DECL_SETUSERSHELL 1 | | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | | #define HAVE_RAW_DECL_GROUP_MEMBER 1 | | #define HAVE_RAW_DECL_ISATTY 1 | | #define HAVE_RAW_DECL_LCHOWN 1 | | #define HAVE_RAW_DECL_LINK 1 | | #define HAVE_RAW_DECL_LINKAT 1 | | #define HAVE_RAW_DECL_LSEEK 1 | | #define HAVE_RAW_DECL_PIPE 1 | | #define HAVE_RAW_DECL_PIPE2 1 | | #define HAVE_RAW_DECL_PREAD 1 | | #define HAVE_RAW_DECL_PWRITE 1 | | #define HAVE_RAW_DECL_READLINK 1 | | #define HAVE_RAW_DECL_READLINKAT 1 | | #define HAVE_RAW_DECL_RMDIR 1 | | #define HAVE_RAW_DECL_SETHOSTNAME 1 | | #define HAVE_RAW_DECL_SLEEP 1 | | #define HAVE_RAW_DECL_SYMLINK 1 | | #define HAVE_RAW_DECL_SYMLINKAT 1 | | #define HAVE_RAW_DECL_TTYNAME_R 1 | | #define HAVE_RAW_DECL_UNLINK 1 | | #define HAVE_RAW_DECL_UNLINKAT 1 | | #define HAVE_RAW_DECL_USLEEP 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | #define GNULIB_TEST_VFPRINTF_POSIX 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_RAW_DECL_BTOWC 1 | | #define HAVE_RAW_DECL_WCTOB 1 | | #define HAVE_RAW_DECL_MBSINIT 1 | | #define HAVE_RAW_DECL_MBRTOWC 1 | | #define HAVE_RAW_DECL_MBRLEN 1 | | #define HAVE_RAW_DECL_MBSRTOWCS 1 | | #define HAVE_RAW_DECL_MBSNRTOWCS 1 | | #define HAVE_RAW_DECL_WCRTOMB 1 | | #define HAVE_RAW_DECL_WCSRTOMBS 1 | | #define HAVE_RAW_DECL_WCSNRTOMBS 1 | | #define HAVE_RAW_DECL_WCWIDTH 1 | | #define HAVE_RAW_DECL_WMEMCHR 1 | | #define HAVE_RAW_DECL_WMEMCMP 1 | | #define HAVE_RAW_DECL_WMEMCPY 1 | | #define HAVE_RAW_DECL_WMEMMOVE 1 | | #define HAVE_RAW_DECL_WMEMSET 1 | | #define HAVE_RAW_DECL_WCSLEN 1 | | #define HAVE_RAW_DECL_WCSNLEN 1 | | #define HAVE_RAW_DECL_WCSCPY 1 | | #define HAVE_RAW_DECL_WCPCPY 1 | | #define HAVE_RAW_DECL_WCSNCPY 1 | | #define HAVE_RAW_DECL_WCPNCPY 1 | | #define HAVE_RAW_DECL_WCSCAT 1 | | #define HAVE_RAW_DECL_WCSNCAT 1 | | #define HAVE_RAW_DECL_WCSCMP 1 | | #define HAVE_RAW_DECL_WCSNCMP 1 | | #define HAVE_RAW_DECL_WCSCASECMP 1 | | #define HAVE_RAW_DECL_WCSNCASECMP 1 | | #define HAVE_RAW_DECL_WCSCOLL 1 | | #define HAVE_RAW_DECL_WCSXFRM 1 | | #define HAVE_RAW_DECL_WCSDUP 1 | | #define HAVE_RAW_DECL_WCSCHR 1 | | #define HAVE_RAW_DECL_WCSRCHR 1 | | #define HAVE_RAW_DECL_WCSCSPN 1 | | #define HAVE_RAW_DECL_WCSSPN 1 | | #define HAVE_RAW_DECL_WCSPBRK 1 | | #define HAVE_RAW_DECL_WCSSTR 1 | | #define HAVE_RAW_DECL_WCSTOK 1 | | #define HAVE_RAW_DECL_WCSWIDTH 1 | | #define HAVE_TOWLOWER 1 | | #define HAVE_RAW_DECL_WCTYPE 1 | | #define HAVE_RAW_DECL_ISWCTYPE 1 | | #define HAVE_RAW_DECL_WCTRANS 1 | | #define HAVE_RAW_DECL_TOWCTRANS 1 | | #define HAVE_DECL_WCWIDTH 1 | | #define GNULIB_TEST_WCWIDTH 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_TIMES 1 | | #define HAVE_DECL_GETRUSAGE 1 | | #define HAVE_DECL_TIMES 1 | | #define HAVE_DECL_CLOCK 0 | | #define HAVE_DECL_SYSCONF 1 | | #define HAVE_CLOCK_T 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 | | #if HAVE_SYS_TIME_H | | # include | | #endif | | #if HAVE_SYS_TIMES_H | | # include | | #endif | | #if HAVE_SYS_RESOURCE_H | | # include | | #endif | | | | | | int | | main () | | { | | if (sizeof ((struct tms))) | | return 0; | | ; | | return 0; | | } | configure:35234: result: yes | configure:35261: checking whether NLS is requested | configure:35270: result: yes | configure:35310: checking for msgfmt | configure: trying /bin/msgfmt... | 0 translated messages. | configure:35342: result: /bin/msgfmt | configure:35351: checking for gmsgfmt | configure:35382: result: /bin/msgfmt | configure:35432: checking for xgettext | configure: trying /bin/xgettext... | /bin/xgettext: warning: file '/dev/null' extension '' is unknown; will try C | configure:35464: result: /bin/xgettext | configure:35509: checking for msgmerge | configure: trying /bin/msgmerge... | configure:35540: result: /bin/msgmerge | configure:36047: checking for CFPreferencesCopyAppValue | configure:36065: gcc -o conftest -g -O2 conftest.c -Wl,-framework -Wl,CoreFoundation >&5 | conftest.c:568:10: fatal error: CoreFoundation/CFPreferences.h: No such file or directory | #include | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:36065: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | | #define HAVE_RAW_DECL_SIGACTION 1 | | #define HAVE_RAW_DECL_SIGADDSET 1 | | #define HAVE_RAW_DECL_SIGDELSET 1 | | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | | #define HAVE_RAW_DECL_SIGFILLSET 1 | | #define HAVE_RAW_DECL_SIGISMEMBER 1 | | #define HAVE_RAW_DECL_SIGPENDING 1 | | #define HAVE_RAW_DECL_SIGPROCMASK 1 | | #define GNULIB_TEST_SIGNBIT 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 HAVE_RAW_DECL_POSIX_SPAWN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define GNULIB_TEST_STAT 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_RAW_DECL_DPRINTF 1 | | #define HAVE_RAW_DECL_FSEEKO 1 | | #define HAVE_RAW_DECL_FTELLO 1 | | #define HAVE_RAW_DECL_GETDELIM 1 | | #define HAVE_RAW_DECL_GETLINE 1 | | #define HAVE_RAW_DECL_PCLOSE 1 | | #define HAVE_RAW_DECL_POPEN 1 | | #define HAVE_RAW_DECL_RENAMEAT 1 | | #define HAVE_RAW_DECL_SNPRINTF 1 | | #define HAVE_RAW_DECL_TMPFILE 1 | | #define HAVE_RAW_DECL_VDPRINTF 1 | | #define HAVE_RAW_DECL_VSNPRINTF 1 | | #define HAVE_RAW_DECL__EXIT 1 | | #define HAVE_RAW_DECL_ATOLL 1 | | #define HAVE_RAW_DECL_CANONICALIZE_FILE_NAME 1 | | #define HAVE_RAW_DECL_GETLOADAVG 1 | | #define HAVE_RAW_DECL_GETSUBOPT 1 | | #define HAVE_RAW_DECL_GRANTPT 1 | | #define HAVE_RAW_DECL_INITSTATE 1 | | #define HAVE_RAW_DECL_INITSTATE_R 1 | | #define HAVE_RAW_DECL_MKDTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMPS 1 | | #define HAVE_RAW_DECL_MKSTEMP 1 | | #define HAVE_RAW_DECL_MKSTEMPS 1 | | #define HAVE_RAW_DECL_POSIX_OPENPT 1 | | #define HAVE_RAW_DECL_PTSNAME 1 | | #define HAVE_RAW_DECL_PTSNAME_R 1 | | #define HAVE_RAW_DECL_RANDOM 1 | | #define HAVE_RAW_DECL_RANDOM_R 1 | | #define HAVE_RAW_DECL_REALPATH 1 | | #define HAVE_RAW_DECL_RPMATCH 1 | | #define HAVE_RAW_DECL_SECURE_GETENV 1 | | #define HAVE_RAW_DECL_SETENV 1 | | #define HAVE_RAW_DECL_SETSTATE 1 | | #define HAVE_RAW_DECL_SETSTATE_R 1 | | #define HAVE_RAW_DECL_SRANDOM 1 | | #define HAVE_RAW_DECL_SRANDOM_R 1 | | #define HAVE_RAW_DECL_STRTOD 1 | | #define HAVE_RAW_DECL_STRTOLL 1 | | #define HAVE_RAW_DECL_STRTOULL 1 | | #define HAVE_RAW_DECL_UNLOCKPT 1 | | #define HAVE_RAW_DECL_UNSETENV 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STRCHRNUL 1 | | #define GNULIB_TEST_STRCHRNUL 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRERROR_R 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define GNULIB_TEST_STRNLEN 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_RAW_DECL_WAITPID 1 | | #define HAVE_RAW_DECL_CHDIR 1 | | #define HAVE_RAW_DECL_CHOWN 1 | | #define HAVE_RAW_DECL_DUP 1 | | #define HAVE_RAW_DECL_DUP2 1 | | #define HAVE_RAW_DECL_DUP3 1 | | #define HAVE_RAW_DECL_ENVIRON 1 | | #define HAVE_RAW_DECL_EUIDACCESS 1 | | #define HAVE_RAW_DECL_FACCESSAT 1 | | #define HAVE_RAW_DECL_FCHDIR 1 | | #define HAVE_RAW_DECL_FCHOWNAT 1 | | #define HAVE_RAW_DECL_FDATASYNC 1 | | #define HAVE_RAW_DECL_FSYNC 1 | | #define HAVE_RAW_DECL_FTRUNCATE 1 | | #define HAVE_RAW_DECL_GETCWD 1 | | #define HAVE_RAW_DECL_GETDOMAINNAME 1 | | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | | #define HAVE_RAW_DECL_GETGROUPS 1 | | #define HAVE_RAW_DECL_GETHOSTNAME 1 | | #define HAVE_RAW_DECL_GETLOGIN 1 | | #define HAVE_RAW_DECL_GETLOGIN_R 1 | | #define HAVE_RAW_DECL_GETPAGESIZE 1 | | #define HAVE_RAW_DECL_GETUSERSHELL 1 | | #define HAVE_RAW_DECL_SETUSERSHELL 1 | | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | | #define HAVE_RAW_DECL_GROUP_MEMBER 1 | | #define HAVE_RAW_DECL_ISATTY 1 | | #define HAVE_RAW_DECL_LCHOWN 1 | | #define HAVE_RAW_DECL_LINK 1 | | #define HAVE_RAW_DECL_LINKAT 1 | | #define HAVE_RAW_DECL_LSEEK 1 | | #define HAVE_RAW_DECL_PIPE 1 | | #define HAVE_RAW_DECL_PIPE2 1 | | #define HAVE_RAW_DECL_PREAD 1 | | #define HAVE_RAW_DECL_PWRITE 1 | | #define HAVE_RAW_DECL_READLINK 1 | | #define HAVE_RAW_DECL_READLINKAT 1 | | #define HAVE_RAW_DECL_RMDIR 1 | | #define HAVE_RAW_DECL_SETHOSTNAME 1 | | #define HAVE_RAW_DECL_SLEEP 1 | | #define HAVE_RAW_DECL_SYMLINK 1 | | #define HAVE_RAW_DECL_SYMLINKAT 1 | | #define HAVE_RAW_DECL_TTYNAME_R 1 | | #define HAVE_RAW_DECL_UNLINK 1 | | #define HAVE_RAW_DECL_UNLINKAT 1 | | #define HAVE_RAW_DECL_USLEEP 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | #define GNULIB_TEST_VFPRINTF_POSIX 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_RAW_DECL_BTOWC 1 | | #define HAVE_RAW_DECL_WCTOB 1 | | #define HAVE_RAW_DECL_MBSINIT 1 | | #define HAVE_RAW_DECL_MBRTOWC 1 | | #define HAVE_RAW_DECL_MBRLEN 1 | | #define HAVE_RAW_DECL_MBSRTOWCS 1 | | #define HAVE_RAW_DECL_MBSNRTOWCS 1 | | #define HAVE_RAW_DECL_WCRTOMB 1 | | #define HAVE_RAW_DECL_WCSRTOMBS 1 | | #define HAVE_RAW_DECL_WCSNRTOMBS 1 | | #define HAVE_RAW_DECL_WCWIDTH 1 | | #define HAVE_RAW_DECL_WMEMCHR 1 | | #define HAVE_RAW_DECL_WMEMCMP 1 | | #define HAVE_RAW_DECL_WMEMCPY 1 | | #define HAVE_RAW_DECL_WMEMMOVE 1 | | #define HAVE_RAW_DECL_WMEMSET 1 | | #define HAVE_RAW_DECL_WCSLEN 1 | | #define HAVE_RAW_DECL_WCSNLEN 1 | | #define HAVE_RAW_DECL_WCSCPY 1 | | #define HAVE_RAW_DECL_WCPCPY 1 | | #define HAVE_RAW_DECL_WCSNCPY 1 | | #define HAVE_RAW_DECL_WCPNCPY 1 | | #define HAVE_RAW_DECL_WCSCAT 1 | | #define HAVE_RAW_DECL_WCSNCAT 1 | | #define HAVE_RAW_DECL_WCSCMP 1 | | #define HAVE_RAW_DECL_WCSNCMP 1 | | #define HAVE_RAW_DECL_WCSCASECMP 1 | | #define HAVE_RAW_DECL_WCSNCASECMP 1 | | #define HAVE_RAW_DECL_WCSCOLL 1 | | #define HAVE_RAW_DECL_WCSXFRM 1 | | #define HAVE_RAW_DECL_WCSDUP 1 | | #define HAVE_RAW_DECL_WCSCHR 1 | | #define HAVE_RAW_DECL_WCSRCHR 1 | | #define HAVE_RAW_DECL_WCSCSPN 1 | | #define HAVE_RAW_DECL_WCSSPN 1 | | #define HAVE_RAW_DECL_WCSPBRK 1 | | #define HAVE_RAW_DECL_WCSSTR 1 | | #define HAVE_RAW_DECL_WCSTOK 1 | | #define HAVE_RAW_DECL_WCSWIDTH 1 | | #define HAVE_TOWLOWER 1 | | #define HAVE_RAW_DECL_WCTYPE 1 | | #define HAVE_RAW_DECL_ISWCTYPE 1 | | #define HAVE_RAW_DECL_WCTRANS 1 | | #define HAVE_RAW_DECL_TOWCTRANS 1 | | #define HAVE_DECL_WCWIDTH 1 | | #define GNULIB_TEST_WCWIDTH 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_TIMES 1 | | #define HAVE_DECL_GETRUSAGE 1 | | #define HAVE_DECL_TIMES 1 | | #define HAVE_DECL_CLOCK 0 | | #define HAVE_DECL_SYSCONF 1 | | #define HAVE_CLOCK_T 1 | | #define HAVE_STRUCT_TMS 1 | | /* end confdefs.h. */ | | #include | | int | | main () | | { | | CFPreferencesCopyAppValue(NULL, NULL) | | ; | | return 0; | | } | configure:36074: result: no | configure:36081: checking for CFLocaleCopyCurrent | configure:36099: gcc -o conftest -g -O2 conftest.c -Wl,-framework -Wl,CoreFoundation >&5 | conftest.c:568:10: fatal error: CoreFoundation/CFLocale.h: No such file or directory | #include | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:36099: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.0.4" | | #define PACKAGE_STRING "GNU Bison 3.0.4" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2015 | | #define PACKAGE "bison" | | #define VERSION "3.0.4" | | #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 __USE_MINGW_ANSI_STDIO 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _DARWIN_USE_64_BIT_INODE 1 | | #define M4 "/tools/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_LOCALE_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_SYS_STAT_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LSTAT 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STRDUP 1 | | #define HAVE_CATGETS 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_DECL_GETENV 1 | | #define restrict __restrict | | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | | #define HAVE_RAW_DECL_IMAXABS 1 | | #define HAVE_RAW_DECL_IMAXDIV 1 | | #define HAVE_RAW_DECL_STRTOIMAX 1 | | #define HAVE_RAW_DECL_STRTOUMAX 1 | | #define HAVE_INTTYPES_H 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_FFSL 1 | | #define HAVE_RAW_DECL_FFSLL 1 | | #define HAVE_RAW_DECL_MEMMEM 1 | | #define HAVE_RAW_DECL_MEMPCPY 1 | | #define HAVE_RAW_DECL_MEMRCHR 1 | | #define HAVE_RAW_DECL_RAWMEMCHR 1 | | #define HAVE_RAW_DECL_STPCPY 1 | | #define HAVE_RAW_DECL_STPNCPY 1 | | #define HAVE_RAW_DECL_STRCHRNUL 1 | | #define HAVE_RAW_DECL_STRDUP 1 | | #define HAVE_RAW_DECL_STRNCAT 1 | | #define HAVE_RAW_DECL_STRNDUP 1 | | #define HAVE_RAW_DECL_STRNLEN 1 | | #define HAVE_RAW_DECL_STRPBRK 1 | | #define HAVE_RAW_DECL_STRSEP 1 | | #define HAVE_RAW_DECL_STRCASESTR 1 | | #define HAVE_RAW_DECL_STRTOK_R 1 | | #define HAVE_RAW_DECL_STRERROR_R 1 | | #define HAVE_RAW_DECL_STRSIGNAL 1 | | #define HAVE_RAW_DECL_STRVERSCMP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSTAT 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define GNULIB_TEST_GETOPT_GNU 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define HAVE_ISNANF_IN_LIBC 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | | #define HAVE_RAW_DECL_ACOSL 1 | | #define HAVE_RAW_DECL_ASINF 1 | | #define HAVE_RAW_DECL_ASINL 1 | | #define HAVE_RAW_DECL_ATANF 1 | | #define HAVE_RAW_DECL_ATANL 1 | | #define HAVE_RAW_DECL_CBRT 1 | | #define HAVE_RAW_DECL_CBRTF 1 | | #define HAVE_RAW_DECL_CBRTL 1 | | #define HAVE_RAW_DECL_CEILF 1 | | #define HAVE_RAW_DECL_CEILL 1 | | #define HAVE_RAW_DECL_COPYSIGN 1 | | #define HAVE_RAW_DECL_COPYSIGNF 1 | | #define HAVE_RAW_DECL_COPYSIGNL 1 | | #define HAVE_RAW_DECL_COSF 1 | | #define HAVE_RAW_DECL_COSL 1 | | #define HAVE_RAW_DECL_COSHF 1 | | #define HAVE_RAW_DECL_EXPF 1 | | #define HAVE_RAW_DECL_EXPL 1 | | #define HAVE_RAW_DECL_EXP2 1 | | #define HAVE_RAW_DECL_EXP2F 1 | | #define HAVE_RAW_DECL_EXP2L 1 | | #define HAVE_RAW_DECL_EXPM1 1 | | #define HAVE_RAW_DECL_EXPM1F 1 | | #define HAVE_RAW_DECL_EXPM1L 1 | | #define HAVE_RAW_DECL_FABSF 1 | | #define HAVE_RAW_DECL_FABSL 1 | | #define HAVE_RAW_DECL_FLOORF 1 | | #define HAVE_RAW_DECL_FLOORL 1 | | #define HAVE_RAW_DECL_FMA 1 | | #define HAVE_RAW_DECL_FMAF 1 | | #define HAVE_RAW_DECL_FMAL 1 | | #define HAVE_RAW_DECL_FMOD 1 | | #define HAVE_RAW_DECL_FMODF 1 | | #define HAVE_RAW_DECL_FMODL 1 | | #define HAVE_RAW_DECL_FREXPF 1 | | #define HAVE_RAW_DECL_FREXPL 1 | | #define HAVE_RAW_DECL_HYPOTF 1 | | #define HAVE_RAW_DECL_HYPOTL 1 | | #define HAVE_RAW_DECL_ILOGB 1 | | #define HAVE_RAW_DECL_ILOGBF 1 | | #define HAVE_RAW_DECL_ILOGBL 1 | | #define HAVE_RAW_DECL_LDEXPF 1 | | #define HAVE_RAW_DECL_LDEXPL 1 | | #define HAVE_RAW_DECL_LOG 1 | | #define HAVE_RAW_DECL_LOGF 1 | | #define HAVE_RAW_DECL_LOGL 1 | | #define HAVE_RAW_DECL_LOG10 1 | | #define HAVE_RAW_DECL_LOG10F 1 | | #define HAVE_RAW_DECL_LOG10L 1 | | #define HAVE_RAW_DECL_LOG1P 1 | | #define HAVE_RAW_DECL_LOG1PF 1 | | #define HAVE_RAW_DECL_LOG1PL 1 | | #define HAVE_RAW_DECL_LOG2 1 | | #define HAVE_RAW_DECL_LOG2F 1 | | #define HAVE_RAW_DECL_LOG2L 1 | | #define HAVE_RAW_DECL_LOGB 1 | | #define HAVE_RAW_DECL_LOGBF 1 | | #define HAVE_RAW_DECL_LOGBL 1 | | #define HAVE_RAW_DECL_MODF 1 | | #define HAVE_RAW_DECL_MODFF 1 | | #define HAVE_RAW_DECL_MODFL 1 | | #define HAVE_RAW_DECL_POWF 1 | | #define HAVE_RAW_DECL_REMAINDER 1 | | #define HAVE_RAW_DECL_REMAINDERF 1 | | #define HAVE_RAW_DECL_REMAINDERL 1 | | #define HAVE_RAW_DECL_RINT 1 | | #define HAVE_RAW_DECL_RINTF 1 | | #define HAVE_RAW_DECL_RINTL 1 | | #define HAVE_RAW_DECL_ROUND 1 | | #define HAVE_RAW_DECL_ROUNDF 1 | | #define HAVE_RAW_DECL_ROUNDL 1 | | #define HAVE_RAW_DECL_SINF 1 | | #define HAVE_RAW_DECL_SINL 1 | | #define HAVE_RAW_DECL_SINHF 1 | | #define HAVE_RAW_DECL_SQRTF 1 | | #define HAVE_RAW_DECL_SQRTL 1 | | #define HAVE_RAW_DECL_TANF 1 | | #define HAVE_RAW_DECL_TANL 1 | | #define HAVE_RAW_DECL_TANHF 1 | | #define HAVE_RAW_DECL_TRUNC 1 | | #define HAVE_RAW_DECL_TRUNCF 1 | | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | | #define GNULIB_TEST_RAWMEMCHR 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | | #define HAVE_RAW_DECL_SIGACTION 1 | | #define HAVE_RAW_DECL_SIGADDSET 1 | | #define HAVE_RAW_DECL_SIGDELSET 1 | | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | | #define HAVE_RAW_DECL_SIGFILLSET 1 | | #define HAVE_RAW_DECL_SIGISMEMBER 1 | | #define HAVE_RAW_DECL_SIGPENDING 1 | | #define HAVE_RAW_DECL_SIGPROCMASK 1 | | #define GNULIB_TEST_SIGNBIT 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 HAVE_RAW_DECL_POSIX_SPAWN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define GNULIB_TEST_STAT 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_RAW_DECL_DPRINTF 1 | | #define HAVE_RAW_DECL_FSEEKO 1 | | #define HAVE_RAW_DECL_FTELLO 1 | | #define HAVE_RAW_DECL_GETDELIM 1 | | #define HAVE_RAW_DECL_GETLINE 1 | | #define HAVE_RAW_DECL_PCLOSE 1 | | #define HAVE_RAW_DECL_POPEN 1 | | #define HAVE_RAW_DECL_RENAMEAT 1 | | #define HAVE_RAW_DECL_SNPRINTF 1 | | #define HAVE_RAW_DECL_TMPFILE 1 | | #define HAVE_RAW_DECL_VDPRINTF 1 | | #define HAVE_RAW_DECL_VSNPRINTF 1 | | #define HAVE_RAW_DECL__EXIT 1 | | #define HAVE_RAW_DECL_ATOLL 1 | | #define HAVE_RAW_DECL_CANONICALIZE_FILE_NAME 1 | | #define HAVE_RAW_DECL_GETLOADAVG 1 | | #define HAVE_RAW_DECL_GETSUBOPT 1 | | #define HAVE_RAW_DECL_GRANTPT 1 | | #define HAVE_RAW_DECL_INITSTATE 1 | | #define HAVE_RAW_DECL_INITSTATE_R 1 | | #define HAVE_RAW_DECL_MKDTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMP 1 | | #define HAVE_RAW_DECL_MKOSTEMPS 1 | | #define HAVE_RAW_DECL_MKSTEMP 1 | | #define HAVE_RAW_DECL_MKSTEMPS 1 | | #define HAVE_RAW_DECL_POSIX_OPENPT 1 | | #define HAVE_RAW_DECL_PTSNAME 1 | | #define HAVE_RAW_DECL_PTSNAME_R 1 | | #define HAVE_RAW_DECL_RANDOM 1 | | #define HAVE_RAW_DECL_RANDOM_R 1 | | #define HAVE_RAW_DECL_REALPATH 1 | | #define HAVE_RAW_DECL_RPMATCH 1 | | #define HAVE_RAW_DECL_SECURE_GETENV 1 | | #define HAVE_RAW_DECL_SETENV 1 | | #define HAVE_RAW_DECL_SETSTATE 1 | | #define HAVE_RAW_DECL_SETSTATE_R 1 | | #define HAVE_RAW_DECL_SRANDOM 1 | | #define HAVE_RAW_DECL_SRANDOM_R 1 | | #define HAVE_RAW_DECL_STRTOD 1 | | #define HAVE_RAW_DECL_STRTOLL 1 | | #define HAVE_RAW_DECL_STRTOULL 1 | | #define HAVE_RAW_DECL_UNLOCKPT 1 | | #define HAVE_RAW_DECL_UNSETENV 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STRCHRNUL 1 | | #define GNULIB_TEST_STRCHRNUL 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRERROR_R 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define GNULIB_TEST_STRNLEN 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_RAW_DECL_FCHMODAT 1 | | #define HAVE_RAW_DECL_FSTAT 1 | | #define HAVE_RAW_DECL_FSTATAT 1 | | #define HAVE_RAW_DECL_FUTIMENS 1 | | #define HAVE_RAW_DECL_LCHMOD 1 | | #define HAVE_RAW_DECL_LSTAT 1 | | #define HAVE_RAW_DECL_MKDIRAT 1 | | #define HAVE_RAW_DECL_MKFIFO 1 | | #define HAVE_RAW_DECL_MKFIFOAT 1 | | #define HAVE_RAW_DECL_MKNOD 1 | | #define HAVE_RAW_DECL_MKNODAT 1 | | #define HAVE_RAW_DECL_STAT 1 | | #define HAVE_RAW_DECL_UTIMENSAT 1 | | #define HAVE_RAW_DECL_WAITPID 1 | | #define HAVE_RAW_DECL_CHDIR 1 | | #define HAVE_RAW_DECL_CHOWN 1 | | #define HAVE_RAW_DECL_DUP 1 | | #define HAVE_RAW_DECL_DUP2 1 | | #define HAVE_RAW_DECL_DUP3 1 | | #define HAVE_RAW_DECL_ENVIRON 1 | | #define HAVE_RAW_DECL_EUIDACCESS 1 | | #define HAVE_RAW_DECL_FACCESSAT 1 | | #define HAVE_RAW_DECL_FCHDIR 1 | | #define HAVE_RAW_DECL_FCHOWNAT 1 | | #define HAVE_RAW_DECL_FDATASYNC 1 | | #define HAVE_RAW_DECL_FSYNC 1 | | #define HAVE_RAW_DECL_FTRUNCATE 1 | | #define HAVE_RAW_DECL_GETCWD 1 | | #define HAVE_RAW_DECL_GETDOMAINNAME 1 | | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | | #define HAVE_RAW_DECL_GETGROUPS 1 | | #define HAVE_RAW_DECL_GETHOSTNAME 1 | | #define HAVE_RAW_DECL_GETLOGIN 1 | | #define HAVE_RAW_DECL_GETLOGIN_R 1 | | #define HAVE_RAW_DECL_GETPAGESIZE 1 | | #define HAVE_RAW_DECL_GETUSERSHELL 1 | | #define HAVE_RAW_DECL_SETUSERSHELL 1 | | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | | #define HAVE_RAW_DECL_GROUP_MEMBER 1 | | #define HAVE_RAW_DECL_ISATTY 1 | | #define HAVE_RAW_DECL_LCHOWN 1 | | #define HAVE_RAW_DECL_LINK 1 | | #define HAVE_RAW_DECL_LINKAT 1 | | #define HAVE_RAW_DECL_LSEEK 1 | | #define HAVE_RAW_DECL_PIPE 1 | | #define HAVE_RAW_DECL_PIPE2 1 | | #define HAVE_RAW_DECL_PREAD 1 | | #define HAVE_RAW_DECL_PWRITE 1 | | #define HAVE_RAW_DECL_READLINK 1 | | #define HAVE_RAW_DECL_READLINKAT 1 | | #define HAVE_RAW_DECL_RMDIR 1 | | #define HAVE_RAW_DECL_SETHOSTNAME 1 | | #define HAVE_RAW_DECL_SLEEP 1 | | #define HAVE_RAW_DECL_SYMLINK 1 | | #define HAVE_RAW_DECL_SYMLINKAT 1 | | #define HAVE_RAW_DECL_TTYNAME_R 1 | | #define HAVE_RAW_DECL_UNLINK 1 | | #define HAVE_RAW_DECL_UNLINKAT 1 | | #define HAVE_RAW_DECL_USLEEP 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | #define GNULIB_TEST_VFPRINTF_POSIX 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_RAW_DECL_BTOWC 1 | | #define HAVE_RAW_DECL_WCTOB 1 | | #define HAVE_RAW_DECL_MBSINIT 1 | | #define HAVE_RAW_DECL_MBRTOWC 1 | | #define HAVE_RAW_DECL_MBRLEN 1 | | #define HAVE_RAW_DECL_MBSRTOWCS 1 | | #define HAVE_RAW_DECL_MBSNRTOWCS 1 | | #define HAVE_RAW_DECL_WCRTOMB 1 | | #define HAVE_RAW_DECL_WCSRTOMBS 1 | | #define HAVE_RAW_DECL_WCSNRTOMBS 1 | | #define HAVE_RAW_DECL_WCWIDTH 1 | | #define HAVE_RAW_DECL_WMEMCHR 1 | | #define HAVE_RAW_DECL_WMEMCMP 1 | | #define HAVE_RAW_DECL_WMEMCPY 1 | | #define HAVE_RAW_DECL_WMEMMOVE 1 | | #define HAVE_RAW_DECL_WMEMSET 1 | | #define HAVE_RAW_DECL_WCSLEN 1 | | #define HAVE_RAW_DECL_WCSNLEN 1 | | #define HAVE_RAW_DECL_WCSCPY 1 | | #define HAVE_RAW_DECL_WCPCPY 1 | | #define HAVE_RAW_DECL_WCSNCPY 1 | | #define HAVE_RAW_DECL_WCPNCPY 1 | | #define HAVE_RAW_DECL_WCSCAT 1 | | #define HAVE_RAW_DECL_WCSNCAT 1 | | #define HAVE_RAW_DECL_WCSCMP 1 | | #define HAVE_RAW_DECL_WCSNCMP 1 | | #define HAVE_RAW_DECL_WCSCASECMP 1 | | #define HAVE_RAW_DECL_WCSNCASECMP 1 | | #define HAVE_RAW_DECL_WCSCOLL 1 | | #define HAVE_RAW_DECL_WCSXFRM 1 | | #define HAVE_RAW_DECL_WCSDUP 1 | | #define HAVE_RAW_DECL_WCSCHR 1 | | #define HAVE_RAW_DECL_WCSRCHR 1 | | #define HAVE_RAW_DECL_WCSCSPN 1 | | #define HAVE_RAW_DECL_WCSSPN 1 | | #define HAVE_RAW_DECL_WCSPBRK 1 | | #define HAVE_RAW_DECL_WCSSTR 1 | | #define HAVE_RAW_DECL_WCSTOK 1 | | #define HAVE_RAW_DECL_WCSWIDTH 1 | | #define HAVE_TOWLOWER 1 | | #define HAVE_RAW_DECL_WCTYPE 1 | | #define HAVE_RAW_DECL_ISWCTYPE 1 | | #define HAVE_RAW_DECL_WCTRANS 1 | | #define HAVE_RAW_DECL_TOWCTRANS 1 | | #define HAVE_DECL_WCWIDTH 1 | | #define GNULIB_TEST_WCWIDTH 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_TIMES 1 | | #define HAVE_DECL_GETRUSAGE 1 | | #define HAVE_DECL_TIMES 1 | | #define HAVE_DECL_CLOCK 0 | | #define HAVE_DECL_SYSCONF 1 | | #define HAVE_CLOCK_T 1 | | #define HAVE_STRUCT_TMS 1 | | /* end confdefs.h. */ | | #include | | int | | main () | | { | | CFLocaleCopyCurrent(); | | ; | | return 0; | | } | configure:36108: result: no | configure:36157: checking for GNU gettext in libc | configure:36181: gcc -o conftest -g -O2 conftest.c >&5 | configure:36181: $? = 0 | configure:36190: result: yes | configure:37027: checking whether to use NLS | configure:37029: result: yes | configure:37032: checking where the gettext function comes from | configure:37043: result: libc | configure:37149: checking for valgrind | configure:37165: found /bin/valgrind | configure:37176: result: valgrind | configure:37276: checking for Java compiler | configure:37751: result: no | configure:37762: checking for Java virtual machine | configure:37965: result: no | configure:38088: checking that generated files are newer than configure | configure:38094: result: done | configure:38239: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GNU Bison config.status 3.0.4, which was | generated by GNU Autoconf 2.69. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on sunhaiyong | | config.status:2542: creating javacomp.sh | config.status:2542: creating javaexec.sh | config.status:2542: creating runtime-po/Makefile.in | config.status:2542: creating etc/bench.pl | config.status:2542: creating tests/atlocal | config.status:2542: creating tests/bison | config.status:2542: creating Makefile | config.status:2542: creating po/Makefile.in | config.status:2542: creating doc/yacc.1 | config.status:2542: creating lib/config.h | config.status:2768: linking ../GNUmakefile to GNUmakefile | config.status:2787: executing depfiles commands | config.status:2787: executing po-directories commands | config.status:2787: executing tests/atconfig commands | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=mips64el-unknown-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_catgets=yes | ac_cv_func_fcntl=yes | ac_cv_func_getdtablesize=yes | ac_cv_func_getopt_long_only=yes | ac_cv_func_gettimeofday=yes | ac_cv_func_isascii=yes | ac_cv_func_iswcntrl=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_mmap=yes | ac_cv_func_mprotect=yes | 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_rawmemchr=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_strchrnul=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_strnlen_working=yes | ac_cv_func_strverscmp=yes | ac_cv_func_symlink=yes | ac_cv_func_times=yes | ac_cv_func_towlower=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_gnu_library_2_1=yes | ac_cv_have_decl__Exit=yes | ac_cv_have_decl___fpending=yes | ac_cv_have_decl__snprintf=no | ac_cv_have_decl_acosf=yes | ac_cv_have_decl_acosl=yes | ac_cv_have_decl_alarm=yes | ac_cv_have_decl_asinf=yes | ac_cv_have_decl_asinl=yes | ac_cv_have_decl_atanf=yes | ac_cv_have_decl_atanl=yes | ac_cv_have_decl_atoll=yes | ac_cv_have_decl_btowc=yes | ac_cv_have_decl_canonicalize_file_name=yes | ac_cv_have_decl_cbrt=yes | ac_cv_have_decl_cbrtf=yes | ac_cv_have_decl_cbrtl=yes | ac_cv_have_decl_ceilf=yes | ac_cv_have_decl_ceill=yes | ac_cv_have_decl_chdir=yes | ac_cv_have_decl_chown=yes | ac_cv_have_decl_clearerr_unlocked=yes | ac_cv_have_decl_clock=no | ac_cv_have_decl_copysign=yes | ac_cv_have_decl_copysignf=yes | ac_cv_have_decl_copysignl=yes | ac_cv_have_decl_cosf=yes | ac_cv_have_decl_coshf=yes | ac_cv_have_decl_cosl=yes | ac_cv_have_decl_dprintf=yes | ac_cv_have_decl_dup2=yes | ac_cv_have_decl_dup3=yes | ac_cv_have_decl_dup=yes | ac_cv_have_decl_endusershell=yes | ac_cv_have_decl_environ=yes | ac_cv_have_decl_euidaccess=yes | ac_cv_have_decl_exp2=yes | ac_cv_have_decl_exp2f=yes | ac_cv_have_decl_exp2l=yes | ac_cv_have_decl_expf=yes | ac_cv_have_decl_expl=yes | ac_cv_have_decl_expm1=yes | ac_cv_have_decl_expm1f=yes | ac_cv_have_decl_expm1l=yes | ac_cv_have_decl_fabsf=yes | ac_cv_have_decl_fabsl=yes | ac_cv_have_decl_faccessat=yes | ac_cv_have_decl_fchdir=yes | ac_cv_have_decl_fchmodat=yes | ac_cv_have_decl_fchownat=yes | ac_cv_have_decl_fcntl=yes | ac_cv_have_decl_fdatasync=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_ffsl=yes | ac_cv_have_decl_ffsll=yes | ac_cv_have_decl_fgets_unlocked=yes | ac_cv_have_decl_floorf=yes | ac_cv_have_decl_floorl=yes | ac_cv_have_decl_fma=yes | ac_cv_have_decl_fmaf=yes | ac_cv_have_decl_fmal=yes | ac_cv_have_decl_fmod=yes | ac_cv_have_decl_fmodf=yes | ac_cv_have_decl_fmodl=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_frexpf=yes | ac_cv_have_decl_frexpl=yes | ac_cv_have_decl_fseeko=yes | ac_cv_have_decl_fstat=yes | ac_cv_have_decl_fstatat=yes | ac_cv_have_decl_fsync=yes | ac_cv_have_decl_ftello=yes | ac_cv_have_decl_ftruncate=yes | ac_cv_have_decl_futimens=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_getcwd=yes | ac_cv_have_decl_getdelim=yes | ac_cv_have_decl_getdomainname=yes | ac_cv_have_decl_getdtablesize=yes | ac_cv_have_decl_getenv=yes | ac_cv_have_decl_getgroups=yes | ac_cv_have_decl_gethostname=yes | ac_cv_have_decl_getline=yes | ac_cv_have_decl_getloadavg=yes | ac_cv_have_decl_getlogin=yes | ac_cv_have_decl_getlogin_r=yes | ac_cv_have_decl_getpagesize=yes | ac_cv_have_decl_getrusage=yes | ac_cv_have_decl_getsubopt=yes | ac_cv_have_decl_gettimeofday=yes | ac_cv_have_decl_getusershell=yes | ac_cv_have_decl_grantpt=yes | ac_cv_have_decl_group_member=yes | ac_cv_have_decl_hypotf=yes | ac_cv_have_decl_hypotl=yes | ac_cv_have_decl_ilogb=yes | ac_cv_have_decl_ilogbf=yes | ac_cv_have_decl_ilogbl=yes | ac_cv_have_decl_imaxabs=yes | ac_cv_have_decl_imaxdiv=yes | ac_cv_have_decl_initstate=yes | ac_cv_have_decl_initstate_r=yes | ac_cv_have_decl_isatty=yes | ac_cv_have_decl_iswctype=yes | ac_cv_have_decl_lchmod=yes | ac_cv_have_decl_lchown=yes | ac_cv_have_decl_ldexpf=yes | ac_cv_have_decl_ldexpl=yes | ac_cv_have_decl_link=yes | ac_cv_have_decl_linkat=yes | ac_cv_have_decl_log10=yes | ac_cv_have_decl_log10f=yes | ac_cv_have_decl_log10l=yes | ac_cv_have_decl_log1p=yes | ac_cv_have_decl_log1pf=yes | ac_cv_have_decl_log1pl=yes | ac_cv_have_decl_log2=yes | ac_cv_have_decl_log2f=yes | ac_cv_have_decl_log2l=yes | ac_cv_have_decl_log=yes | ac_cv_have_decl_logb=yes | ac_cv_have_decl_logbf=yes | ac_cv_have_decl_logbl=yes | ac_cv_have_decl_logf=yes | ac_cv_have_decl_logl=yes | ac_cv_have_decl_lseek=yes | ac_cv_have_decl_lstat=yes | ac_cv_have_decl_mbrlen=yes | ac_cv_have_decl_mbrtowc=yes | ac_cv_have_decl_mbsinit=yes | ac_cv_have_decl_mbsnrtowcs=yes | ac_cv_have_decl_mbsrtowcs=yes | ac_cv_have_decl_mbswidth=no | ac_cv_have_decl_memmem=yes | ac_cv_have_decl_mempcpy=yes | ac_cv_have_decl_memrchr=yes | ac_cv_have_decl_mkdirat=yes | ac_cv_have_decl_mkdtemp=yes | ac_cv_have_decl_mkfifo=yes | ac_cv_have_decl_mkfifoat=yes | ac_cv_have_decl_mknod=yes | ac_cv_have_decl_mknodat=yes | ac_cv_have_decl_mkostemp=yes | ac_cv_have_decl_mkostemps=yes | ac_cv_have_decl_mkstemp=yes | ac_cv_have_decl_mkstemps=yes | ac_cv_have_decl_modf=yes | ac_cv_have_decl_modff=yes | ac_cv_have_decl_modfl=yes | ac_cv_have_decl_obstack_printf=yes | ac_cv_have_decl_openat=yes | ac_cv_have_decl_pclose=yes | ac_cv_have_decl_pipe2=yes | ac_cv_have_decl_pipe=yes | ac_cv_have_decl_popen=yes | ac_cv_have_decl_posix_openpt=yes | ac_cv_have_decl_posix_spawn=yes | ac_cv_have_decl_posix_spawn_file_actions_addclose=yes | ac_cv_have_decl_posix_spawn_file_actions_adddup2=yes | ac_cv_have_decl_posix_spawn_file_actions_addopen=yes | ac_cv_have_decl_posix_spawn_file_actions_destroy=yes | ac_cv_have_decl_posix_spawn_file_actions_init=yes | ac_cv_have_decl_posix_spawnattr_destroy=yes | ac_cv_have_decl_posix_spawnattr_getflags=yes | ac_cv_have_decl_posix_spawnattr_getpgroup=yes | ac_cv_have_decl_posix_spawnattr_getschedparam=yes | ac_cv_have_decl_posix_spawnattr_getschedpolicy=yes | ac_cv_have_decl_posix_spawnattr_getsigdefault=yes | ac_cv_have_decl_posix_spawnattr_getsigmask=yes | ac_cv_have_decl_posix_spawnattr_init=yes | ac_cv_have_decl_posix_spawnattr_setflags=yes | ac_cv_have_decl_posix_spawnattr_setpgroup=yes | ac_cv_have_decl_posix_spawnattr_setschedparam=yes | ac_cv_have_decl_posix_spawnattr_setschedpolicy=yes | ac_cv_have_decl_posix_spawnattr_setsigdefault=yes | ac_cv_have_decl_posix_spawnattr_setsigmask=yes | ac_cv_have_decl_posix_spawnp=yes | ac_cv_have_decl_powf=yes | ac_cv_have_decl_pread=yes | ac_cv_have_decl_program_invocation_name=yes | ac_cv_have_decl_program_invocation_short_name=yes | ac_cv_have_decl_pthread_sigmask=yes | ac_cv_have_decl_ptsname=yes | ac_cv_have_decl_ptsname_r=yes | ac_cv_have_decl_putc_unlocked=yes | ac_cv_have_decl_putchar_unlocked=yes | ac_cv_have_decl_pwrite=yes | ac_cv_have_decl_random=yes | ac_cv_have_decl_random_r=yes | ac_cv_have_decl_rawmemchr=yes | ac_cv_have_decl_readlink=yes | ac_cv_have_decl_readlinkat=yes | ac_cv_have_decl_realpath=yes | ac_cv_have_decl_remainder=yes | ac_cv_have_decl_remainderf=yes | ac_cv_have_decl_remainderl=yes | ac_cv_have_decl_renameat=yes | ac_cv_have_decl_rint=yes | ac_cv_have_decl_rintf=yes | ac_cv_have_decl_rintl=yes | ac_cv_have_decl_rmdir=yes | ac_cv_have_decl_round=yes | ac_cv_have_decl_roundf=yes | ac_cv_have_decl_roundl=yes | ac_cv_have_decl_rpmatch=yes | ac_cv_have_decl_secure_getenv=yes | ac_cv_have_decl_setenv=yes | ac_cv_have_decl_sethostname=yes | ac_cv_have_decl_setstate=yes | ac_cv_have_decl_setstate_r=yes | ac_cv_have_decl_setusershell=yes | ac_cv_have_decl_sigaction=yes | ac_cv_have_decl_sigaddset=yes | ac_cv_have_decl_sigdelset=yes | ac_cv_have_decl_sigemptyset=yes | ac_cv_have_decl_sigfillset=yes | ac_cv_have_decl_sigismember=yes | ac_cv_have_decl_sigpending=yes | ac_cv_have_decl_sigprocmask=yes | ac_cv_have_decl_sinf=yes | ac_cv_have_decl_sinhf=yes | ac_cv_have_decl_sinl=yes | ac_cv_have_decl_sleep=yes | ac_cv_have_decl_snprintf=yes | ac_cv_have_decl_sqrtf=yes | ac_cv_have_decl_sqrtl=yes | ac_cv_have_decl_srandom=yes | ac_cv_have_decl_srandom_r=yes | ac_cv_have_decl_stat=yes | ac_cv_have_decl_stpcpy=yes | ac_cv_have_decl_stpncpy=yes | ac_cv_have_decl_strcasestr=yes | ac_cv_have_decl_strchrnul=yes | ac_cv_have_decl_strdup=yes | ac_cv_have_decl_strerror_r=yes | ac_cv_have_decl_strncat=yes | ac_cv_have_decl_strndup=yes | ac_cv_have_decl_strnlen=yes | ac_cv_have_decl_strpbrk=yes | ac_cv_have_decl_strsep=yes | ac_cv_have_decl_strsignal=yes | ac_cv_have_decl_strtod=yes | ac_cv_have_decl_strtoimax=yes | ac_cv_have_decl_strtok_r=yes | ac_cv_have_decl_strtoll=yes | ac_cv_have_decl_strtoull=yes | ac_cv_have_decl_strtoumax=yes | ac_cv_have_decl_strverscmp=yes | ac_cv_have_decl_symlink=yes | ac_cv_have_decl_symlinkat=yes | ac_cv_have_decl_sysconf=yes | ac_cv_have_decl_tanf=yes | ac_cv_have_decl_tanhf=yes | ac_cv_have_decl_tanl=yes | ac_cv_have_decl_times=yes | ac_cv_have_decl_tmpfile=yes | ac_cv_have_decl_towctrans=yes | ac_cv_have_decl_trunc=yes | ac_cv_have_decl_truncf=yes | ac_cv_have_decl_truncl=yes | ac_cv_have_decl_ttyname_r=yes | ac_cv_have_decl_unlink=yes | ac_cv_have_decl_unlinkat=yes | ac_cv_have_decl_unlockpt=yes | ac_cv_have_decl_unsetenv=yes | ac_cv_have_decl_usleep=yes | ac_cv_have_decl_utimensat=yes | ac_cv_have_decl_vdprintf=yes | ac_cv_have_decl_vsnprintf=yes | ac_cv_have_decl_waitpid=yes | ac_cv_have_decl_wcpcpy=yes | ac_cv_have_decl_wcpncpy=yes | ac_cv_have_decl_wcrtomb=yes | ac_cv_have_decl_wcscasecmp=yes | ac_cv_have_decl_wcscat=yes | ac_cv_have_decl_wcschr=yes | ac_cv_have_decl_wcscmp=yes | ac_cv_have_decl_wcscoll=yes | ac_cv_have_decl_wcscpy=yes | ac_cv_have_decl_wcscspn=yes | ac_cv_have_decl_wcsdup=yes | ac_cv_have_decl_wcslen=yes | ac_cv_have_decl_wcsncasecmp=yes | ac_cv_have_decl_wcsncat=yes | ac_cv_have_decl_wcsncmp=yes | ac_cv_have_decl_wcsncpy=yes | ac_cv_have_decl_wcsnlen=yes | ac_cv_have_decl_wcsnrtombs=yes | ac_cv_have_decl_wcspbrk=yes | ac_cv_have_decl_wcsrchr=yes | ac_cv_have_decl_wcsrtombs=yes | ac_cv_have_decl_wcsspn=yes | ac_cv_have_decl_wcsstr=yes | ac_cv_have_decl_wcstok=yes | ac_cv_have_decl_wcswidth=yes | ac_cv_have_decl_wcsxfrm=yes | ac_cv_have_decl_wctob=yes | ac_cv_have_decl_wctrans=yes | ac_cv_have_decl_wctype=yes | ac_cv_have_decl_wcwidth=yes | ac_cv_have_decl_wmemchr=yes | ac_cv_have_decl_wmemcmp=yes | ac_cv_have_decl_wmemcpy=yes | ac_cv_have_decl_wmemmove=yes | ac_cv_have_decl_wmemset=yes | ac_cv_header_features_h=yes | ac_cv_header_getopt_h=yes | ac_cv_header_inttypes_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_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_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_unistd_h=yes | ac_cv_header_wchar_h=yes | ac_cv_header_wctype_h=yes | ac_cv_host=mips64el-unknown-linux-gnu | ac_cv_lib_error_at_line=yes | ac_cv_lib_lex='none needed' | ac_cv_member_struct_sigaction_sa_sigaction=yes | ac_cv_objext=o | ac_cv_path_EGREP='/bin/grep -E' | ac_cv_path_GMSGFMT=/bin/msgfmt | ac_cv_path_GREP=/bin/grep | ac_cv_path_M4=/tools/bin/m4 | ac_cv_path_MSGFMT=/bin/msgfmt | ac_cv_path_MSGMERGE=/bin/msgmerge | ac_cv_path_PERL=/bin/perl | ac_cv_path_SED=/bin/sed | ac_cv_path_XGETTEXT=/bin/xgettext | ac_cv_path_XSLTPROC=/bin/xsltproc | ac_cv_path_install='/bin/install -c' | ac_cv_path_mkdir=/bin/mkdir | ac_cv_prog_AWK=gawk | ac_cv_prog_CPP='gcc -E' | 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_c89= | ac_cv_prog_cc_c99= | ac_cv_prog_cc_g=yes | ac_cv_prog_cc_stdc= | ac_cv_prog_cxx_g=yes | 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=no | ac_cv_prog_make_make_set=yes | ac_cv_safe_to_define___extensions__=yes | ac_cv_search_posix_spawn='none required' | ac_cv_should_define__xopen_source=no | ac_cv_sys_file_offset_bits=no | ac_cv_sys_largefile_CC=no | ac_cv_type__Bool=yes | ac_cv_type_clock_t=yes | ac_cv_type_long_long_int=yes | ac_cv_type_max_align_t=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_pthread_rwlock_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_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_libext=a | acl_cv_libname_spec='lib$name' | acl_cv_library_names_spec='$libname$shrext' | acl_cv_path_LD=/mnt/lfs/tools/mips64el-unknown-linux-gnu/bin/ld | acl_cv_prog_gnu_ld=yes | acl_cv_rpath=done | acl_cv_shlibext=so | acl_cv_wl=-Wl, | am_cv_CC_dependencies_compiler_type=gcc3 | am_cv_CXX_dependencies_compiler_type=gcc3 | am_cv_langinfo_codeset=yes | am_cv_make_support_nested_variables=yes | am_cv_prog_cc_c_o=yes | bison_cv_c_supports_posixly_correct=yes | bison_cv_cxx_supports_posixly_correct=yes | bison_cv_cxx_works=yes | 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_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_frexp_works=yes | gl_cv_func_frexpl_no_libm=yes | gl_cv_func_frexpl_works=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_posix=yes | gl_cv_func_mbrtowc_empty_input=yes | 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_signbit=yes | gl_cv_func_signbit_gcc=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_stat_dir_slash=yes | gl_cv_func_stat_file_slash=yes | gl_cv_func_strchrnul_works=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_include_next=yes | gl_cv_have_raw_decl__Exit=yes | gl_cv_have_raw_decl_acosf=yes | gl_cv_have_raw_decl_acosl=yes | gl_cv_have_raw_decl_asinf=yes | gl_cv_have_raw_decl_asinl=yes | gl_cv_have_raw_decl_atanf=yes | gl_cv_have_raw_decl_atanl=yes | gl_cv_have_raw_decl_atoll=yes | gl_cv_have_raw_decl_btowc=yes | gl_cv_have_raw_decl_canonicalize_file_name=yes | gl_cv_have_raw_decl_cbrt=yes | gl_cv_have_raw_decl_cbrtf=yes | gl_cv_have_raw_decl_cbrtl=yes | gl_cv_have_raw_decl_ceilf=yes | gl_cv_have_raw_decl_ceill=yes | gl_cv_have_raw_decl_chdir=yes | gl_cv_have_raw_decl_chown=yes | gl_cv_have_raw_decl_copysign=yes | gl_cv_have_raw_decl_copysignf=yes | gl_cv_have_raw_decl_copysignl=yes | gl_cv_have_raw_decl_cosf=yes | gl_cv_have_raw_decl_coshf=yes | gl_cv_have_raw_decl_cosl=yes | gl_cv_have_raw_decl_dprintf=yes | gl_cv_have_raw_decl_dup2=yes | gl_cv_have_raw_decl_dup3=yes | gl_cv_have_raw_decl_dup=yes | gl_cv_have_raw_decl_endusershell=yes | gl_cv_have_raw_decl_environ=yes | gl_cv_have_raw_decl_euidaccess=yes | gl_cv_have_raw_decl_exp2=yes | gl_cv_have_raw_decl_exp2f=yes | gl_cv_have_raw_decl_exp2l=yes | gl_cv_have_raw_decl_expf=yes | gl_cv_have_raw_decl_expl=yes | gl_cv_have_raw_decl_expm1=yes | gl_cv_have_raw_decl_expm1f=yes | gl_cv_have_raw_decl_expm1l=yes | gl_cv_have_raw_decl_fabsf=yes | gl_cv_have_raw_decl_fabsl=yes | gl_cv_have_raw_decl_faccessat=yes | gl_cv_have_raw_decl_fchdir=yes | gl_cv_have_raw_decl_fchmodat=yes | gl_cv_have_raw_decl_fchownat=yes | gl_cv_have_raw_decl_fcntl=yes | gl_cv_have_raw_decl_fdatasync=yes | gl_cv_have_raw_decl_ffsl=yes | gl_cv_have_raw_decl_ffsll=yes | gl_cv_have_raw_decl_floorf=yes | gl_cv_have_raw_decl_floorl=yes | gl_cv_have_raw_decl_fma=yes | gl_cv_have_raw_decl_fmaf=yes | gl_cv_have_raw_decl_fmal=yes | gl_cv_have_raw_decl_fmod=yes | gl_cv_have_raw_decl_fmodf=yes | gl_cv_have_raw_decl_fmodl=yes | gl_cv_have_raw_decl_fpurge=no | gl_cv_have_raw_decl_frexpf=yes | gl_cv_have_raw_decl_frexpl=yes | gl_cv_have_raw_decl_fseeko=yes | gl_cv_have_raw_decl_fstat=yes | gl_cv_have_raw_decl_fstatat=yes | gl_cv_have_raw_decl_fsync=yes | gl_cv_have_raw_decl_ftello=yes | gl_cv_have_raw_decl_ftruncate=yes | gl_cv_have_raw_decl_futimens=yes | gl_cv_have_raw_decl_getcwd=yes | gl_cv_have_raw_decl_getdelim=yes | gl_cv_have_raw_decl_getdomainname=yes | gl_cv_have_raw_decl_getdtablesize=yes | gl_cv_have_raw_decl_getgroups=yes | gl_cv_have_raw_decl_gethostname=yes | gl_cv_have_raw_decl_getline=yes | gl_cv_have_raw_decl_getloadavg=yes | gl_cv_have_raw_decl_getlogin=yes | gl_cv_have_raw_decl_getlogin_r=yes | gl_cv_have_raw_decl_getpagesize=yes | gl_cv_have_raw_decl_gets=no | gl_cv_have_raw_decl_getsubopt=yes | gl_cv_have_raw_decl_gettimeofday=yes | gl_cv_have_raw_decl_getusershell=yes | gl_cv_have_raw_decl_grantpt=yes | gl_cv_have_raw_decl_group_member=yes | gl_cv_have_raw_decl_hypotf=yes | gl_cv_have_raw_decl_hypotl=yes | gl_cv_have_raw_decl_ilogb=yes | gl_cv_have_raw_decl_ilogbf=yes | gl_cv_have_raw_decl_ilogbl=yes | gl_cv_have_raw_decl_imaxabs=yes | gl_cv_have_raw_decl_imaxdiv=yes | gl_cv_have_raw_decl_initstate=yes | gl_cv_have_raw_decl_initstate_r=yes | gl_cv_have_raw_decl_isatty=yes | gl_cv_have_raw_decl_iswctype=yes | gl_cv_have_raw_decl_lchmod=yes | gl_cv_have_raw_decl_lchown=yes | gl_cv_have_raw_decl_ldexpf=yes | gl_cv_have_raw_decl_ldexpl=yes | gl_cv_have_raw_decl_link=yes | gl_cv_have_raw_decl_linkat=yes | gl_cv_have_raw_decl_log10=yes | gl_cv_have_raw_decl_log10f=yes | gl_cv_have_raw_decl_log10l=yes | gl_cv_have_raw_decl_log1p=yes | gl_cv_have_raw_decl_log1pf=yes | gl_cv_have_raw_decl_log1pl=yes | gl_cv_have_raw_decl_log2=yes | gl_cv_have_raw_decl_log2f=yes | gl_cv_have_raw_decl_log2l=yes | gl_cv_have_raw_decl_log=yes | gl_cv_have_raw_decl_logb=yes | gl_cv_have_raw_decl_logbf=yes | gl_cv_have_raw_decl_logbl=yes | gl_cv_have_raw_decl_logf=yes | gl_cv_have_raw_decl_logl=yes | gl_cv_have_raw_decl_lseek=yes | gl_cv_have_raw_decl_lstat=yes | gl_cv_have_raw_decl_mbrlen=yes | gl_cv_have_raw_decl_mbrtowc=yes | gl_cv_have_raw_decl_mbsinit=yes | gl_cv_have_raw_decl_mbsnrtowcs=yes | gl_cv_have_raw_decl_mbsrtowcs=yes | gl_cv_have_raw_decl_memmem=yes | gl_cv_have_raw_decl_mempcpy=yes | gl_cv_have_raw_decl_memrchr=yes | gl_cv_have_raw_decl_mkdirat=yes | gl_cv_have_raw_decl_mkdtemp=yes | gl_cv_have_raw_decl_mkfifo=yes | gl_cv_have_raw_decl_mkfifoat=yes | gl_cv_have_raw_decl_mknod=yes | gl_cv_have_raw_decl_mknodat=yes | gl_cv_have_raw_decl_mkostemp=yes | gl_cv_have_raw_decl_mkostemps=yes | gl_cv_have_raw_decl_mkstemp=yes | gl_cv_have_raw_decl_mkstemps=yes | gl_cv_have_raw_decl_modf=yes | gl_cv_have_raw_decl_modff=yes | gl_cv_have_raw_decl_modfl=yes | gl_cv_have_raw_decl_openat=yes | gl_cv_have_raw_decl_pclose=yes | gl_cv_have_raw_decl_pipe2=yes | gl_cv_have_raw_decl_pipe=yes | gl_cv_have_raw_decl_popen=yes | gl_cv_have_raw_decl_posix_openpt=yes | gl_cv_have_raw_decl_posix_spawn=yes | gl_cv_have_raw_decl_posix_spawn_file_actions_addclose=yes | gl_cv_have_raw_decl_posix_spawn_file_actions_adddup2=yes | gl_cv_have_raw_decl_posix_spawn_file_actions_addopen=yes | gl_cv_have_raw_decl_posix_spawn_file_actions_destroy=yes | gl_cv_have_raw_decl_posix_spawn_file_actions_init=yes | gl_cv_have_raw_decl_posix_spawnattr_destroy=yes | gl_cv_have_raw_decl_posix_spawnattr_getflags=yes | gl_cv_have_raw_decl_posix_spawnattr_getpgroup=yes | gl_cv_have_raw_decl_posix_spawnattr_getschedparam=yes | gl_cv_have_raw_decl_posix_spawnattr_getschedpolicy=yes | gl_cv_have_raw_decl_posix_spawnattr_getsigdefault=yes | gl_cv_have_raw_decl_posix_spawnattr_getsigmask=yes | gl_cv_have_raw_decl_posix_spawnattr_init=yes | gl_cv_have_raw_decl_posix_spawnattr_setflags=yes | gl_cv_have_raw_decl_posix_spawnattr_setpgroup=yes | gl_cv_have_raw_decl_posix_spawnattr_setschedparam=yes | gl_cv_have_raw_decl_posix_spawnattr_setschedpolicy=yes | gl_cv_have_raw_decl_posix_spawnattr_setsigdefault=yes | gl_cv_have_raw_decl_posix_spawnattr_setsigmask=yes | gl_cv_have_raw_decl_posix_spawnp=yes | gl_cv_have_raw_decl_powf=yes | gl_cv_have_raw_decl_pread=yes | gl_cv_have_raw_decl_pthread_sigmask=yes | gl_cv_have_raw_decl_ptsname=yes | gl_cv_have_raw_decl_ptsname_r=yes | gl_cv_have_raw_decl_pwrite=yes | gl_cv_have_raw_decl_random=yes | gl_cv_have_raw_decl_random_r=yes | gl_cv_have_raw_decl_rawmemchr=yes | gl_cv_have_raw_decl_readlink=yes | gl_cv_have_raw_decl_readlinkat=yes | gl_cv_have_raw_decl_realpath=yes | gl_cv_have_raw_decl_remainder=yes | gl_cv_have_raw_decl_remainderf=yes | gl_cv_have_raw_decl_remainderl=yes | gl_cv_have_raw_decl_renameat=yes | gl_cv_have_raw_decl_rint=yes | gl_cv_have_raw_decl_rintf=yes | gl_cv_have_raw_decl_rintl=yes | gl_cv_have_raw_decl_rmdir=yes | gl_cv_have_raw_decl_round=yes | gl_cv_have_raw_decl_roundf=yes | gl_cv_have_raw_decl_roundl=yes | gl_cv_have_raw_decl_rpmatch=yes | gl_cv_have_raw_decl_secure_getenv=yes | gl_cv_have_raw_decl_setenv=yes | gl_cv_have_raw_decl_sethostname=yes | gl_cv_have_raw_decl_setstate=yes | gl_cv_have_raw_decl_setstate_r=yes | gl_cv_have_raw_decl_setusershell=yes | gl_cv_have_raw_decl_sigaction=yes | gl_cv_have_raw_decl_sigaddset=yes | gl_cv_have_raw_decl_sigdelset=yes | gl_cv_have_raw_decl_sigemptyset=yes | gl_cv_have_raw_decl_sigfillset=yes | gl_cv_have_raw_decl_sigismember=yes | gl_cv_have_raw_decl_sigpending=yes | gl_cv_have_raw_decl_sigprocmask=yes | gl_cv_have_raw_decl_sinf=yes | gl_cv_have_raw_decl_sinhf=yes | gl_cv_have_raw_decl_sinl=yes | gl_cv_have_raw_decl_sleep=yes | gl_cv_have_raw_decl_snprintf=yes | gl_cv_have_raw_decl_sqrtf=yes | gl_cv_have_raw_decl_sqrtl=yes | gl_cv_have_raw_decl_srandom=yes | gl_cv_have_raw_decl_srandom_r=yes | gl_cv_have_raw_decl_stat=yes | gl_cv_have_raw_decl_stpcpy=yes | gl_cv_have_raw_decl_stpncpy=yes | gl_cv_have_raw_decl_strcasestr=yes | gl_cv_have_raw_decl_strchrnul=yes | gl_cv_have_raw_decl_strdup=yes | gl_cv_have_raw_decl_strerror_r=yes | gl_cv_have_raw_decl_strncat=yes | gl_cv_have_raw_decl_strndup=yes | gl_cv_have_raw_decl_strnlen=yes | gl_cv_have_raw_decl_strpbrk=yes | gl_cv_have_raw_decl_strsep=yes | gl_cv_have_raw_decl_strsignal=yes | gl_cv_have_raw_decl_strtod=yes | gl_cv_have_raw_decl_strtoimax=yes | gl_cv_have_raw_decl_strtok_r=yes | gl_cv_have_raw_decl_strtoll=yes | gl_cv_have_raw_decl_strtoull=yes | gl_cv_have_raw_decl_strtoumax=yes | gl_cv_have_raw_decl_strverscmp=yes | gl_cv_have_raw_decl_symlink=yes | gl_cv_have_raw_decl_symlinkat=yes | gl_cv_have_raw_decl_tanf=yes | gl_cv_have_raw_decl_tanhf=yes | gl_cv_have_raw_decl_tanl=yes | gl_cv_have_raw_decl_tmpfile=yes | gl_cv_have_raw_decl_towctrans=yes | gl_cv_have_raw_decl_trunc=yes | gl_cv_have_raw_decl_truncf=yes | gl_cv_have_raw_decl_truncl=yes | gl_cv_have_raw_decl_ttyname_r=yes | gl_cv_have_raw_decl_unlink=yes | gl_cv_have_raw_decl_unlinkat=yes | gl_cv_have_raw_decl_unlockpt=yes | gl_cv_have_raw_decl_unsetenv=yes | gl_cv_have_raw_decl_usleep=yes | gl_cv_have_raw_decl_utimensat=yes | gl_cv_have_raw_decl_vdprintf=yes | gl_cv_have_raw_decl_vsnprintf=yes | gl_cv_have_raw_decl_waitpid=yes | gl_cv_have_raw_decl_wcpcpy=yes | gl_cv_have_raw_decl_wcpncpy=yes | gl_cv_have_raw_decl_wcrtomb=yes | gl_cv_have_raw_decl_wcscasecmp=yes | gl_cv_have_raw_decl_wcscat=yes | gl_cv_have_raw_decl_wcschr=yes | gl_cv_have_raw_decl_wcscmp=yes | gl_cv_have_raw_decl_wcscoll=yes | gl_cv_have_raw_decl_wcscpy=yes | gl_cv_have_raw_decl_wcscspn=yes | gl_cv_have_raw_decl_wcsdup=yes | gl_cv_have_raw_decl_wcslen=yes | gl_cv_have_raw_decl_wcsncasecmp=yes | gl_cv_have_raw_decl_wcsncat=yes | gl_cv_have_raw_decl_wcsncmp=yes | gl_cv_have_raw_decl_wcsncpy=yes | gl_cv_have_raw_decl_wcsnlen=yes | gl_cv_have_raw_decl_wcsnrtombs=yes | gl_cv_have_raw_decl_wcspbrk=yes | gl_cv_have_raw_decl_wcsrchr=yes | gl_cv_have_raw_decl_wcsrtombs=yes | gl_cv_have_raw_decl_wcsspn=yes | gl_cv_have_raw_decl_wcsstr=yes | gl_cv_have_raw_decl_wcstok=yes | gl_cv_have_raw_decl_wcswidth=yes | gl_cv_have_raw_decl_wcsxfrm=yes | gl_cv_have_raw_decl_wctob=yes | gl_cv_have_raw_decl_wctrans=yes | gl_cv_have_raw_decl_wctype=yes | gl_cv_have_raw_decl_wcwidth=yes | gl_cv_have_raw_decl_wmemchr=yes | gl_cv_have_raw_decl_wmemcmp=yes | gl_cv_have_raw_decl_wmemcpy=yes | gl_cv_have_raw_decl_wmemmove=yes | gl_cv_have_raw_decl_wmemset=yes | gl_cv_have_weak=yes | gl_cv_header_errno_h_complete=yes | gl_cv_header_inttypes_h=yes | gl_cv_header_math_huge_val_works=yes | gl_cv_header_math_nan_works=yes | gl_cv_header_stdint_h=yes | gl_cv_header_wchar_h_correct_inline=yes | gl_cv_header_working_fcntl_h=yes | gl_cv_header_working_stdint_h=yes | gl_cv_long_double_equals_double=no | gl_cv_next_fcntl_h='' | gl_cv_next_getopt_h='' | gl_cv_next_inttypes_h='' | gl_cv_next_math_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_stat_h='' | gl_cv_next_sys_time_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=yes | gl_cv_test_UINT32_MAX_LT_UINTMAX_MAX=yes | gl_cv_test_UINT64_MAX_EQ_ULONG_MAX=yes | gl_cv_type_sigset_t=yes | gl_cv_type_wctrans_t=yes | gl_cv_type_wctype_t=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} /mnt/lfs/sources/bison-3.0.4/build-aux/missing aclocal-1.15' | 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='cru' | ASM_SYMBOL_PREFIX='""' | AUTOCONF='${SHELL} /mnt/lfs/sources/bison-3.0.4/build-aux/missing autoconf' | AUTOHEADER='${SHELL} /mnt/lfs/sources/bison-3.0.4/build-aux/missing autoheader' | AUTOM4TE='${SHELL} /mnt/lfs/sources/bison-3.0.4/build-aux/missing autom4te' | AUTOMAKE='${SHELL} /mnt/lfs/sources/bison-3.0.4/build-aux/missing automake-1.15' | AWK='gawk' | BISON_CXX_WORKS=':' | BISON_CXX_WORKS_FALSE='#' | BISON_CXX_WORKS_TRUE='' | 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' | CCDEPMODE='depmode=gcc3' | CFLAGS='-g -O2' | CLASSPATH='' | CLASSPATH_SEPARATOR=':' | CONFIG_INCLUDE='lib/config.h' | CONF_JAVA='' | CONF_JAVAC='' | CPP='gcc -E' | CPPFLAGS='' | CROSS_COMPILING_FALSE='' | CROSS_COMPILING_TRUE='#' | CXX='g++' | CXXDEPMODE='depmode=gcc3' | CXXFLAGS='-g -O2' | CXX_COMPILER_POSIXLY_CORRECT='true' | CYGPATH_W='echo' | C_COMPILER_POSIXLY_CORRECT='true' | DEFS='' | DEPDIR='.deps' | DOT='${SHELL} /mnt/lfs/sources/bison-3.0.4/build-aux/missing dot' | ECHO_C='' | ECHO_N='-n' | ECHO_T='' | EGREP='/bin/grep -E' | EMULTIHOP_HIDDEN='' | EMULTIHOP_VALUE='' | ENABLE_GCC_WARNINGS_FALSE='' | ENABLE_GCC_WARNINGS_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='' | FLOAT_H='' | GCC='yes' | GETOPT_H='' | GETTEXT_MACRO_VERSION='0.18' | GLIBC21='yes' | 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_SCHED_H_FALSE='' | GL_GENERATE_SCHED_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='#' | GMSGFMT='/bin/msgfmt' | GMSGFMT_015='/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='0' | 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_COSF='0' | GNULIB_COSHF='0' | GNULIB_COSL='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_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='1' | GNULIB_FREXPF='0' | GNULIB_FREXPL='1' | GNULIB_FSCANF='1' | GNULIB_FSEEK='0' | GNULIB_FSEEKO='0' | GNULIB_FSTAT='1' | GNULIB_FSTATAT='0' | GNULIB_FSYNC='0' | 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_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_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='1' | 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_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_ADDCLOSE='1' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2='1' | 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='1' | GNULIB_READ='0' | GNULIB_READLINK='0' | GNULIB_READLINKAT='0' | GNULIB_REALLOC_POSIX='1' | GNULIB_REALPATH='0' | GNULIB_REMAINDER='0' | GNULIB_REMAINDERF='0' | GNULIB_REMAINDERL='0' | GNULIB_REMOVE='0' | GNULIB_RENAME='0' | 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_SECURE_GETENV='0' | GNULIB_SETENV='0' | GNULIB_SETHOSTNAME='0' | GNULIB_SIGACTION='1' | GNULIB_SIGNAL_H_SIGPIPE='0' | GNULIB_SIGNBIT='1' | 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='1' | GNULIB_STDIO_H_NONBLOCKING='0' | GNULIB_STDIO_H_SIGPIPE='0' | GNULIB_STPCPY='1' | GNULIB_STPNCPY='0' | GNULIB_STRCASESTR='0' | GNULIB_STRCHRNUL='1' | GNULIB_STRDUP='1' | GNULIB_STRERROR='1' | GNULIB_STRERROR_R='1' | GNULIB_STRNCAT='0' | GNULIB_STRNDUP='1' | GNULIB_STRNLEN='1' | 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_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_TIME_R='0' | GNULIB_TMPFILE='0' | GNULIB_TOWCTRANS='0' | GNULIB_TRUNC='0' | GNULIB_TRUNCF='0' | GNULIB_TRUNCL='0' | GNULIB_TTYNAME_R='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='1' | 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_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_ASINF='1' | HAVE_ASINL='1' | HAVE_ATAN2F='1' | HAVE_ATANF='1' | HAVE_ATANL='1' | HAVE_ATOLL='1' | HAVE_BTOWC='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_COSF='1' | HAVE_COSHF='1' | HAVE_COSL='1' | 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_R='1' | HAVE_DECL_GETPAGESIZE='1' | HAVE_DECL_GETUSERSHELL='1' | HAVE_DECL_IMAXABS='1' | HAVE_DECL_IMAXDIV='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_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_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_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_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_INTTYPES_H='1' | HAVE_ISNAND='1' | HAVE_ISNANF='1' | HAVE_ISNANL='1' | HAVE_ISWBLANK='1' | HAVE_ISWCNTRL='1' | HAVE_JAVA='' | HAVE_JAVAC='' | HAVE_JAVAC_ENVVAR='' | HAVE_JAVAC_IN_PATH='' | HAVE_JAVA_ENVVAR='' | HAVE_JAVA_IN_PATH='' | 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_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_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_T='1' | HAVE_POWF='1' | HAVE_PREAD='1' | HAVE_PTHREAD_SIGMASK='1' | HAVE_PTSNAME='1' | HAVE_PTSNAME_R='1' | HAVE_PWRITE='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_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='' | HAVE_SECURE_GETENV='1' | HAVE_SETENV='1' | HAVE_SETHOSTNAME='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_STRTOLL='1' | HAVE_STRTOULL='1' | HAVE_STRUCT_RANDOM_DATA='1' | HAVE_STRUCT_SCHED_PARAM='' | HAVE_STRUCT_SIGACTION_SA_SIGACTION='1' | HAVE_STRUCT_TIMEVAL='1' | HAVE_STRVERSCMP='1' | HAVE_SYMLINK='1' | HAVE_SYMLINKAT='1' | HAVE_SYS_BITYPES_H='' | HAVE_SYS_INTTYPES_H='' | HAVE_SYS_LOADAVG_H='0' | HAVE_SYS_PARAM_H='0' | HAVE_SYS_TIME_H='1' | HAVE_SYS_TYPES_H='1' | HAVE_TANF='1' | HAVE_TANHF='1' | HAVE_TANL='1' | HAVE_TIMEGM='1' | HAVE_TYPE_VOLATILE_SIG_ATOMIC_T='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_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} /mnt/lfs/sources/bison-3.0.4/build-aux/missing help2man' | INCLUDE_NEXT='include_next' | INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' | INSTALL_DATA='${INSTALL} -m 644' | INSTALL_PROGRAM='${INSTALL}' | INSTALL_SCRIPT='${INSTALL}' | INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' | INT32_MAX_LT_INTMAX_MAX='1' | INT64_MAX_EQ_LONG_MAX='1' | INTLLIBS='' | INTL_MACOSX_LIBS='' | ISNAND_LIBM='' | ISNANF_LIBM='' | ISNANL_LIBM='' | ISNAN_LIBM='' | LDEXPL_LIBM='' | LDEXP_LIBM='' | LDFLAGS='' | LEX='flex' | LEXLIB='' | LEX_IS_FLEX='true' | LEX_OUTPUT_ROOT='lex.yy' | LIBBISON_LIBDEPS='' | LIBBISON_LTLIBDEPS='' | LIBICONV='-liconv' | LIBINTL='' | LIBMULTITHREAD='-pthread' | LIBOBJS='' | LIBPTH='' | LIBPTH_PREFIX='' | LIBS='' | LIBTHREAD='' | LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_FALSE='#' | LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE='' | LIBUNISTRING_UNITYPES_H='lib/unitypes.h' | LIBUNISTRING_UNIWIDTH_H='lib/uniwidth.h' | LIB_POSIX_SPAWN='' | LOCALCHARSET_TESTS_ENVIRONMENT='CHARSETALIASDIR="$(abs_top_builddir)/lib"' | LOCALE_FR_UTF8='none' | LOCALE_JA='none' | LOCALE_ZH_CN='none' | LTLIBICONV='-liconv' | LTLIBINTL='' | LTLIBMULTITHREAD='-pthread' | LTLIBOBJS='' | LTLIBPTH='' | LTLIBTHREAD='' | M4='/tools/bin/m4' | M4_DEBUGFILE='--debugfile' | M4_GNU='--gnu' | MAKEINFO='${SHELL} /mnt/lfs/sources/bison-3.0.4/build-aux/missing makeinfo' | MKDIR_P='/bin/mkdir -p' | MSGFMT='/bin/msgfmt' | MSGFMT_015='/bin/msgfmt' | MSGMERGE='/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_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_STAT_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_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_STAT_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='' | OBJEXT='o' | PACKAGE='bison' | PACKAGE_BUGREPORT='address@hidden' | PACKAGE_COPYRIGHT_YEAR='2015' | PACKAGE_NAME='GNU Bison' | PACKAGE_STRING='GNU Bison 3.0.4' | PACKAGE_TARNAME='bison' | PACKAGE_URL='http://www.gnu.org/software/bison/' | PACKAGE_VERSION='3.0.4' | PATH_SEPARATOR=':' | PERL='/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' | 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_DPRINTF='0' | REPLACE_DUP2='0' | REPLACE_DUP='0' | REPLACE_EXP2='0' | REPLACE_EXP2L='0' | REPLACE_EXPM1='0' | REPLACE_EXPM1F='0' | REPLACE_FABSL='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_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_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='0' | 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_ADDCLOSE='0' | REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2='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_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_RMDIR='0' | REPLACE_ROUND='0' | REPLACE_ROUNDF='0' | REPLACE_ROUNDL='0' | REPLACE_SETENV='0' | REPLACE_SIGNBIT='0' | REPLACE_SIGNBIT_USING_GCC='1' | REPLACE_SLEEP='0' | REPLACE_SNPRINTF='0' | REPLACE_SPRINTF='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_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_STRTOUMAX='0' | REPLACE_STRUCT_TIMEVAL='0' | REPLACE_SYMLINK='0' | REPLACE_SYMLINKAT='0' | REPLACE_TIMEGM='GNULIB_PORTCHECK' | REPLACE_TMPFILE='0' | REPLACE_TOWLOWER='0' | REPLACE_TRUNC='0' | REPLACE_TRUNCF='0' | REPLACE_TRUNCL='0' | REPLACE_TTYNAME_R='0' | 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_WCSNRTOMBS='0' | REPLACE_WCSRTOMBS='0' | REPLACE_WCSWIDTH='0' | REPLACE_WCTOB='0' | REPLACE_WCTOMB='0' | REPLACE_WCWIDTH='0' | REPLACE_WRITE='0' | SCHED_H='' | SED='/bin/sed' | SET_MAKE='' | SHELL='/bin/sh' | SIG_ATOMIC_T_SUFFIX='' | SIZE_T_SUFFIX='' | STDBOOL_H='' | STDDEF_H='' | STDINT_H='' | STRIP='' | SYS_TIME_H_DEFINES_STRUCT_TIMESPEC='0' | TIME_H_DEFINES_STRUCT_TIMESPEC='1' | UINT32_MAX_LT_UINTMAX_MAX='1' | UINT64_MAX_EQ_ULONG_MAX='1' | 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 --gen-suppressions=all --suppressions=$(abs_top_srcdir)/build-aux/linux-gnu.valgrind' | VALGRIND_PREBISON='valgrind --gen-suppressions=all --suppressions=$(abs_top_srcdir)/build-aux/linux-gnu.valgrind -q' | VERSION='3.0.4' | 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' | WINT_T_SUFFIX='' | XGETTEXT='/bin/xgettext' | XGETTEXT_015='/bin/xgettext' | XGETTEXT_EXTRA_OPTIONS=' --flag=error:3:c-format --flag=error_at_line:5:c-format' | XSLTPROC='/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=' -I$(srcdir)' | am__leading_dot='.' | am__nodep='_no' | am__quote='' | am__tar='$${TAR-tar} chof - "$$tardir"' | am__untar='$${TAR-tar} xf -' | bindir='${exec_prefix}/bin' | build='mips64el-unknown-linux-gnu' | build_alias='' | build_cpu='mips64el' | build_os='linux-gnu' | build_vendor='unknown' | datadir='${datarootdir}' | datarootdir='${prefix}/share' | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' | dvidir='${docdir}' | exec_prefix='${prefix}' | gl_LIBOBJS=' lib/asnprintf.o lib/fcntl.o lib/fseterr.o lib/obstack.o lib/printf-args.o lib/printf-parse.o lib/strerror_r.o lib/vasnprintf.o lib/xmemdup0.o' | gl_LTLIBOBJS=' lib/asnprintf.lo lib/fcntl.lo lib/fseterr.lo lib/obstack.lo lib/printf-args.lo lib/printf-parse.lo lib/strerror_r.lo lib/vasnprintf.lo lib/xmemdup0.lo' | gltests_LIBOBJS='' | gltests_LTLIBOBJS='' | gltests_WITNESS='IN_BISON_GNULIB_TESTS' | host='mips64el-unknown-linux-gnu' | host_alias='' | host_cpu='mips64el' | host_os='linux-gnu' | host_vendor='unknown' | htmldir='${docdir}' | includedir='${prefix}/include' | infodir='${datarootdir}/info' | install_sh='${SHELL} /mnt/lfs/sources/bison-3.0.4/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='/tools' | program_transform_name='s,x,x,' | psdir='${docdir}' | runstatedir='${localstatedir}/run' | sbindir='${exec_prefix}/sbin' | sharedstatedir='${prefix}/com' | sysconfdir='${prefix}/etc' | target_alias='' | | ## ----------- ## | ## confdefs.h. ## | ## ----------- ## | | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "3.0.4" | #define PACKAGE_STRING "GNU Bison 3.0.4" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2015 | #define PACKAGE "bison" | #define VERSION "3.0.4" | #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 __USE_MINGW_ANSI_STDIO 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _DARWIN_USE_64_BIT_INODE 1 | #define M4 "/tools/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_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_SYS_STAT_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_SYS_TIME_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_SYS_PARAM_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_FCNTL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_LSTAT 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_OBSTACK_PRINTF 1 | #define HAVE_STRERROR_R 1 | #define HAVE___XPG_STRERROR_R 1 | #define HAVE_PIPE2 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_CATGETS 1 | #define HAVE_STRNDUP 1 | #define HAVE_PIPE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 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_DECL_ALARM 1 | #define HAVE_RAW_DECL_FCHMODAT 1 | #define HAVE_RAW_DECL_FSTAT 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_FUTIMENS 1 | #define HAVE_RAW_DECL_LCHMOD 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKDIRAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKFIFOAT 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_MKNODAT 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_UTIMENSAT 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define restrict __restrict | #define HAVE_RAW_DECL_GETTIMEOFDAY 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_INTTYPES_H 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define USE_POSIX_THREADS 1 | #define USE_POSIX_THREADS_WEAK 1 | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 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 HAVE_WORKING_POSIX_SPAWN 1 | #define USER_LABEL_PREFIX | #define HAVE_SIGSET_T 1 | #define HAVE_DECL_SNPRINTF 1 | #define HAVE__BOOL 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_FFSL 1 | #define HAVE_RAW_DECL_FFSLL 1 | #define HAVE_RAW_DECL_MEMMEM 1 | #define HAVE_RAW_DECL_MEMPCPY 1 | #define HAVE_RAW_DECL_MEMRCHR 1 | #define HAVE_RAW_DECL_RAWMEMCHR 1 | #define HAVE_RAW_DECL_STPCPY 1 | #define HAVE_RAW_DECL_STPNCPY 1 | #define HAVE_RAW_DECL_STRCHRNUL 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRNDUP 1 | #define HAVE_RAW_DECL_STRNLEN 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRSEP 1 | #define HAVE_RAW_DECL_STRCASESTR 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_RAW_DECL_STRVERSCMP 1 | #define HAVE_DECL_STRNDUP 1 | #define HAVE_DECL_STRNLEN 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_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_ALLOCA 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 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 HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 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 HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define HAVE_FREXPL_IN_LIBC 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_FSTAT 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define GETTIMEOFDAY_TIMEZONE struct timezone | #define GNULIB_TEST_GETTIMEOFDAY 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_PTHREAD_RWLOCK 1 | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | #define GNULIB_LOCK 1 | #define GNULIB_TEST_LSTAT 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 HAVE_RAW_DECL_ACOSF 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINF 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANF 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CBRT 1 | #define HAVE_RAW_DECL_CBRTF 1 | #define HAVE_RAW_DECL_CBRTL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COPYSIGN 1 | #define HAVE_RAW_DECL_COPYSIGNF 1 | #define HAVE_RAW_DECL_COPYSIGNL 1 | #define HAVE_RAW_DECL_COSF 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_COSHF 1 | #define HAVE_RAW_DECL_EXPF 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_EXP2 1 | #define HAVE_RAW_DECL_EXP2F 1 | #define HAVE_RAW_DECL_EXP2L 1 | #define HAVE_RAW_DECL_EXPM1 1 | #define HAVE_RAW_DECL_EXPM1F 1 | #define HAVE_RAW_DECL_EXPM1L 1 | #define HAVE_RAW_DECL_FABSF 1 | #define HAVE_RAW_DECL_FABSL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FMA 1 | #define HAVE_RAW_DECL_FMAF 1 | #define HAVE_RAW_DECL_FMAL 1 | #define HAVE_RAW_DECL_FMOD 1 | #define HAVE_RAW_DECL_FMODF 1 | #define HAVE_RAW_DECL_FMODL 1 | #define HAVE_RAW_DECL_FREXPF 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_HYPOTF 1 | #define HAVE_RAW_DECL_HYPOTL 1 | #define HAVE_RAW_DECL_ILOGB 1 | #define HAVE_RAW_DECL_ILOGBF 1 | #define HAVE_RAW_DECL_ILOGBL 1 | #define HAVE_RAW_DECL_LDEXPF 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOG 1 | #define HAVE_RAW_DECL_LOGF 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_LOG10 1 | #define HAVE_RAW_DECL_LOG10F 1 | #define HAVE_RAW_DECL_LOG10L 1 | #define HAVE_RAW_DECL_LOG1P 1 | #define HAVE_RAW_DECL_LOG1PF 1 | #define HAVE_RAW_DECL_LOG1PL 1 | #define HAVE_RAW_DECL_LOG2 1 | #define HAVE_RAW_DECL_LOG2F 1 | #define HAVE_RAW_DECL_LOG2L 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGBF 1 | #define HAVE_RAW_DECL_LOGBL 1 | #define HAVE_RAW_DECL_MODF 1 | #define HAVE_RAW_DECL_MODFF 1 | #define HAVE_RAW_DECL_MODFL 1 | #define HAVE_RAW_DECL_POWF 1 | #define HAVE_RAW_DECL_REMAINDER 1 | #define HAVE_RAW_DECL_REMAINDERF 1 | #define HAVE_RAW_DECL_REMAINDERL 1 | #define HAVE_RAW_DECL_RINT 1 | #define HAVE_RAW_DECL_RINTF 1 | #define HAVE_RAW_DECL_RINTL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINF 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SINHF 1 | #define HAVE_RAW_DECL_SQRTF 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANF 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TANHF 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 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_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 HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define HAVE_FREXPL_IN_LIBC 1 | #define HAVE_LDEXPL_IN_LIBC 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 HAVE_RAWMEMCHR 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 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 HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define GNULIB_FSCANF 1 | #define GNULIB_SCANF 1 | #define HAVE_RAW_DECL_DPRINTF 1 | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_GETDELIM 1 | #define HAVE_RAW_DECL_GETLINE 1 | #define HAVE_RAW_DECL_PCLOSE 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_RENAMEAT 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VDPRINTF 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_CANONICALIZE_FILE_NAME 1 | #define HAVE_RAW_DECL_GETLOADAVG 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_INITSTATE 1 | #define HAVE_RAW_DECL_INITSTATE_R 1 | #define HAVE_RAW_DECL_MKDTEMP 1 | #define HAVE_RAW_DECL_MKOSTEMP 1 | #define HAVE_RAW_DECL_MKOSTEMPS 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_MKSTEMPS 1 | #define HAVE_RAW_DECL_POSIX_OPENPT 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_PTSNAME_R 1 | #define HAVE_RAW_DECL_RANDOM 1 | #define HAVE_RAW_DECL_RANDOM_R 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_RPMATCH 1 | #define HAVE_RAW_DECL_SECURE_GETENV 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_SETSTATE 1 | #define HAVE_RAW_DECL_SETSTATE_R 1 | #define HAVE_RAW_DECL_SRANDOM 1 | #define HAVE_RAW_DECL_SRANDOM_R 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define HAVE_STPCPY 1 | #define GNULIB_TEST_STPCPY 1 | #define HAVE_STRCHRNUL 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_STRERROR 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRERROR_R 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRVERSCMP 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_FCHMODAT 1 | #define HAVE_RAW_DECL_FSTAT 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_FUTIMENS 1 | #define HAVE_RAW_DECL_LCHMOD 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKDIRAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKFIFOAT 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_MKNODAT 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_UTIMENSAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHDIR 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_DUP3 1 | #define HAVE_RAW_DECL_ENVIRON 1 | #define HAVE_RAW_DECL_EUIDACCESS 1 | #define HAVE_RAW_DECL_FACCESSAT 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FDATASYNC 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDOMAINNAME 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_GROUP_MEMBER 1 | #define HAVE_RAW_DECL_ISATTY 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LINKAT 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PIPE2 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_READLINKAT 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SETHOSTNAME 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_SYMLINKAT 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define GNULIB_TEST_UNLINK 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define GNULIB_TEST_VFPRINTF_POSIX 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_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_MBSNRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCSNRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSNLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCPCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCPNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCASECMP 1 | #define HAVE_RAW_DECL_WCSNCASECMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | #define HAVE_RAW_DECL_WCSDUP 1 | #define HAVE_RAW_DECL_WCSCHR 1 | #define HAVE_RAW_DECL_WCSRCHR 1 | #define HAVE_RAW_DECL_WCSCSPN 1 | #define HAVE_RAW_DECL_WCSSPN 1 | #define HAVE_RAW_DECL_WCSPBRK 1 | #define HAVE_RAW_DECL_WCSSTR 1 | #define HAVE_RAW_DECL_WCSTOK 1 | #define HAVE_RAW_DECL_WCSWIDTH 1 | #define HAVE_TOWLOWER 1 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_TIMES 1 | #define HAVE_DECL_GETRUSAGE 1 | #define HAVE_DECL_TIMES 1 | #define HAVE_DECL_CLOCK 0 | #define HAVE_DECL_SYSCONF 1 | #define HAVE_CLOCK_T 1 | #define HAVE_STRUCT_TMS 1 | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define YYENABLE_NLS 1 | | configure: exit 0