bug-bison
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Errors from BSD/OS 4.3.1


From: Dave Shariff Yadallee - System Administrator a.k.a. The Root of the Problem
Subject: Errors from BSD/OS 4.3.1
Date: Mon, 18 Feb 2013 13:28:30 -0700
User-agent: Mutt/1.5.18 (2008-05-17)

## ------------------------- ##
## GNU Bison 2.7 test suite. ##
## ------------------------- ##

testsuite: command line was:
  $ ./testsuite 

## ---------- ##
## ChangeLog. ##
## ---------- ##

| 2012-12-12  Akim Demaille  <address@hidden>
| 
|       version 2.7
|       * NEWS: Record release date.
| 
| 2012-12-12  Akim Demaille  <address@hidden>
| 
|       yacc.c: scope reduction
|       * data/yacc.c (yysyntax_error): here.
| 

## --------- ##
## Platform. ##
## --------- ##

hostname = doctor.nl2k.ab.ca
uname -m = i386
uname -r = 4.3
uname -s = BSD/OS
uname -v = BSDI BSD/OS 4.3

/usr/bin/uname -p = 
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /usr/source/bison-2.7/tests
PATH: /usr/source/bison-2.7
PATH: /root/bin
PATH: /usr/bin
PATH: /usr/X11/bin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /bin
PATH: /sbin
PATH: /usr/games
PATH: /usr/contrib/bin
PATH: /var/news/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='/usr/source/bison-2.7/tests'
| at_srcdir='.'
| abs_srcdir='/usr/source/bison-2.7/tests'
| at_top_srcdir='..'
| abs_top_srcdir='/usr/source/bison-2.7'
| at_top_build_prefix='../'
| abs_top_builddir='/usr/source/bison-2.7'
| 
| # Backward compatibility with Autotest <= 2.59b:
| at_top_builddir=$at_top_build_prefix
| 
| AUTOTEST_PATH='tests'
| 
| SHELL=${CONFIG_SHELL-'/bin/bash'}

testsuite: atlocal:
| # tests/atlocal.  Generated from atlocal.in by configure.                     
                -*- shell-script -*-
| # Configurable variable values for Bison test suite.
| 
| # Copyright (C) 2000-2012 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 <http://www.gnu.org/licenses/>.
| 
| # 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 -std=gnu99'}
| : ${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/C++ tests; otherwise ':'.
| BISON_C_WORKS=':'
| BISON_CXX_WORKS=':'
| 
| # 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.
| : ${EGREP='/bin/grep -E'}
| 
| # Use simple quotes (lib/quote.c).
| LC_CTYPE=C
| export LC_CTYPE
| 
| # Are special link options needed?
| LDFLAGS=''
| 
| # Are special libraries needed?
| LIBS="$abs_top_builddir/lib/libbison.a  "
| 
| # Empty if no xsltproc was found
| : ${XSLTPROC='/usr/contrib/bin/xsltproc'}
| 
| : ${PERL='/usr/bin/perl'}

## ---------------- ##
## Tested programs. ##
## ---------------- ##

./local.at:913: /usr/source/bison-2.7/tests/bison --version
bison (GNU Bison) 2.7
Written by Robert Corbett and Richard Stallman.

Copyright (C) 2012 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 Feb 18 12:55:43 MST 2013
1. Invalid inputs (input.at:27): ok     (0m0.000s 0m0.104s)
2. Invalid inputs with {} (input.at:57): ok     (0m0.000s 0m0.074s)
3. Invalid $n and @n (input.at:84): ok     (0m0.000s 0m0.053s)
4. Type Clashes (input.at:104): ok     (0m0.000s 0m0.061s)
5. Unused values (input.at:285): ok     (0m0.736s 0m0.768s)
6. Unused values before symbol declarations (input.at:295): ok     (0m0.765s 
0m1.033s)
7. Default %printer and %destructor redeclared (input.at:305): ok     (0m0.013s 
0m0.068s)
8. Per-type %printer and %destructor redeclared (input.at:365): ok     
(0m0.022s 0m0.061s)
9. Unused values with default %destructor (input.at:408): ok     (0m0.522s 
0m0.797s)
10. Unused values with per-type %destructor (input.at:450): ok     (0m0.297s 
0m0.406s)
11. Incompatible Aliases (input.at:475): ok     (0m0.000s 0m0.099s)
12. Torturing the Scanner (input.at:516): ok     (0m0.310s 0m0.547s)
13. Typed symbol aliases (input.at:674): ok     (0m0.079s 0m0.040s)
14. Require 1.0 (input.at:710): ok     (0m0.082s 0m0.039s)
15. Require 2.7 (input.at:711): ok     (0m0.108s 0m0.030s)
16. Require 100.0 (input.at:713): ok     (0m0.008s 0m0.019s)
17. String aliases for character tokens (input.at:720): ok     (0m0.066s 
0m0.105s)
18. Symbols (input.at:741): ok     (0m0.435s 0m0.619s)
19. Numbered tokens (input.at:807): ok     (0m0.021s 0m0.451s)
20. Unclosed constructs (input.at:845): ok     (0m0.018s 0m0.122s)
21. %start after first rule (input.at:909): ok     (0m0.090s 0m0.043s)
22. %prec takes a token (input.at:930): ok     (0m0.009s 0m0.057s)
23. %prec's token must be defined (input.at:951): ok     (0m0.317s 0m0.524s)
24. Reject unused %code qualifiers (input.at:971): ok     (0m0.525s 0m0.641s)
25. %define errors (input.at:1060): ok     (0m0.078s 0m0.143s)
26. %define, --define, --force-define (input.at:1096): ok     (0m0.142s 
0m0.301s)
27. %define Boolean variables (input.at:1161): ok     (0m0.076s 0m0.111s)
28. %define enum variables (input.at:1181): ok     (0m0.114s 0m0.145s)
29. %define backward compatibility (input.at:1216): ok     (0m0.149s 0m0.288s)
30. Unused %define api.pure (input.at:1257): ok     (0m0.508s 0m0.531s)
31. C++ namespace reference errors (input.at:1290): ok     (0m0.796s 0m0.781s)
32. Bad character literals (input.at:1346): ok     (0m0.048s 0m0.208s)
33. Bad escapes in literals (input.at:1399): ok     (0m0.022s 0m0.105s)
34. LAC: Errors for %define (input.at:1448): ok     (0m0.164s 0m0.229s)
35. -Werror is not affected by -Wnone and -Wall (input.at:1471): ok     
(0m0.723s 0m1.201s)
36. %name-prefix and %define api.prefix are incompatible (input.at:1505): ok    
 (0m0.320s 0m0.294s)
37. Stray $ or @ (input.at:1534): ok     (0m0.268s 0m0.255s)
38. Code injection (input.at:1568): ok     (0m0.881s 0m0.322s)
39. Tutorial calculator (named-refs.at:21): ok     (0m0.276s 0m0.225s)
40. Undefined and ambiguous references (named-refs.at:195): ok     (0m0.000s 
0m0.059s)
41. Misleading references (named-refs.at:271): ok     (0m0.278s 0m0.260s)
42. Many kinds of errors (named-refs.at:288): ok     (0m0.029s 0m0.058s)
43. Missing identifiers in brackets (named-refs.at:521): ok     (0m0.000s 
0m0.034s)
44. Redundant words in brackets (named-refs.at:535): ok     (0m0.017s 0m0.048s)
45. Comments in brackets (named-refs.at:549): ok     (0m0.000s 0m0.063s)
46. Stray symbols in brackets (named-refs.at:563): ok     (0m0.000s 0m0.093s)
47. Redundant words in LHS brackets (named-refs.at:580): ok     (0m0.000s 
0m0.023s)
48. Factored LHS (named-refs.at:595): ok     (0m0.071s 0m0.072s)
49. Unresolved references (named-refs.at:606): ok     (0m0.000s 0m0.065s)
50. $ or @ followed by . or - (named-refs.at:671): ok     (0m0.237s 0m0.353s)
51. Output files:  -dv  (output.at:44): ok     (0m0.080s 0m0.085s)
52. Output files:  -dv >&- (output.at:50): ok     (0m0.110s 0m0.065s)
53. Output files:  -dv -o foo.c  (output.at:55): ok     (0m0.087s 0m0.066s)
54. Output files:  -dv -o foo.tab.c  (output.at:57): ok     (0m0.064s 0m0.181s)
55. Output files:  -dv -y  (output.at:59): ok     (0m0.090s 0m0.047s)
56. Output files:  -dv -b bar  (output.at:61): ok     (0m0.094s 0m0.161s)
57. Output files:  -dv -g -o foo.c  (output.at:63): ok     (0m0.104s 0m0.059s)
58. Output files: %defines %verbose   (output.at:67): ok     (0m0.093s 0m0.090s)
59. Output files: %defines %verbose %yacc   (output.at:69): ok     (0m0.072s 
0m0.048s)
60. Output files: %defines %verbose %yacc   (output.at:72): ok     (0m0.059s 
0m0.075s)
61. Output files: %file-prefix "bar" %defines %verbose   (output.at:76): ok     
(0m0.045s 0m0.077s)
62. Output files: %output="bar.c" %defines %verbose %yacc   (output.at:78): ok  
   (0m0.088s 0m0.022s)
63. Output files: %file-prefix="baz" %output "bar.c" %defines %verbose %yacc   
(output.at:80): ok     (0m0.080s 0m0.073s)
64. Output files: %defines %verbose   (output.at:87): ok     (0m0.092s 0m0.044s)
65. Output files: %defines %verbose  -o foo.c  (output.at:90): ok     (0m0.068s 
0m0.138s)
66. Output files:  --defines=foo.hpp -o foo.c++  (output.at:93): ok     
(0m0.065s 0m0.067s)
67. Output files: %defines "foo.hpp" -o foo.c++  (output.at:97): ok     
(0m0.083s 0m0.061s)
68. Output files:  -o foo.c++ --graph=foo.gph  (output.at:101): ok     
(0m0.084s 0m0.064s)
69. Output files: %skeleton "lalr1.cc" %defines %verbose   (output.at:116): ok  
   (0m0.077s 0m0.055s)
70. Output files: %skeleton "lalr1.cc" %defines %verbose   (output.at:119): ok  
   (0m0.067s 0m0.117s)
71. Output files: %skeleton "lalr1.cc" %defines %verbose -o subdir/foo.cc  
(output.at:123): ok     (0m0.075s 0m0.365s)
72. Output files: %skeleton "lalr1.cc" %defines %verbose %file-prefix 
"output_dir/foo"   (output.at:128): ok     (0m0.104s 0m0.281s)
73. Conflicting output files:  --graph="foo.tab.c" (output.at:158): ok     
(0m0.389s 0m0.341s)
74. Conflicting output files: %defines "foo.output" -v (output.at:163): ok     
(0m0.432s 0m0.476s)
75. Conflicting output files: %skeleton "lalr1.cc" %defines 
--graph="location.hh" (output.at:168): ok     (0m0.415s 0m0.281s)
76. Conflicting output files:  -o foo.y (output.at:173): ok     (0m0.091s 
0m0.066s)
86. Graph with no conflicts (output.at:260): ok     (0m0.077s 0m0.105s)
87. Graph with unsolved S/R (output.at:294): ok     (0m0.075s 0m0.113s)
88. Graph with solved S/R (output.at:358): ok     (0m0.068s 0m0.165s)
89. Graph with R/R (output.at:417): ok     (0m0.087s 0m0.058s)
90. Graph with reductions with multiple LAT (output.at:449): ok     (0m0.088s 
0m0.109s)
91. Graph with a reduction rule both enabled and disabled (output.at:508): ok   
  (0m0.078s 0m0.110s)
92. Relative skeleton file names (skeletons.at:24): ok     (0m0.161s 0m0.194s)
93. Installed skeleton file names (skeletons.at:84): ok     (0m0.561s 0m0.536s)
94. %define Boolean variables: invalid skeleton defaults (skeletons.at:146): ok 
    (0m0.059s 0m0.111s)
95. Complaining during macro argument expansion (skeletons.at:170): ok     
(0m0.033s 0m0.239s)
96. Fatal errors make M4 exit immediately (skeletons.at:252): ok     (0m0.026s 
0m0.117s)
97. Fatal errors but M4 continues producing output (skeletons.at:306): ok     
(0m0.037s 0m0.068s)
98. Nullable (sets.at:66): ok     (0m0.092s 0m0.210s)
99. Broken Closure (sets.at:151): ok     (0m0.088s 0m0.074s)
100. Firsts (sets.at:193): ok     (0m0.084s 0m0.137s)
101. Accept (sets.at:269): ok     (0m0.078s 0m0.116s)
102. Useless Terminals (reduce.at:25): ok     (0m0.064s 0m0.096s)
103. Useless Nonterminals (reduce.at:69): ok     (0m0.237s 0m0.422s)
104. Useless Rules (reduce.at:124): ok     (0m0.543s 0m0.905s)
105. Reduced Automaton (reduce.at:271): ok     (0m0.637s 0m0.831s)
106. Underivable Rules (reduce.at:381): ok     (0m0.321s 0m0.317s)
107. Empty Language (reduce.at:423): ok     (0m0.020s 0m0.047s)
108. no %define lr.type: Single State Split (reduce.at:474): ok     (0m0.236s 
0m0.328s)
109. %define lr.type lalr: Single State Split (reduce.at:474): ok     (0m0.268s 
0m0.251s)
110. %define lr.type ielr: Single State Split (reduce.at:474): ok     (0m0.300s 
0m0.213s)
111. %define lr.type canonical-lr: Single State Split (reduce.at:474): ok     
(0m0.214s 0m0.345s)
112. no %define lr.type: Lane Split (reduce.at:707): ok     (0m0.238s 0m0.208s)
113. %define lr.type lalr: Lane Split (reduce.at:707): ok     (0m0.203s 
0m0.268s)
114. %define lr.type ielr: Lane Split (reduce.at:707): ok     (0m0.237s 
0m0.196s)
115. %define lr.type canonical-lr: Lane Split (reduce.at:707): ok     (0m0.217s 
0m0.211s)
116. no %define lr.type: Complex Lane Split (reduce.at:951): ok     (0m0.178s 
0m0.292s)
117. %define lr.type lalr: Complex Lane Split (reduce.at:951): ok     (0m0.206s 
0m0.228s)
118. %define lr.type ielr: Complex Lane Split (reduce.at:951): ok     (0m0.196s 
0m0.232s)
119. %define lr.type canonical-lr: Complex Lane Split (reduce.at:951): ok     
(0m0.193s 0m0.233s)
120. no %define lr.type: Split During Added Lookahead Propagation 
(reduce.at:1220): ok     (0m0.211s 0m0.288s)
121. %define lr.type lalr: Split During Added Lookahead Propagation 
(reduce.at:1220): ok     (0m0.183s 0m0.295s)
122. %define lr.type ielr: Split During Added Lookahead Propagation 
(reduce.at:1220): ok     (0m0.192s 0m0.194s)
123. %define lr.type canonical-lr: Split During Added Lookahead Propagation 
(reduce.at:1220): ok     (0m0.203s 0m0.200s)
124. no %define lr.default-reductions (reduce.at:1550): ok     (0m0.221s 
0m0.193s)
125. %define lr.default-reductions most (reduce.at:1550): ok     (0m0.203s 
0m0.264s)
126. %define lr.default-reductions consistent (reduce.at:1550): ok     
(0m0.233s 0m0.466s)
127. %define lr.default-reductions accepting (reduce.at:1550): ok     (0m0.220s 
0m0.186s)
128. Prologue syncline (synclines.at:150): ok     (0m0.188s 0m0.270s)
129. %union syncline (synclines.at:168): ok     (0m0.171s 0m0.228s)
130. Postprologue syncline (synclines.at:189): ok     (0m0.207s 0m0.317s)
131. Action syncline (synclines.at:213): ok     (0m0.167s 0m0.231s)
132. Epilogue syncline (synclines.at:232): ok     (0m0.218s 0m0.287s)
133. %code top syncline (synclines.at:249): ok     (0m0.148s 0m0.283s)
134. %no-lines (synclines.at:290): ok     (0m0.077s 0m0.109s)
135. %no-lines (synclines.at:291): ok     (0m0.081s 0m0.069s)
136. %no-lines (synclines.at:292): ok     (0m0.077s 0m0.091s)
137. %no-lines (synclines.at:293): ok     (0m0.107s 0m0.093s)
138. Invalid CPP guards:  --defines=input/input.h (headers.at:57): ok     
(0m0.202s 0m0.123s)
139. Invalid CPP guards:  --defines=9foo.h (headers.at:58): ok     (0m0.172s 
0m0.144s)
140. Invalid CPP guards: %glr-parser --defines=input/input.h (headers.at:59): 
ok     (0m0.559s 0m0.262s)
141. Invalid CPP guards: %glr-parser --defines=9foo.h (headers.at:60): ok     
(0m0.584s 0m0.182s)
142. export YYLTYPE (headers.at:69): ok     (0m0.303s 0m0.240s)
144. Mid-rule actions (actions.at:24): ok     (0m0.389s 0m0.197s)
145. Initial location: yacc.c  (actions.at:133): ok     (0m0.341s 0m0.261s)
146. Initial location: yacc.c %define api.pure full (actions.at:134): ok     
(0m0.378s 0m0.261s)
147. Initial location: yacc.c %define api.pure %parse-param { int x } 
(actions.at:135): ok     (0m0.426s 0m0.227s)
148. Initial location: yacc.c %define api.push-pull both (actions.at:136): ok   
  (0m0.457s 0m0.229s)
149. Initial location: yacc.c %define api.push-pull both %define api.pure full 
(actions.at:137): ok     (0m0.489s 0m0.211s)
150. Initial location: glr.c  (actions.at:138): ok     (0m0.983s 0m0.268s)
151. Initial location: glr.c %define api.pure (actions.at:139): ok     
(0m1.027s 0m0.191s)
154. Initial location: yacc.c %define api.pure full (actions.at:150): ok     
(0m0.262s 0m0.215s)
155. Initial location: yacc.c %define api.pure full (actions.at:161): ok     
(0m0.311s 0m0.209s)
156. Location print: yacc.c  (actions.at:244): ok     (0m0.406s 0m0.301s)
157. Location print: glr.c  (actions.at:245): ok     (0m0.955s 0m0.236s)
158. Exotic Dollars (actions.at:257): ok     (0m0.570s 0m0.362s)
159. Printers and Destructors (actions.at:751): ok     (0m0.719s 0m0.769s)
160. Printers and Destructors with union (actions.at:752): ok     (0m0.544s 
0m0.487s)
163. Printers and Destructors: %glr-parser (actions.at:757): ok     (0m1.582s 
0m0.788s)
164. Printers and Destructors with union: %glr-parser (actions.at:758): ok     
(0m1.367s 0m0.523s)
165. Default tagless %printer and %destructor (actions.at:769): ok     
(0m0.454s 0m0.253s)
166. Default tagged and per-type %printer and %destructor (actions.at:867): ok  
   (0m0.388s 0m0.409s)
167. Default %printer and %destructor for user-defined end token 
(actions.at:991): ok     (0m0.885s 0m0.436s)
168. Default %printer and %destructor are not for error or $undefined 
(actions.at:1098): ok     (0m0.296s 0m0.213s)
169. Default %printer and %destructor are not for $accept (actions.at:1193): ok 
    (0m0.278s 0m0.139s)
170. Default %printer and %destructor for mid-rule values (actions.at:1258): ok 
    (0m0.928s 0m1.229s)
171. @$ in %initial-action implies %locations (actions.at:1406): ok     
(0m0.303s 0m0.172s)
172. @$ in %destructor implies %locations (actions.at:1407): ok     (0m0.339s 
0m0.110s)
173. @$ in %printer implies %locations (actions.at:1408): ok     (0m0.342s 
0m0.225s)
174. Qualified $$ in actions: yacc.c (actions.at:1529): ok     (0m0.381s 
0m0.203s)
175. Qualified $$ in actions: glr.c (actions.at:1530): ok     (0m0.922s 
0m0.321s)
178. Fix user actions without a trailing semicolon (actions.at:1540): ok     
(0m0.262s 0m0.583s)
179. Destroying lookahead assigned by semantic action (actions.at:1649): ok     
(0m0.202s 0m0.337s)
180. YYBACKUP (actions.at:1708): ok     (0m0.327s 0m0.401s)
181. S/R in initial (conflicts.at:31): ok     (0m0.599s 0m0.985s)
182. %nonassoc and eof (conflicts.at:57): ok     (0m1.343s 0m2.210s)
184. LAC: %nonassoc requires splitting canonical LR states (conflicts.at:456): 
ok     (0m1.073s 0m0.732s)
185. Unresolved SR Conflicts (conflicts.at:546): ok     (0m0.089s 0m0.056s)
186. Resolved SR Conflicts (conflicts.at:653): ok     (0m0.071s 0m0.069s)
187. Defaulted Conflicted Reduction (conflicts.at:775): ok     (0m0.266s 
0m0.367s)
188. %expect not enough (conflicts.at:894): ok     (0m0.000s 0m0.094s)
189. %expect right (conflicts.at:914): ok     (0m0.063s 0m0.064s)
190. %expect too much (conflicts.at:931): ok     (0m0.000s 0m0.060s)
191. %expect with reduce conflicts (conflicts.at:951): ok     (0m0.000s 
0m0.055s)
192. %prec with user string (conflicts.at:971): ok     (0m0.090s 0m0.192s)
193. %no-default-prec without %prec (conflicts.at:988): ok     (0m0.106s 
0m0.132s)
194. %no-default-prec with %prec (conflicts.at:1014): ok     (0m0.087s 0m0.078s)
195. %default-prec (conflicts.at:1038): ok     (0m0.083s 0m0.095s)
196. Unreachable States After Conflict Resolution (conflicts.at:1062): ok     
(0m0.562s 0m0.865s)
197. Solved conflicts report for multiple reductions in a state 
(conflicts.at:1273): ok     (0m0.103s 0m0.094s)
198. %nonassoc error actions for multiple reductions in a state 
(conflicts.at:1353): ok     (0m0.100s 0m0.093s)
199. -W versus %expect and %expect-rr (conflicts.at:1422): ok     (0m1.563s 
0m3.944s)
200. Calculator  (calc.at:597): ok     (0m0.541s 0m1.225s)
201. Calculator %defines (calc.at:599): ok     (0m0.578s 0m1.417s)
202. Calculator %locations (calc.at:600): ok     (0m0.502s 0m1.252s)
203. Calculator %name-prefix="calc" (calc.at:602): ok     (0m0.458s 0m1.230s)
204. Calculator %verbose (calc.at:603): ok     (0m0.453s 0m1.198s)
205. Calculator %yacc (calc.at:604): ok     (0m0.446s 0m1.017s)
206. Calculator %error-verbose (calc.at:605): ok     (0m0.724s 0m1.212s)
207. Calculator %define api.pure full %locations (calc.at:607): ok     
(0m0.739s 0m2.231s)
208. Calculator %define api.push-pull both %define api.pure full %locations 
(calc.at:608): ok     (0m0.618s 0m1.595s)
209. Calculator %error-verbose %locations (calc.at:609): ok     (0m0.609s 
0m2.330s)
210. Calculator %error-verbose %locations %defines %name-prefix "calc" %verbose 
%yacc (calc.at:611): ok     (0m0.661s 0m1.347s)
211. Calculator %error-verbose %locations %defines %define api.prefix "calc" 
%verbose %yacc (calc.at:612): ok     (0m0.687s 0m1.541s)
212. Calculator %debug (calc.at:614): ok     (0m0.488s 0m1.729s)
213. Calculator %error-verbose %debug %locations %defines %name-prefix "calc" 
%verbose %yacc (calc.at:615): ok     (0m0.741s 0m1.768s)
214. Calculator %error-verbose %debug %locations %defines %define api.prefix 
"calc" %verbose %yacc (calc.at:616): ok     (0m0.798s 0m1.211s)
215. Calculator %define api.pure full %verbose %debug %locations %defines 
%name-prefix "calc" %verbose %yacc (calc.at:618): ok     (0m0.660s 0m1.441s)
216. Calculator %define api.push-pull both %define api.pure full %verbose 
%debug %locations %defines %define api.prefix "calc" %verbose %yacc 
(calc.at:619): ok     (0m0.792s 0m1.296s)
217. Calculator %define api.pure %error-verbose %debug %locations %defines 
%define api.prefix "calc" %verbose %yacc %parse-param {semantic_value *result} 
%parse-param {int *count} (calc.at:621): ok     (0m0.749s 0m1.355s)
218. Calculator %glr-parser  (calc.at:638): ok     (0m0.931s 0m1.585s)
219. Calculator %glr-parser %defines (calc.at:640): ok     (0m1.071s 0m1.234s)
220. Calculator %glr-parser %locations (calc.at:641): ok     (0m1.055s 0m1.004s)
221. Calculator %glr-parser %name-prefix "calc" (calc.at:642): ok     (0m1.058s 
0m3.067s)
222. Calculator %glr-parser %define api.prefix "calc" (calc.at:643): ok     
(0m0.825s 0m1.729s)
223. Calculator %glr-parser %verbose (calc.at:644): ok     (0m1.040s 0m1.804s)
224. Calculator %glr-parser %yacc (calc.at:645): ok     (0m0.979s 0m1.406s)
225. Calculator %glr-parser %error-verbose (calc.at:646): ok     (0m1.041s 
0m1.303s)
226. Calculator %glr-parser %define api.pure %locations (calc.at:648): ok     
(0m1.111s 0m1.344s)
227. Calculator %glr-parser %error-verbose %locations (calc.at:649): ok     
(0m1.149s 0m0.944s)
228. Calculator %glr-parser %error-verbose %locations %defines %name-prefix 
"calc" %verbose %yacc (calc.at:651): ok     (0m1.283s 0m0.884s)
229. Calculator %glr-parser %debug (calc.at:653): ok     (0m1.348s 0m1.879s)
230. Calculator %glr-parser %error-verbose %debug %locations %defines 
%name-prefix "calc" %verbose %yacc (calc.at:654): ok     (0m1.636s 0m1.453s)
231. Calculator %glr-parser %error-verbose %debug %locations %defines %define 
api.prefix "calc" %verbose %yacc (calc.at:655): ok     (0m1.580s 0m1.775s)
232. Calculator %glr-parser %define api.pure %error-verbose %debug %locations 
%defines %name-prefix "calc" %verbose %yacc (calc.at:657): ok     (0m1.547s 
0m1.778s)
233. Calculator %glr-parser %define api.pure %error-verbose %debug %locations 
%defines %name-prefix "calc" %verbose %yacc %parse-param {semantic_value 
*result} %parse-param {int *count} (calc.at:659): ok     (0m1.385s 0m1.417s)
234. Calculator %glr-parser %define api.pure %error-verbose %debug %locations 
%defines %define api.prefix "calc" %verbose %yacc %parse-param {semantic_value 
*result} %parse-param {int *count} (calc.at:660): ok     (0m1.488s 0m1.414s)
254. Big triangle (torture.at:137): ok     (0m4.314s 0m1.198s)
255. Big horizontal (torture.at:227): ok     (0m2.243s 0m0.639s)
256. Many lookahead tokens (torture.at:364): ok     (12m58.233s 0m15.743s)
257. Exploding the Stack Size with Alloca (torture.at:466): ok     (0m2.287s 
0m15.016s)
258. Exploding the Stack Size with Malloc (torture.at:512): ok     (0m1.831s 
0m10.776s)
259. GNU AWK 3.1.0 Grammar: LALR(1) (existing.at:79): ok     (0m0.581s 0m0.674s)
260. GNU AWK 3.1.0 Grammar: IELR(1) (existing.at:79): ok     (0m0.637s 0m0.483s)
261. GNU AWK 3.1.0 Grammar: Canonical LR(1) (existing.at:79): ok     (0m4.500s 
0m1.189s)
262. GNU Cim Grammar: LALR(1) (existing.at:783): ok     (0m0.601s 0m0.687s)
263. GNU Cim Grammar: IELR(1) (existing.at:783): ok     (0m0.732s 0m0.478s)
264. GNU Cim Grammar: Canonical LR(1) (existing.at:783): ok     (0m23.992s 
0m2.096s)
265. GNU pic (Groff 1.18.1) Grammar: LALR(1) (existing.at:1403): ok     
(0m1.491s 0m0.713s)
266. GNU pic (Groff 1.18.1) Grammar: IELR(1) (existing.at:1403): ok     
(0m2.057s 0m1.358s)
267. GNU pic (Groff 1.18.1) Grammar: Canonical LR(1) (existing.at:1403): ok     
(0m47.591s 0m3.608s)
268. Trivial grammars (regression.at:25): ok     (0m0.570s 0m0.379s)
269. YYSTYPE typedef (regression.at:55): ok     (0m0.210s 0m0.192s)
270. Early token definitions with --yacc (regression.at:85): ok     (0m0.200s 
0m0.136s)
271. Early token definitions without --yacc (regression.at:125): ok     
(0m0.169s 0m0.137s)
272. Braces parsing (regression.at:170): ok     (0m0.089s 0m0.078s)
273. Duplicate string (regression.at:194): ok     (0m0.259s 0m0.374s)
274. Rule Line Numbers (regression.at:222): ok     (0m0.068s 0m0.109s)
275. Mixing %token styles (regression.at:368): ok     (0m0.064s 0m0.109s)
276. Invalid inputs (regression.at:391): ok     (0m0.000s 0m0.148s)
277. Invalid inputs with {} (regression.at:418): ok     (0m0.000s 0m0.057s)
278. Token definitions (regression.at:443): ok     (0m0.766s 0m1.121s)
279. Characters Escapes (regression.at:511): ok     (0m0.168s 0m0.194s)
280. Web2c Report (regression.at:544): ok     (0m0.075s 0m0.083s)
281. Web2c Actions (regression.at:721): ok     (0m0.114s 0m0.100s)
282. Dancer  (regression.at:936): ok     (0m0.293s 0m0.308s)
283. Dancer %glr-parser (regression.at:937): ok     (0m0.851s 0m1.156s)
285. Expecting two tokens  (regression.at:1020): ok     (0m0.250s 0m0.259s)
286. Expecting two tokens %glr-parser (regression.at:1021): ok     (0m0.728s 
0m0.447s)
288. Braced code in declaration in rules section (regression.at:1030): ok     
(0m0.307s 0m0.313s)
289. String alias declared after use (regression.at:1097): ok     (0m0.141s 
0m0.010s)
290. Extra lookahead sets in report (regression.at:1120): ok     (0m0.068s 
0m0.089s)
291. Token number in precedence declaration (regression.at:1161): ok     
(0m0.445s 0m0.564s)
292. parse-gram.y: LALR = IELR (regression.at:1219): ok     (0m0.372s 0m0.085s)
293. %error-verbose and YYSTACK_USE_ALLOCA (regression.at:1240): ok     
(0m0.301s 0m0.247s)
294. %error-verbose overflow (regression.at:1319): ok     (0m0.292s 0m0.254s)
295. LAC: Exploratory stack (regression.at:1429): ok     (0m1.909s 0m1.769s)
296. LAC: Memory exhaustion (regression.at:1523): ok     (0m0.864s 0m0.708s)
297. Lex and parse params: yacc.c (regression.at:1664): ok     (0m0.283s 
0m0.181s)
298. Lex and parse params: glr.c (regression.at:1665): ok     (0m0.832s 
0m0.418s)
301. Doxygen Public Documentation (c++.at:101): skipped (c++.at:101)
302. Doxygen Private Documentation (c++.at:102): skipped (c++.at:102)
305. Syntactically invalid namespace references (c++.at:175): ok     (0m0.434s 
0m0.293s)
307. Calculator  (java.at:360): skipped (java.at:360)
308. Calculator %error-verbose  (java.at:360): skipped (java.at:360)
309. Calculator %locations  (java.at:360): skipped (java.at:360)
310. Calculator %error-verbose %locations  (java.at:360): skipped (java.at:360)
311. Calculator %lex-param { InputStream is }  (java.at:369): skipped 
(java.at:369)
312. Calculator %error-verbose %lex-param { InputStream is }  (java.at:369): 
skipped (java.at:369)
313. Calculator %locations %lex-param { InputStream is }  (java.at:369): 
skipped (java.at:369)
314. Calculator %error-verbose %locations %lex-param { InputStream is }  
(java.at:369): skipped (java.at:369)
315. Java parser class and package names (java.at:455): skipped (java.at:457)
316. Java parser class modifiers (java.at:476): skipped (java.at:478)
317. Java parser class extends and implements (java.at:534): skipped 
(java.at:536)
318. Java %parse-param and %lex-param (java.at:554): skipped (java.at:556)
319. Java throws specifications (java.at:628): skipped (java.at:688)
320. Java stype, position_class and location_class (java.at:717): skipped 
(java.at:719)
321. Java syntax error handling without error token (java.at:748): skipped 
(java.at:800)
322. GLR: Resolve ambiguity, impure, no locations (cxx-type.at:394): ok     
(0m1.094s 0m0.545s)
323. GLR: Resolve ambiguity, impure, locations (cxx-type.at:401): ok     
(0m0.829s 0m0.416s)
324. GLR: Resolve ambiguity, pure, no locations (cxx-type.at:407): ok     
(0m0.787s 0m0.361s)
325. GLR: Resolve ambiguity, pure, locations (cxx-type.at:414): ok     
(0m0.974s 0m0.255s)
326. GLR: Merge conflicting parses, impure, no locations (cxx-type.at:421): ok  
   (0m0.733s 0m0.370s)
327. GLR: Merge conflicting parses, impure, locations (cxx-type.at:428): ok     
(0m0.843s 0m0.271s)
328. GLR: Merge conflicting parses, pure, no locations (cxx-type.at:435): ok    
 (0m0.782s 0m0.219s)
329. GLR: Merge conflicting parses, pure, locations (cxx-type.at:441): ok     
(0m0.858s 0m0.288s)
330. GLR: Verbose messages, resolve ambiguity, impure, no locations 
(cxx-type.at:448): ok     (0m0.763s 0m0.365s)
331. Badly Collapsed GLR States (glr-regression.at:25): ok     (0m0.638s 
0m0.246s)
332. Improper handling of embedded actions and dollar(-N) in GLR parsers 
(glr-regression.at:112): ok     (0m0.674s 0m0.302s)
333. Improper merging of GLR delayed action sets (glr-regression.at:244): ok    
 (0m0.687s 0m0.412s)
334. Duplicate representation of merged trees (glr-regression.at:364): ok     
(0m0.700s 0m0.321s)
335. User destructor for unresolved GLR semantic value (glr-regression.at:455): 
ok     (0m0.634s 0m0.390s)
336. User destructor after an error during a split parse 
(glr-regression.at:515): ok     (0m0.694s 0m0.323s)
337. Duplicated user destructor for lookahead (glr-regression.at:569): ok     
(0m0.543s 0m0.232s)
338. Incorrectly initialized location for empty right-hand side in GLR 
(glr-regression.at:658): ok     (0m0.777s 0m0.280s)
339. No users destructors if stack 0 deleted (glr-regression.at:752): ok     
(0m0.594s 0m0.217s)
340. Corrupted semantic options if user action cuts parse 
(glr-regression.at:829): ok     (0m0.644s 0m0.208s)
341. Undesirable destructors if user action cuts parse (glr-regression.at:883): 
ok     (0m0.719s 0m0.462s)
342. Leaked semantic values if user action cuts parse (glr-regression.at:941): 
ok     (0m0.634s 0m0.275s)
343. Incorrect lookahead during deterministic GLR (glr-regression.at:1064): ok  
   (0m0.754s 0m0.202s)
344. Incorrect lookahead during nondeterministic GLR (glr-regression.at:1188): 
ok     (0m0.796s 0m0.283s)
345. Leaked semantic values when reporting ambiguity (glr-regression.at:1405): 
ok     (0m0.624s 0m0.413s)
346. Leaked lookahead after nondeterministic parse syntax error 
(glr-regression.at:1487): ok     (0m0.699s 0m0.319s)
347. Uninitialized location when reporting ambiguity (glr-regression.at:1547): 
ok     (0m0.811s 0m0.480s)
348. Missed %merge type warnings when LHS type is declared later 
(glr-regression.at:1625): ok     (0m0.000s 0m0.077s)
349. Ambiguity reports (glr-regression.at:1678): ok     (0m1.013s 0m0.484s)
350. Memory Leak for Early Deletion (push.at:24): ok     (0m0.264s 0m0.309s)
351. Multiple impure instances (push.at:83): ok     (0m0.593s 0m0.607s)
352. Unsupported Skeletons (push.at:144): ok     (0m0.103s 0m0.080s)
testsuite: ending at: Mon Feb 18 13:27:21 MST 2013
testsuite: test suite duration: 0h 31m 38s

## ------------- ##
## Test results. ##
## ------------- ##

ERROR: 335 tests were run,
43 failed unexpectedly.
17 tests were skipped.

## ------------------------ ##
## Summary of the failures. ##
## ------------------------ ##
Failed tests:
GNU Bison 2.7 test suite test groups:

 NUM: FILE-NAME:LINE     TEST-GROUP-NAME
      KEYWORDS

  77: output.at:219      Output file name: address@hidden&*()-=_+{}[]|\:
      <>, .'
  78: output.at:226      Output file name: (
      c++
  79: output.at:227      Output file name: )
      c++
  80: output.at:228      Output file name: #
      c++
  81: output.at:229      Output file name: @@
      c++
  82: output.at:230      Output file name: @{
      c++
  83: output.at:231      Output file name: @}
      c++
  84: output.at:232      Output file name: [
      c++
  85: output.at:233      Output file name: ]
      c++
 143: headers.at:125     Several parsers
      c++
 152: actions.at:140     Initial location: lalr1.cc 
      c++
 153: actions.at:141     Initial location: glr.cc 
      c++
 161: actions.at:754     Printers and Destructors: %defines %skeleton "lalr1.cc"
      c++
 162: actions.at:755     Printers and Destructors with union: %defines 
%skeleton "lalr1.cc"
      c++
 176: actions.at:1531    Qualified $$ in actions: lalr1.cc
      c++
 177: actions.at:1532    Qualified $$ in actions: glr.cc
      c++
 183: conflicts.at:155   %error-verbose and consistent errors
      c++ java
 235: calc.at:670        Calculator %skeleton "lalr1.cc" %defines %locations
      c++
 236: calc.at:679        Calculator %language "C++" %defines %locations 
      c++
 237: calc.at:680        Calculator %language "C++" %defines %locations %define 
api.location.type Span
      c++
 238: calc.at:681        Calculator %language "C++" %defines %locations 
%error-verbose %name-prefix "calc" %verbose %yacc
      c++
 239: calc.at:682        Calculator %language "C++" %defines %locations 
%error-verbose %define api.prefix "calc" %verbose %yacc
      c++
 240: calc.at:683        Calculator %language "C++" %defines %locations 
%error-verbose %debug %name-prefix "calc" %verbose %yacc
      c++
 241: calc.at:685        Calculator %language "C++" %defines %locations 
%pure-parser %error-verbose %debug %define api.prefix "calc" %verbose %yacc
      c++
 242: calc.at:687        Calculator %language "C++" %defines %locations 
%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc 
%parse-param {semantic_value *result} %parse-param {int *count}
      c++
 243: calc.at:688        Calculator %language "C++" %defines %locations 
%pure-parser %error-verbose %debug %define api.prefix "calc" %verbose %yacc 
%parse-param {semantic_value *result} %parse-param {int *count}
      c++
 244: calc.at:699        Calculator %skeleton "glr.cc" %defines %locations
      c++
 245: calc.at:708        Calculator %language "C++" %glr-parser %defines 
%locations 
      c++
 246: calc.at:709        Calculator %language "C++" %glr-parser %defines 
%locations %define api.location.type Span
      c++
 247: calc.at:710        Calculator %language "C++" %glr-parser %defines 
%locations %error-verbose %name-prefix "calc" %verbose %yacc
      c++
 248: calc.at:711        Calculator %language "C++" %glr-parser %defines 
%locations %error-verbose %define api.prefix "calc" %verbose %yacc
      c++
 249: calc.at:713        Calculator %language "C++" %glr-parser %defines 
%locations %debug
      c++
 250: calc.at:714        Calculator %language "C++" %glr-parser %defines 
%locations %error-verbose %debug %name-prefix "calc" %verbose %yacc
      c++
 251: calc.at:716        Calculator %language "C++" %glr-parser %defines 
%locations %pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc
      c++
 252: calc.at:718        Calculator %language "C++" %glr-parser %defines 
%locations %pure-parser %error-verbose %debug %name-prefix "calc" %verbose 
%yacc %parse-param {semantic_value *result} %parse-param {int *count}
      c++
 253: calc.at:719        Calculator %language "C++" %glr-parser %defines 
%locations %pure-parser %error-verbose %debug %define api.prefix "calc" 
%verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}
      c++
 284: regression.at:938  Dancer %skeleton "lalr1.cc"
      c++
 287: regression.at:1022 Expecting two tokens %skeleton "lalr1.cc"
      c++
 299: regression.at:1666 Lex and parse params: lalr1.cc
      c++
 300: regression.at:1667 Lex and parse params: glr.cc
      c++
 303: c++.at:160         Relative namespace references
      c++
 304: c++.at:166         Absolute namespace references
      c++
 306: c++.at:190         Exception safety
      c++

Skipped tests:
GNU Bison 2.7 test suite test groups:

 NUM: FILE-NAME:LINE     TEST-GROUP-NAME
      KEYWORDS

 301: c++.at:101         Doxygen Public Documentation
 302: c++.at:102         Doxygen Private Documentation
 307: java.at:360        Calculator 
      java
 308: java.at:360        Calculator %error-verbose 
      java
 309: java.at:360        Calculator %locations 
      java
 310: java.at:360        Calculator %error-verbose %locations 
      java
 311: java.at:369        Calculator %lex-param { InputStream is } 
      java
 312: java.at:369        Calculator %error-verbose %lex-param { InputStream is 
} 
      java
 313: java.at:369        Calculator %locations %lex-param { InputStream is } 
      java
 314: java.at:369        Calculator %error-verbose %locations %lex-param { 
InputStream is } 
      java
 315: java.at:455        Java parser class and package names
      java
 316: java.at:476        Java parser class modifiers
      java
 317: java.at:534        Java parser class extends and implements
      java
 318: java.at:554        Java %parse-param and %lex-param
      java
 319: java.at:628        Java throws specifications
      java
 320: java.at:717        Java stype, position_class and location_class
      java
 321: java.at:748        Java syntax error handling without error token
      java

## ---------------------- ##
## Detailed failed tests. ##
## ---------------------- ##

#                             -*- compilation -*-
77. output.at:219: testing Output file name: address@hidden&*()-=_+{}[]|\:;<>, 
.' ...
./output.at:219: touch "address@hidden&*()-=_+{}[]|\\:;<>, .'.tmp" || exit 77
./output.at:219: bison -o "address@hidden&*()-=_+{}[]|\\:;<>, .'.c" 
--defines="address@hidden&*()-=_+{}[]|\\:;<>, .'.h" glr.y
./output.at:219: ls "address@hidden&*()-=_+{}[]|\\:;<>, .'.c" 
"address@hidden&*()-=_+{}[]|\\:;<>, .'.h"
stdout:
address@hidden&*()-=_+{}[]|\:;<>, .'.c
address@hidden&*()-=_+{}[]|\:;<>, .'.h
./output.at:219: $BISON_C_WORKS
stderr:
stdout:
./output.at:219: $CC $CFLAGS $CPPFLAGS -c -o glr.o -c 
"address@hidden&*()-=_+{}[]|\\:;<>, .'.c" 
stderr:
stdout:
./output.at:219: bison -o "address@hidden&*()-=_+{}[]|\\:;<>, .'.c" 
--defines="address@hidden&*()-=_+{}[]|\\:;<>, .'.h" cxx.y
./output.at:219: ls "address@hidden&*()-=_+{}[]|\\:;<>, .'.c" 
"address@hidden&*()-=_+{}[]|\\:;<>, .'.h"
stdout:
address@hidden&*()-=_+{}[]|\:;<>, .'.c
address@hidden&*()-=_+{}[]|\:;<>, .'.h
./output.at:219: $BISON_CXX_WORKS
stderr:
stdout:
./output.at:219: $CXX $CXXFLAGS $CPPFLAGS -c -o cxx.o -c 
"address@hidden&*()-=_+{}[]|\\:;<>, .'.c" 
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from address@hidden&*()-=_+{}[]|\:;<>, .'.h:45,
                 from address@hidden&*()-=_+{}[]|\:;<>, .'.c:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./output.at:219: exit code was 1, expected 0
77. output.at:219: 77. Output file name: address@hidden&*()-=_+{}[]|\:;<>, .' 
(output.at:219): FAILED (output.at:219)

#                             -*- compilation -*-
78. output.at:226: testing Output file name: ( ...
./output.at:226: touch "(.tmp" || exit 77
./output.at:226: bison -o "(.c" --defines="(.h" glr.y
./output.at:226: ls "(.c" "(.h"
stdout:
(.c
(.h
./output.at:226: $BISON_C_WORKS
stderr:
stdout:
./output.at:226: $CC $CFLAGS $CPPFLAGS -c -o glr.o -c "(.c" 
stderr:
stdout:
./output.at:226: bison -o "(.c" --defines="(.h" cxx.y
./output.at:226: ls "(.c" "(.h"
stdout:
(.c
(.h
./output.at:226: $BISON_CXX_WORKS
stderr:
stdout:
./output.at:226: $CXX $CXXFLAGS $CPPFLAGS -c -o cxx.o -c "(.c" 
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from (.h:45,
                 from (.c:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./output.at:226: exit code was 1, expected 0
78. output.at:226: 78. Output file name: ( (output.at:226): FAILED 
(output.at:226)

#                             -*- compilation -*-
79. output.at:227: testing Output file name: ) ...
./output.at:227: touch ").tmp" || exit 77
./output.at:227: bison -o ").c" --defines=").h" glr.y
./output.at:227: ls ").c" ").h"
stdout:
).c
).h
./output.at:227: $BISON_C_WORKS
stderr:
stdout:
./output.at:227: $CC $CFLAGS $CPPFLAGS -c -o glr.o -c ").c" 
stderr:
stdout:
./output.at:227: bison -o ").c" --defines=").h" cxx.y
./output.at:227: ls ").c" ").h"
stdout:
).c
).h
./output.at:227: $BISON_CXX_WORKS
stderr:
stdout:
./output.at:227: $CXX $CXXFLAGS $CPPFLAGS -c -o cxx.o -c ").c" 
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from ).h:45,
                 from ).c:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./output.at:227: exit code was 1, expected 0
79. output.at:227: 79. Output file name: ) (output.at:227): FAILED 
(output.at:227)

#                             -*- compilation -*-
80. output.at:228: testing Output file name: # ...
./output.at:228: touch "#.tmp" || exit 77
./output.at:228: bison -o "#.c" --defines="#.h" glr.y
./output.at:228: ls "#.c" "#.h"
stdout:
#.c
#.h
./output.at:228: $BISON_C_WORKS
stderr:
stdout:
./output.at:228: $CC $CFLAGS $CPPFLAGS -c -o glr.o -c "#.c" 
stderr:
stdout:
./output.at:228: bison -o "#.c" --defines="#.h" cxx.y
./output.at:228: ls "#.c" "#.h"
stdout:
#.c
#.h
./output.at:228: $BISON_CXX_WORKS
stderr:
stdout:
./output.at:228: $CXX $CXXFLAGS $CPPFLAGS -c -o cxx.o -c "#.c" 
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from #.h:45,
                 from #.c:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./output.at:228: exit code was 1, expected 0
80. output.at:228: 80. Output file name: # (output.at:228): FAILED 
(output.at:228)

#                             -*- compilation -*-
81. output.at:229: testing Output file name: @@ ...
./output.at:229: touch "@@.tmp" || exit 77
./output.at:229: bison -o "@@.c" --defines="@@.h" glr.y
./output.at:229: ls "@@.c" "@@.h"
stdout:
@@.c
@@.h
./output.at:229: $BISON_C_WORKS
stderr:
stdout:
./output.at:229: $CC $CFLAGS $CPPFLAGS -c -o glr.o -c "@@.c" 
stderr:
stdout:
./output.at:229: bison -o "@@.c" --defines="@@.h" cxx.y
./output.at:229: ls "@@.c" "@@.h"
stdout:
@@.c
@@.h
./output.at:229: $BISON_CXX_WORKS
stderr:
stdout:
./output.at:229: $CXX $CXXFLAGS $CPPFLAGS -c -o cxx.o -c "@@.c" 
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from @@.h:45,
                 from @@.c:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./output.at:229: exit code was 1, expected 0
81. output.at:229: 81. Output file name: @@ (output.at:229): FAILED 
(output.at:229)

#                             -*- compilation -*-
82. output.at:230: testing Output file name: @{ ...
./output.at:230: touch "@{.tmp" || exit 77
./output.at:230: bison -o "@{.c" --defines="@{.h" glr.y
./output.at:230: ls "@{.c" "@{.h"
stdout:
@{.c
@{.h
./output.at:230: $BISON_C_WORKS
stderr:
stdout:
./output.at:230: $CC $CFLAGS $CPPFLAGS -c -o glr.o -c "@{.c" 
stderr:
stdout:
./output.at:230: bison -o "@{.c" --defines="@{.h" cxx.y
./output.at:230: ls "@{.c" "@{.h"
stdout:
@{.c
@{.h
./output.at:230: $BISON_CXX_WORKS
stderr:
stdout:
./output.at:230: $CXX $CXXFLAGS $CPPFLAGS -c -o cxx.o -c "@{.c" 
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from @{.h:45,
                 from @{.c:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./output.at:230: exit code was 1, expected 0
82. output.at:230: 82. Output file name: @{ (output.at:230): FAILED 
(output.at:230)

#                             -*- compilation -*-
83. output.at:231: testing Output file name: @} ...
./output.at:231: touch "@}.tmp" || exit 77
./output.at:231: bison -o "@}.c" --defines="@}.h" glr.y
./output.at:231: ls "@}.c" "@}.h"
stdout:
@}.c
@}.h
./output.at:231: $BISON_C_WORKS
stderr:
stdout:
./output.at:231: $CC $CFLAGS $CPPFLAGS -c -o glr.o -c "@}.c" 
stderr:
stdout:
./output.at:231: bison -o "@}.c" --defines="@}.h" cxx.y
./output.at:231: ls "@}.c" "@}.h"
stdout:
@}.c
@}.h
./output.at:231: $BISON_CXX_WORKS
stderr:
stdout:
./output.at:231: $CXX $CXXFLAGS $CPPFLAGS -c -o cxx.o -c "@}.c" 
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from @}.h:45,
                 from @}.c:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./output.at:231: exit code was 1, expected 0
83. output.at:231: 83. Output file name: @} (output.at:231): FAILED 
(output.at:231)

#                             -*- compilation -*-
84. output.at:232: testing Output file name: [ ...
./output.at:232: touch "[.tmp" || exit 77
./output.at:232: bison -o "[.c" --defines="[.h" glr.y
./output.at:232: ls "[.c" "[.h"
stdout:
[.c
[.h
./output.at:232: $BISON_C_WORKS
stderr:
stdout:
./output.at:232: $CC $CFLAGS $CPPFLAGS -c -o glr.o -c "[.c" 
stderr:
stdout:
./output.at:232: bison -o "[.c" --defines="[.h" cxx.y
./output.at:232: ls "[.c" "[.h"
stdout:
[.c
[.h
./output.at:232: $BISON_CXX_WORKS
stderr:
stdout:
./output.at:232: $CXX $CXXFLAGS $CPPFLAGS -c -o cxx.o -c "[.c" 
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from [.h:45,
                 from [.c:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./output.at:232: exit code was 1, expected 0
84. output.at:232: 84. Output file name: [ (output.at:232): FAILED 
(output.at:232)

#                             -*- compilation -*-
85. output.at:233: testing Output file name: ] ...
./output.at:233: touch "].tmp" || exit 77
./output.at:233: bison -o "].c" --defines="].h" glr.y
./output.at:233: ls "].c" "].h"
stdout:
].c
].h
./output.at:233: $BISON_C_WORKS
stderr:
stdout:
./output.at:233: $CC $CFLAGS $CPPFLAGS -c -o glr.o -c "].c" 
stderr:
stdout:
./output.at:233: bison -o "].c" --defines="].h" cxx.y
./output.at:233: ls "].c" "].h"
stdout:
].c
].h
./output.at:233: $BISON_CXX_WORKS
stderr:
stdout:
./output.at:233: $CXX $CXXFLAGS $CPPFLAGS -c -o cxx.o -c "].c" 
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from ].h:45,
                 from ].c:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./output.at:233: exit code was 1, expected 0
85. output.at:233: 85. Output file name: ] (output.at:233): FAILED 
(output.at:233)

#                             -*- compilation -*-
143. headers.at:125: testing Several parsers ...
./headers.at:218: bison -d -o x1.c x1.y
./headers.at:218: $BISON_C_WORKS
stderr:
stdout:
./headers.at:218: $CC $CFLAGS $CPPFLAGS -c -o x1.o x1.c 
stderr:
stdout:
./headers.at:218: echo "x1" >>expout
./headers.at:219: bison -d -o x2.c x2.y
./headers.at:219: $BISON_C_WORKS
stderr:
stdout:
./headers.at:219: $CC $CFLAGS $CPPFLAGS -c -o x2.o x2.c 
stderr:
stdout:
./headers.at:219: echo "x2" >>expout
./headers.at:220: bison -d -o x3.c x3.y
./headers.at:220: $BISON_C_WORKS
stderr:
stdout:
./headers.at:220: $CC $CFLAGS $CPPFLAGS -c -o x3.o x3.c 
stderr:
stdout:
./headers.at:220: echo "x3" >>expout
./headers.at:221: bison -d -o x4.c x4.y
./headers.at:221: $BISON_C_WORKS
stderr:
stdout:
./headers.at:221: $CC $CFLAGS $CPPFLAGS -c -o x4.o x4.c 
stderr:
stdout:
./headers.at:221: echo "x4" >>expout
./headers.at:222: bison -d -o x5.cc x5.y
./headers.at:222: $BISON_CXX_WORKS
stderr:
stdout:
./headers.at:222: $CXX $CXXFLAGS $CPPFLAGS -c -o x5.o x5.cc 
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from x5.hh:45,
                 from x5.cc:55:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./headers.at:222: exit code was 1, expected 0
143. headers.at:125: 143. Several parsers (headers.at:125): FAILED 
(headers.at:222)

#                             -*- compilation -*-
152. actions.at:140: testing Initial location: lalr1.cc  ...
./actions.at:140: bison -o input.cc input.y
./actions.at:140: $BISON_CXX_WORKS
stderr:
stdout:
./actions.at:140: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from input.hh:45,
                 from input.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./actions.at:140: exit code was 1, expected 0
152. actions.at:140: 152. Initial location: lalr1.cc  (actions.at:140): FAILED 
(actions.at:140)

#                             -*- compilation -*-
153. actions.at:141: testing Initial location: glr.cc  ...
./actions.at:141: bison -o input.cc input.y
./actions.at:141: $BISON_CXX_WORKS
stderr:
stdout:
./actions.at:141: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from input.hh:40,
                 from input.cc:78:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
input.cc:2737:22: warning: no newline at end of file
stdout:
./actions.at:141: exit code was 1, expected 0
153. actions.at:141: 153. Initial location: glr.cc  (actions.at:141): FAILED 
(actions.at:141)

#                             -*- compilation -*-
161. actions.at:754: testing Printers and Destructors: %defines %skeleton 
"lalr1.cc" ...
./actions.at:754: bison -o input.cc input.y
./actions.at:754: $BISON_CXX_WORKS
stderr:
stdout:
./actions.at:754: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from input.hh:65,
                 from input.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./actions.at:754: exit code was 1, expected 0
161. actions.at:754: 161. Printers and Destructors: %defines %skeleton 
"lalr1.cc" (actions.at:754): FAILED (actions.at:754)

#                             -*- compilation -*-
162. actions.at:755: testing Printers and Destructors with union: %defines 
%skeleton "lalr1.cc" ...
./actions.at:755: bison -o input.cc input.y
./actions.at:755: $BISON_CXX_WORKS
stderr:
stdout:
./actions.at:755: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from input.hh:65,
                 from input.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./actions.at:755: exit code was 1, expected 0
162. actions.at:755: 162. Printers and Destructors with union: %defines 
%skeleton "lalr1.cc" (actions.at:755): FAILED (actions.at:755)

#                             -*- compilation -*-
176. actions.at:1531: testing Qualified $$ in actions: lalr1.cc ...
./actions.at:1531: bison -o input.cc input.y
./actions.at:1531: $BISON_CXX_WORKS
stderr:
stdout:
./actions.at:1531: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/iosfwd:46,
                 from /usr/include/c++/3.2.2/ios:44,
                 from /usr/include/c++/3.2.2/ostream:45,
                 from /usr/include/c++/3.2.2/iostream:45,
                 from input.y:24,
                 from input.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./actions.at:1531: exit code was 1, expected 0
176. actions.at:1531: 176. Qualified $$ in actions: lalr1.cc (actions.at:1531): 
FAILED (actions.at:1531)

#                             -*- compilation -*-
177. actions.at:1532: testing Qualified $$ in actions: glr.cc ...
./actions.at:1532: bison -o input.cc input.y
./actions.at:1532: $BISON_CXX_WORKS
stderr:
stdout:
./actions.at:1532: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/iosfwd:46,
                 from /usr/include/c++/3.2.2/ios:44,
                 from /usr/include/c++/3.2.2/ostream:45,
                 from /usr/include/c++/3.2.2/iostream:45,
                 from input.y:24,
                 from input.cc:78:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
input.cc:2774:22: warning: no newline at end of file
stdout:
./actions.at:1532: exit code was 1, expected 0
177. actions.at:1532: 177. Qualified $$ in actions: glr.cc (actions.at:1532): 
FAILED (actions.at:1532)

#                             -*- compilation -*-
183. conflicts.at:155: testing %error-verbose and consistent errors ...
./conflicts.at:299: bison -o input.c input.y
./conflicts.at:299: $BISON_C_WORKS
stderr:
stdout:
./conflicts.at:299: $CC $CFLAGS $CPPFLAGS $LDFLAGS -o input input.c $LIBS
stderr:
stdout:
./conflicts.at:299:  $PREPARSER ./input
stderr:
syntax error, unexpected $end
./conflicts.at:299: sed >&2 -e '/^profiling:.*:Merge mismatch for summaries/d' 
stderr
./conflicts.at:303: bison -o input.c input.y
./conflicts.at:303: $BISON_C_WORKS
stderr:
stdout:
./conflicts.at:303: $CC $CFLAGS $CPPFLAGS $LDFLAGS -o input input.c $LIBS
stderr:
stdout:
./conflicts.at:303:  $PREPARSER ./input
stderr:
syntax error, unexpected $end
./conflicts.at:303: sed >&2 -e '/^profiling:.*:Merge mismatch for summaries/d' 
stderr
./conflicts.at:308: bison -o input.cc input.y
./conflicts.at:308: $BISON_CXX_WORKS
stderr:
stdout:
./conflicts.at:308: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from input.hh:45,
                 from input.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./conflicts.at:308: exit code was 1, expected 0
183. conflicts.at:155: 183. %error-verbose and consistent errors 
(conflicts.at:155): FAILED (conflicts.at:308)

#                             -*- compilation -*-
235. calc.at:670: testing Calculator %skeleton "lalr1.cc" %defines %locations 
...
./calc.at:670: bison -o calc.cc calc.y
./calc.at:670: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:670: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:670: exit code was 1, expected 0
235. calc.at:670: 235. Calculator %skeleton "lalr1.cc" %defines %locations 
(calc.at:670): FAILED (calc.at:670)

#                             -*- compilation -*-
236. calc.at:679: testing Calculator %language "C++" %defines %locations  ...
./calc.at:679: bison -o calc.cc calc.y
./calc.at:679: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:679: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:679: exit code was 1, expected 0
236. calc.at:679: 236. Calculator %language "C++" %defines %locations  
(calc.at:679): FAILED (calc.at:679)

#                             -*- compilation -*-
237. calc.at:680: testing Calculator %language "C++" %defines %locations 
%define api.location.type Span ...
./calc.at:680: bison -o calc.cc calc.y
./calc.at:680: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:680: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/iosfwd:46,
                 from /usr/include/c++/3.2.2/ios:44,
                 from /usr/include/c++/3.2.2/ostream:45,
                 from /usr/include/c++/3.2.2/iostream:45,
                 from calc.y:15,
                 from calc.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/iosfwd:46,
                 from /usr/include/c++/3.2.2/ios:44,
                 from /usr/include/c++/3.2.2/ostream:45,
                 from /usr/include/c++/3.2.2/iostream:45,
                 from calc.y:15,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/iosfwd:46,
                 from /usr/include/c++/3.2.2/ios:44,
                 from /usr/include/c++/3.2.2/ostream:45,
                 from /usr/include/c++/3.2.2/iostream:45,
                 from calc.y:15,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:680: exit code was 1, expected 0
237. calc.at:680: 237. Calculator %language "C++" %defines %locations %define 
api.location.type Span (calc.at:680): FAILED (calc.at:680)

#                             -*- compilation -*-
238. calc.at:681: testing Calculator %language "C++" %defines %locations 
%error-verbose %name-prefix "calc" %verbose %yacc ...
./calc.at:681: bison -o calc.cc calc.y
./calc.at:681: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:681: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc.cc:55:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:681: exit code was 1, expected 0
238. calc.at:681: 238. Calculator %language "C++" %defines %locations 
%error-verbose %name-prefix "calc" %verbose %yacc (calc.at:681): FAILED 
(calc.at:681)

#                             -*- compilation -*-
239. calc.at:682: testing Calculator %language "C++" %defines %locations 
%error-verbose %define api.prefix "calc" %verbose %yacc ...
./calc.at:682: bison -o calc.cc calc.y
./calc.at:682: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:682: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc.cc:55:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:682: exit code was 1, expected 0
239. calc.at:682: 239. Calculator %language "C++" %defines %locations 
%error-verbose %define api.prefix "calc" %verbose %yacc (calc.at:682): FAILED 
(calc.at:682)

#                             -*- compilation -*-
240. calc.at:683: testing Calculator %language "C++" %defines %locations 
%error-verbose %debug %name-prefix "calc" %verbose %yacc ...
./calc.at:683: bison -o calc.cc calc.y
./calc.at:683: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:683: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc.cc:55:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:683: exit code was 1, expected 0
240. calc.at:683: 240. Calculator %language "C++" %defines %locations 
%error-verbose %debug %name-prefix "calc" %verbose %yacc (calc.at:683): FAILED 
(calc.at:683)

#                             -*- compilation -*-
241. calc.at:685: testing Calculator %language "C++" %defines %locations 
%pure-parser %error-verbose %debug %define api.prefix "calc" %verbose %yacc ...
./calc.at:685: bison -o calc.cc calc.y
./calc.at:685: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:685: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc.cc:55:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:685: exit code was 1, expected 0
241. calc.at:685: 241. Calculator %language "C++" %defines %locations 
%pure-parser %error-verbose %debug %define api.prefix "calc" %verbose %yacc 
(calc.at:685): FAILED (calc.at:685)

#                             -*- compilation -*-
242. calc.at:687: testing Calculator %language "C++" %defines %locations 
%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc 
%parse-param {semantic_value *result} %parse-param {int *count} ...
./calc.at:687: bison -o calc.cc calc.y
./calc.at:687: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:687: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc.cc:55:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:687: exit code was 1, expected 0
242. calc.at:687: 242. Calculator %language "C++" %defines %locations 
%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc 
%parse-param {semantic_value *result} %parse-param {int *count} (calc.at:687): 
FAILED (calc.at:687)

#                             -*- compilation -*-
243. calc.at:688: testing Calculator %language "C++" %defines %locations 
%pure-parser %error-verbose %debug %define api.prefix "calc" %verbose %yacc 
%parse-param {semantic_value *result} %parse-param {int *count} ...
./calc.at:688: bison -o calc.cc calc.y
./calc.at:688: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:688: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc.cc:55:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:56,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:688: exit code was 1, expected 0
243. calc.at:688: 243. Calculator %language "C++" %defines %locations 
%pure-parser %error-verbose %debug %define api.prefix "calc" %verbose %yacc 
%parse-param {semantic_value *result} %parse-param {int *count} (calc.at:688): 
FAILED (calc.at:688)

#                             -*- compilation -*-
244. calc.at:699: testing Calculator %skeleton "glr.cc" %defines %locations ...
./calc.at:699: bison -o calc.cc calc.y
./calc.at:699: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:699: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc.cc:78:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
calc.cc:2875:21: warning: no newline at end of file
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:699: exit code was 1, expected 0
244. calc.at:699: 244. Calculator %skeleton "glr.cc" %defines %locations 
(calc.at:699): FAILED (calc.at:699)

#                             -*- compilation -*-
245. calc.at:708: testing Calculator %language "C++" %glr-parser %defines 
%locations  ...
./calc.at:708: bison -o calc.cc calc.y
./calc.at:708: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:708: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc.cc:78:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
calc.cc:2875:21: warning: no newline at end of file
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:708: exit code was 1, expected 0
245. calc.at:708: 245. Calculator %language "C++" %glr-parser %defines 
%locations  (calc.at:708): FAILED (calc.at:708)

#                             -*- compilation -*-
246. calc.at:709: testing Calculator %language "C++" %glr-parser %defines 
%locations %define api.location.type Span ...
./calc.at:709: bison -o calc.cc calc.y
./calc.at:709: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:709: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/iosfwd:46,
                 from /usr/include/c++/3.2.2/ios:44,
                 from /usr/include/c++/3.2.2/ostream:45,
                 from /usr/include/c++/3.2.2/iostream:45,
                 from calc.y:15,
                 from calc.cc:78:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
calc.cc:2891:21: warning: no newline at end of file
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/iosfwd:46,
                 from /usr/include/c++/3.2.2/ios:44,
                 from /usr/include/c++/3.2.2/ostream:45,
                 from /usr/include/c++/3.2.2/iostream:45,
                 from calc.y:15,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/iosfwd:46,
                 from /usr/include/c++/3.2.2/ios:44,
                 from /usr/include/c++/3.2.2/ostream:45,
                 from /usr/include/c++/3.2.2/iostream:45,
                 from calc.y:15,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:709: exit code was 1, expected 0
246. calc.at:709: 246. Calculator %language "C++" %glr-parser %defines 
%locations %define api.location.type Span (calc.at:709): FAILED (calc.at:709)

#                             -*- compilation -*-
247. calc.at:710: testing Calculator %language "C++" %glr-parser %defines 
%locations %error-verbose %name-prefix "calc" %verbose %yacc ...
./calc.at:710: bison -o calc.cc calc.y
./calc.at:710: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:710: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc.cc:86:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
calc.cc:2886:21: warning: no newline at end of file
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:710: exit code was 1, expected 0
247. calc.at:710: 247. Calculator %language "C++" %glr-parser %defines 
%locations %error-verbose %name-prefix "calc" %verbose %yacc (calc.at:710): 
FAILED (calc.at:710)

#                             -*- compilation -*-
248. calc.at:711: testing Calculator %language "C++" %glr-parser %defines 
%locations %error-verbose %define api.prefix "calc" %verbose %yacc ...
./calc.at:711: bison -o calc.cc calc.y
./calc.at:711: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:711: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc.cc:88:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
calc.cc:2888:21: warning: no newline at end of file
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:711: exit code was 1, expected 0
248. calc.at:711: 248. Calculator %language "C++" %glr-parser %defines 
%locations %error-verbose %define api.prefix "calc" %verbose %yacc 
(calc.at:711): FAILED (calc.at:711)

#                             -*- compilation -*-
249. calc.at:713: testing Calculator %language "C++" %glr-parser %defines 
%locations %debug ...
./calc.at:713: bison -o calc.cc calc.y
./calc.at:713: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:713: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc.cc:78:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
calc.cc:2875:21: warning: no newline at end of file
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:713: exit code was 1, expected 0
249. calc.at:713: 249. Calculator %language "C++" %glr-parser %defines 
%locations %debug (calc.at:713): FAILED (calc.at:713)

#                             -*- compilation -*-
250. calc.at:714: testing Calculator %language "C++" %glr-parser %defines 
%locations %error-verbose %debug %name-prefix "calc" %verbose %yacc ...
./calc.at:714: bison -o calc.cc calc.y
./calc.at:714: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:714: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc.cc:86:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
calc.cc:2886:21: warning: no newline at end of file
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:714: exit code was 1, expected 0
250. calc.at:714: 250. Calculator %language "C++" %glr-parser %defines 
%locations %error-verbose %debug %name-prefix "calc" %verbose %yacc 
(calc.at:714): FAILED (calc.at:714)

#                             -*- compilation -*-
251. calc.at:716: testing Calculator %language "C++" %glr-parser %defines 
%locations %pure-parser %error-verbose %debug %name-prefix "calc" %verbose 
%yacc ...
./calc.at:716: bison -o calc.cc calc.y
./calc.at:716: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:716: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc.cc:86:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
calc.cc:2886:21: warning: no newline at end of file
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:716: exit code was 1, expected 0
251. calc.at:716: 251. Calculator %language "C++" %glr-parser %defines 
%locations %pure-parser %error-verbose %debug %name-prefix "calc" %verbose 
%yacc (calc.at:716): FAILED (calc.at:716)

#                             -*- compilation -*-
252. calc.at:718: testing Calculator %language "C++" %glr-parser %defines 
%locations %pure-parser %error-verbose %debug %name-prefix "calc" %verbose 
%yacc %parse-param {semantic_value *result} %parse-param {int *count} ...
./calc.at:718: bison -o calc.cc calc.y
./calc.at:718: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:718: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc.cc:86:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
calc.cc:2899:21: warning: no newline at end of file
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:718: exit code was 1, expected 0
252. calc.at:718: 252. Calculator %language "C++" %glr-parser %defines 
%locations %pure-parser %error-verbose %debug %name-prefix "calc" %verbose 
%yacc %parse-param {semantic_value *result} %parse-param {int *count} 
(calc.at:718): FAILED (calc.at:718)

#                             -*- compilation -*-
253. calc.at:719: testing Calculator %language "C++" %glr-parser %defines 
%locations %pure-parser %error-verbose %debug %define api.prefix "calc" 
%verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} 
...
./calc.at:719: bison -o calc.cc calc.y
./calc.at:719: $BISON_CXX_WORKS
stderr:
stdout:
./calc.at:719: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o calc calc.cc calc-lex.cc 
calc-main.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc.cc:88:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
calc.cc:2901:21: warning: no newline at end of file
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-lex.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from calc.hh:51,
                 from calc-main.cc:7:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./calc.at:719: exit code was 1, expected 0
253. calc.at:719: 253. Calculator %language "C++" %glr-parser %defines 
%locations %pure-parser %error-verbose %debug %define api.prefix "calc" 
%verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count} 
(calc.at:719): FAILED (calc.at:719)

#                             -*- compilation -*-
284. regression.at:938: testing Dancer %skeleton "lalr1.cc" ...
./regression.at:938: bison -o dancer.cc dancer.y
./regression.at:938: $BISON_CXX_WORKS
stderr:
stdout:
./regression.at:938: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o dancer dancer.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from dancer.hh:45,
                 from dancer.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./regression.at:938: exit code was 1, expected 0
284. regression.at:938: 284. Dancer %skeleton "lalr1.cc" (regression.at:938): 
FAILED (regression.at:938)

#                             -*- compilation -*-
287. regression.at:1022: testing Expecting two tokens %skeleton "lalr1.cc" ...
./regression.at:1022: bison -o expect2.cc expect2.y
./regression.at:1022: $BISON_CXX_WORKS
stderr:
stdout:
./regression.at:1022: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o expect2 expect2.cc 
$LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from expect2.hh:45,
                 from expect2.cc:58:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./regression.at:1022: exit code was 1, expected 0
287. regression.at:1022: 287. Expecting two tokens %skeleton "lalr1.cc" 
(regression.at:1022): FAILED (regression.at:1022)

#                             -*- compilation -*-
299. regression.at:1666: testing Lex and parse params: lalr1.cc ...
./regression.at:1666: bison -o input.cc input.y
./regression.at:1666: $BISON_CXX_WORKS
stderr:
stdout:
./regression.at:1666: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from input.hh:45,
                 from input.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./regression.at:1666: exit code was 1, expected 0
299. regression.at:1666: 299. Lex and parse params: lalr1.cc 
(regression.at:1666): FAILED (regression.at:1666)

#                             -*- compilation -*-
300. regression.at:1667: testing Lex and parse params: glr.cc ...
./regression.at:1667: bison -o input.cc input.y
./regression.at:1667: $BISON_CXX_WORKS
stderr:
stdout:
./regression.at:1667: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from input.hh:40,
                 from input.cc:78:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
input.cc:2760:22: warning: no newline at end of file
stdout:
./regression.at:1667: exit code was 1, expected 0
300. regression.at:1667: 300. Lex and parse params: glr.cc 
(regression.at:1667): FAILED (regression.at:1667)

#                             -*- compilation -*-
303. c++.at:160: testing Relative namespace references ...
./c++.at:161: bison -o input.cc input.y
./c++.at:161: $BISON_CXX_WORKS
stderr:
stdout:
./c++.at:161: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from input.hh:45,
                 from input.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./c++.at:161: exit code was 1, expected 0
303. c++.at:160: 303. Relative namespace references (c++.at:160): FAILED 
(c++.at:161)

#                             -*- compilation -*-
304. c++.at:166: testing Absolute namespace references ...
./c++.at:167: bison -o input.cc input.y
./c++.at:167: $BISON_CXX_WORKS
stderr:
stdout:
./c++.at:167: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/bits/char_traits.h:46,
                 from /usr/include/c++/3.2.2/string:47,
                 from input.hh:45,
                 from input.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./c++.at:167: exit code was 1, expected 0
304. c++.at:166: 304. Absolute namespace references (c++.at:166): FAILED 
(c++.at:167)

#                             -*- compilation -*-
306. c++.at:190: testing Exception safety ...
./c++.at:382: bison -o input.cc --report=all input.yy
./c++.at:383: $BISON_CXX_WORKS
stderr:
stdout:
./c++.at:383: $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS -o input input.cc $LIBS
stderr:
In file included from /usr/include/c++/3.2.2/bits/fpos.h:45,
                 from /usr/include/c++/3.2.2/iosfwd:46,
                 from /usr/include/c++/3.2.2/ios:44,
                 from /usr/include/c++/3.2.2/ostream:45,
                 from /usr/include/c++/3.2.2/iostream:45,
                 from input.yy:18,
                 from input.cc:53:
/usr/include/c++/3.2.2/cwchar:65: conflicting types for `typedef struct 
   rpl_mbstate_t rpl_mbstate_t'
/usr/source/bison-2.7/lib/wchar.h:443: previous declaration as `typedef int 
   rpl_mbstate_t'
stdout:
./c++.at:383: exit code was 1, expected 0
306. c++.at:190: 306. Exception safety (c++.at:190): FAILED (c++.at:383)


## ------------- ##
## ../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 2.7, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   $ ./configure --prefix=/usr --sharedstatedir=/etc --localstatedir=/var 
--enable-threads=posix --with-libiconv-prefix=/usr --with-libintl-prefix=/usr
| 
| ## --------- ##
| ## Platform. ##
| ## --------- ##
| 
| hostname = doctor.nl2k.ab.ca
| uname -m = i386
| uname -r = 4.3
| uname -s = BSD/OS
| uname -v = BSDI BSD/OS 4.3
| 
| /usr/bin/uname -p = 
| /bin/uname -X     = unknown
| 
| /bin/arch              = unknown
| /usr/bin/arch -k       = unknown
| /usr/convex/getsysinfo = unknown
| /usr/bin/hostinfo      = unknown
| /bin/machine           = unknown
| /usr/bin/oslevel       = unknown
| /bin/universe          = unknown
| 
| PATH: .
| PATH: .
| PATH: /root/bin
| PATH: /root/bin
| PATH: /usr/bin
| PATH: /usr/X11/bin
| PATH: /usr/local/bin
| PATH: /usr/sbin
| PATH: /bin
| PATH: /usr/bin
| PATH: /usr/sbin
| PATH: /sbin
| PATH: /usr/games
| PATH: /usr/X11/bin
| PATH: /usr/contrib/bin
| PATH: /var/news/bin
| 
| 
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
| 
| configure:3828: checking for a BSD-compatible install
| configure:3896: result: /usr/bin/install -c
| configure:3907: checking whether build environment is sane
| configure:3962: result: yes
| configure:4113: checking for a thread-safe mkdir -p
| configure:4152: result: /usr/bin/mkdir -p
| configure:4160: checking for gawk
| configure:4176: found /usr/bin/gawk
| configure:4187: result: gawk
| configure:4198: checking whether make sets $(MAKE)
| configure:4220: result: yes
| configure:4249: checking whether make supports nested variables
| configure:4266: result: no
| configure:4356: checking whether make supports nested variables
| configure:4373: result: no
| configure:4400: checking for style of include used by make
| configure:4428: result: BSD
| configure:4499: checking for gcc
| configure:4515: found /usr/bin/gcc
| configure:4526: result: gcc
| configure:4755: checking for C compiler version
| configure:4764: gcc --version >&5
| gcc (GCC) 3.2.2
| Copyright (C) 2002 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:4775: $? = 0
| configure:4764: gcc -v >&5
| Reading specs from /usr/lib/gcc-lib/i386-unknown-bsdi4.3/3.2.2/specs
| Configured with: /usr/src/core_contrib/gcc/configure --prefix=/usr 
--mandir=/usr/share/core_contrib/man --infodir=/usr/share/info --libdir=/usr/lib
| Thread model: posix
| gcc version 3.2.2
| configure:4775: $? = 0
| configure:4764: gcc -V >&5
| gcc: argument to `-V' is missing
| configure:4775: $? = 1
| configure:4764: gcc -qversion >&5
| gcc: unrecognized option `-qversion'
| gcc: no input files
| configure:4775: $? = 1
| configure:4795: checking whether the C compiler works
| configure:4817: gcc    conftest.c  >&5
| configure:4821: $? = 0
| configure:4869: result: yes
| configure:4872: checking for C compiler default output file name
| configure:4874: result: a.out
| configure:4880: checking for suffix of executables
| configure:4887: gcc -o conftest    conftest.c  >&5
| configure:4891: $? = 0
| configure:4913: result: 
| configure:4935: checking whether we are cross compiling
| configure:4943: gcc -o conftest    conftest.c  >&5
| configure:4947: $? = 0
| configure:4954: ./conftest
| configure:4958: $? = 0
| configure:4973: result: no
| configure:4978: checking for suffix of object files
| configure:5000: gcc -c   conftest.c >&5
| configure:5004: $? = 0
| configure:5025: result: o
| configure:5029: checking whether we are using the GNU C compiler
| configure:5048: gcc -c   conftest.c >&5
| configure:5048: $? = 0
| configure:5057: result: yes
| configure:5066: checking whether gcc accepts -g
| configure:5086: gcc -c -g  conftest.c >&5
| configure:5086: $? = 0
| configure:5127: result: yes
| configure:5144: checking for gcc option to accept ISO C89
| configure:5207: gcc  -c -g -O2  conftest.c >&5
| configure:5207: $? = 0
| configure:5220: result: none needed
| configure:5242: checking dependency style of gcc
| configure:5353: result: gcc3
| configure:5372: checking for gcc option to accept ISO C99
| configure:5521: gcc  -c -g -O2  conftest.c >&5
| conftest.c:62: parse error before "text"
| conftest.c: In function `test_restrict':
| conftest.c:67: `for' loop initial declaration used outside C99 mode
| conftest.c:67: `text' undeclared (first use in this function)
| conftest.c:67: (Each undeclared identifier is reported only once
| conftest.c:67: for each function it appears in.)
| conftest.c: In function `main':
| conftest.c:116: syntax error before "newvar"
| conftest.c:126: `for' loop initial declaration used outside C99 mode
| conftest.c:142: `newvar' undeclared (first use in this function)
| configure:5521: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | /* end confdefs.h.  */
| | #include <stdarg.h>
| | #include <stdbool.h>
| | #include <stdlib.h>
| | #include <wchar.h>
| | #include <stdio.h>
| | 
| | // Check varargs macros.  These examples are taken from C99 6.10.3.5.
| | #define debug(...) fprintf (stderr, __VA_ARGS__)
| | #define showlist(...) puts (#__VA_ARGS__)
| | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__))
| | static void
| | test_varargs_macros (void)
| | {
| |   int x = 1234;
| |   int y = 5678;
| |   debug ("Flag");
| |   debug ("X = %d\n", x);
| |   showlist (The first, second, and third items.);
| |   report (x>y, "x is %d but y is %d", x, y);
| | }
| | 
| | // Check long long types.
| | #define BIG64 18446744073709551615ull
| | #define BIG32 4294967295ul
| | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0)
| | #if !BIG_OK
| |   your preprocessor is broken;
| | #endif
| | #if BIG_OK
| | #else
| |   your preprocessor is broken;
| | #endif
| | static long long int bignum = -9223372036854775807LL;
| | static unsigned long long int ubignum = BIG64;
| | 
| | struct incomplete_array
| | {
| |   int datasize;
| |   double data[];
| | };
| | 
| | struct named_init {
| |   int number;
| |   const wchar_t *name;
| |   double average;
| | };
| | 
| | typedef const char *ccp;
| | 
| | static inline int
| | test_restrict (ccp restrict text)
| | {
| |   // See if C++-style comments work.
| |   // Iterate through items via the restricted pointer.
| |   // Also check for declarations in for loops.
| |   for (unsigned int i = 0; *(text+i) != '\0'; ++i)
| |     continue;
| |   return 0;
| | }
| | 
| | // Check varargs and va_copy.
| | static void
| | test_varargs (const char *format, ...)
| | {
| |   va_list args;
| |   va_start (args, format);
| |   va_list args_copy;
| |   va_copy (args_copy, args);
| | 
| |   const char *str;
| |   int number;
| |   float fnumber;
| | 
| |   while (*format)
| |     {
| |       switch (*format++)
| |     {
| |     case 's': // string
| |       str = va_arg (args_copy, const char *);
| |       break;
| |     case 'd': // int
| |       number = va_arg (args_copy, int);
| |       break;
| |     case 'f': // float
| |       fnumber = va_arg (args_copy, double);
| |       break;
| |     default:
| |       break;
| |     }
| |     }
| |   va_end (args_copy);
| |   va_end (args);
| | }
| | 
| | int
| | main ()
| | {
| | 
| |   // Check bool.
| |   _Bool success = false;
| | 
| |   // Check restrict.
| |   if (test_restrict ("String literal") == 0)
| |     success = true;
| |   char *restrict newvar = "Another string";
| | 
| |   // Check varargs.
| |   test_varargs ("s, d' f .", "string", 65, 34.234);
| |   test_varargs_macros ();
| | 
| |   // Check flexible array members.
| |   struct incomplete_array *ia =
| |     malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
| |   ia->datasize = 10;
| |   for (int i = 0; i < ia->datasize; ++i)
| |     ia->data[i] = i * 1.234;
| | 
| |   // Check named initializers.
| |   struct named_init ni = {
| |     .number = 34,
| |     .name = L"Test wide string",
| |     .average = 543.34343,
| |   };
| | 
| |   ni.number = 58;
| | 
| |   int dynamic_array[ni.number];
| |   dynamic_array[ni.number - 1] = 543;
| | 
| |   // work around unused variable warnings
| |   return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x'
| |       || dynamic_array[ni.number - 1] != 543);
| | 
| |   ;
| |   return 0;
| | }
| configure:5521: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `test_varargs':
| conftest.c:79: warning: implicit declaration of function `va_copy'
| configure:5521: $? = 0
| configure:5541: result: -std=gnu99
| configure:5642: checking for gcc -std=gnu99 option to accept ISO Standard C
| configure:5656: result: -std=gnu99
| configure:5718: checking for g++
| configure:5734: found /usr/bin/g++
| configure:5745: result: g++
| configure:5772: checking for C++ compiler version
| configure:5781: g++ --version >&5
| g++ (GCC) 3.2.2
| Copyright (C) 2002 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:5792: $? = 0
| configure:5781: g++ -v >&5
| Reading specs from /usr/lib/gcc-lib/i386-unknown-bsdi4.3/3.2.2/specs
| Configured with: /usr/src/core_contrib/gcc/configure --prefix=/usr 
--mandir=/usr/share/core_contrib/man --infodir=/usr/share/info --libdir=/usr/lib
| Thread model: posix
| gcc version 3.2.2
| configure:5792: $? = 0
| configure:5781: g++ -V >&5
| g++: argument to `-V' missing
| 
| configure:5792: $? = 1
| configure:5781: g++ -qversion >&5
| g++: unrecognized option `-qversion'
| g++: no input files
| configure:5792: $? = 1
| configure:5796: checking whether we are using the GNU C++ compiler
| configure:5815: g++ -c   conftest.cpp >&5
| configure:5815: $? = 0
| configure:5824: result: yes
| configure:5833: checking whether g++ accepts -g
| configure:5853: g++ -c -g  conftest.cpp >&5
| configure:5853: $? = 0
| configure:5894: result: yes
| configure:5919: checking dependency style of g++
| configure:6030: result: gcc3
| configure:6053: checking how to run the C preprocessor
| configure:6084: gcc -std=gnu99 -E  conftest.c
| configure:6084: $? = 0
| configure:6098: gcc -std=gnu99 -E  conftest.c
| conftest.c:12:28: ac_nonexistent.h: No such file or directory
| configure:6098: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | /* end confdefs.h.  */
| | #include <ac_nonexistent.h>
| configure:6123: result: gcc -std=gnu99 -E
| configure:6143: gcc -std=gnu99 -E  conftest.c
| configure:6143: $? = 0
| configure:6157: gcc -std=gnu99 -E  conftest.c
| conftest.c:12:28: ac_nonexistent.h: No such file or directory
| configure:6157: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | /* end confdefs.h.  */
| | #include <ac_nonexistent.h>
| configure:6186: checking for grep that handles long lines and -e
| configure:6244: result: /bin/grep
| configure:6249: checking for egrep
| configure:6311: result: /bin/grep -E
| configure:6318: checking for Minix Amsterdam compiler
| configure:6342: result: no
| configure:6394: checking for ar
| configure:6410: found /usr/bin/ar
| configure:6421: result: ar
| configure:6501: checking for ranlib
| configure:6517: found /usr/bin/ranlib
| configure:6528: result: ranlib
| configure:6555: checking whether gcc -std=gnu99 and cc understand -c and -o 
together
| configure:6586: gcc -std=gnu99 -c conftest.c -o conftest2.o >&5
| configure:6590: $? = 0
| configure:6596: gcc -std=gnu99 -c conftest.c -o conftest2.o >&5
| configure:6600: $? = 0
| configure:6611: cc -c conftest.c >&5
| configure:6615: $? = 0
| configure:6623: cc -c conftest.c -o conftest2.o >&5
| configure:6627: $? = 0
| configure:6633: cc -c conftest.c -o conftest2.o >&5
| configure:6637: $? = 0
| configure:6655: result: yes
| configure:6684: checking build system type
| configure:6698: result: i386-pc-bsdi4.3
| configure:6718: checking host system type
| configure:6731: result: i386-pc-bsdi4.3
| configure:6751: checking for ANSI C header files
| configure:6771: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:6771: $? = 0
| configure:6844: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:6844: $? = 0
| configure:6844: ./conftest
| configure:6844: $? = 0
| configure:6855: result: yes
| configure:6868: checking for sys/types.h
| configure:6868: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:6868: $? = 0
| configure:6868: result: yes
| configure:6868: checking for sys/stat.h
| configure:6868: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:6868: $? = 0
| configure:6868: result: yes
| configure:6868: checking for stdlib.h
| configure:6868: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:6868: $? = 0
| configure:6868: result: yes
| configure:6868: checking for string.h
| configure:6868: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:6868: $? = 0
| configure:6868: result: yes
| configure:6868: checking for memory.h
| configure:6868: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:6868: $? = 0
| configure:6868: result: yes
| configure:6868: checking for strings.h
| configure:6868: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:6868: $? = 0
| configure:6868: result: yes
| configure:6868: checking for inttypes.h
| configure:6868: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:6868: $? = 0
| configure:6868: result: yes
| configure:6868: checking for stdint.h
| configure:6868: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:6868: $? = 0
| configure:6868: result: yes
| configure:6868: checking for unistd.h
| configure:6868: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:6868: $? = 0
| configure:6868: result: yes
| configure:6883: checking minix/config.h usability
| configure:6883: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:55:26: minix/config.h: No such file or directory
| configure:6883: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <minix/config.h>
| configure:6883: result: no
| configure:6883: checking minix/config.h presence
| configure:6883: gcc -std=gnu99 -E  conftest.c
| conftest.c:22:26: minix/config.h: No such file or directory
| configure:6883: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 <minix/config.h>
| configure:6883: result: no
| configure:6883: checking for minix/config.h
| configure:6883: result: no
| configure:6912: checking whether it is safe to define __EXTENSIONS__
| configure:6930: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:6930: $? = 0
| configure:6937: result: yes
| configure:6995: checking for special C compiler options needed for large files
| configure:7040: result: no
| configure:7046: checking for _FILE_OFFSET_BITS value needed for large files
| configure:7071: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:7071: $? = 0
| configure:7103: result: no
| configure:7443: checking whether pragma GCC diagnostic push works
| configure:7465: gcc -std=gnu99 -c -Wunknown-pragmas -Werror  conftest.c >&5
| cc1: warnings being treated as errors
| conftest.c:29: warning: ignoring #pragma GCC diagnostic
| conftest.c:30: warning: ignoring #pragma GCC diagnostic
| configure:7465: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | /* end confdefs.h.  */
| | 
| |     #pragma GCC diagnostic push
| |     #pragma GCC diagnostic pop
| | 
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:7473: result: no
| configure:8020: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8020: $? = 0
| configure:8038: checking whether gcc -std=gnu99 supports POSIXLY_CORRECT=1
| configure:8062: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:8062: $? = 0
| configure:8076: result: yes
| configure:8093: checking whether g++ builds executables that work
| configure:8128: g++ -c -g -O2  conftest.cpp >&5
| configure:8128: $? = 0
| configure:8130: g++ -o conftest -g -O2   conftest.o  >&5
| configure:8133: $? = 0
| configure:8139: ./conftest
| configure:8142: $? = 0
| configure:8158: result: yes
| configure:8184: checking whether g++ supports POSIXLY_CORRECT=1
| configure:8208: g++ -o conftest -g -O2   conftest.cpp  >&5
| configure:8208: $? = 0
| configure:8222: result: yes
| configure:8265: checking for flex
| configure:8281: found /usr/bin/flex
| configure:8292: result: flex
| configure:8305: checking whether lex is flex
| configure:8321: flex conftest.l
| conftest.l:5: warning, -s option given but default rule can be matched
| configure:8325: $? = 0
| configure:8333: result: yes
| configure:8362: flex conftest.l
| configure:8366: $? = 0
| configure:8368: checking lex output file root
| configure:8382: result: lex.yy
| configure:8387: checking lex library
| configure:8401: gcc -std=gnu99 -o conftest -g -O2   conftest.c   >&5
| /var/tmp//ccfLSg8K.o: In function `yylex':
| /usr/source/bison-2.7/lex.yy.c:869: undefined reference to `yywrap'
| /var/tmp//ccfLSg8K.o: In function `input':
| /usr/source/bison-2.7/lex.yy.c:1170: undefined reference to `yywrap'
| /var/tmp//ccfLSg8K.o: In function `main':
| /usr/source/bison-2.7/conftest.l:18: undefined reference to `yywrap'
| configure:8401: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 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 <stdio.h>
| | #include <string.h>
| | #include <errno.h>
| | #include <stdlib.h>
| | 
| | /* end standard C headers. */
| | 
| | /* flex integer type definitions */
| | 
| | #ifndef FLEXINT_H
| | #define FLEXINT_H
| | 
| | /* C99 systems have <inttypes.h>. 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 <inttypes.h>
| | 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 <unistd.h>
| | #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;
| |     int 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:8401: gcc -std=gnu99 -o conftest -g -O2   conftest.c -lfl  >&5
| configure:8401: $? = 0
| configure:8411: result: -lfl
| configure:8417: checking whether yytext is a pointer
| configure:8434: gcc -std=gnu99 -o conftest -g -O2   conftest.c -lfl  >&5
| configure:8434: $? = 0
| configure:8442: result: yes
| configure:8457: checking for bison
| configure:8473: found /usr/bin/bison
| configure:8484: result: bison -y
| configure:8539: checking for ranlib
| configure:8566: result: ranlib
| configure:8589: checking for GNU M4 that supports accurate traces
| configure:8638: result: /usr/contrib/bin/m4
| configure:8641: checking whether /usr/contrib/bin/m4 accepts --gnu
| configure:8651: result: yes
| configure:8668: checking how m4 supports trace files
| configure:8678: result: --debugfile
| configure:8695: checking for perl
| configure:8713: found /usr/bin/perl
| configure:8725: result: /usr/bin/perl
| configure:8741: checking for xsltproc
| configure:8759: found /usr/contrib/bin/xsltproc
| configure:8771: result: /usr/contrib/bin/xsltproc
| configure:8788: checking for locale.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8788: $? = 0
| configure:8788: result: yes
| configure:8788: checking for sys/socket.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8788: $? = 0
| configure:8788: result: yes
| configure:8788: checking for unistd.h
| configure:8788: result: yes
| configure:8788: checking for stdio_ext.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:68:23: stdio_ext.h: No such file or directory
| configure:8788: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/bin/m4"
| | #define M4_GNU_OPTION "--gnu"
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_SOCKET_H 1
| | #define HAVE_UNISTD_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | 
| | #include <stdio_ext.h>
| configure:8788: result: no
| configure:8788: checking for features.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:68:22: features.h: No such file or directory
| configure:8788: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/bin/m4"
| | #define M4_GNU_OPTION "--gnu"
| | #define HAVE_LOCALE_H 1
| | #define HAVE_SYS_SOCKET_H 1
| | #define HAVE_UNISTD_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | 
| | #include <features.h>
| configure:8788: result: no
| configure:8788: checking for sys/stat.h
| configure:8788: result: yes
| configure:8788: checking for getopt.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8788: $? = 0
| configure:8788: result: yes
| configure:8788: checking for wchar.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8788: $? = 0
| configure:8788: result: yes
| configure:8788: checking for stdint.h
| configure:8788: result: yes
| configure:8788: checking for inttypes.h
| configure:8788: result: yes
| configure:8788: checking for wctype.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8788: $? = 0
| configure:8788: result: yes
| configure:8788: checking for math.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8788: $? = 0
| configure:8788: result: yes
| configure:8788: checking for sys/mman.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8788: $? = 0
| configure:8788: result: yes
| configure:8788: checking for sys/param.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8788: $? = 0
| configure:8788: result: yes
| configure:8788: checking for sched.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8788: $? = 0
| configure:8788: result: yes
| configure:8788: checking for spawn.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:78:19: spawn.h: No such file or directory
| configure:8788: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_H 1
| | #define HAVE_MATH_H 1
| | #define HAVE_SYS_MMAN_H 1
| | #define HAVE_SYS_PARAM_H 1
| | #define HAVE_SCHED_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | 
| | #include <spawn.h>
| configure:8788: result: no
| configure:8788: checking for sys/wait.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8788: $? = 0
| configure:8788: result: yes
| configure:8788: checking for sys/time.h
| configure:8788: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8788: $? = 0
| configure:8788: result: yes
| configure:8804: checking for inline
| configure:8820: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8820: $? = 0
| configure:8828: result: inline
| configure:8857: checking for size_t
| configure:8857: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:8857: $? = 0
| configure:8857: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:82: parse error before ')' token
| configure:8857: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | if (sizeof ((size_t)))
| |         return 0;
| |   ;
| |   return 0;
| | }
| configure:8857: result: yes
| configure:8870: checking for working alloca.h
| configure:8887: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c:46:20: alloca.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:50: warning: implicit declaration of function `alloca'
| configure:8887: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | /* end confdefs.h.  */
| | #include <alloca.h>
| | int
| | main ()
| | {
| | char *p = (char *) alloca (2 * sizeof (int));
| |                       if (p) return 0;
| |   ;
| |   return 0;
| | }
| configure:8895: result: no
| configure:8903: checking for alloca
| configure:8940: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:8940: $? = 0
| configure:8948: result: yes
| configure:9135: checking whether malloc, realloc, calloc are POSIX compliant
| configure:9155: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:9155: $? = 0
| configure:9163: result: yes
| configure:9295: checking for _set_invalid_parameter_handler
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccgId137.o: In function `main':
| /usr/source/bison-2.7/conftest.c:81: undefined reference to 
`_set_invalid_parameter_handler'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | /* end confdefs.h.  */
| | /* Define _set_invalid_parameter_handler to an innocuous variant, in case 
<limits.h> declares _set_invalid_parameter_handler.
| |    For example, HP-UX 11i <limits.h> 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 <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #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:9295: result: no
| configure:9295: checking for fcntl
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for symlink
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for __fpending
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccM4deEt.o: In function `main':
| /usr/source/bison-2.7/conftest.c:83: undefined reference to `__fpending'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | /* end confdefs.h.  */
| | /* Define __fpending to an innocuous variant, in case <limits.h> declares 
__fpending.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define __fpending innocuous___fpending
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char __fpending (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef __fpending
| | 
| | /* 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 __fpending ();
| | /* 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___fpending || defined __stub_____fpending
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return __fpending ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for vasnprintf
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccUymzYS.o: In function `main':
| /usr/source/bison-2.7/conftest.c:83: undefined reference to `vasnprintf'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | /* end confdefs.h.  */
| | /* Define vasnprintf to an innocuous variant, in case <limits.h> declares 
vasnprintf.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define vasnprintf innocuous_vasnprintf
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char vasnprintf (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #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:9295: result: no
| configure:9295: checking for snprintf
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for alarm
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for __fseterr
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccAeLqTy.o: In function `main':
| /usr/source/bison-2.7/conftest.c:85: undefined reference to `__fseterr'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | /* end confdefs.h.  */
| | /* Define __fseterr to an innocuous variant, in case <limits.h> declares 
__fseterr.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define __fseterr innocuous___fseterr
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char __fseterr (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #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:9295: result: no
| configure:9295: checking for getdelim
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccw3eHO3.o: In function `main':
| /usr/source/bison-2.7/conftest.c:85: undefined reference to `getdelim'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | /* end confdefs.h.  */
| | /* Define getdelim to an innocuous variant, in case <limits.h> declares 
getdelim.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define getdelim innocuous_getdelim
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char getdelim (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef getdelim
| | 
| | /* 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 getdelim ();
| | /* 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_getdelim || defined __stub___getdelim
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return getdelim ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for getdtablesize
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for iswcntrl
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for iswblank
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccaKfLgv.o: In function `main':
| /usr/source/bison-2.7/conftest.c:87: undefined reference to `iswblank'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | /* end confdefs.h.  */
| | /* Define iswblank to an innocuous variant, in case <limits.h> declares 
iswblank.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define iswblank innocuous_iswblank
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char iswblank (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef iswblank
| | 
| | /* 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 iswblank ();
| | /* 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_iswblank || defined __stub___iswblank
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return iswblank ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for mbsinit
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccsCca8d.o: In function `main':
| /usr/source/bison-2.7/conftest.c:87: undefined reference to `mbsinit'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | /* end confdefs.h.  */
| | /* Define mbsinit to an innocuous variant, in case <limits.h> declares 
mbsinit.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define mbsinit innocuous_mbsinit
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char mbsinit (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef mbsinit
| | 
| | /* 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 mbsinit ();
| | /* 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_mbsinit || defined __stub___mbsinit
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return mbsinit ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for mbrtowc
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//cc4Srb3d.o: In function `main':
| /usr/source/bison-2.7/conftest.c:87: undefined reference to `mbrtowc'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | /* end confdefs.h.  */
| | /* Define mbrtowc to an innocuous variant, in case <limits.h> declares 
mbrtowc.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define mbrtowc innocuous_mbrtowc
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char mbrtowc (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef mbrtowc
| | 
| | /* 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 mbrtowc ();
| | /* 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_mbrtowc || defined __stub___mbrtowc
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return mbrtowc ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for isascii
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for mprotect
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for obstack_printf
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccwGlQ8k.o: In function `main':
| /usr/source/bison-2.7/conftest.c:89: undefined reference to `obstack_printf'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | /* end confdefs.h.  */
| | /* Define obstack_printf to an innocuous variant, in case <limits.h> 
declares obstack_printf.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define obstack_printf innocuous_obstack_printf
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char obstack_printf (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef obstack_printf
| | 
| | /* 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 obstack_printf ();
| | /* 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_obstack_printf || defined __stub___obstack_printf
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return obstack_printf ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for lstat
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for strerror_r
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccYPIyQr.o: In function `main':
| /usr/source/bison-2.7/conftest.c:90: undefined reference to `strerror_r'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | /* end confdefs.h.  */
| | /* Define strerror_r to an innocuous variant, in case <limits.h> declares 
strerror_r.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define strerror_r innocuous_strerror_r
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char strerror_r (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef strerror_r
| | 
| | /* 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 strerror_r ();
| | /* 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_strerror_r || defined __stub___strerror_r
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return strerror_r ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for __xpg_strerror_r
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccoysATx.o: In function `main':
| /usr/source/bison-2.7/conftest.c:90: undefined reference to `__xpg_strerror_r'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | /* end confdefs.h.  */
| | /* Define __xpg_strerror_r to an innocuous variant, in case <limits.h> 
declares __xpg_strerror_r.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define __xpg_strerror_r innocuous___xpg_strerror_r
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char __xpg_strerror_r (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef __xpg_strerror_r
| | 
| | /* 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 __xpg_strerror_r ();
| | /* 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___xpg_strerror_r || defined __stub_____xpg_strerror_r
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return __xpg_strerror_r ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for pipe2
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccxJFk8p.o: In function `main':
| /usr/source/bison-2.7/conftest.c:90: undefined reference to `pipe2'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | /* end confdefs.h.  */
| | /* Define pipe2 to an innocuous variant, in case <limits.h> declares pipe2.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define pipe2 innocuous_pipe2
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char pipe2 (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef pipe2
| | 
| | /* 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 pipe2 ();
| | /* 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_pipe2 || defined __stub___pipe2
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return pipe2 ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for posix_spawn
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccOCelfW.o: In function `main':
| /usr/source/bison-2.7/conftest.c:90: undefined reference to `posix_spawn'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | /* end confdefs.h.  */
| | /* Define posix_spawn to an innocuous variant, in case <limits.h> declares 
posix_spawn.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define posix_spawn innocuous_posix_spawn
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char posix_spawn (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef posix_spawn
| | 
| | /* 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 posix_spawn ();
| | /* 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_posix_spawn || defined __stub___posix_spawn
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return posix_spawn ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for sigaction
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for sigaltstack
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for siginterrupt
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for strdup
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for catgets
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccwUTPcX.o: In function `main':
| /usr/source/bison-2.7/conftest.c:94: undefined reference to `catgets'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | /* end confdefs.h.  */
| | /* Define catgets to an innocuous variant, in case <limits.h> declares 
catgets.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define catgets innocuous_catgets
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char catgets (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef catgets
| | 
| | /* 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 catgets ();
| | /* 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_catgets || defined __stub___catgets
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return catgets ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for strndup
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//cc4JS8ik.o: In function `main':
| /usr/source/bison-2.7/conftest.c:94: undefined reference to `strndup'
| configure:9295: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | /* end confdefs.h.  */
| | /* Define strndup to an innocuous variant, in case <limits.h> declares 
strndup.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define strndup innocuous_strndup
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char strndup (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef strndup
| | 
| | /* 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 strndup ();
| | /* 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_strndup || defined __stub___strndup
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return strndup ();
| |   ;
| |   return 0;
| | }
| configure:9295: result: no
| configure:9295: checking for pipe
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for wcwidth
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9295: checking for setlocale
| configure:9295: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:9295: $? = 0
| configure:9295: result: yes
| configure:9322: checking whether // is distinct from /
| configure:9351: result: no
| configure:9372: checking if environ is properly declared
| configure:9395: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:9395: $? = 0
| configure:9403: result: no
| configure:9418: checking whether the preprocessor supports include_next
| configure:9456: gcc -std=gnu99 -c -g -O2  -Iconftestd1b -Iconftestd2 
conftest.c >&5
| configure:9456: $? = 0
| configure:9477: result: yes
| configure:9498: checking whether system header files limit the line length
| configure:9521: result: no
| configure:9532: checking for complete errno.h
| configure:9605: result: no
| configure:9690: checking for EMULTIHOP value
| configure:9745: result: no
| configure:9761: checking for ENOLINK value
| configure:9816: result: no
| configure:9832: checking for EOVERFLOW value
| configure:9887: result: no
| configure:9902: checking whether strerror_r is declared
| configure:9902: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:103: `strerror_r' undeclared (first use in this function)
| conftest.c:103: (Each undeclared identifier is reported only once
| conftest.c:103: for each function it appears in.)
| configure:9902: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef strerror_r
| | #ifdef __cplusplus
| |   (void) strerror_r;
| | #else
| |   (void) strerror_r;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:9902: result: no
| configure:9915: checking for strerror_r
| configure:9915: result: no
| configure:9924: checking whether strerror_r returns char *
| configure:9976: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c: In function `main':
| conftest.c:103: warning: implicit declaration of function `isalpha'
| /var/tmp//ccgfD4ql.o: In function `main':
| /usr/source/bison-2.7/conftest.c:102: undefined reference to `strerror_r'
| configure:9976: $? = 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 "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| |     extern char *strerror_r ();
| | int
| | main ()
| | {
| | char buf[100];
| |       char x = *strerror_r (0, buf, sizeof buf);
| |       return ! isalpha (x);
| |   ;
| |   return 0;
| | }
| configure:9986: result: no
| configure:10001: checking for sig_atomic_t
| configure:10001: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:10001: $? = 0
| configure:10001: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:69: parse error before ')' token
| configure:10001: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | /* end confdefs.h.  */
| | #include <signal.h>
| | 
| | int
| | main ()
| | {
| | if (sizeof ((sig_atomic_t)))
| |         return 0;
| |   ;
| |   return 0;
| | }
| configure:10001: result: yes
| configure:10037: checking for working fcntl.h
| configure:10140: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c:84: `O_SYNC' undeclared here (not in a function)
| conftest.c:84: initializer element is not constant
| conftest.c:84: (near initialization for `constants[6]')
| configure:10140: $? = 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 "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | /* end confdefs.h.  */
| | #include <sys/types.h>
| |            #include <sys/stat.h>
| |            #if HAVE_UNISTD_H
| |            # include <unistd.h>
| |            #else /* on Windows with MSVC */
| |            # include <io.h>
| |            # include <stdlib.h>
| |            # defined sleep(n) _sleep ((n) * 1000)
| |            #endif
| |            #include <fcntl.h>
| |            #ifndef O_NOATIME
| |             #define O_NOATIME 0
| |            #endif
| |            #ifndef O_NOFOLLOW
| |             #define O_NOFOLLOW 0
| |            #endif
| |            static int const constants[] =
| |             {
| |               O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND,
| |               O_NONBLOCK, O_SYNC, O_ACCMODE, O_RDONLY, O_RDWR, O_WRONLY
| |             };
| | 
| | int
| | main ()
| | {
| | 
| |             int result = !constants;
| |             #if HAVE_SYMLINK
| |             {
| |               static char const sym[] = "conftest.sym";
| |               if (symlink ("/dev/null", sym) != 0)
| |                 result |= 2;
| |               else
| |                 {
| |                   int fd = open (sym, O_WRONLY | O_NOFOLLOW | O_CREAT, 0);
| |                   if (fd >= 0)
| |                     {
| |                       close (fd);
| |                       result |= 4;
| |                     }
| |                 }
| |               if (unlink (sym) != 0 || symlink (".", sym) != 0)
| |                 result |= 2;
| |               else
| |                 {
| |                   int fd = open (sym, O_RDONLY | O_NOFOLLOW);
| |                   if (fd >= 0)
| |                     {
| |                       close (fd);
| |                       result |= 4;
| |                     }
| |                 }
| |               unlink (sym);
| |             }
| |             #endif
| |             {
| |               static char const file[] = "confdefs.h";
| |               int fd = open (file, O_RDONLY | O_NOATIME);
| |               if (fd < 0)
| |                 result |= 8;
| |               else
| |                 {
| |                   struct stat st0;
| |                   if (fstat (fd, &st0) != 0)
| |                     result |= 16;
| |                   else
| |                     {
| |                       char c;
| |                       sleep (1);
| |                       if (read (fd, &c, 1) != 1)
| |                         result |= 24;
| |                       else
| |                         {
| |                           if (close (fd) != 0)
| |                             result |= 32;
| |                           else
| |                             {
| |                               struct stat st1;
| |                               if (stat (file, &st1) != 0)
| |                                 result |= 40;
| |                               else
| |                                 if (st0.st_atime != st1.st_atime)
| |                                   result |= 64;
| |                             }
| |                         }
| |                     }
| |                 }
| |             }
| |             return result;
| |   ;
| |   return 0;
| | }
| configure:10155: result: no
| configure:10178: checking for pid_t
| configure:10178: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:10178: $? = 0
| configure:10178: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:103: parse error before ')' token
| configure:10178: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | if (sizeof ((pid_t)))
| |         return 0;
| |   ;
| |   return 0;
| | }
| configure:10178: result: yes
| configure:10189: checking for mode_t
| configure:10189: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:10189: $? = 0
| configure:10189: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:103: parse error before ')' token
| configure:10189: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | if (sizeof ((mode_t)))
| |         return 0;
| |   ;
| |   return 0;
| | }
| configure:10189: result: yes
| configure:10308: checking for stdint.h
| configure:10325: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:72: `uintmax_t' undeclared (first use in this function)
| conftest.c:72: (Each undeclared identifier is reported only once
| conftest.c:72: for each function it appears in.)
| conftest.c:72: parse error before "i"
| conftest.c:72: `i' undeclared (first use in this function)
| configure:10325: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | /* end confdefs.h.  */
| | #include <sys/types.h>
| |             #include <stdint.h>
| | int
| | main ()
| | {
| | uintmax_t i = (uintmax_t) -1; return !i;
| |   ;
| |   return 0;
| | }
| configure:10332: result: no
| configure:10343: checking for inttypes.h
| configure:10362: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:74: `uintmax_t' undeclared (first use in this function)
| conftest.c:74: (Each undeclared identifier is reported only once
| conftest.c:74: for each function it appears in.)
| conftest.c:74: parse error before "i"
| conftest.c:74: `i' undeclared (first use in this function)
| configure:10362: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | /* end confdefs.h.  */
| | 
| | #include <sys/types.h>
| | #include <inttypes.h>
| | 
| | int
| | main ()
| | {
| | uintmax_t i = (uintmax_t) -1; return !i;
| |   ;
| |   return 0;
| | }
| configure:10369: result: no
| configure:10383: checking whether printf supports size specifiers as in C99
| configure:10454: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:10454: $? = 0
| configure:10454: ./conftest
| configure:10454: $? = 14
| configure: program exited with status 14
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | /* end confdefs.h.  */
| | 
| | #include <stddef.h>
| | #include <stdio.h>
| | #include <string.h>
| | #include <sys/types.h>
| | #if HAVE_STDINT_H_WITH_UINTMAX
| | # include <stdint.h>
| | #endif
| | #if HAVE_INTTYPES_H_WITH_UINTMAX
| | # include <inttypes.h>
| | #endif
| | static char buf[100];
| | int main ()
| | {
| |   int result = 0;
| | #if HAVE_STDINT_H_WITH_UINTMAX || HAVE_INTTYPES_H_WITH_UINTMAX
| |   buf[0] = '\0';
| |   if (sprintf (buf, "%ju %d", (uintmax_t) 12345671, 33, 44, 55) < 0
| |       || strcmp (buf, "12345671 33") != 0)
| |     result |= 1;
| | #endif
| |   buf[0] = '\0';
| |   if (sprintf (buf, "%zu %d", (size_t) 12345672, 33, 44, 55) < 0
| |       || strcmp (buf, "12345672 33") != 0)
| |     result |= 2;
| |   buf[0] = '\0';
| |   if (sprintf (buf, "%tu %d", (ptrdiff_t) 12345673, 33, 44, 55) < 0
| |       || strcmp (buf, "12345673 33") != 0)
| |     result |= 4;
| |   buf[0] = '\0';
| |   if (sprintf (buf, "%Lg %d", (long double) 1.5, 33, 44, 55) < 0
| |       || strcmp (buf, "1.5 33") != 0)
| |     result |= 8;
| |   return result;
| | }
| configure:10465: result: no
| configure:10470: checking whether printf supports 'long double' arguments
| configure:10509: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:10509: $? = 0
| configure:10509: ./conftest
| configure:10509: $? = 7
| configure: program exited with status 7
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | /* end confdefs.h.  */
| | 
| | #include <stdio.h>
| | #include <string.h>
| | static char buf[10000];
| | int main ()
| | {
| |   int result = 0;
| |   buf[0] = '\0';
| |   if (sprintf (buf, "%Lf %d", 1.75L, 33, 44, 55) < 0
| |       || strcmp (buf, "1.750000 33") != 0)
| |     result |= 1;
| |   buf[0] = '\0';
| |   if (sprintf (buf, "%Le %d", 1.75L, 33, 44, 55) < 0
| |       || strcmp (buf, "1.750000e+00 33") != 0)
| |     result |= 2;
| |   buf[0] = '\0';
| |   if (sprintf (buf, "%Lg %d", 1.75L, 33, 44, 55) < 0
| |       || strcmp (buf, "1.75 33") != 0)
| |     result |= 4;
| |   return result;
| | }
| configure:10520: result: no
| configure:10525: checking whether printf supports infinite 'double' arguments
| configure:10626: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:10626: $? = 0
| configure:10626: ./conftest
| configure:10626: $? = 0
| configure:10637: result: yes
| configure:10641: checking whether byte ordering is bigendian
| configure:10656: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:68: parse error before "a"
| conftest.c:70: syntax error before "typedef"
| configure:10656: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | /* end confdefs.h.  */
| | #ifndef __APPLE_CC__
| |            not a universal capable compiler
| |          #endif
| |          typedef int dummy;
| | 
| configure:10701: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:10701: $? = 0
| configure:10719: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:74: `not' undeclared (first use in this function)
| conftest.c:74: (Each undeclared identifier is reported only once
| conftest.c:74: for each function it appears in.)
| conftest.c:74: parse error before "big"
| configure:10719: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | /* end confdefs.h.  */
| | #include <sys/types.h>
| |             #include <sys/param.h>
| | 
| | int
| | main ()
| | {
| | #if BYTE_ORDER != BIG_ENDIAN
| |              not big endian
| |             #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:10847: result: no
| configure:10867: checking whether long double and double are the same
| configure:10888: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:75: size of array `check' is negative
| configure:10888: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | /* end confdefs.h.  */
| | #include <float.h>
| | 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:10896: result: no
| configure:11248: checking whether printf supports the 'a' and 'A' directives
| configure:11336: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:11336: $? = 0
| configure:11336: ./conftest
| configure:11336: $? = 63
| configure: program exited with status 63
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | /* end confdefs.h.  */
| | 
| | #include <stdio.h>
| | #include <string.h>
| | static char buf[100];
| | static double zero = 0.0;
| | int main ()
| | {
| |   int result = 0;
| |   if (sprintf (buf, "%a %d", 3.1416015625, 33, 44, 55) < 0
| |       || (strcmp (buf, "0x1.922p+1 33") != 0
| |           && strcmp (buf, "0x3.244p+0 33") != 0
| |           && strcmp (buf, "0x6.488p-1 33") != 0
| |           && strcmp (buf, "0xc.91p-2 33") != 0))
| |     result |= 1;
| |   if (sprintf (buf, "%A %d", -3.1416015625, 33, 44, 55) < 0
| |       || (strcmp (buf, "-0X1.922P+1 33") != 0
| |           && strcmp (buf, "-0X3.244P+0 33") != 0
| |           && strcmp (buf, "-0X6.488P-1 33") != 0
| |           && strcmp (buf, "-0XC.91P-2 33") != 0))
| |     result |= 2;
| |   /* This catches a FreeBSD 6.1 bug: it doesn't round.  */
| |   if (sprintf (buf, "%.2a %d", 1.51, 33, 44, 55) < 0
| |       || (strcmp (buf, "0x1.83p+0 33") != 0
| |           && strcmp (buf, "0x3.05p-1 33") != 0
| |           && strcmp (buf, "0x6.0ap-2 33") != 0
| |           && strcmp (buf, "0xc.14p-3 33") != 0))
| |     result |= 4;
| |   /* This catches a FreeBSD 6.1 bug.  See
| |      <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00107.html> */
| |   if (sprintf (buf, "%010a %d", 1.0 / zero, 33, 44, 55) < 0
| |       || buf[0] == '0')
| |     result |= 8;
| |   /* This catches a Mac OS X 10.3.9 (Darwin 7.9) bug.  */
| |   if (sprintf (buf, "%.1a", 1.999) < 0
| |       || (strcmp (buf, "0x1.0p+1") != 0
| |           && strcmp (buf, "0x2.0p+0") != 0
| |           && strcmp (buf, "0x4.0p-1") != 0
| |           && strcmp (buf, "0x8.0p-2") != 0))
| |     result |= 16;
| |   /* This catches the same Mac OS X 10.3.9 (Darwin 7.9) bug and also a
| |      glibc 2.4 bug <http://sourceware.org/bugzilla/show_bug.cgi?id=2908>.  
*/
| |   if (sprintf (buf, "%.1La", 1.999L) < 0
| |       || (strcmp (buf, "0x1.0p+1") != 0
| |           && strcmp (buf, "0x2.0p+0") != 0
| |           && strcmp (buf, "0x4.0p-1") != 0
| |           && strcmp (buf, "0x8.0p-2") != 0))
| |     result |= 32;
| |   return result;
| | }
| configure:11347: result: no
| configure:11352: checking whether printf supports the 'F' directive
| configure:11400: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:11400: $? = 0
| configure:11400: ./conftest
| configure:11400: $? = 0
| configure:11411: result: yes
| configure:11416: checking whether printf supports the 'n' directive
| configure:11466: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:11466: $? = 0
| configure:11466: ./conftest
| configure:11466: $? = 0
| configure:11477: result: yes
| configure:11482: checking whether printf supports the 'ls' directive
| configure:11553: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:11553: $? = 0
| configure:11553: ./conftest
| configure:11553: $? = 9
| configure: program exited with status 9
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | /* end confdefs.h.  */
| | 
| | /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
| |    <wchar.h>.
| |    BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
| |    included before <wchar.h>.  */
| | #include <stddef.h>
| | #include <stdio.h>
| | #include <time.h>
| | #include <wchar.h>
| | #include <string.h>
| | int main ()
| | {
| |   int result = 0;
| |   char buf[100];
| |   /* Test whether %ls works at all.
| |      This test fails on OpenBSD 4.0, IRIX 6.5, Solaris 2.6, Haiku, but not 
on
| |      Cygwin 1.5.  */
| |   {
| |     static const wchar_t wstring[] = { 'a', 'b', 'c', 0 };
| |     buf[0] = '\0';
| |     if (sprintf (buf, "%ls", wstring) < 0
| |         || strcmp (buf, "abc") != 0)
| |       result |= 1;
| |   }
| |   /* This test fails on IRIX 6.5, Solaris 2.6, Cygwin 1.5, Haiku (with an
| |      assertion failure inside libc), but not on OpenBSD 4.0.  */
| |   {
| |     static const wchar_t wstring[] = { 'a', 0 };
| |     buf[0] = '\0';
| |     if (sprintf (buf, "%ls", wstring) < 0
| |         || strcmp (buf, "a") != 0)
| |       result |= 2;
| |   }
| |   /* Test whether precisions in %ls are supported as specified in ISO C 99
| |      section 7.19.6.1:
| |        "If a precision is specified, no more than that many bytes are 
written
| |         (including shift sequences, if any), and the array shall contain a
| |         null wide character if, to equal the multibyte character sequence
| |         length given by the precision, the function would need to access a
| |         wide character one past the end of the array."
| |      This test fails on Solaris 10.  */
| |   {
| |     static const wchar_t wstring[] = { 'a', 'b', (wchar_t) 0xfdfdfdfd, 0 };
| |     buf[0] = '\0';
| |     if (sprintf (buf, "%.2ls", wstring) < 0
| |         || strcmp (buf, "ab") != 0)
| |       result |= 8;
| |   }
| |   return result;
| | }
| configure:11564: result: no
| configure:11569: checking whether printf supports POSIX/XSI format strings 
with positions
| configure:11601: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:11601: $? = 0
| configure:11601: ./conftest
| configure:11601: $? = 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 "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | /* end confdefs.h.  */
| | 
| | #include <stdio.h>
| | #include <string.h>
| | /* The string "%2 %1", with dollar characters protected from the shell's
| |    dollar expansion (possibly an autoconf bug).  */
| | static char format[] = { '%', '2', '$', 'd', ' ', '%', '1', '$', 'd', '\0' 
};
| | static char buf[100];
| | int main ()
| | {
| |   sprintf (buf, format, 33, 55);
| |   return (strcmp (buf, "55 33") != 0);
| | }
| configure:11612: result: no
| configure:11617: checking whether printf supports the grouping flag
| configure:11647: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:11647: $? = 0
| configure:11647: ./conftest
| configure:11647: $? = 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 "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | /* end confdefs.h.  */
| | 
| | #include <stdio.h>
| | #include <string.h>
| | static char buf[100];
| | int main ()
| | {
| |   if (sprintf (buf, "%'d %d", 1234567, 99) < 0
| |       || buf[strlen (buf) - 1] != '9')
| |     return 1;
| |   return 0;
| | }
| configure:11658: result: no
| configure:11663: checking whether printf supports the left-adjust flag 
correctly
| configure:11696: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:11696: $? = 0
| configure:11696: ./conftest
| configure:11696: $? = 0
| configure:11707: result: yes
| configure:11712: checking whether printf supports the zero flag correctly
| configure:11746: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:11746: $? = 0
| configure:11746: ./conftest
| configure:11746: $? = 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 "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | /* end confdefs.h.  */
| | 
| | #include <stdio.h>
| | #include <string.h>
| | static char buf[100];
| | static double zero = 0.0;
| | int main ()
| | {
| |   if (sprintf (buf, "%010f", 1.0 / zero, 33, 44, 55) < 0
| |       || (strcmp (buf, "       inf") != 0
| |           && strcmp (buf, "  infinity") != 0))
| |     return 1;
| |   return 0;
| | }
| configure:11757: result: no
| configure:11762: checking whether printf supports large precisions
| configure:11805: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:11805: $? = 0
| configure:11805: ./conftest
| configure:11805: $? = 0
| configure:11816: result: yes
| configure:11829: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:69: parse error before "a"
| conftest.c:71: syntax error before "typedef"
| configure:11829: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | /* end confdefs.h.  */
| | #ifndef __APPLE_CC__
| |          not a universal capable compiler
| |         #endif
| |         typedef int dummy;
| | 
| configure:11864: checking whether printf survives out-of-memory conditions
| configure:12035: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:12038: $? = 0
| configure:12042: $? = 1
| configure:12087: result: no
| configure:12105: checking for unsigned long long int
| configure:12153: result: yes
| configure:12163: checking for long long int
| configure:12213: result: yes
| configure:12222: checking for wchar_t
| configure:12239: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:12239: $? = 0
| configure:12246: result: yes
| configure:12255: checking for wint_t
| configure:12280: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:12280: $? = 0
| configure:12287: result: yes
| configure:12309: checking for intmax_t
| configure:12334: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:86: `intmax_t' undeclared (first use in this function)
| conftest.c:86: (Each undeclared identifier is reported only once
| conftest.c:86: for each function it appears in.)
| conftest.c:86: parse error before "x"
| conftest.c:86: `x' undeclared (first use in this function)
| configure:12334: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define HAVE_UNSIGNED_LONG_LONG_INT 1
| | #define HAVE_LONG_LONG_INT 1
| | #define HAVE_WCHAR_T 1
| | #define HAVE_WINT_T 1
| | /* end confdefs.h.  */
| | 
| | #include <stddef.h>
| | #include <stdlib.h>
| | #if HAVE_STDINT_H_WITH_UINTMAX
| | #include <stdint.h>
| | #endif
| | #if HAVE_INTTYPES_H_WITH_UINTMAX
| | #include <inttypes.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | intmax_t x = -1; return !x;
| |   ;
| |   return 0;
| | }
| configure:12341: result: no
| configure:12360: checking where to find the exponent in a 'double'
| configure:12674: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:12674: $? = 0
| configure:12674: ./conftest
| configure:12674: $? = 0
| configure:12686: result: word 1 bit 20
| configure:12713: checking whether snprintf returns a byte count as in C99
| configure:12783: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:12783: $? = 0
| configure:12783: ./conftest
| configure:12783: $? = 0
| configure:12794: result: yes
| configure:12805: checking for snprintf
| configure:12805: result: yes
| configure:12805: checking for strnlen
| configure:12805: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//cc0jGzSp.o: In function `main':
| /usr/source/bison-2.7/conftest.c:111: undefined reference to `strnlen'
| configure:12805: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | /* end confdefs.h.  */
| | /* Define strnlen to an innocuous variant, in case <limits.h> declares 
strnlen.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define strnlen innocuous_strnlen
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char strnlen (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef strnlen
| | 
| | /* 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 strnlen ();
| | /* 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_strnlen || defined __stub___strnlen
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return strnlen ();
| |   ;
| |   return 0;
| | }
| configure:12805: result: no
| configure:12805: checking for wcslen
| configure:12805: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:12805: $? = 0
| configure:12805: result: yes
| configure:12805: checking for wcsnlen
| configure:12805: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccYAoTK0.o: In function `main':
| /usr/source/bison-2.7/conftest.c:112: undefined reference to `wcsnlen'
| configure:12805: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | /* end confdefs.h.  */
| | /* Define wcsnlen to an innocuous variant, in case <limits.h> declares 
wcsnlen.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define wcsnlen innocuous_wcsnlen
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char wcsnlen (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef wcsnlen
| | 
| | /* 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 wcsnlen ();
| | /* 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_wcsnlen || defined __stub___wcsnlen
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return wcsnlen ();
| |   ;
| |   return 0;
| | }
| configure:12805: result: no
| configure:12805: checking for mbrtowc
| configure:12805: result: no
| configure:12805: checking for wcrtomb
| configure:12805: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccsVB5qP.o: In function `main':
| /usr/source/bison-2.7/conftest.c:112: undefined reference to `wcrtomb'
| configure:12805: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | /* end confdefs.h.  */
| | /* Define wcrtomb to an innocuous variant, in case <limits.h> declares 
wcrtomb.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define wcrtomb innocuous_wcrtomb
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char wcrtomb (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef wcrtomb
| | 
| | /* 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 wcrtomb ();
| | /* 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_wcrtomb || defined __stub___wcrtomb
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return wcrtomb ();
| |   ;
| |   return 0;
| | }
| configure:12805: result: no
| configure:12814: checking whether _snprintf is declared
| configure:12814: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:87: `_snprintf' undeclared (first use in this function)
| conftest.c:87: (Each undeclared identifier is reported only once
| conftest.c:87: for each function it appears in.)
| configure:12814: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | 
| | int
| | main ()
| | {
| | #ifndef _snprintf
| | #ifdef __cplusplus
| |   (void) _snprintf;
| | #else
| |   (void) _snprintf;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:12814: result: no
| configure:13093: checking whether frexp() can be used without linking with 
libm
| configure:13111: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:13111: $? = 0
| configure:13120: result: yes
| configure:13162: checking whether stat file-mode macros are broken
| configure:13189: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:13189: $? = 0
| configure:13196: result: no
| configure:13343: checking for nlink_t
| configure:13343: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:13343: $? = 0
| configure:13343: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:86: parse error before ')' token
| configure:13343: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | /* end confdefs.h.  */
| | #include <sys/types.h>
| |      #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | if (sizeof ((nlink_t)))
| |         return 0;
| |   ;
| |   return 0;
| | }
| configure:13343: result: yes
| configure:13358: checking whether fchmodat is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:86: `fchmodat' undeclared (first use in this function)
| conftest.c:86: (Each undeclared identifier is reported only once
| conftest.c:86: for each function it appears in.)
| configure:13376: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | #undef fchmodat
| |   (void) fchmodat;
| |   ;
| |   return 0;
| | }
| configure:13384: result: no
| configure:13358: checking whether fstat is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:13376: $? = 0
| configure:13384: result: yes
| configure:13358: checking whether fstatat is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:87: `fstatat' undeclared (first use in this function)
| conftest.c:87: (Each undeclared identifier is reported only once
| conftest.c:87: for each function it appears in.)
| configure:13376: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | #undef fstatat
| |   (void) fstatat;
| |   ;
| |   return 0;
| | }
| configure:13384: result: no
| configure:13358: checking whether futimens is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:87: `futimens' undeclared (first use in this function)
| conftest.c:87: (Each undeclared identifier is reported only once
| conftest.c:87: for each function it appears in.)
| configure:13376: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | #undef futimens
| |   (void) futimens;
| |   ;
| |   return 0;
| | }
| configure:13384: result: no
| configure:13358: checking whether lchmod is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:87: `lchmod' undeclared (first use in this function)
| conftest.c:87: (Each undeclared identifier is reported only once
| conftest.c:87: for each function it appears in.)
| configure:13376: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | #undef lchmod
| |   (void) lchmod;
| |   ;
| |   return 0;
| | }
| configure:13384: result: no
| configure:13358: checking whether lstat is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:13376: $? = 0
| configure:13384: result: yes
| configure:13358: checking whether mkdirat is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:88: `mkdirat' undeclared (first use in this function)
| conftest.c:88: (Each undeclared identifier is reported only once
| conftest.c:88: for each function it appears in.)
| configure:13376: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | #undef mkdirat
| |   (void) mkdirat;
| |   ;
| |   return 0;
| | }
| configure:13384: result: no
| configure:13358: checking whether mkfifo is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:13376: $? = 0
| configure:13384: result: yes
| configure:13358: checking whether mkfifoat is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:89: `mkfifoat' undeclared (first use in this function)
| conftest.c:89: (Each undeclared identifier is reported only once
| conftest.c:89: for each function it appears in.)
| configure:13376: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | #undef mkfifoat
| |   (void) mkfifoat;
| |   ;
| |   return 0;
| | }
| configure:13384: result: no
| configure:13358: checking whether mknod is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:89: `mknod' undeclared (first use in this function)
| conftest.c:89: (Each undeclared identifier is reported only once
| conftest.c:89: for each function it appears in.)
| configure:13376: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | #undef mknod
| |   (void) mknod;
| |   ;
| |   return 0;
| | }
| configure:13384: result: no
| configure:13358: checking whether mknodat is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:89: `mknodat' undeclared (first use in this function)
| conftest.c:89: (Each undeclared identifier is reported only once
| conftest.c:89: for each function it appears in.)
| configure:13376: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | #undef mknodat
| |   (void) mknodat;
| |   ;
| |   return 0;
| | }
| configure:13384: result: no
| configure:13358: checking whether stat is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:13376: $? = 0
| configure:13384: result: yes
| configure:13358: checking whether utimensat is declared without a macro
| configure:13376: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:90: `utimensat' undeclared (first use in this function)
| conftest.c:90: (Each undeclared identifier is reported only once
| conftest.c:90: for each function it appears in.)
| configure:13376: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | #undef utimensat
| |   (void) utimensat;
| |   ;
| |   return 0;
| | }
| configure:13384: result: no
| configure:13396: checking whether getdelim is declared
| configure:13396: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:124: `getdelim' undeclared (first use in this function)
| conftest.c:124: (Each undeclared identifier is reported only once
| conftest.c:124: for each function it appears in.)
| configure:13396: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef getdelim
| | #ifdef __cplusplus
| |   (void) getdelim;
| | #else
| |   (void) getdelim;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:13396: result: no
| configure:13411: checking whether getline is declared
| configure:13411: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:125: `getline' undeclared (first use in this function)
| conftest.c:125: (Each undeclared identifier is reported only once
| conftest.c:125: for each function it appears in.)
| configure:13411: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef getline
| | #ifdef __cplusplus
| |   (void) getline;
| | #else
| |   (void) getline;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:13411: result: no
| configure:13514: checking for getopt.h
| configure:13514: result: yes
| configure:13531: checking for getopt_long_only
| configure:13531: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//cc2ZpDu8.o: In function `main':
| /usr/source/bison-2.7/conftest.c:121: undefined reference to 
`getopt_long_only'
| configure:13531: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | /* end confdefs.h.  */
| | /* Define getopt_long_only to an innocuous variant, in case <limits.h> 
declares getopt_long_only.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define getopt_long_only innocuous_getopt_long_only
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char getopt_long_only (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef getopt_long_only
| | 
| | /* 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 getopt_long_only ();
| | /* 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_getopt_long_only || defined __stub___getopt_long_only
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return getopt_long_only ();
| |   ;
| |   return 0;
| | }
| configure:13531: result: no
| configure:14041: checking whether getenv is declared
| configure:14041: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:14041: $? = 0
| configure:14041: result: yes
| configure:14177: checking whether stdint.h conforms to C99
| configure:14346: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:140: parse error before "c1"
| conftest.c:140: warning: type defaults to `int' in declaration of `c1'
| conftest.c:140: warning: data definition has no type or storage class
| conftest.c:141: parse error before "c1max"
| conftest.c:141: warning: type defaults to `int' in declaration of `c1max'
| conftest.c:141: warning: data definition has no type or storage class
| conftest.c:142: parse error before "c1min"
| conftest.c:142: warning: type defaults to `int' in declaration of `c1min'
| conftest.c:142: warning: data definition has no type or storage class
| conftest.c:143: parse error before "c2"
| conftest.c:143: warning: type defaults to `int' in declaration of `c2'
| conftest.c:143: warning: data definition has no type or storage class
| conftest.c:144: parse error before "c2max"
| conftest.c:144: warning: type defaults to `int' in declaration of `c2max'
| conftest.c:144: warning: data definition has no type or storage class
| conftest.c:145: parse error before "c2min"
| conftest.c:145: warning: type defaults to `int' in declaration of `c2min'
| conftest.c:145: warning: data definition has no type or storage class
| conftest.c:146: parse error before "c3"
| conftest.c:146: warning: type defaults to `int' in declaration of `c3'
| conftest.c:146: warning: data definition has no type or storage class
| conftest.c:147: parse error before "c3max"
| conftest.c:147: warning: type defaults to `int' in declaration of `c3max'
| conftest.c:147: warning: data definition has no type or storage class
| conftest.c:148: parse error before "c3min"
| conftest.c:148: warning: type defaults to `int' in declaration of `c3min'
| conftest.c:148: warning: data definition has no type or storage class
| conftest.c:149: parse error before "c4"
| conftest.c:149: warning: type defaults to `int' in declaration of `c4'
| conftest.c:149: warning: overflow in implicit constant conversion
| conftest.c:149: warning: data definition has no type or storage class
| conftest.c:150: parse error before "c4max"
| conftest.c:150: warning: type defaults to `int' in declaration of `c4max'
| conftest.c:150: warning: overflow in implicit constant conversion
| conftest.c:150: warning: data definition has no type or storage class
| conftest.c:151: parse error before "c4min"
| conftest.c:151: warning: type defaults to `int' in declaration of `c4min'
| conftest.c:151: warning: overflow in implicit constant conversion
| conftest.c:151: warning: data definition has no type or storage class
| conftest.c:152: parse error before "d1"
| conftest.c:152: warning: type defaults to `int' in declaration of `d1'
| conftest.c:152: warning: data definition has no type or storage class
| conftest.c:153: parse error before "d1max"
| conftest.c:153: warning: type defaults to `int' in declaration of `d1max'
| conftest.c:153: warning: data definition has no type or storage class
| conftest.c:154: parse error before "d2"
| conftest.c:154: warning: type defaults to `int' in declaration of `d2'
| conftest.c:154: warning: data definition has no type or storage class
| conftest.c:155: parse error before "d2max"
| conftest.c:155: warning: type defaults to `int' in declaration of `d2max'
| conftest.c:155: warning: data definition has no type or storage class
| conftest.c:156: parse error before "d3"
| conftest.c:156: warning: type defaults to `int' in declaration of `d3'
| conftest.c:156: warning: data definition has no type or storage class
| conftest.c:157: parse error before "d3max"
| conftest.c:157: warning: type defaults to `int' in declaration of `d3max'
| conftest.c:157: warning: data definition has no type or storage class
| conftest.c:158: parse error before "d4"
| conftest.c:158: warning: type defaults to `int' in declaration of `d4'
| conftest.c:158: warning: overflow in implicit constant conversion
| conftest.c:158: warning: data definition has no type or storage class
| conftest.c:159: parse error before "d4max"
| conftest.c:159: warning: type defaults to `int' in declaration of `d4max'
| conftest.c:159: warning: overflow in implicit constant conversion
| conftest.c:159: warning: data definition has no type or storage class
| conftest.c:160: parse error before "e1"
| conftest.c:160: warning: type defaults to `int' in declaration of `e1'
| conftest.c:160: warning: data definition has no type or storage class
| conftest.c:161: parse error before "e1min"
| conftest.c:161: warning: type defaults to `int' in declaration of `e1min'
| conftest.c:161: warning: data definition has no type or storage class
| conftest.c:162: parse error before "e2"
| conftest.c:162: warning: type defaults to `int' in declaration of `e2'
| conftest.c:162: warning: data definition has no type or storage class
| conftest.c:163: parse error before "e2min"
| conftest.c:163: warning: type defaults to `int' in declaration of `e2min'
| conftest.c:163: warning: data definition has no type or storage class
| conftest.c:164: parse error before "e3"
| conftest.c:164: warning: type defaults to `int' in declaration of `e3'
| conftest.c:164: warning: data definition has no type or storage class
| conftest.c:165: parse error before "e3min"
| conftest.c:165: warning: type defaults to `int' in declaration of `e3min'
| conftest.c:165: warning: data definition has no type or storage class
| conftest.c:166: parse error before "e4"
| conftest.c:166: warning: type defaults to `int' in declaration of `e4'
| conftest.c:166: warning: overflow in implicit constant conversion
| conftest.c:166: warning: data definition has no type or storage class
| conftest.c:167: parse error before "e4min"
| conftest.c:167: warning: type defaults to `int' in declaration of `e4min'
| conftest.c:167: warning: overflow in implicit constant conversion
| conftest.c:167: warning: data definition has no type or storage class
| conftest.c:168: parse error before "f1"
| conftest.c:168: warning: type defaults to `int' in declaration of `f1'
| conftest.c:168: warning: data definition has no type or storage class
| conftest.c:169: parse error before "f2"
| conftest.c:169: warning: type defaults to `int' in declaration of `f2'
| conftest.c:169: warning: data definition has no type or storage class
| conftest.c:170: parse error before "f3"
| conftest.c:170: warning: type defaults to `int' in declaration of `f3'
| conftest.c:170: warning: data definition has no type or storage class
| conftest.c:171: parse error before "f4"
| conftest.c:171: warning: type defaults to `int' in declaration of `f4'
| conftest.c:171: warning: overflow in implicit constant conversion
| conftest.c:171: warning: data definition has no type or storage class
| conftest.c:180: parse error before "j"
| conftest.c:180: warning: type defaults to `int' in declaration of `j'
| conftest.c:180: warning: overflow in implicit constant conversion
| conftest.c:180: warning: data definition has no type or storage class
| conftest.c:208: `uint_least8_t' undeclared here (not in a function)
| conftest.c:208: parse error before numeric constant
| conftest.c:210: `uint_least16_t' undeclared here (not in a function)
| conftest.c:210: parse error before numeric constant
| conftest.c:225: `uint_least8_t' undeclared here (not in a function)
| conftest.c:226: `uint_least16_t' undeclared here (not in a function)
| conftest.c:227: `uint_least32_t' undeclared here (not in a function)
| conftest.c:228: `uint_least64_t' undeclared here (not in a function)
| conftest.c:229: `uint_fast8_t' undeclared here (not in a function)
| conftest.c:230: `uint_fast16_t' undeclared here (not in a function)
| conftest.c:231: `uint_fast32_t' undeclared here (not in a function)
| conftest.c:232: `uint_fast64_t' undeclared here (not in a function)
| conftest.c:234: `uintmax_t' undeclared here (not in a function)
| conftest.c:189: negative width in bit-field `check_PTRDIFF'
| conftest.c:195: negative width in bit-field `check_SIZE'
| conftest.c:208: bit-field `check_UINT8_C' width not an integer constant
| conftest.c:210: bit-field `check_UINT16_C' width not an integer constant
| conftest.c:225: bit-field `check_uint_least8' width not an integer constant
| conftest.c:226: bit-field `check_uint_least16' width not an integer constant
| conftest.c:227: bit-field `check_uint_least32' width not an integer constant
| conftest.c:228: bit-field `check_uint_least64' width not an integer constant
| conftest.c:229: bit-field `check_uint_fast8' width not an integer constant
| conftest.c:230: bit-field `check_uint_fast16' width not an integer constant
| conftest.c:231: bit-field `check_uint_fast32' width not an integer constant
| conftest.c:232: bit-field `check_uint_fast64' width not an integer constant
| conftest.c:234: bit-field `check_uintmax' width not an integer constant
| conftest.c:235: negative width in bit-field `check_size'
| configure:14346: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | /* end confdefs.h.  */
| | 
| | 
| | #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */
| | #include <stdint.h>
| | /* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in <wchar.h>.  */
| | #if !(defined WCHAR_MIN && defined WCHAR_MAX)
| | #error "WCHAR_MIN, WCHAR_MAX not defined in <stdint.h>"
| | #endif
| | 
| | 
| |   /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
| |      included before <wchar.h>.  */
| |   #include <stddef.h>
| |   #include <signal.h>
| |   #if HAVE_WCHAR_H
| |   # include <stdio.h>
| |   # include <time.h>
| |   # include <wchar.h>
| |   #endif
| | 
| | 
| | #ifdef INT8_MAX
| | int8_t a1 = INT8_MAX;
| | int8_t a1min = INT8_MIN;
| | #endif
| | #ifdef INT16_MAX
| | int16_t a2 = INT16_MAX;
| | int16_t a2min = INT16_MIN;
| | #endif
| | #ifdef INT32_MAX
| | int32_t a3 = INT32_MAX;
| | int32_t a3min = INT32_MIN;
| | #endif
| | #ifdef INT64_MAX
| | int64_t a4 = INT64_MAX;
| | int64_t a4min = INT64_MIN;
| | #endif
| | #ifdef UINT8_MAX
| | uint8_t b1 = UINT8_MAX;
| | #else
| | typedef int b1[(unsigned char) -1 != 255 ? 1 : -1];
| | #endif
| | #ifdef UINT16_MAX
| | uint16_t b2 = UINT16_MAX;
| | #endif
| | #ifdef UINT32_MAX
| | uint32_t b3 = UINT32_MAX;
| | #endif
| | #ifdef UINT64_MAX
| | uint64_t b4 = UINT64_MAX;
| | #endif
| | int_least8_t c1 = INT8_C (0x7f);
| | int_least8_t c1max = INT_LEAST8_MAX;
| | int_least8_t c1min = INT_LEAST8_MIN;
| | int_least16_t c2 = INT16_C (0x7fff);
| | int_least16_t c2max = INT_LEAST16_MAX;
| | int_least16_t c2min = INT_LEAST16_MIN;
| | int_least32_t c3 = INT32_C (0x7fffffff);
| | int_least32_t c3max = INT_LEAST32_MAX;
| | int_least32_t c3min = INT_LEAST32_MIN;
| | int_least64_t c4 = INT64_C (0x7fffffffffffffff);
| | int_least64_t c4max = INT_LEAST64_MAX;
| | int_least64_t c4min = INT_LEAST64_MIN;
| | uint_least8_t d1 = UINT8_C (0xff);
| | uint_least8_t d1max = UINT_LEAST8_MAX;
| | uint_least16_t d2 = UINT16_C (0xffff);
| | uint_least16_t d2max = UINT_LEAST16_MAX;
| | uint_least32_t d3 = UINT32_C (0xffffffff);
| | uint_least32_t d3max = UINT_LEAST32_MAX;
| | uint_least64_t d4 = UINT64_C (0xffffffffffffffff);
| | uint_least64_t d4max = UINT_LEAST64_MAX;
| | int_fast8_t e1 = INT_FAST8_MAX;
| | int_fast8_t e1min = INT_FAST8_MIN;
| | int_fast16_t e2 = INT_FAST16_MAX;
| | int_fast16_t e2min = INT_FAST16_MIN;
| | int_fast32_t e3 = INT_FAST32_MAX;
| | int_fast32_t e3min = INT_FAST32_MIN;
| | int_fast64_t e4 = INT_FAST64_MAX;
| | int_fast64_t e4min = INT_FAST64_MIN;
| | uint_fast8_t f1 = UINT_FAST8_MAX;
| | uint_fast16_t f2 = UINT_FAST16_MAX;
| | uint_fast32_t f3 = UINT_FAST32_MAX;
| | uint_fast64_t f4 = UINT_FAST64_MAX;
| | #ifdef INTPTR_MAX
| | intptr_t g = INTPTR_MAX;
| | intptr_t gmin = INTPTR_MIN;
| | #endif
| | #ifdef UINTPTR_MAX
| | uintptr_t h = UINTPTR_MAX;
| | #endif
| | intmax_t i = INTMAX_MAX;
| | uintmax_t j = UINTMAX_MAX;
| | 
| | #include <limits.h> /* for CHAR_BIT */
| | #define TYPE_MINIMUM(t)   ((t) ((t) 0 < (t) -1 ? (t) 0 : ~ TYPE_MAXIMUM 
(t)))
| | #define TYPE_MAXIMUM(t)   ((t) ((t) 0 < (t) -1         ? (t) -1         : 
((((t) 1 << (sizeof (t) * CHAR_BIT - 2)) - 1) * 2 + 1)))
| | struct s {
| |   int check_PTRDIFF:
| |       PTRDIFF_MIN == TYPE_MINIMUM (ptrdiff_t)
| |       && PTRDIFF_MAX == TYPE_MAXIMUM (ptrdiff_t)
| |       ? 1 : -1;
| |   /* Detect bug in FreeBSD 6.0 / ia64.  */
| |   int check_SIG_ATOMIC:
| |       SIG_ATOMIC_MIN == TYPE_MINIMUM (sig_atomic_t)
| |       && SIG_ATOMIC_MAX == TYPE_MAXIMUM (sig_atomic_t)
| |       ? 1 : -1;
| |   int check_SIZE: SIZE_MAX == TYPE_MAXIMUM (size_t) ? 1 : -1;
| |   int check_WCHAR:
| |       WCHAR_MIN == TYPE_MINIMUM (wchar_t)
| |       && WCHAR_MAX == TYPE_MAXIMUM (wchar_t)
| |       ? 1 : -1;
| |   /* Detect bug in mingw.  */
| |   int check_WINT:
| |       WINT_MIN == TYPE_MINIMUM (wint_t)
| |       && WINT_MAX == TYPE_MAXIMUM (wint_t)
| |       ? 1 : -1;
| | 
| |   /* Detect bugs in glibc 2.4 and Solaris 10 stdint.h, among others.  */
| |   int check_UINT8_C:
| |         (-1 < UINT8_C (0)) == (-1 < (uint_least8_t) 0) ? 1 : -1;
| |   int check_UINT16_C:
| |         (-1 < UINT16_C (0)) == (-1 < (uint_least16_t) 0) ? 1 : -1;
| | 
| |   /* Detect bugs in OpenBSD 3.9 stdint.h.  */
| | #ifdef UINT8_MAX
| |   int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1;
| | #endif
| | #ifdef UINT16_MAX
| |   int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1;
| | #endif
| | #ifdef UINT32_MAX
| |   int check_uint32: (uint32_t) -1 == UINT32_MAX ? 1 : -1;
| | #endif
| | #ifdef UINT64_MAX
| |   int check_uint64: (uint64_t) -1 == UINT64_MAX ? 1 : -1;
| | #endif
| |   int check_uint_least8: (uint_least8_t) -1 == UINT_LEAST8_MAX ? 1 : -1;
| |   int check_uint_least16: (uint_least16_t) -1 == UINT_LEAST16_MAX ? 1 : -1;
| |   int check_uint_least32: (uint_least32_t) -1 == UINT_LEAST32_MAX ? 1 : -1;
| |   int check_uint_least64: (uint_least64_t) -1 == UINT_LEAST64_MAX ? 1 : -1;
| |   int check_uint_fast8: (uint_fast8_t) -1 == UINT_FAST8_MAX ? 1 : -1;
| |   int check_uint_fast16: (uint_fast16_t) -1 == UINT_FAST16_MAX ? 1 : -1;
| |   int check_uint_fast32: (uint_fast32_t) -1 == UINT_FAST32_MAX ? 1 : -1;
| |   int check_uint_fast64: (uint_fast64_t) -1 == UINT_FAST64_MAX ? 1 : -1;
| |   int check_uintptr: (uintptr_t) -1 == UINTPTR_MAX ? 1 : -1;
| |   int check_uintmax: (uintmax_t) -1 == UINTMAX_MAX ? 1 : -1;
| |   int check_size: (size_t) -1 == SIZE_MAX ? 1 : -1;
| | };
| | 
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:14438: result: no
| configure:14447: checking sys/inttypes.h usability
| configure:14447: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:122:26: sys/inttypes.h: No such file or directory
| configure:14447: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | #include <sys/inttypes.h>
| configure:14447: result: no
| configure:14447: checking sys/inttypes.h presence
| configure:14447: gcc -std=gnu99 -E  conftest.c
| conftest.c:89:26: sys/inttypes.h: No such file or directory
| configure:14447: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | /* end confdefs.h.  */
| | #include <sys/inttypes.h>
| configure:14447: result: no
| configure:14447: checking for sys/inttypes.h
| configure:14447: result: no
| configure:14447: checking sys/bitypes.h usability
| configure:14447: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:14447: $? = 0
| configure:14447: result: yes
| configure:14447: checking sys/bitypes.h presence
| configure:14447: gcc -std=gnu99 -E  conftest.c
| configure:14447: $? = 0
| configure:14447: result: yes
| configure:14447: checking for sys/bitypes.h
| configure:14447: result: yes
| configure:14476: checking for bit size of ptrdiff_t
| configure:14481: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:14481: $? = 0
| configure:14481: ./conftest
| configure:14481: $? = 0
| configure:14502: result: 32
| configure:14476: checking for bit size of size_t
| configure:14481: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:14481: $? = 0
| configure:14481: ./conftest
| configure:14481: $? = 0
| configure:14502: result: 32
| configure:14521: checking for bit size of sig_atomic_t
| configure:14526: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:14526: $? = 0
| configure:14526: ./conftest
| configure:14526: $? = 0
| configure:14547: result: 32
| configure:14521: checking for bit size of wchar_t
| configure:14526: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:14526: $? = 0
| configure:14526: ./conftest
| configure:14526: $? = 0
| configure:14547: result: 32
| configure:14521: checking for bit size of wint_t
| configure:14526: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:14526: $? = 0
| configure:14526: ./conftest
| configure:14526: $? = 0
| configure:14547: result: 32
| configure:14565: checking whether sig_atomic_t is signed
| configure:14592: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:14592: $? = 0
| configure:14602: result: yes
| configure:14565: checking whether wchar_t is signed
| configure:14592: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:14592: $? = 0
| configure:14602: result: yes
| configure:14565: checking whether wint_t is signed
| configure:14592: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:14592: $? = 0
| configure:14602: result: yes
| configure:14624: checking for ptrdiff_t integer literal suffix
| configure:14670: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:14670: $? = 0
| configure:14679: result: 
| configure:14624: checking for size_t integer literal suffix
| configure:14670: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:14670: $? = 0
| configure:14679: result: u
| configure:14696: checking for sig_atomic_t integer literal suffix
| configure:14742: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:14742: $? = 0
| configure:14751: result: 
| configure:14696: checking for wchar_t integer literal suffix
| configure:14742: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:14742: $? = 0
| configure:14751: result: 
| configure:14696: checking for wint_t integer literal suffix
| configure:14742: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:14742: $? = 0
| configure:14751: result: 
| configure:14885: checking whether imaxabs is declared without a macro
| configure:14903: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:109: `imaxabs' undeclared (first use in this function)
| conftest.c:109: (Each undeclared identifier is reported only once
| conftest.c:109: for each function it appears in.)
| configure:14903: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | /* end confdefs.h.  */
| | #include <inttypes.h>
| | 
| | int
| | main ()
| | {
| | #undef imaxabs
| |   (void) imaxabs;
| |   ;
| |   return 0;
| | }
| configure:14911: result: no
| configure:14885: checking whether imaxdiv is declared without a macro
| configure:14903: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:109: `imaxdiv' undeclared (first use in this function)
| conftest.c:109: (Each undeclared identifier is reported only once
| conftest.c:109: for each function it appears in.)
| configure:14903: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | /* end confdefs.h.  */
| | #include <inttypes.h>
| | 
| | int
| | main ()
| | {
| | #undef imaxdiv
| |   (void) imaxdiv;
| |   ;
| |   return 0;
| | }
| configure:14911: result: no
| configure:14885: checking whether strtoimax is declared without a macro
| configure:14903: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:109: `strtoimax' undeclared (first use in this function)
| conftest.c:109: (Each undeclared identifier is reported only once
| conftest.c:109: for each function it appears in.)
| configure:14903: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | /* end confdefs.h.  */
| | #include <inttypes.h>
| | 
| | int
| | main ()
| | {
| | #undef strtoimax
| |   (void) strtoimax;
| |   ;
| |   return 0;
| | }
| configure:14911: result: no
| configure:14885: checking whether strtoumax is declared without a macro
| configure:14903: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:109: `strtoumax' undeclared (first use in this function)
| conftest.c:109: (Each undeclared identifier is reported only once
| conftest.c:109: for each function it appears in.)
| configure:14903: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | /* end confdefs.h.  */
| | #include <inttypes.h>
| | 
| | int
| | main ()
| | {
| | #undef strtoumax
| |   (void) strtoumax;
| |   ;
| |   return 0;
| | }
| configure:14911: result: no
| configure:14926: checking for inttypes.h
| configure:14926: result: yes
| configure:14937: checking whether the inttypes.h PRIxNN macros are broken
| configure:14959: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:14959: $? = 0
| configure:14967: result: no
| configure:14983: checking where to find the exponent in a 'float'
| configure:15060: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:15060: $? = 0
| configure:15060: ./conftest
| configure:15060: $? = 0
| configure:15072: result: word 0 bit 23
| configure:15095: checking whether isnan(float) can be used without linking 
with libm
| configure:15120: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//cceu8BfT.o: In function `main':
| /usr/source/bison-2.7/conftest.c:118: undefined reference to `isnanf'
| configure:15120: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | /* end confdefs.h.  */
| | #include <math.h>
| |              #if __GNUC__ >= 4
| |              # undef isnanf
| |              # define isnanf(x) __builtin_isnanf ((float)(x))
| |              #elif defined isnan
| |              # undef isnanf
| |              # define isnanf(x) isnan ((float)(x))
| |              #endif
| |              float x;
| | int
| | main ()
| | {
| | return isnanf (x);
| |   ;
| |   return 0;
| | }
| configure:15129: result: no
| configure:15134: checking whether isnan(float) can be used with libm
| configure:15161: gcc -std=gnu99 -o conftest -g -O2   conftest.c  -lm >&5
| configure:15161: $? = 0
| configure:15171: result: yes
| configure:15185: checking whether isnan(float) works
| configure:15253: gcc -std=gnu99 -o conftest -g -O2   conftest.c  -lm >&5
| configure:15253: $? = 0
| configure:15253: ./conftest
| configure:15253: $? = 0
| configure:15264: result: yes
| configure:15284: checking whether isnan(double) can be used without linking 
with libm
| configure:15309: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:15309: $? = 0
| configure:15318: result: yes
| configure:15380: checking whether isnan(long double) can be used without 
linking with libm
| configure:15405: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c: In function `main':
| conftest.c:118: warning: implicit declaration of function `isnanl'
| /var/tmp//ccwa8i6H.o: In function `main':
| /usr/source/bison-2.7/conftest.c:118: undefined reference to `isnanl'
| configure:15405: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | /* end confdefs.h.  */
| | #include <math.h>
| |              #if __GNUC__ >= 4
| |              # undef isnanl
| |              # define isnanl(x) __builtin_isnanl ((long double)(x))
| |              #elif defined isnan
| |              # undef isnanl
| |              # define isnanl(x) isnan ((long double)(x))
| |              #endif
| |              long double x;
| | int
| | main ()
| | {
| | return isnanl (x);
| |   ;
| |   return 0;
| | }
| configure:15414: result: no
| configure:15419: checking whether isnan(long double) can be used with libm
| configure:15446: gcc -std=gnu99 -o conftest -g -O2   conftest.c  -lm >&5
| conftest.c: In function `main':
| conftest.c:118: warning: implicit declaration of function `isnanl'
| /var/tmp//ccwVwkqh.o: In function `main':
| /usr/source/bison-2.7/conftest.c:118: undefined reference to `isnanl'
| configure:15446: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | /* end confdefs.h.  */
| | #include <math.h>
| |              #if __GNUC__ >= 4
| |              # undef isnanl
| |              # define isnanl(x) __builtin_isnanl ((long double)(x))
| |              #elif defined isnan
| |              # undef isnanl
| |              # define isnanl(x) isnan ((long double)(x))
| |              #endif
| |              long double x;
| | int
| | main ()
| | {
| | return isnanl (x);
| |   ;
| |   return 0;
| | }
| configure:15456: result: no
| configure:15747: checking whether iswcntrl works
| configure:15791: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c: In function `main':
| conftest.c:116: warning: implicit declaration of function `__istype'
| conftest.c:116: `_CTYPE_R' undeclared (first use in this function)
| conftest.c:116: (Each undeclared identifier is reported only once
| conftest.c:116: for each function it appears in.)
| configure:15791: $? = 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 "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | /* end confdefs.h.  */
| | 
| |                /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be
| |                   included before <wchar.h>.
| |                   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h>
| |                   must be included before <wchar.h>.  */
| |                #include <stddef.h>
| |                #include <stdio.h>
| |                #include <time.h>
| |                #include <wchar.h>
| |                #include <wctype.h>
| |                int main () { return iswprint ('x') == 0; }
| | 
| configure:15802: result: no
| configure:15874: checking for wctype_t
| configure:15902: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:15902: $? = 0
| configure:15910: result: yes
| configure:15916: checking for wctrans_t
| configure:15942: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:15942: $? = 0
| configure:15950: result: yes
| configure:15959: checking whether wctype is declared without a macro
| configure:15988: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:15988: $? = 0
| configure:15996: result: yes
| configure:15959: checking whether iswctype is declared without a macro
| configure:15988: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:15988: $? = 0
| configure:15996: result: yes
| configure:15959: checking whether wctrans is declared without a macro
| configure:15988: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:15988: $? = 0
| configure:15996: result: yes
| configure:15959: checking whether towctrans is declared without a macro
| configure:15988: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:15988: $? = 0
| configure:15996: result: yes
| configure:16011: checking whether ldexp() can be used without linking with 
libm
| configure:16033: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:16033: $? = 0
| configure:16042: result: yes
| configure:16046: checking for nl_langinfo and CODESET
| configure:16062: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccUDEHsE.o: In function `main':
| /usr/source/bison-2.7/conftest.c:114: undefined reference to `nl_langinfo'
| configure:16062: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define HAVE_RAW_DECL_WCTYPE 1
| | #define HAVE_RAW_DECL_ISWCTYPE 1
| | #define HAVE_RAW_DECL_WCTRANS 1
| | #define HAVE_RAW_DECL_TOWCTRANS 1
| | /* end confdefs.h.  */
| | #include <langinfo.h>
| | int
| | main ()
| | {
| | char* cs = nl_langinfo(CODESET); return !cs;
| |   ;
| |   return 0;
| | }
| configure:16071: result: no
| configure:16079: checking whether getc_unlocked is declared
| configure:16079: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:16079: $? = 0
| configure:16079: result: yes
| configure:16091: checking whether we are using the GNU C Library >= 2.1 or 
uClibc
| conftest.c:112:22: features.h: No such file or directory
| configure:16121: result: no
| configure:16168: checking for ld used by gcc -std=gnu99
| configure:16235: result: /usr/bin/ld
| configure:16242: checking if the linker (/usr/bin/ld) is GNU ld
| configure:16257: result: yes
| configure:16264: checking for shared library run path origin
| configure:16277: result: done
| configure:16367: checking whether imported symbols can be declared weak
| configure:16385: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:16385: $? = 0
| configure:16419: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:16419: $? = 0
| configure:16419: ./conftest
| configure:16419: $? = 0
| configure:16431: result: yes
| configure:16436: checking pthread.h usability
| configure:16436: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:16436: $? = 0
| configure:16436: result: yes
| configure:16436: checking pthread.h presence
| configure:16436: gcc -std=gnu99 -E  conftest.c
| configure:16436: $? = 0
| configure:16436: result: yes
| configure:16436: checking for pthread.h
| configure:16436: result: yes
| configure:16464: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:16464: $? = 0
| configure:16474: checking for pthread_kill in -lpthread
| configure:16499: gcc -std=gnu99 -o conftest -g -O2   conftest.c -lpthread   
>&5
| configure:16499: $? = 0
| configure:16508: result: yes
| configure:17251: checking for multithread API to use
| configure:17253: result: posix
| configure:17361: checking for mbstate_t
| configure:17385: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:157: `mbstate_t' undeclared (first use in this function)
| conftest.c:157: (Each undeclared identifier is reported only once
| conftest.c:157: for each function it appears in.)
| conftest.c:157: parse error before "x"
| conftest.c:157: `x' undeclared (first use in this function)
| configure:17385: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
| |    <wchar.h>.
| |    BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
| |    included before <wchar.h>.  */
| | #include <stddef.h>
| | #include <stdio.h>
| | #include <time.h>
| | #include <wchar.h>
| | int
| | main ()
| | {
| | mbstate_t x; return sizeof x;
| |   ;
| |   return 0;
| | }
| configure:17392: result: no
| configure:17411: checking for a traditional japanese locale
| configure:17481: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:17484: $? = 0
| configure:17542: result: none
| configure:17550: checking for a transitional chinese locale
| configure:17621: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:17624: $? = 0
| configure:17675: result: none
| configure:17682: checking for a french Unicode locale
| configure:17754: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:17757: $? = 0
| configure:17803: result: none
| configure:17896: checking for mmap
| configure:17896: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:17896: $? = 0
| configure:17896: result: yes
| configure:17907: checking for MAP_ANONYMOUS
| configure:17944: result: yes
| configure:17966: checking whether memchr works
| configure:18029: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:18029: $? = 0
| configure:18029: ./conftest
| configure:18029: $? = 0
| configure:18039: result: yes
| configure:18048: checking whether obstack_printf is declared
| configure:18048: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:156: `obstack_printf' undeclared (first use in this function)
| conftest.c:156: (Each undeclared identifier is reported only once
| conftest.c:156: for each function it appears in.)
| configure:18048: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef obstack_printf
| | #ifdef __cplusplus
| |   (void) obstack_printf;
| | #else
| |   (void) obstack_printf;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:18048: result: no
| configure:18063: checking for promoted mode_t type
| configure:18080: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:18080: $? = 0
| configure:18088: result: int
| configure:18100: checking whether strerror(0) succeeds
| configure:18135: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:18135: $? = 0
| configure:18135: ./conftest
| configure:18135: $? = 4
| configure: program exited with status 4
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | /* end confdefs.h.  */
| | #include <string.h>
| |            #include <errno.h>
| | 
| | int
| | main ()
| | {
| | int result = 0;
| |            char *str;
| |            errno = 0;
| |            str = strerror (0);
| |            if (!*str) result |= 1;
| |            if (errno) result |= 2;
| |            if (strstr (str, "nknown") || strstr (str, "ndefined"))
| |              result |= 4;
| |            return result;
| |   ;
| |   return 0;
| | }
| configure:18146: result: no
| configure:18327: checking whether strerror_r is declared
| configure:18327: result: no
| configure:18930: checking for nl_langinfo
| configure:18930: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//cc6kYG0L.o: In function `main':
| /usr/source/bison-2.7/conftest.c:155: undefined reference to `nl_langinfo'
| configure:18930: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | /* end confdefs.h.  */
| | /* Define nl_langinfo to an innocuous variant, in case <limits.h> declares 
nl_langinfo.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define nl_langinfo innocuous_nl_langinfo
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char nl_langinfo (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef nl_langinfo
| | 
| | /* 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 nl_langinfo ();
| | /* 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_nl_langinfo || defined __stub___nl_langinfo
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return nl_langinfo ();
| |   ;
| |   return 0;
| | }
| configure:18930: result: no
| configure:19096: checking for ptrdiff_t
| configure:19096: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19096: $? = 0
| configure:19096: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:163: parse error before ')' token
| configure:19096: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | if (sizeof ((ptrdiff_t)))
| |         return 0;
| |   ;
| |   return 0;
| | }
| configure:19096: result: yes
| configure:19156: checking whether C symbols are prefixed with underscore at 
the linker level
| configure:19169: gcc -std=gnu99 -g -O2  -S conftest.c
| configure:19172: $? = 0
| configure:19182: result: no
| configure:19218: checking for sigset_t
| configure:19218: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19218: $? = 0
| configure:19218: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:138: parse error before ')' token
| configure:19218: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | /* end confdefs.h.  */
| | 
| |       #include <signal.h>
| |       /* Mingw defines sigset_t not in <signal.h>, but in <sys/types.h>.  */
| |       #include <sys/types.h>
| | 
| | 
| | int
| | main ()
| | {
| | if (sizeof ((sigset_t)))
| |         return 0;
| |   ;
| |   return 0;
| | }
| configure:19218: result: yes
| configure:19243: checking for C/C++ restrict keyword
| configure:19268: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19268: $? = 0
| configure:19276: result: __restrict
| configure:19289: checking for uid_t in sys/types.h
| configure:19308: result: yes
| configure:19323: checking whether snprintf is declared
| configure:19323: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19323: $? = 0
| configure:19323: result: yes
| configure:19336: checking for stdbool.h that conforms to C99
| configure:19403: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19403: $? = 0
| configure:19410: result: yes
| configure:19412: checking for _Bool
| configure:19412: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19412: $? = 0
| configure:19412: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:168: parse error before ')' token
| configure:19412: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | if (sizeof ((_Bool)))
| |         return 0;
| |   ;
| |   return 0;
| | }
| configure:19412: result: yes
| configure:19429: checking whether strdup is declared
| configure:19429: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19429: $? = 0
| configure:19429: result: yes
| configure:19516: checking whether ffsl is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:140: `ffsl' undeclared (first use in this function)
| conftest.c:140: (Each undeclared identifier is reported only once
| conftest.c:140: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef ffsl
| |   (void) ffsl;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether ffsll is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:140: `ffsll' undeclared (first use in this function)
| conftest.c:140: (Each undeclared identifier is reported only once
| conftest.c:140: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef ffsll
| |   (void) ffsll;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether memmem is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:140: `memmem' undeclared (first use in this function)
| conftest.c:140: (Each undeclared identifier is reported only once
| conftest.c:140: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef memmem
| |   (void) memmem;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether mempcpy is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:140: `mempcpy' undeclared (first use in this function)
| conftest.c:140: (Each undeclared identifier is reported only once
| conftest.c:140: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef mempcpy
| |   (void) mempcpy;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether memrchr is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:140: `memrchr' undeclared (first use in this function)
| conftest.c:140: (Each undeclared identifier is reported only once
| conftest.c:140: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef memrchr
| |   (void) memrchr;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether rawmemchr is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:140: `rawmemchr' undeclared (first use in this function)
| conftest.c:140: (Each undeclared identifier is reported only once
| conftest.c:140: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef rawmemchr
| |   (void) rawmemchr;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether stpcpy is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:140: `stpcpy' undeclared (first use in this function)
| conftest.c:140: (Each undeclared identifier is reported only once
| conftest.c:140: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef stpcpy
| |   (void) stpcpy;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether stpncpy is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:140: `stpncpy' undeclared (first use in this function)
| conftest.c:140: (Each undeclared identifier is reported only once
| conftest.c:140: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef stpncpy
| |   (void) stpncpy;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether strchrnul is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:140: `strchrnul' undeclared (first use in this function)
| conftest.c:140: (Each undeclared identifier is reported only once
| conftest.c:140: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef strchrnul
| |   (void) strchrnul;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether strdup is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19534: $? = 0
| configure:19542: result: yes
| configure:19516: checking whether strncat is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19534: $? = 0
| configure:19542: result: yes
| configure:19516: checking whether strndup is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:142: `strndup' undeclared (first use in this function)
| conftest.c:142: (Each undeclared identifier is reported only once
| conftest.c:142: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef strndup
| |   (void) strndup;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether strnlen is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:142: `strnlen' undeclared (first use in this function)
| conftest.c:142: (Each undeclared identifier is reported only once
| conftest.c:142: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef strnlen
| |   (void) strnlen;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether strpbrk is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19534: $? = 0
| configure:19542: result: yes
| configure:19516: checking whether strsep is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19534: $? = 0
| configure:19542: result: yes
| configure:19516: checking whether strcasestr is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:144: `strcasestr' undeclared (first use in this function)
| conftest.c:144: (Each undeclared identifier is reported only once
| conftest.c:144: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef strcasestr
| |   (void) strcasestr;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether strtok_r is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19534: $? = 0
| configure:19542: result: yes
| configure:19516: checking whether strerror_r is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:145: `strerror_r' undeclared (first use in this function)
| conftest.c:145: (Each undeclared identifier is reported only once
| conftest.c:145: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef strerror_r
| |   (void) strerror_r;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether strsignal is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:145: `strsignal' undeclared (first use in this function)
| conftest.c:145: (Each undeclared identifier is reported only once
| conftest.c:145: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef strsignal
| |   (void) strsignal;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19516: checking whether strverscmp is declared without a macro
| configure:19534: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:145: `strverscmp' undeclared (first use in this function)
| conftest.c:145: (Each undeclared identifier is reported only once
| conftest.c:145: for each function it appears in.)
| configure:19534: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | /* end confdefs.h.  */
| | #include <string.h>
| | 
| | int
| | main ()
| | {
| | #undef strverscmp
| |   (void) strverscmp;
| |   ;
| |   return 0;
| | }
| configure:19542: result: no
| configure:19554: checking whether strndup is declared
| configure:19554: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:179: `strndup' undeclared (first use in this function)
| conftest.c:179: (Each undeclared identifier is reported only once
| conftest.c:179: for each function it appears in.)
| configure:19554: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef strndup
| | #ifdef __cplusplus
| |   (void) strndup;
| | #else
| |   (void) strndup;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:19554: result: no
| configure:19567: checking whether strnlen is declared
| configure:19567: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:180: `strnlen' undeclared (first use in this function)
| conftest.c:180: (Each undeclared identifier is reported only once
| conftest.c:180: for each function it appears in.)
| configure:19567: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef strnlen
| | #ifdef __cplusplus
| |   (void) strnlen;
| | #else
| |   (void) strnlen;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:19567: result: no
| configure:19610: checking for struct timespec in <time.h>
| configure:19627: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19627: $? = 0
| configure:19634: result: yes
| configure:19810: checking whether clearerr_unlocked is declared
| configure:19810: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:181: `clearerr_unlocked' undeclared (first use in this function)
| conftest.c:181: (Each undeclared identifier is reported only once
| conftest.c:181: for each function it appears in.)
| configure:19810: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef clearerr_unlocked
| | #ifdef __cplusplus
| |   (void) clearerr_unlocked;
| | #else
| |   (void) clearerr_unlocked;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:19810: result: no
| configure:19821: checking whether feof_unlocked is declared
| configure:19821: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:182: `feof_unlocked' undeclared (first use in this function)
| conftest.c:182: (Each undeclared identifier is reported only once
| conftest.c:182: for each function it appears in.)
| configure:19821: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef feof_unlocked
| | #ifdef __cplusplus
| |   (void) feof_unlocked;
| | #else
| |   (void) feof_unlocked;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:19821: result: no
| configure:19832: checking whether ferror_unlocked is declared
| configure:19832: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:183: `ferror_unlocked' undeclared (first use in this function)
| conftest.c:183: (Each undeclared identifier is reported only once
| conftest.c:183: for each function it appears in.)
| configure:19832: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef ferror_unlocked
| | #ifdef __cplusplus
| |   (void) ferror_unlocked;
| | #else
| |   (void) ferror_unlocked;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:19832: result: no
| configure:19843: checking whether fflush_unlocked is declared
| configure:19843: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:184: `fflush_unlocked' undeclared (first use in this function)
| conftest.c:184: (Each undeclared identifier is reported only once
| conftest.c:184: for each function it appears in.)
| configure:19843: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fflush_unlocked
| | #ifdef __cplusplus
| |   (void) fflush_unlocked;
| | #else
| |   (void) fflush_unlocked;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:19843: result: no
| configure:19854: checking whether fgets_unlocked is declared
| configure:19854: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:185: `fgets_unlocked' undeclared (first use in this function)
| conftest.c:185: (Each undeclared identifier is reported only once
| conftest.c:185: for each function it appears in.)
| configure:19854: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fgets_unlocked
| | #ifdef __cplusplus
| |   (void) fgets_unlocked;
| | #else
| |   (void) fgets_unlocked;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:19854: result: no
| configure:19865: checking whether fputc_unlocked is declared
| configure:19865: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:186: `fputc_unlocked' undeclared (first use in this function)
| conftest.c:186: (Each undeclared identifier is reported only once
| conftest.c:186: for each function it appears in.)
| configure:19865: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fputc_unlocked
| | #ifdef __cplusplus
| |   (void) fputc_unlocked;
| | #else
| |   (void) fputc_unlocked;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:19865: result: no
| configure:19876: checking whether fputs_unlocked is declared
| configure:19876: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:187: `fputs_unlocked' undeclared (first use in this function)
| conftest.c:187: (Each undeclared identifier is reported only once
| conftest.c:187: for each function it appears in.)
| configure:19876: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fputs_unlocked
| | #ifdef __cplusplus
| |   (void) fputs_unlocked;
| | #else
| |   (void) fputs_unlocked;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:19876: result: no
| configure:19887: checking whether fread_unlocked is declared
| configure:19887: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:188: `fread_unlocked' undeclared (first use in this function)
| conftest.c:188: (Each undeclared identifier is reported only once
| conftest.c:188: for each function it appears in.)
| configure:19887: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fread_unlocked
| | #ifdef __cplusplus
| |   (void) fread_unlocked;
| | #else
| |   (void) fread_unlocked;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:19887: result: no
| configure:19898: checking whether fwrite_unlocked is declared
| configure:19898: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:189: `fwrite_unlocked' undeclared (first use in this function)
| conftest.c:189: (Each undeclared identifier is reported only once
| conftest.c:189: for each function it appears in.)
| configure:19898: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | #ifdef HAVE_SYS_TYPES_H
| | # include <sys/types.h>
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include <sys/stat.h>
| | #endif
| | #ifdef STDC_HEADERS
| | # include <stdlib.h>
| | # include <stddef.h>
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include <stdlib.h>
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| | #  include <memory.h>
| | # endif
| | # include <string.h>
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include <strings.h>
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include <inttypes.h>
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include <stdint.h>
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int
| | main ()
| | {
| | #ifndef fwrite_unlocked
| | #ifdef __cplusplus
| |   (void) fwrite_unlocked;
| | #else
| |   (void) fwrite_unlocked;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:19898: result: no
| configure:19909: checking whether getchar_unlocked is declared
| configure:19909: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19909: $? = 0
| configure:19909: result: yes
| configure:19920: checking whether putc_unlocked is declared
| configure:19920: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19920: $? = 0
| configure:19920: result: yes
| configure:19931: checking whether putchar_unlocked is declared
| configure:19931: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19931: $? = 0
| configure:19931: result: yes
| configure:19942: checking whether unsetenv is declared
| configure:19942: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19942: $? = 0
| configure:19942: result: yes
| configure:19953: checking whether vsnprintf is declared
| configure:19953: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19953: $? = 0
| configure:19953: result: yes
| configure:19965: checking whether <wchar.h> uses 'inline' correctly
| configure:19987: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:19990: $? = 0
| configure:20008: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:20011: $? = 0
| configure:20024: result: yes
| configure:20119: checking whether to enable assertions
| configure:20136: result: yes
| configure:20316: checking whether // is distinct from /
| configure:20345: result: no
| configure:20362: checking whether dup2 works
| configure:20416: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:20416: $? = 0
| configure:20416: ./conftest
| configure:20416: $? = 0
| configure:20427: result: yes
| configure:20484: checking for error_at_line
| configure:20500: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c:164:19: error.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:168: warning: implicit declaration of function `error_at_line'
| configure:20500: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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.  */
| | #include <error.h>
| | int
| | main ()
| | {
| | error_at_line (0, 0, "", 0, "an error occurred");
| |   ;
| |   return 0;
| | }
| configure:20508: result: no
| configure:20557: checking whether fcntl handles F_DUPFD correctly
| configure:20587: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:20587: $? = 0
| configure:20587: ./conftest
| configure:20587: $? = 0
| configure:20597: result: yes
| configure:20615: checking whether fcntl understands F_DUPFD_CLOEXEC
| configure:20636: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:167: parse error before "me"
| conftest.c:170: syntax error before "int"
| configure:20636: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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.  */
| | 
| | #include <fcntl.h>
| | #ifndef F_DUPFD_CLOEXEC
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:20665: result: no
| configure:20786: checking whether fcntl is declared without a macro
| configure:20804: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:20804: $? = 0
| configure:20812: result: yes
| configure:20786: checking whether openat is declared without a macro
| configure:20804: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:172: `openat' undeclared (first use in this function)
| conftest.c:172: (Each undeclared identifier is reported only once
| conftest.c:172: for each function it appears in.)
| configure:20804: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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
| | /* end confdefs.h.  */
| | #include <fcntl.h>
| | 
| | int
| | main ()
| | {
| | #undef openat
| |   (void) openat;
| |   ;
| |   return 0;
| | }
| configure:20812: result: no
| configure:20882: checking whether conversion from 'int' to 'long double' works
| configure:20923: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:20923: $? = 0
| configure:20923: ./conftest
| configure:20923: $? = 0
| configure:20934: result: yes
| configure:21056: checking whether fopen recognizes a trailing slash
| configure:21082: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:21082: $? = 0
| configure:21082: ./conftest
| configure:21082: $? = 0
| configure:21094: result: yes
| configure:21151: checking whether __fpending is declared
| configure:21151: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:183: `__fpending' undeclared (first use in this function)
| conftest.c:183: (Each undeclared identifier is reported only once
| conftest.c:183: for each function it appears in.)
| configure:21151: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | /* end confdefs.h.  */
| | 
| | #     include <stdio.h>
| | #     if HAVE_STDIO_EXT_H
| | #      include <stdio_ext.h>
| | #     endif
| | 
| | 
| | int
| | main ()
| | {
| | #ifndef __fpending
| | #ifdef __cplusplus
| |   (void) __fpending;
| | #else
| |   (void) __fpending;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:21151: result: no
| configure:21176: checking how to determine the number of pending output bytes 
on a stream
| configure:21235: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:174: structure has no member named `_IO_write_ptr'
| conftest.c:174: structure has no member named `_IO_write_base'
| configure:21235: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | int
| | main ()
| | {
| | FILE *fp = stdin; (void) (fp->_IO_write_ptr - fp->_IO_write_base);
| |   ;
| |   return 0;
| | }
| configure:21235: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:174: structure has no member named `_ptr'
| conftest.c:174: structure has no member named `_base'
| configure:21235: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | int
| | main ()
| | {
| | FILE *fp = stdin; (void) (fp->_ptr - fp->_base);
| |   ;
| |   return 0;
| | }
| configure:21235: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:21235: $? = 0
| configure:21247: result: fp->_p - fp->_bf._base
| configure:21373: checking for nl_langinfo
| configure:21373: result: no
| configure:21539: checking for ptrdiff_t
| configure:21539: result: yes
| configure:21597: checking whether frexp works
| configure:21675: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c: In function `main':
| conftest.c:237: warning: passing arg 2 of `memcmp' discards qualifiers from 
pointer target type
| configure:21675: $? = 0
| configure:21675: ./conftest
| configure:21675: $? = 7
| configure: program exited with status 7
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | /* end confdefs.h.  */
| | 
| | #include <float.h>
| | #include <math.h>
| | #include <string.h>
| | #if HAVE_ALARM
| | # include <unistd.h>
| | #endif
| | /* HP cc on HP-UX 10.20 has a bug with the constant expression -0.0.
| |    ICC 10.0 has a bug when optimizing the expression -zero.
| |    The expression -DBL_MIN * DBL_MIN does not work when cross-compiling
| |    to PowerPC on Mac OS X 10.5.  */
| | #if defined __hpux || defined __sgi || defined __ICC
| | static double
| | compute_minus_zero (void)
| | {
| |   return -DBL_MIN * DBL_MIN;
| | }
| | # define minus_zero compute_minus_zero ()
| | #else
| | double minus_zero = -0.0;
| | #endif
| | int main()
| | {
| |   int result = 0;
| |   int i;
| |   volatile double x;
| |   double zero = 0.0;
| | #if HAVE_ALARM
| |   /* NeXTstep 3.3 frexp() runs into an endless loop when called on an 
infinite
| |      number.  Let the test fail in this case.  */
| |   alarm (5);
| | #endif
| |   /* Test on denormalized numbers.  */
| |   for (i = 1, x = 1.0; i >= DBL_MIN_EXP; i--, x *= 0.5)
| |     ;
| |   if (x > 0.0)
| |     {
| |       int exp;
| |       double y = frexp (x, &exp);
| |       /* On machines with IEEE754 arithmetic: x = 1.11254e-308, exp = -1022.
| |          On NetBSD: y = 0.75. Correct: y = 0.5.  */
| |       if (y != 0.5)
| |         result |= 1;
| |     }
| |   /* Test on infinite numbers.  */
| |   x = 1.0 / zero;
| |   {
| |     int exp;
| |     double y = frexp (x, &exp);
| |     if (y != x)
| |       result |= 2;
| |   }
| |   /* Test on negative zero.  */
| |   x = minus_zero;
| |   {
| |     int exp;
| |     double y = frexp (x, &exp);
| |     if (memcmp (&y, &x, sizeof x))
| |       result |= 4;
| |   }
| |   return result;
| | }
| configure:21686: result: no
| configure:21733: checking whether frexpl is declared
| configure:21733: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:190: `frexpl' undeclared (first use in this function)
| conftest.c:190: (Each undeclared identifier is reported only once
| conftest.c:190: for each function it appears in.)
| configure:21733: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | 
| | int
| | main ()
| | {
| | #ifndef frexpl
| | #ifdef __cplusplus
| |   (void) frexpl;
| | #else
| |   (void) frexpl;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:21733: result: no
| configure:22111: checking for flockfile
| configure:22111: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:22111: $? = 0
| configure:22111: result: yes
| configure:22111: checking for funlockfile
| configure:22111: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:22111: $? = 0
| configure:22111: result: yes
| configure:22120: checking whether getc_unlocked is declared
| configure:22120: result: yes
| configure:22191: checking for getline
| configure:22191: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccpVzICf.o: In function `main':
| /usr/source/bison-2.7/conftest.c:222: undefined reference to `getline'
| configure:22191: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | /* end confdefs.h.  */
| | /* Define getline to an innocuous variant, in case <limits.h> declares 
getline.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define getline innocuous_getline
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char getline (); below.
| |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| |     <limits.h> exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include <limits.h>
| | #else
| | # include <assert.h>
| | #endif
| | 
| | #undef getline
| | 
| | /* 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 getline ();
| | /* 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_getline || defined __stub___getline
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return getline ();
| |   ;
| |   return 0;
| | }
| configure:22191: result: no
| configure:22447: checking whether INT32_MAX < INTMAX_MAX
| configure:22481: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:22481: $? = 0
| configure:22488: result: yes
| configure:22499: checking whether INT64_MAX == LONG_MAX
| configure:22533: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:209: size of array `test' is negative
| configure:22533: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | /* end confdefs.h.  */
| | /* Work also in C++ mode.  */
| |             #define __STDC_LIMIT_MACROS 1
| | 
| |             /* Work if build is not clean.  */
| |             #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H
| | 
| |             #include <limits.h>
| |             #if HAVE_STDINT_H
| |              #include <stdint.h>
| |             #endif
| | 
| |             #if defined INT64_MAX
| |              #define CONDITION (INT64_MAX == LONG_MAX)
| |             #elif HAVE_LONG_LONG_INT
| |              #define CONDITION (sizeof (long long int) == sizeof (long int))
| |             #else
| |              #define CONDITION 0
| |             #endif
| |             int test[CONDITION ? 1 : -1];
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:22540: result: no
| configure:22553: checking whether UINT32_MAX < UINTMAX_MAX
| configure:22587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:22587: $? = 0
| configure:22594: result: yes
| configure:22605: checking whether UINT64_MAX == ULONG_MAX
| configure:22639: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:209: size of array `test' is negative
| configure:22639: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | /* end confdefs.h.  */
| | /* Work also in C++ mode.  */
| |             #define __STDC_LIMIT_MACROS 1
| | 
| |             /* Work if build is not clean.  */
| |             #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H
| | 
| |             #include <limits.h>
| |             #if HAVE_STDINT_H
| |              #include <stdint.h>
| |             #endif
| | 
| |             #if defined UINT64_MAX
| |              #define CONDITION (UINT64_MAX == ULONG_MAX)
| |             #elif HAVE_LONG_LONG_INT
| |              #define CONDITION (sizeof (unsigned long long int) == sizeof 
(unsigned long int))
| |             #else
| |              #define CONDITION 0
| |             #endif
| |             int test[CONDITION ? 1 : -1];
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:22646: result: no
| configure:22669: checking whether isnan macro works
| configure:22690: result: no
| configure:22716: checking whether isnan(double) can be used without linking 
with libm
| configure:22750: result: yes
| configure:22843: checking whether isnan(double) can be used without linking 
with libm
| configure:22877: result: yes
| configure:22906: checking whether isnan(float) can be used without linking 
with libm
| configure:22940: result: no
| configure:22945: checking whether isnan(float) can be used with libm
| configure:22982: result: yes
| configure:22996: checking whether isnan(float) works
| configure:23075: result: yes
| configure:23107: checking where to find the exponent in a 'float'
| configure:23196: result: word 0 bit 23
| configure:23234: checking whether isnan(float) can be used without linking 
with libm
| configure:23268: result: no
| configure:23385: checking where to find the exponent in a 'float'
| configure:23474: result: word 0 bit 23
| configure:23499: checking whether isnan(long double) can be used without 
linking with libm
| configure:23533: result: no
| configure:23538: checking whether isnan(long double) can be used with libm
| configure:23575: result: no
| configure:23772: checking where to find the exponent in a 'long double'
| configure:23852: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:23852: $? = 0
| configure:23852: ./conftest
| configure:23852: $? = 0
| configure:23864: result: word 2 bit 0
| configure:23903: checking whether isnan(long double) can be used without 
linking with libm
| configure:23937: result: no
| configure:24123: checking where to find the exponent in a 'long double'
| configure:24215: result: word 2 bit 0
| configure:24242: checking whether iswblank is declared
| configure:24242: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24242: $? = 0
| configure:24242: result: yes
| configure:24369: checking whether ldexpl is declared
| configure:24369: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:215: `ldexpl' undeclared (first use in this function)
| conftest.c:215: (Each undeclared identifier is reported only once
| conftest.c:215: for each function it appears in.)
| configure:24369: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | 
| | int
| | main ()
| | {
| | #ifndef ldexpl
| | #ifdef __cplusplus
| |   (void) ldexpl;
| | #else
| |   (void) ldexpl;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:24369: result: no
| configure:24575: checking for pthread_rwlock_t
| configure:24575: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:212: `pthread_rwlock_t' undeclared (first use in this function)
| conftest.c:212: (Each undeclared identifier is reported only once
| conftest.c:212: for each function it appears in.)
| configure:24575: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | /* end confdefs.h.  */
| | #include <pthread.h>
| | 
| | int
| | main ()
| | {
| | if (sizeof (pthread_rwlock_t))
| |      return 0;
| |   ;
| |   return 0;
| | }
| configure:24575: result: no
| configure:24603: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:216: `PTHREAD_MUTEX_RECURSIVE' undeclared (first use in this 
function)
| conftest.c:216: (Each undeclared identifier is reported only once
| conftest.c:216: for each function it appears in.)
| configure:24603: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | /* end confdefs.h.  */
| | 
| |       #include <pthread.h>
| | int
| | main ()
| | {
| | 
| | #if __FreeBSD__ == 4
| | error "No, in FreeBSD 4.0 recursive mutexes actually don't work."
| | #else
| | int x = (int)PTHREAD_MUTEX_RECURSIVE;
| | return !x;
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:24618: checking for stdlib.h
| configure:24618: result: yes
| configure:24628: checking for GNU libc compatible malloc
| configure:24661: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:24661: $? = 0
| configure:24661: ./conftest
| configure:24661: $? = 0
| configure:24672: result: yes
| configure:24820: checking whether NAN macro works
| configure:24843: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24843: $? = 0
| configure:24850: result: yes
| configure:24855: checking whether HUGE_VAL works
| configure:24873: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24873: $? = 0
| configure:24880: result: yes
| configure:24889: checking whether acosf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether acosl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:218: `acosl' undeclared (first use in this function)
| conftest.c:218: (Each undeclared identifier is reported only once
| conftest.c:218: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef acosl
| |   (void) acosl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether asinf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether asinl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:219: `asinl' undeclared (first use in this function)
| conftest.c:219: (Each undeclared identifier is reported only once
| conftest.c:219: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef asinl
| |   (void) asinl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether atanf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether atanl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:220: `atanl' undeclared (first use in this function)
| conftest.c:220: (Each undeclared identifier is reported only once
| conftest.c:220: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef atanl
| |   (void) atanl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether cbrt is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether cbrtf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether cbrtl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:222: `cbrtl' undeclared (first use in this function)
| conftest.c:222: (Each undeclared identifier is reported only once
| conftest.c:222: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef cbrtl
| |   (void) cbrtl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether ceilf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether ceill is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:223: `ceill' undeclared (first use in this function)
| conftest.c:223: (Each undeclared identifier is reported only once
| conftest.c:223: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef ceill
| |   (void) ceill;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether copysign is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether copysignf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether copysignl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:225: `copysignl' undeclared (first use in this function)
| conftest.c:225: (Each undeclared identifier is reported only once
| conftest.c:225: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef copysignl
| |   (void) copysignl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether cosf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether cosl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:226: `cosl' undeclared (first use in this function)
| conftest.c:226: (Each undeclared identifier is reported only once
| conftest.c:226: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef cosl
| |   (void) cosl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether coshf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether expf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether expl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:228: `expl' undeclared (first use in this function)
| conftest.c:228: (Each undeclared identifier is reported only once
| conftest.c:228: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef expl
| |   (void) expl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether exp2 is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether exp2f is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:229: `exp2f' undeclared (first use in this function)
| conftest.c:229: (Each undeclared identifier is reported only once
| conftest.c:229: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef exp2f
| |   (void) exp2f;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether exp2l is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:229: `exp2l' undeclared (first use in this function)
| conftest.c:229: (Each undeclared identifier is reported only once
| conftest.c:229: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef exp2l
| |   (void) exp2l;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether expm1 is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether expm1f is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether expm1l is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:231: `expm1l' undeclared (first use in this function)
| conftest.c:231: (Each undeclared identifier is reported only once
| conftest.c:231: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef expm1l
| |   (void) expm1l;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether fabsf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether fabsl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:232: `fabsl' undeclared (first use in this function)
| conftest.c:232: (Each undeclared identifier is reported only once
| conftest.c:232: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef fabsl
| |   (void) fabsl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether floorf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether floorl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:233: `floorl' undeclared (first use in this function)
| conftest.c:233: (Each undeclared identifier is reported only once
| conftest.c:233: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef floorl
| |   (void) floorl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether fma is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:233: `fma' undeclared (first use in this function)
| conftest.c:233: (Each undeclared identifier is reported only once
| conftest.c:233: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef fma
| |   (void) fma;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether fmaf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:233: `fmaf' undeclared (first use in this function)
| conftest.c:233: (Each undeclared identifier is reported only once
| conftest.c:233: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef fmaf
| |   (void) fmaf;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether fmal is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:233: `fmal' undeclared (first use in this function)
| conftest.c:233: (Each undeclared identifier is reported only once
| conftest.c:233: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef fmal
| |   (void) fmal;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether fmod is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether fmodf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether fmodl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:235: `fmodl' undeclared (first use in this function)
| conftest.c:235: (Each undeclared identifier is reported only once
| conftest.c:235: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef fmodl
| |   (void) fmodl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether frexpf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether frexpl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:236: `frexpl' undeclared (first use in this function)
| conftest.c:236: (Each undeclared identifier is reported only once
| conftest.c:236: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef frexpl
| |   (void) frexpl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether hypotf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether hypotl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:237: `hypotl' undeclared (first use in this function)
| conftest.c:237: (Each undeclared identifier is reported only once
| conftest.c:237: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef hypotl
| |   (void) hypotl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether ilogb is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether ilogbf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether ilogbl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:239: `ilogbl' undeclared (first use in this function)
| conftest.c:239: (Each undeclared identifier is reported only once
| conftest.c:239: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef ilogbl
| |   (void) ilogbl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether ldexpf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether ldexpl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:240: `ldexpl' undeclared (first use in this function)
| conftest.c:240: (Each undeclared identifier is reported only once
| conftest.c:240: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef ldexpl
| |   (void) ldexpl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether log is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether logf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether logl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:242: `logl' undeclared (first use in this function)
| conftest.c:242: (Each undeclared identifier is reported only once
| conftest.c:242: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef logl
| |   (void) logl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether log10 is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether log10f is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether log10l is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:244: `log10l' undeclared (first use in this function)
| conftest.c:244: (Each undeclared identifier is reported only once
| conftest.c:244: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef log10l
| |   (void) log10l;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether log1p is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether log1pf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether log1pl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:246: `log1pl' undeclared (first use in this function)
| conftest.c:246: (Each undeclared identifier is reported only once
| conftest.c:246: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | #define HAVE_RAW_DECL_LOG1P 1
| | #define HAVE_RAW_DECL_LOG1PF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef log1pl
| |   (void) log1pl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether log2 is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether log2f is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:247: `log2f' undeclared (first use in this function)
| conftest.c:247: (Each undeclared identifier is reported only once
| conftest.c:247: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | #define HAVE_RAW_DECL_LOG1P 1
| | #define HAVE_RAW_DECL_LOG1PF 1
| | #define HAVE_RAW_DECL_LOG2 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef log2f
| |   (void) log2f;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether log2l is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:247: `log2l' undeclared (first use in this function)
| conftest.c:247: (Each undeclared identifier is reported only once
| conftest.c:247: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | #define HAVE_RAW_DECL_LOG1P 1
| | #define HAVE_RAW_DECL_LOG1PF 1
| | #define HAVE_RAW_DECL_LOG2 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef log2l
| |   (void) log2l;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether logb is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether logbf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether logbl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:249: `logbl' undeclared (first use in this function)
| conftest.c:249: (Each undeclared identifier is reported only once
| conftest.c:249: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | #define HAVE_RAW_DECL_LOG1P 1
| | #define HAVE_RAW_DECL_LOG1PF 1
| | #define HAVE_RAW_DECL_LOG2 1
| | #define HAVE_RAW_DECL_LOGB 1
| | #define HAVE_RAW_DECL_LOGBF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef logbl
| |   (void) logbl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether modf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether modff is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether modfl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:251: `modfl' undeclared (first use in this function)
| conftest.c:251: (Each undeclared identifier is reported only once
| conftest.c:251: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | #define HAVE_RAW_DECL_LOG1P 1
| | #define HAVE_RAW_DECL_LOG1PF 1
| | #define HAVE_RAW_DECL_LOG2 1
| | #define HAVE_RAW_DECL_LOGB 1
| | #define HAVE_RAW_DECL_LOGBF 1
| | #define HAVE_RAW_DECL_MODF 1
| | #define HAVE_RAW_DECL_MODFF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef modfl
| |   (void) modfl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether powf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether remainder is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether remainderf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether remainderl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:254: `remainderl' undeclared (first use in this function)
| conftest.c:254: (Each undeclared identifier is reported only once
| conftest.c:254: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | #define HAVE_RAW_DECL_LOG1P 1
| | #define HAVE_RAW_DECL_LOG1PF 1
| | #define HAVE_RAW_DECL_LOG2 1
| | #define HAVE_RAW_DECL_LOGB 1
| | #define HAVE_RAW_DECL_LOGBF 1
| | #define HAVE_RAW_DECL_MODF 1
| | #define HAVE_RAW_DECL_MODFF 1
| | #define HAVE_RAW_DECL_POWF 1
| | #define HAVE_RAW_DECL_REMAINDER 1
| | #define HAVE_RAW_DECL_REMAINDERF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef remainderl
| |   (void) remainderl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether rint is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether rintf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether rintl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:256: `rintl' undeclared (first use in this function)
| conftest.c:256: (Each undeclared identifier is reported only once
| conftest.c:256: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | #define HAVE_RAW_DECL_LOG1P 1
| | #define HAVE_RAW_DECL_LOG1PF 1
| | #define HAVE_RAW_DECL_LOG2 1
| | #define HAVE_RAW_DECL_LOGB 1
| | #define HAVE_RAW_DECL_LOGBF 1
| | #define HAVE_RAW_DECL_MODF 1
| | #define HAVE_RAW_DECL_MODFF 1
| | #define HAVE_RAW_DECL_POWF 1
| | #define HAVE_RAW_DECL_REMAINDER 1
| | #define HAVE_RAW_DECL_REMAINDERF 1
| | #define HAVE_RAW_DECL_RINT 1
| | #define HAVE_RAW_DECL_RINTF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef rintl
| |   (void) rintl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether round is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:256: `round' undeclared (first use in this function)
| conftest.c:256: (Each undeclared identifier is reported only once
| conftest.c:256: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | #define HAVE_RAW_DECL_LOG1P 1
| | #define HAVE_RAW_DECL_LOG1PF 1
| | #define HAVE_RAW_DECL_LOG2 1
| | #define HAVE_RAW_DECL_LOGB 1
| | #define HAVE_RAW_DECL_LOGBF 1
| | #define HAVE_RAW_DECL_MODF 1
| | #define HAVE_RAW_DECL_MODFF 1
| | #define HAVE_RAW_DECL_POWF 1
| | #define HAVE_RAW_DECL_REMAINDER 1
| | #define HAVE_RAW_DECL_REMAINDERF 1
| | #define HAVE_RAW_DECL_RINT 1
| | #define HAVE_RAW_DECL_RINTF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef round
| |   (void) round;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether roundf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:256: `roundf' undeclared (first use in this function)
| conftest.c:256: (Each undeclared identifier is reported only once
| conftest.c:256: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | #define HAVE_RAW_DECL_LOG1P 1
| | #define HAVE_RAW_DECL_LOG1PF 1
| | #define HAVE_RAW_DECL_LOG2 1
| | #define HAVE_RAW_DECL_LOGB 1
| | #define HAVE_RAW_DECL_LOGBF 1
| | #define HAVE_RAW_DECL_MODF 1
| | #define HAVE_RAW_DECL_MODFF 1
| | #define HAVE_RAW_DECL_POWF 1
| | #define HAVE_RAW_DECL_REMAINDER 1
| | #define HAVE_RAW_DECL_REMAINDERF 1
| | #define HAVE_RAW_DECL_RINT 1
| | #define HAVE_RAW_DECL_RINTF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef roundf
| |   (void) roundf;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether roundl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:256: `roundl' undeclared (first use in this function)
| conftest.c:256: (Each undeclared identifier is reported only once
| conftest.c:256: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | #define HAVE_RAW_DECL_LOG1P 1
| | #define HAVE_RAW_DECL_LOG1PF 1
| | #define HAVE_RAW_DECL_LOG2 1
| | #define HAVE_RAW_DECL_LOGB 1
| | #define HAVE_RAW_DECL_LOGBF 1
| | #define HAVE_RAW_DECL_MODF 1
| | #define HAVE_RAW_DECL_MODFF 1
| | #define HAVE_RAW_DECL_POWF 1
| | #define HAVE_RAW_DECL_REMAINDER 1
| | #define HAVE_RAW_DECL_REMAINDERF 1
| | #define HAVE_RAW_DECL_RINT 1
| | #define HAVE_RAW_DECL_RINTF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef roundl
| |   (void) roundl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether sinf is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:24906: $? = 0
| configure:24914: result: yes
| configure:24889: checking whether sinl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:257: `sinl' undeclared (first use in this function)
| conftest.c:257: (Each undeclared identifier is reported only once
| conftest.c:257: for each function it appears in.)
| configure:24906: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Bison"
| | #define PACKAGE_TARNAME "bison"
| | #define PACKAGE_VERSION "2.7"
| | #define PACKAGE_STRING "GNU Bison 2.7"
| | #define PACKAGE_BUGREPORT "address@hidden"
| | #define PACKAGE_URL "http://www.gnu.org/software/bison/";
| | #define PACKAGE_COPYRIGHT_YEAR 2012
| | #define PACKAGE "bison"
| | #define VERSION "2.7"
| | #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 _POSIX_PTHREAD_SEMANTICS 1
| | #define _TANDEM_SOURCE 1
| | #define YYTEXT_POINTER 1
| | #define M4 "/usr/contrib/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_SYS_STAT_H 1
| | #define HAVE_GETOPT_H 1
| | #define HAVE_WCHAR_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_WCTYPE_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_SYS_WAIT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_ALLOCA 1
| | #define HAVE_FCNTL 1
| | #define HAVE_SYMLINK 1
| | #define HAVE_SNPRINTF 1
| | #define HAVE_ALARM 1
| | #define HAVE_GETDTABLESIZE 1
| | #define HAVE_ISWCNTRL 1
| | #define HAVE_ISASCII 1
| | #define HAVE_MPROTECT 1
| | #define HAVE_LSTAT 1
| | #define HAVE_SIGACTION 1
| | #define HAVE_SIGALTSTACK 1
| | #define HAVE_SIGINTERRUPT 1
| | #define HAVE_STRDUP 1
| | #define HAVE_PIPE 1
| | #define HAVE_WCWIDTH 1
| | #define HAVE_SETLOCALE 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define HAVE_SIG_ATOMIC_T 1
| | #define HAVE_WORKING_O_NOATIME 0
| | #define HAVE_WORKING_O_NOFOLLOW 0
| | #define CHECK_PRINTF_SAFE 1
| | #define NEED_PRINTF_LONG_DOUBLE 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 intmax_t long long
| | #define DBL_EXPBIT0_WORD 1
| | #define DBL_EXPBIT0_BIT 20
| | #define HAVE_SNPRINTF 1
| | #define HAVE_WCSLEN 1
| | #define HAVE_DECL__SNPRINTF 0
| | #define HAVE_SNPRINTF_RETVAL_C99 1
| | #define HAVE_RAW_DECL_FSTAT 1
| | #define HAVE_RAW_DECL_LSTAT 1
| | #define HAVE_RAW_DECL_MKFIFO 1
| | #define HAVE_RAW_DECL_STAT 1
| | #define HAVE_DECL_GETDELIM 0
| | #define HAVE_DECL_GETLINE 0
| | #define HAVE_GETOPT_H 1
| | #define __GETOPT_PREFIX rpl_
| | #define HAVE_DECL_GETENV 1
| | #define HAVE_SYS_BITYPES_H 1
| | #define BITSIZEOF_PTRDIFF_T 32
| | #define BITSIZEOF_SIZE_T 32
| | #define BITSIZEOF_SIG_ATOMIC_T 32
| | #define BITSIZEOF_WCHAR_T 32
| | #define BITSIZEOF_WINT_T 32
| | #define HAVE_SIGNED_SIG_ATOMIC_T 1
| | #define HAVE_SIGNED_WCHAR_T 1
| | #define HAVE_SIGNED_WINT_T 1
| | #define PTRDIFF_T_SUFFIX 
| | #define SIZE_T_SUFFIX u
| | #define SIG_ATOMIC_T_SUFFIX 
| | #define WCHAR_T_SUFFIX 
| | #define WINT_T_SUFFIX 
| | #define HAVE_INTTYPES_H 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #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_GETC_UNLOCKED 1
| | #define USE_POSIX_THREADS 1
| | #define USE_POSIX_THREADS_WEAK 1
| | #define mbstate_t int
| | #define MAP_ANONYMOUS MAP_ANON
| | #define HAVE_MAP_ANONYMOUS 1
| | #define HAVE_DECL_OBSTACK_PRINTF 0
| | #define PROMOTED_MODE_T int
| | #define REPLACE_STRERROR_0 1
| | #define HAVE_DECL_STRERROR_R 0
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_VFPRINTF_POSIX 1
| | #define USER_LABEL_PREFIX 
| | #define HAVE_SIGSET_T 1
| | #define restrict __restrict
| | #define HAVE_DECL_SNPRINTF 1
| | #define HAVE__BOOL 1
| | #define HAVE_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRDUP 1
| | #define HAVE_RAW_DECL_STRNCAT 1
| | #define HAVE_RAW_DECL_STRPBRK 1
| | #define HAVE_RAW_DECL_STRSEP 1
| | #define HAVE_RAW_DECL_STRTOK_R 1
| | #define HAVE_DECL_STRNDUP 0
| | #define HAVE_DECL_STRNLEN 0
| | #define HAVE_DECL_CLEARERR_UNLOCKED 0
| | #define HAVE_DECL_FEOF_UNLOCKED 0
| | #define HAVE_DECL_FERROR_UNLOCKED 0
| | #define HAVE_DECL_FFLUSH_UNLOCKED 0
| | #define HAVE_DECL_FGETS_UNLOCKED 0
| | #define HAVE_DECL_FPUTC_UNLOCKED 0
| | #define HAVE_DECL_FPUTS_UNLOCKED 0
| | #define HAVE_DECL_FREAD_UNLOCKED 0
| | #define HAVE_DECL_FWRITE_UNLOCKED 0
| | #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_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 GNULIB_FD_SAFER_FLAG 1
| | #define GNULIB_TEST_FOPEN 1
| | #define GNULIB_FOPEN_SAFER 1
| | #define HAVE_DECL___FPENDING 0
| | #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
| | #define NEED_PRINTF_DIRECTIVE_A 1
| | #define NEED_PRINTF_DIRECTIVE_LS 1
| | #define NEED_PRINTF_FLAG_GROUPING 1
| | #define NEED_PRINTF_FLAG_ZERO 1
| | #define NEED_PRINTF_ENOMEM 1
| | #define NEED_PRINTF_DOUBLE 1
| | #define NEED_PRINTF_LONG_DOUBLE 1
| | #define REPLACE_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FPRINTF_POSIX 1
| | #define GNULIB_TEST_FREXP 1
| | #define GNULIB_TEST_FREXPL 1
| | #define GNULIB_TEST_FSTAT 1
| | #define HAVE_FLOCKFILE 1
| | #define HAVE_FUNLOCKFILE 1
| | #define HAVE_DECL_GETC_UNLOCKED 1
| | #define GNULIB_TEST_GETDELIM 1
| | #define GNULIB_TEST_GETDTABLESIZE 1
| | #define GNULIB_TEST_GETLINE 1
| | #define GNULIB_TEST_GETOPT_GNU 1
| | #define __GETOPT_PREFIX rpl_
| | #define GNULIB_TEST_ISNAN 1
| | #define GNULIB_TEST_ISNAND 1
| | #define HAVE_ISNAND_IN_LIBC 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define GNULIB_TEST_ISNANF 1
| | #define FLT_EXPBIT0_WORD 0
| | #define FLT_EXPBIT0_BIT 23
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define GNULIB_TEST_ISNANL 1
| | #define LDBL_EXPBIT0_WORD 2
| | #define LDBL_EXPBIT0_BIT 0
| | #define HAVE_DECL_ISWBLANK 1
| | #define GNULIB_TEST_ISWBLANK 1
| | #define GNULIB_TEST_LDEXPL 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_MALLOC_GNU 1
| | #define GNULIB_MALLOC_GNU 1
| | #define HAVE_MALLOC_POSIX 1
| | #define GNULIB_TEST_MALLOC_POSIX 1
| | #define HAVE_RAW_DECL_ACOSF 1
| | #define HAVE_RAW_DECL_ASINF 1
| | #define HAVE_RAW_DECL_ATANF 1
| | #define HAVE_RAW_DECL_CBRT 1
| | #define HAVE_RAW_DECL_CBRTF 1
| | #define HAVE_RAW_DECL_CEILF 1
| | #define HAVE_RAW_DECL_COPYSIGN 1
| | #define HAVE_RAW_DECL_COPYSIGNF 1
| | #define HAVE_RAW_DECL_COSF 1
| | #define HAVE_RAW_DECL_COSHF 1
| | #define HAVE_RAW_DECL_EXPF 1
| | #define HAVE_RAW_DECL_EXP2 1
| | #define HAVE_RAW_DECL_EXPM1 1
| | #define HAVE_RAW_DECL_EXPM1F 1
| | #define HAVE_RAW_DECL_FABSF 1
| | #define HAVE_RAW_DECL_FLOORF 1
| | #define HAVE_RAW_DECL_FMOD 1
| | #define HAVE_RAW_DECL_FMODF 1
| | #define HAVE_RAW_DECL_FREXPF 1
| | #define HAVE_RAW_DECL_HYPOTF 1
| | #define HAVE_RAW_DECL_ILOGB 1
| | #define HAVE_RAW_DECL_ILOGBF 1
| | #define HAVE_RAW_DECL_LDEXPF 1
| | #define HAVE_RAW_DECL_LOG 1
| | #define HAVE_RAW_DECL_LOGF 1
| | #define HAVE_RAW_DECL_LOG10 1
| | #define HAVE_RAW_DECL_LOG10F 1
| | #define HAVE_RAW_DECL_LOG1P 1
| | #define HAVE_RAW_DECL_LOG1PF 1
| | #define HAVE_RAW_DECL_LOG2 1
| | #define HAVE_RAW_DECL_LOGB 1
| | #define HAVE_RAW_DECL_LOGBF 1
| | #define HAVE_RAW_DECL_MODF 1
| | #define HAVE_RAW_DECL_MODFF 1
| | #de