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
| | #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
| | #define HAVE_RAW_DECL_SINF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef sinl
| |   (void) sinl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether sinhf 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 sqrtf 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 sqrtl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:259: `sqrtl' undeclared (first use in this function)
| conftest.c:259: (Each undeclared identifier is reported only once
| conftest.c:259: 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef sqrtl
| |   (void) sqrtl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether tanf 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 tanl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:260: `tanl' undeclared (first use in this function)
| conftest.c:260: (Each undeclared identifier is reported only once
| conftest.c:260: 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef tanl
| |   (void) tanl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether tanhf 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 trunc is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:261: `trunc' undeclared (first use in this function)
| conftest.c:261: (Each undeclared identifier is reported only once
| conftest.c:261: 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef trunc
| |   (void) trunc;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:24889: checking whether truncf 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 truncl is declared without a macro
| configure:24906: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:262: `truncl' undeclared (first use in this function)
| conftest.c:262: (Each undeclared identifier is reported only once
| conftest.c:262: 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | /* end confdefs.h.  */
| | #include <math.h>
| | int
| | main ()
| | {
| | #undef truncl
| |   (void) truncl;
| |   ;
| |   return 0;
| | }
| configure:24914: result: no
| configure:25087: checking whether mbrtowc is declared
| configure:25087: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:275: `mbrtowc' undeclared (first use in this function)
| conftest.c:275: (Each undeclared identifier is reported only once
| conftest.c:275: for each function it appears in.)
| configure:25087: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 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>
| | 
| | 
| | int
| | main ()
| | {
| | #ifndef mbrtowc
| | #ifdef __cplusplus
| |   (void) mbrtowc;
| | #else
| |   (void) mbrtowc;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:25087: result: no
| configure:25696: checking whether mbsinit is declared
| configure:25696: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:278: `mbsinit' undeclared (first use in this function)
| conftest.c:278: (Each undeclared identifier is reported only once
| conftest.c:278: for each function it appears in.)
| configure:25696: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 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>
| | 
| | 
| | int
| | main ()
| | {
| | #ifndef mbsinit
| | #ifdef __cplusplus
| |   (void) mbsinit;
| | #else
| |   (void) mbsinit;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:25696: result: no
| configure:25779: checking whether mbswidth is declared in <wchar.h>
| configure:25807: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:277: `mbswidth' undeclared (first use in this function)
| conftest.c:277: (Each undeclared identifier is reported only once
| conftest.c:277: for each function it appears in.)
| configure:25807: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 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>
| | 
| | int
| | main ()
| | {
| | 
| |   char *p = (char *) mbswidth;
| |   return !p;
| | 
| |   ;
| |   return 0;
| | }
| configure:25814: result: no
| configure:25829: checking for mbstate_t
| configure:25860: result: no
| configure:25971: checking for obstacks
| configure:25992: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c:299:43: obstack.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:303: storage size of `mem' isn't known
| conftest.c:306: warning: implicit declaration of function `obstack_init'
| conftest.c:307: warning: implicit declaration of function `obstack_free'
| configure:25992: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 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 "obstack.h"
| | int
| | main ()
| | {
| | struct obstack mem;
| |                    #define obstack_chunk_alloc malloc
| |                    #define obstack_chunk_free free
| |                    obstack_init (&mem);
| |                    obstack_free (&mem, 0);
| |   ;
| |   return 0;
| | }
| configure:26000: result: no
| configure:26075: checking whether open recognizes a trailing slash
| configure:26114: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:26114: $? = 0
| configure:26114: ./conftest
| configure:26114: $? = 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
| | #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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | /* end confdefs.h.  */
| | 
| | #include <fcntl.h>
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | int main ()
| | {
| |   int result = 0;
| | #if HAVE_LSTAT
| |   if (open ("conftest.lnk/", O_RDONLY) != -1)
| |     result |= 1;
| | #endif
| |   if (open ("conftest.sl/", O_CREAT, 0600) >= 0)
| |     result |= 2;
| |   return result;
| | }
| configure:26126: result: no
| configure:26185: checking whether perror matches strerror
| configure:26216: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:26216: $? = 0
| configure:26216: ./conftest
| configure:26216: $? = 0
| configure:26233: result: yes
| configure:26312: checking whether posix_spawn_file_actions_addclose works
| configure:26339: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c:273:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:276: `posix_spawn_file_actions_t' undeclared (first use in this 
function)
| conftest.c:276: (Each undeclared identifier is reported only once
| conftest.c:276: for each function it appears in.)
| conftest.c:276: parse error before "actions"
| conftest.c:277: warning: implicit declaration of function 
`posix_spawn_file_actions_init'
| conftest.c:277: `actions' undeclared (first use in this function)
| conftest.c:279: warning: implicit declaration of function 
`posix_spawn_file_actions_addclose'
| configure:26339: $? = 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
| | #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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | /* end confdefs.h.  */
| | 
| | #include <spawn.h>
| | int main ()
| | {
| |   posix_spawn_file_actions_t actions;
| |   if (posix_spawn_file_actions_init (&actions) != 0)
| |     return 1;
| |   if (posix_spawn_file_actions_addclose (&actions, 10000000) == 0)
| |     return 2;
| |   return 0;
| | }
| configure:26350: result: no
| configure:26394: checking whether posix_spawn_file_actions_adddup2 works
| configure:26421: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c:274:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:277: `posix_spawn_file_actions_t' undeclared (first use in this 
function)
| conftest.c:277: (Each undeclared identifier is reported only once
| conftest.c:277: for each function it appears in.)
| conftest.c:277: parse error before "actions"
| conftest.c:278: warning: implicit declaration of function 
`posix_spawn_file_actions_init'
| conftest.c:278: `actions' undeclared (first use in this function)
| conftest.c:280: warning: implicit declaration of function 
`posix_spawn_file_actions_adddup2'
| configure:26421: $? = 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
| | #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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | /* end confdefs.h.  */
| | 
| | #include <spawn.h>
| | int main ()
| | {
| |   posix_spawn_file_actions_t actions;
| |   if (posix_spawn_file_actions_init (&actions) != 0)
| |     return 1;
| |   if (posix_spawn_file_actions_adddup2 (&actions, 10000000, 2) == 0)
| |     return 2;
| |   return 0;
| | }
| configure:26432: result: no
| configure:26476: checking whether posix_spawn_file_actions_addopen works
| configure:26505: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c:275:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:279: `posix_spawn_file_actions_t' undeclared (first use in this 
function)
| conftest.c:279: (Each undeclared identifier is reported only once
| conftest.c:279: for each function it appears in.)
| conftest.c:279: parse error before "actions"
| conftest.c:280: warning: implicit declaration of function 
`posix_spawn_file_actions_init'
| conftest.c:280: `actions' undeclared (first use in this function)
| conftest.c:282: warning: implicit declaration of function 
`posix_spawn_file_actions_addopen'
| configure:26505: $? = 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
| | #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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | /* end confdefs.h.  */
| | 
| | #include <spawn.h>
| | #include <fcntl.h>
| | int main ()
| | {
| |   posix_spawn_file_actions_t actions;
| |   if (posix_spawn_file_actions_init (&actions) != 0)
| |     return 1;
| |   if (posix_spawn_file_actions_addopen (&actions, 10000000, "foo", 0, 
O_RDONLY)
| |       == 0)
| |     return 2;
| |   return 0;
| | }
| configure:26516: result: no
| configure:26758: checking paths.h usability
| configure:26758: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:26758: $? = 0
| configure:26758: result: yes
| configure:26758: checking paths.h presence
| configure:26758: gcc -std=gnu99 -E  conftest.c
| configure:26758: $? = 0
| configure:26758: result: yes
| configure:26758: checking for paths.h
| configure:26758: result: yes
| configure:26771: checking for confstr
| configure:26771: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:26771: $? = 0
| configure:26771: result: yes
| configure:26771: checking for sched_setparam
| configure:26771: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:26771: $? = 0
| configure:26771: result: yes
| configure:26771: checking for sched_setscheduler
| configure:26771: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:26771: $? = 0
| configure:26771: result: yes
| configure:26771: checking for setegid
| configure:26771: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:26771: $? = 0
| configure:26771: result: yes
| configure:26771: checking for seteuid
| configure:26771: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:26771: $? = 0
| configure:26771: result: yes
| configure:26771: checking for vfork
| configure:26771: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:26771: $? = 0
| configure:26771: result: yes
| configure:26803: checking whether frexp works
| configure:26892: result: no
| configure:26904: checking whether ldexp can be used without linking with libm
| configure:26932: result: yes
| configure:26945: checking whether frexpl() can be used without linking with 
libm
| configure:26963: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c: In function `main':
| conftest.c:295: warning: implicit declaration of function `frexpl'
| /var/tmp//cc8TEw4V.o: In function `main':
| /usr/source/bison-2.7/conftest.c:295: undefined reference to `frexpl'
| configure:26963: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | /* end confdefs.h.  */
| | #include <math.h>
| |              long double x;
| | int
| | main ()
| | {
| | int e; return frexpl (x, &e) > 0;
| |   ;
| |   return 0;
| | }
| configure:26972: result: no
| configure:27126: checking whether ldexpl() can be used without linking with 
libm
| configure:27144: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c: In function `main':
| conftest.c:295: warning: implicit declaration of function `ldexpl'
| /var/tmp//ccKlnh8p.o: In function `main':
| /usr/source/bison-2.7/conftest.c:295: undefined reference to `ldexpl'
| configure:27144: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | /* end confdefs.h.  */
| | #include <math.h>
| |              long double x;
| | int
| | main ()
| | {
| | return ldexpl (x, -1) > 0;
| |   ;
| |   return 0;
| | }
| configure:27153: result: no
| configure:27271: checking whether program_invocation_name is declared
| configure:27271: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:301: `program_invocation_name' undeclared (first use in this 
function)
| conftest.c:301: (Each undeclared identifier is reported only once
| conftest.c:301: for each function it appears in.)
| configure:27271: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | /* end confdefs.h.  */
| | #include <errno.h>
| | 
| | int
| | main ()
| | {
| | #ifndef program_invocation_name
| | #ifdef __cplusplus
| |   (void) program_invocation_name;
| | #else
| |   (void) program_invocation_name;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:27271: result: no
| configure:27283: checking whether program_invocation_short_name is declared
| configure:27283: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:302: `program_invocation_short_name' undeclared (first use in this 
function)
| conftest.c:302: (Each undeclared identifier is reported only once
| conftest.c:302: for each function it appears in.)
| configure:27283: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | /* end confdefs.h.  */
| | #include <errno.h>
| | 
| | int
| | main ()
| | {
| | #ifndef program_invocation_short_name
| | #ifdef __cplusplus
| |   (void) program_invocation_short_name;
| | #else
| |   (void) program_invocation_short_name;
| | #endif
| | #endif
| | 
| |   ;
| |   return 0;
| | }
| configure:27283: result: no
| configure:27307: checking for raise
| configure:27307: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:27307: $? = 0
| configure:27307: result: yes
| configure:27327: checking for sigprocmask
| configure:27327: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:27327: $? = 0
| configure:27327: result: yes
| configure:27377: checking for rawmemchr
| configure:27377: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccoouQOd.o: In function `main':
| /usr/source/bison-2.7/conftest.c:330: undefined reference to `rawmemchr'
| configure:27377: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | /* end confdefs.h.  */
| | /* Define rawmemchr to an innocuous variant, in case <limits.h> declares 
rawmemchr.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define rawmemchr innocuous_rawmemchr
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char rawmemchr (); 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 rawmemchr
| | 
| | /* 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 rawmemchr ();
| | /* 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_rawmemchr || defined __stub___rawmemchr
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return rawmemchr ();
| |   ;
| |   return 0;
| | }
| configure:27377: result: no
| configure:27473: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:27473: $? = 0
| configure:27588: checking for struct sigaction.sa_sigaction
| configure:27588: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:27588: $? = 0
| configure:27588: result: yes
| configure:27729: checking for volatile sig_atomic_t
| configure:27729: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:27729: $? = 0
| configure:27729: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:308: parse error before ')' token
| configure:27729: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | /* end confdefs.h.  */
| | 
| | #include <signal.h>
| | 
| | 
| | int
| | main ()
| | {
| | if (sizeof ((volatile sig_atomic_t)))
| |         return 0;
| |   ;
| |   return 0;
| | }
| configure:27729: result: yes
| configure:27745: checking for sighandler_t
| configure:27745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:308: `sighandler_t' undeclared (first use in this function)
| conftest.c:308: (Each undeclared identifier is reported only once
| conftest.c:308: for each function it appears in.)
| configure:27745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | /* end confdefs.h.  */
| | 
| | #include <signal.h>
| | 
| | 
| | int
| | main ()
| | {
| | if (sizeof (sighandler_t))
| |      return 0;
| |   ;
| |   return 0;
| | }
| configure:27745: result: no
| configure:27759: checking whether pthread_sigmask is declared without a macro
| configure:27777: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:307: `pthread_sigmask' undeclared (first use in this function)
| conftest.c:307: (Each undeclared identifier is reported only once
| conftest.c:307: for each function it appears in.)
| configure:27777: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | /* end confdefs.h.  */
| | #include <signal.h>
| | 
| | int
| | main ()
| | {
| | #undef pthread_sigmask
| |   (void) pthread_sigmask;
| |   ;
| |   return 0;
| | }
| configure:27785: result: no
| configure:27759: checking whether sigaction is declared without a macro
| configure:27777: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:27777: $? = 0
| configure:27785: result: yes
| configure:27759: checking whether sigaddset is declared without a macro
| configure:27777: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:27777: $? = 0
| configure:27785: result: yes
| configure:27759: checking whether sigdelset is declared without a macro
| configure:27777: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:27777: $? = 0
| configure:27785: result: yes
| configure:27759: checking whether sigemptyset is declared without a macro
| configure:27777: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:27777: $? = 0
| configure:27785: result: yes
| configure:27759: checking whether sigfillset is declared without a macro
| configure:27777: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:27777: $? = 0
| configure:27785: result: yes
| configure:27759: checking whether sigismember is declared without a macro
| configure:27777: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:27777: $? = 0
| configure:27785: result: yes
| configure:27759: checking whether sigpending is declared without a macro
| configure:27777: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:27777: $? = 0
| configure:27785: result: yes
| configure:27759: checking whether sigprocmask is declared without a macro
| configure:27777: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:27777: $? = 0
| configure:27785: result: yes
| configure:27799: checking for signbit macro
| configure:27904: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c:319:3: #error "signbit should be a macro"
| conftest.c: In function `main':
| conftest.c:348: warning: implicit declaration of function `signbit'
| configure:27904: $? = 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
| | #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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | /* end confdefs.h.  */
| | 
| | #include <math.h>
| | /* If signbit is defined as a function, don't use it, since calling it for
| |    'float' or 'long double' arguments would involve conversions.
| |    If signbit is not declared at all but exists as a library function, don't
| |    use it, since the prototype may not match.
| |    If signbit is not declared at all but exists as a compiler built-in, 
don't
| |    use it, since it's preferable to use __builtin_signbit* (no warnings,
| |    no conversions).  */
| | #ifndef signbit
| | # error "signbit should be a macro"
| | #endif
| | #include <string.h>
| | 
| | /* Global variables.
| |    Needed because GCC 4 constant-folds __builtin_signbitl (literal)
| |    but cannot constant-fold            __builtin_signbitl (variable).  */
| | float vf;
| | double vd;
| | long double vl;
| | int main ()
| | {
| | /* HP cc on HP-UX 10.20 has a bug with the constant expression -0.0.
| |    So we use -p0f and -p0d instead.  */
| | float p0f = 0.0f;
| | float m0f = -p0f;
| | double p0d = 0.0;
| | double m0d = -p0d;
| | /* On HP-UX 10.20, negating 0.0L does not yield -0.0L.
| |    So we use another constant expression instead.
| |    But that expression does not work on other platforms, such as when
| |    cross-compiling to PowerPC on Mac OS X 10.5.  */
| | long double p0l = 0.0L;
| | #if defined __hpux || defined __sgi
| | long double m0l = -LDBL_MIN * LDBL_MIN;
| | #else
| | long double m0l = -p0l;
| | #endif
| |   int result = 0;
| |   if (signbit (vf)) /* link check */
| |     vf++;
| |   {
| |     float plus_inf = 1.0f / p0f;
| |     float minus_inf = -1.0f / p0f;
| |     if (!(!signbit (255.0f)
| |           && signbit (-255.0f)
| |           && !signbit (p0f)
| |           && (memcmp (&m0f, &p0f, sizeof (float)) == 0 || signbit (m0f))
| |           && !signbit (plus_inf)
| |           && signbit (minus_inf)))
| |       result |= 1;
| |   }
| |   if (signbit (vd)) /* link check */
| |     vd++;
| |   {
| |     double plus_inf = 1.0 / p0d;
| |     double minus_inf = -1.0 / p0d;
| |     if (!(!signbit (255.0)
| |           && signbit (-255.0)
| |           && !signbit (p0d)
| |           && (memcmp (&m0d, &p0d, sizeof (double)) == 0 || signbit (m0d))
| |           && !signbit (plus_inf)
| |           && signbit (minus_inf)))
| |       result |= 2;
| |   }
| |   if (signbit (vl)) /* link check */
| |     vl++;
| |   {
| |     long double plus_inf = 1.0L / p0l;
| |     long double minus_inf = -1.0L / p0l;
| |     if (signbit (255.0L))
| |       result |= 4;
| |     if (!signbit (-255.0L))
| |       result |= 4;
| |     if (signbit (p0l))
| |       result |= 8;
| |     if (!(memcmp (&m0l, &p0l, sizeof (long double)) == 0 || signbit (m0l)))
| |       result |= 16;
| |     if (signbit (plus_inf))
| |       result |= 32;
| |     if (!signbit (minus_inf))
| |       result |= 64;
| |   }
| |   return result;
| | }
| | 
| | 
| configure:27915: result: no
| configure:27917: checking for signbit compiler built-ins
| configure:28019: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c:313:3: #error "signbit should be three compiler built-ins"
| conftest.c: In function `main':
| conftest.c:342: warning: implicit declaration of function `signbit'
| configure:28019: $? = 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
| | #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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | /* end confdefs.h.  */
| | 
| | #if __GNUC__ >= 4
| | # define signbit(x)    (sizeof (x) == sizeof (long double) ? 
__builtin_signbitl (x) :     sizeof (x) == sizeof (double) ? __builtin_signbit 
(x) :     __builtin_signbitf (x))
| | #else
| | # error "signbit should be three compiler built-ins"
| | #endif
| | #include <string.h>
| | 
| | /* Global variables.
| |    Needed because GCC 4 constant-folds __builtin_signbitl (literal)
| |    but cannot constant-fold            __builtin_signbitl (variable).  */
| | float vf;
| | double vd;
| | long double vl;
| | int main ()
| | {
| | /* HP cc on HP-UX 10.20 has a bug with the constant expression -0.0.
| |    So we use -p0f and -p0d instead.  */
| | float p0f = 0.0f;
| | float m0f = -p0f;
| | double p0d = 0.0;
| | double m0d = -p0d;
| | /* On HP-UX 10.20, negating 0.0L does not yield -0.0L.
| |    So we use another constant expression instead.
| |    But that expression does not work on other platforms, such as when
| |    cross-compiling to PowerPC on Mac OS X 10.5.  */
| | long double p0l = 0.0L;
| | #if defined __hpux || defined __sgi
| | long double m0l = -LDBL_MIN * LDBL_MIN;
| | #else
| | long double m0l = -p0l;
| | #endif
| |   int result = 0;
| |   if (signbit (vf)) /* link check */
| |     vf++;
| |   {
| |     float plus_inf = 1.0f / p0f;
| |     float minus_inf = -1.0f / p0f;
| |     if (!(!signbit (255.0f)
| |           && signbit (-255.0f)
| |           && !signbit (p0f)
| |           && (memcmp (&m0f, &p0f, sizeof (float)) == 0 || signbit (m0f))
| |           && !signbit (plus_inf)
| |           && signbit (minus_inf)))
| |       result |= 1;
| |   }
| |   if (signbit (vd)) /* link check */
| |     vd++;
| |   {
| |     double plus_inf = 1.0 / p0d;
| |     double minus_inf = -1.0 / p0d;
| |     if (!(!signbit (255.0)
| |           && signbit (-255.0)
| |           && !signbit (p0d)
| |           && (memcmp (&m0d, &p0d, sizeof (double)) == 0 || signbit (m0d))
| |           && !signbit (plus_inf)
| |           && signbit (minus_inf)))
| |       result |= 2;
| |   }
| |   if (signbit (vl)) /* link check */
| |     vl++;
| |   {
| |     long double plus_inf = 1.0L / p0l;
| |     long double minus_inf = -1.0L / p0l;
| |     if (signbit (255.0L))
| |       result |= 4;
| |     if (!signbit (-255.0L))
| |       result |= 4;
| |     if (signbit (p0l))
| |       result |= 8;
| |     if (!(memcmp (&m0l, &p0l, sizeof (long double)) == 0 || signbit (m0l)))
| |       result |= 16;
| |     if (signbit (plus_inf))
| |       result |= 32;
| |     if (!signbit (minus_inf))
| |       result |= 64;
| |   }
| |   return result;
| | }
| | 
| | 
| configure:28030: result: no
| configure:28043: checking where to find the sign bit in a 'float'
| configure:28113: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:28113: $? = 0
| configure:28113: ./conftest
| configure:28113: $? = 0
| configure:28125: result: word 0 bit 31
| configure:28147: checking where to find the sign bit in a 'double'
| configure:28217: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:28217: $? = 0
| configure:28217: ./conftest
| configure:28217: $? = 0
| configure:28229: result: word 1 bit 31
| configure:28251: checking where to find the sign bit in a 'long double'
| configure:28321: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:28321: $? = 0
| configure:28321: ./conftest
| configure:28321: $? = 0
| configure:28333: result: word 2 bit 15
| configure:28559: checking for sigprocmask
| configure:28559: result: yes
| configure:28600: checking for stdint.h
| configure:28600: result: yes
| configure:28610: checking for SIZE_MAX
| configure:28681: result: yes
| configure:28697: checking for snprintf
| configure:28697: result: yes
| configure:28710: checking whether snprintf respects a size of 1
| configure:28744: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:28744: $? = 0
| configure:28744: ./conftest
| configure:28744: $? = 0
| configure:28755: result: yes
| configure:28765: checking whether printf supports POSIX/XSI format strings 
with positions
| configure:28808: result: no
| configure:28885: checking for snprintf
| configure:28885: result: yes
| configure:28898: checking whether snprintf truncates the result as in C99
| configure:28974: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:28974: $? = 0
| configure:28974: ./conftest
| configure:28974: $? = 0
| configure:28985: result: yes
| configure:28992: checking whether snprintf fully supports the 'n' directive
| configure:29066: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:29066: $? = 0
| configure:29066: ./conftest
| configure:29066: $? = 0
| configure:29077: result: yes
| configure:29083: checking whether snprintf respects a size of 1
| configure:29128: result: yes
| configure:29133: checking whether vsnprintf respects a zero size as in C99
| configure:29195: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:29195: $? = 0
| configure:29195: ./conftest
| configure:29195: $? = 0
| configure:29206: result: yes
| configure:29331: checking for nl_langinfo
| configure:29331: result: no
| configure:29497: checking for ptrdiff_t
| configure:29497: result: yes
| configure:29660: checking whether posix_spawn is declared without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawn' undeclared (first use in this function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawn
| |   (void) posix_spawn;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnp is declared without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnp' undeclared (first use in this function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnp
| |   (void) posix_spawnp;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_init is declared without a 
macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_init' undeclared (first use in this function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_init
| |   (void) posix_spawnattr_init;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_destroy is declared without 
a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_destroy' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_destroy
| |   (void) posix_spawnattr_destroy;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_getsigdefault is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_getsigdefault' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_getsigdefault
| |   (void) posix_spawnattr_getsigdefault;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_setsigdefault is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_setsigdefault' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_setsigdefault
| |   (void) posix_spawnattr_setsigdefault;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_getsigmask is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_getsigmask' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_getsigmask
| |   (void) posix_spawnattr_getsigmask;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_setsigmask is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_setsigmask' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_setsigmask
| |   (void) posix_spawnattr_setsigmask;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_getflags is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_getflags' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_getflags
| |   (void) posix_spawnattr_getflags;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_setflags is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_setflags' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_setflags
| |   (void) posix_spawnattr_setflags;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_getpgroup is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_getpgroup' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_getpgroup
| |   (void) posix_spawnattr_getpgroup;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_setpgroup is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_setpgroup' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_setpgroup
| |   (void) posix_spawnattr_setpgroup;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_getschedpolicy is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_getschedpolicy' undeclared (first use in 
this function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_getschedpolicy
| |   (void) posix_spawnattr_getschedpolicy;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_setschedpolicy is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_setschedpolicy' undeclared (first use in 
this function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_setschedpolicy
| |   (void) posix_spawnattr_setschedpolicy;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_getschedparam is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_getschedparam' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_getschedparam
| |   (void) posix_spawnattr_getschedparam;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawnattr_setschedparam is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawnattr_setschedparam' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawnattr_setschedparam
| |   (void) posix_spawnattr_setschedparam;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawn_file_actions_init is declared 
without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawn_file_actions_init' undeclared (first use in this 
function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawn_file_actions_init
| |   (void) posix_spawn_file_actions_init;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawn_file_actions_destroy is 
declared without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawn_file_actions_destroy' undeclared (first use in 
this function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawn_file_actions_destroy
| |   (void) posix_spawn_file_actions_destroy;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawn_file_actions_addopen is 
declared without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawn_file_actions_addopen' undeclared (first use in 
this function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawn_file_actions_addopen
| |   (void) posix_spawn_file_actions_addopen;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawn_file_actions_addclose is 
declared without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawn_file_actions_addclose' undeclared (first use in 
this function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawn_file_actions_addclose
| |   (void) posix_spawn_file_actions_addclose;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29660: checking whether posix_spawn_file_actions_adddup2 is 
declared without a macro
| configure:29678: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:329:19: spawn.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:335: `posix_spawn_file_actions_adddup2' undeclared (first use in 
this function)
| conftest.c:335: (Each undeclared identifier is reported only once
| conftest.c:335: for each function it appears in.)
| configure:29678: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 <spawn.h>
| | 
| | int
| | main ()
| | {
| | #undef posix_spawn_file_actions_adddup2
| |   (void) posix_spawn_file_actions_adddup2;
| |   ;
| |   return 0;
| | }
| configure:29686: result: no
| configure:29818: checking for nl_langinfo
| configure:29818: result: no
| configure:29984: checking for ptrdiff_t
| configure:29984: result: yes
| configure:30033: checking for ssize_t
| configure:30050: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30050: $? = 0
| configure:30057: result: yes
| configure:30068: checking whether stat handles trailing slashes on directories
| configure:30091: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:30091: $? = 0
| configure:30091: ./conftest
| configure:30091: $? = 0
| configure:30101: result: yes
| configure:30103: checking whether stat handles trailing slashes on files
| configure:30143: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:30143: $? = 0
| configure:30143: ./conftest
| configure:30143: $? = 2
| configure: program exited with status 2
| 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | /* end confdefs.h.  */
| | #include <sys/stat.h>
| | 
| | int
| | main ()
| | {
| | int result = 0;
| |       struct stat st;
| |       if (!stat ("conftest.tmp/", &st))
| |         result |= 1;
| | #if HAVE_LSTAT
| |       if (!stat ("conftest.lnk/", &st))
| |         result |= 2;
| | #endif
| |       return result;
| | 
| |   ;
| |   return 0;
| | }
| configure:30154: result: no
| configure:30232: checking whether NULL can be used in arbitrary expressions
| configure:30250: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30250: $? = 0
| configure:30257: result: yes
| configure:30452: checking whether dprintf is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:347: `dprintf' undeclared (first use in this function)
| conftest.c:347: (Each undeclared identifier is reported only once
| conftest.c:347: for each function it appears in.)
| configure:30470: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | 
| | int
| | main ()
| | {
| | #undef dprintf
| |   (void) dprintf;
| |   ;
| |   return 0;
| | }
| configure:30478: result: no
| configure:30452: checking whether fpurge is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30470: $? = 0
| configure:30478: result: yes
| configure:30452: checking whether fseeko is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:348: `fseeko' undeclared (first use in this function)
| conftest.c:348: (Each undeclared identifier is reported only once
| conftest.c:348: for each function it appears in.)
| configure:30470: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | 
| | int
| | main ()
| | {
| | #undef fseeko
| |   (void) fseeko;
| |   ;
| |   return 0;
| | }
| configure:30478: result: no
| configure:30452: checking whether ftello is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:348: `ftello' undeclared (first use in this function)
| conftest.c:348: (Each undeclared identifier is reported only once
| conftest.c:348: for each function it appears in.)
| configure:30470: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | 
| | int
| | main ()
| | {
| | #undef ftello
| |   (void) ftello;
| |   ;
| |   return 0;
| | }
| configure:30478: result: no
| configure:30452: checking whether getdelim is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:348: `getdelim' undeclared (first use in this function)
| conftest.c:348: (Each undeclared identifier is reported only once
| conftest.c:348: for each function it appears in.)
| configure:30470: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | 
| | int
| | main ()
| | {
| | #undef getdelim
| |   (void) getdelim;
| |   ;
| |   return 0;
| | }
| configure:30478: result: no
| configure:30452: checking whether getline is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:348: `getline' undeclared (first use in this function)
| conftest.c:348: (Each undeclared identifier is reported only once
| conftest.c:348: for each function it appears in.)
| configure:30470: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | 
| | int
| | main ()
| | {
| | #undef getline
| |   (void) getline;
| |   ;
| |   return 0;
| | }
| configure:30478: result: no
| configure:30452: checking whether gets is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30470: $? = 0
| configure:30478: result: yes
| configure:30452: checking whether pclose is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30470: $? = 0
| configure:30478: result: yes
| configure:30452: checking whether popen is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30470: $? = 0
| configure:30478: result: yes
| configure:30452: checking whether renameat is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:351: `renameat' undeclared (first use in this function)
| conftest.c:351: (Each undeclared identifier is reported only once
| conftest.c:351: for each function it appears in.)
| configure:30470: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | 
| | int
| | main ()
| | {
| | #undef renameat
| |   (void) renameat;
| |   ;
| |   return 0;
| | }
| configure:30478: result: no
| configure:30452: checking whether snprintf is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30470: $? = 0
| configure:30478: result: yes
| configure:30452: checking whether tmpfile is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30470: $? = 0
| configure:30478: result: yes
| configure:30452: checking whether vdprintf is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:353: `vdprintf' undeclared (first use in this function)
| conftest.c:353: (Each undeclared identifier is reported only once
| conftest.c:353: for each function it appears in.)
| configure:30470: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | /* end confdefs.h.  */
| | #include <stdio.h>
| | 
| | int
| | main ()
| | {
| | #undef vdprintf
| |   (void) vdprintf;
| |   ;
| |   return 0;
| | }
| configure:30478: result: no
| configure:30452: checking whether vsnprintf is declared without a macro
| configure:30470: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30470: $? = 0
| configure:30478: result: yes
| configure:30563: checking whether _Exit is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:360: `_Exit' undeclared (first use in this function)
| conftest.c:360: (Each undeclared identifier is reported only once
| conftest.c:360: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef _Exit
| |   (void) _Exit;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether atoll is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:360: `atoll' undeclared (first use in this function)
| conftest.c:360: (Each undeclared identifier is reported only once
| conftest.c:360: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef atoll
| |   (void) atoll;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether canonicalize_file_name is declared without 
a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:360: `canonicalize_file_name' undeclared (first use in this 
function)
| conftest.c:360: (Each undeclared identifier is reported only once
| conftest.c:360: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef canonicalize_file_name
| |   (void) canonicalize_file_name;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether getloadavg is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30563: checking whether getsubopt is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30563: checking whether grantpt is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:362: `grantpt' undeclared (first use in this function)
| conftest.c:362: (Each undeclared identifier is reported only once
| conftest.c:362: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef grantpt
| |   (void) grantpt;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether initstate is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30563: checking whether initstate_r is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:363: `initstate_r' undeclared (first use in this function)
| conftest.c:363: (Each undeclared identifier is reported only once
| conftest.c:363: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef initstate_r
| |   (void) initstate_r;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether mkdtemp is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:363: `mkdtemp' undeclared (first use in this function)
| conftest.c:363: (Each undeclared identifier is reported only once
| conftest.c:363: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef mkdtemp
| |   (void) mkdtemp;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether mkostemp is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:363: `mkostemp' undeclared (first use in this function)
| conftest.c:363: (Each undeclared identifier is reported only once
| conftest.c:363: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef mkostemp
| |   (void) mkostemp;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether mkostemps is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:363: `mkostemps' undeclared (first use in this function)
| conftest.c:363: (Each undeclared identifier is reported only once
| conftest.c:363: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef mkostemps
| |   (void) mkostemps;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether mkstemp is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:363: `mkstemp' undeclared (first use in this function)
| conftest.c:363: (Each undeclared identifier is reported only once
| conftest.c:363: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef mkstemp
| |   (void) mkstemp;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether mkstemps is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:363: `mkstemps' undeclared (first use in this function)
| conftest.c:363: (Each undeclared identifier is reported only once
| conftest.c:363: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef mkstemps
| |   (void) mkstemps;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether posix_openpt is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:363: `posix_openpt' undeclared (first use in this function)
| conftest.c:363: (Each undeclared identifier is reported only once
| conftest.c:363: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef posix_openpt
| |   (void) posix_openpt;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether ptsname is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:363: `ptsname' undeclared (first use in this function)
| conftest.c:363: (Each undeclared identifier is reported only once
| conftest.c:363: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef ptsname
| |   (void) ptsname;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether ptsname_r is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:363: `ptsname_r' undeclared (first use in this function)
| conftest.c:363: (Each undeclared identifier is reported only once
| conftest.c:363: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef ptsname_r
| |   (void) ptsname_r;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether random is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30563: checking whether random_r is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:364: `random_r' undeclared (first use in this function)
| conftest.c:364: (Each undeclared identifier is reported only once
| conftest.c:364: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef random_r
| |   (void) random_r;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether realpath is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30563: checking whether rpmatch is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:365: `rpmatch' undeclared (first use in this function)
| conftest.c:365: (Each undeclared identifier is reported only once
| conftest.c:365: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef rpmatch
| |   (void) rpmatch;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether setenv is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30563: checking whether setstate is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30563: checking whether setstate_r is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:367: `setstate_r' undeclared (first use in this function)
| conftest.c:367: (Each undeclared identifier is reported only once
| conftest.c:367: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef setstate_r
| |   (void) setstate_r;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether srandom is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30563: checking whether srandom_r is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:368: `srandom_r' undeclared (first use in this function)
| conftest.c:368: (Each undeclared identifier is reported only once
| conftest.c:368: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef srandom_r
| |   (void) srandom_r;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether strtod is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30563: checking whether strtoll is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30563: checking whether strtoull is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30563: checking whether unlockpt is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:371: `unlockpt' undeclared (first use in this function)
| conftest.c:371: (Each undeclared identifier is reported only once
| conftest.c:371: for each function it appears in.)
| configure:30587: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | /* end confdefs.h.  */
| | #include <stdlib.h>
| | #if HAVE_SYS_LOADAVG_H
| | # include <sys/loadavg.h>
| | #endif
| | #if HAVE_RANDOM_H
| | # include <random.h>
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef unlockpt
| |   (void) unlockpt;
| |   ;
| |   return 0;
| | }
| configure:30595: result: no
| configure:30563: checking whether unsetenv is declared without a macro
| configure:30587: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:30587: $? = 0
| configure:30595: result: yes
| configure:30615: checking for stpcpy
| configure:30615: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//cc6HTn46.o: In function `main':
| /usr/source/bison-2.7/conftest.c:394: undefined reference to `stpcpy'
| configure:30615: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | /* end confdefs.h.  */
| | /* Define stpcpy to an innocuous variant, in case <limits.h> declares 
stpcpy.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define stpcpy innocuous_stpcpy
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char stpcpy (); 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 stpcpy
| | 
| | /* 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 stpcpy ();
| | /* 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_stpcpy || defined __stub___stpcpy
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return stpcpy ();
| |   ;
| |   return 0;
| | }
| configure:30615: result: no
| configure:30664: checking for strchrnul
| configure:30664: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccQR2ncO.o: In function `main':
| /usr/source/bison-2.7/conftest.c:395: undefined reference to `strchrnul'
| configure:30664: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | /* end confdefs.h.  */
| | /* Define strchrnul to an innocuous variant, in case <limits.h> declares 
strchrnul.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define strchrnul innocuous_strchrnul
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char strchrnul (); 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 strchrnul
| | 
| | /* 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 strchrnul ();
| | /* 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_strchrnul || defined __stub___strchrnul
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return strchrnul ();
| |   ;
| |   return 0;
| | }
| configure:30664: result: no
| configure:31202: checking for strtoul
| configure:31202: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:31202: $? = 0
| configure:31202: result: yes
| configure:31230: checking for strverscmp
| configure:31230: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccTJktto.o: In function `main':
| /usr/source/bison-2.7/conftest.c:403: undefined reference to `strverscmp'
| configure:31230: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | /* end confdefs.h.  */
| | /* Define strverscmp to an innocuous variant, in case <limits.h> declares 
strverscmp.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define strverscmp innocuous_strverscmp
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char strverscmp (); 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 strverscmp
| | 
| | /* 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 strverscmp ();
| | /* 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_strverscmp || defined __stub___strverscmp
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return strverscmp ();
| |   ;
| |   return 0;
| | }
| configure:31230: result: no
| configure:31365: checking for nlink_t
| configure:31365: result: yes
| configure:31380: checking whether fchmodat is declared without a macro
| configure:31406: result: no
| configure:31380: checking whether fstat is declared without a macro
| configure:31406: result: yes
| configure:31380: checking whether fstatat is declared without a macro
| configure:31406: result: no
| configure:31380: checking whether futimens is declared without a macro
| configure:31406: result: no
| configure:31380: checking whether lchmod is declared without a macro
| configure:31406: result: no
| configure:31380: checking whether lstat is declared without a macro
| configure:31406: result: yes
| configure:31380: checking whether mkdirat is declared without a macro
| configure:31406: result: no
| configure:31380: checking whether mkfifo is declared without a macro
| configure:31406: result: yes
| configure:31380: checking whether mkfifoat is declared without a macro
| configure:31406: result: no
| configure:31380: checking whether mknod is declared without a macro
| configure:31406: result: no
| configure:31380: checking whether mknodat is declared without a macro
| configure:31406: result: no
| configure:31380: checking whether stat is declared without a macro
| configure:31406: result: yes
| configure:31380: checking whether utimensat is declared without a macro
| configure:31406: result: no
| configure:31579: checking whether waitpid is declared without a macro
| configure:31596: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31596: $? = 0
| configure:31604: result: yes
| configure:31715: checking whether chdir is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether chown is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether dup is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether dup2 is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether dup3 is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:397: `dup3' undeclared (first use in this function)
| conftest.c:397: (Each undeclared identifier is reported only once
| conftest.c:397: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef dup3
| |   (void) dup3;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether environ is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:397: `environ' undeclared (first use in this function)
| conftest.c:397: (Each undeclared identifier is reported only once
| conftest.c:397: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef environ
| |   (void) environ;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether euidaccess is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:397: `euidaccess' undeclared (first use in this function)
| conftest.c:397: (Each undeclared identifier is reported only once
| conftest.c:397: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef euidaccess
| |   (void) euidaccess;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether faccessat is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:397: `faccessat' undeclared (first use in this function)
| conftest.c:397: (Each undeclared identifier is reported only once
| conftest.c:397: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef faccessat
| |   (void) faccessat;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether fchdir is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether fchownat is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:398: `fchownat' undeclared (first use in this function)
| conftest.c:398: (Each undeclared identifier is reported only once
| conftest.c:398: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef fchownat
| |   (void) fchownat;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether fdatasync is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:398: `fdatasync' undeclared (first use in this function)
| conftest.c:398: (Each undeclared identifier is reported only once
| conftest.c:398: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef fdatasync
| |   (void) fdatasync;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether fsync is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether ftruncate is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether getcwd is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether getdomainname is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether getdtablesize is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether getgroups is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether gethostname is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether getlogin is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether getlogin_r is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether getpagesize is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether getusershell is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether setusershell is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether endusershell is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether group_member is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:411: `group_member' undeclared (first use in this function)
| conftest.c:411: (Each undeclared identifier is reported only once
| conftest.c:411: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef group_member
| |   (void) group_member;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether isatty is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether lchown is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:412: `lchown' undeclared (first use in this function)
| conftest.c:412: (Each undeclared identifier is reported only once
| conftest.c:412: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef lchown
| |   (void) lchown;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether link is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether linkat is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:413: `linkat' undeclared (first use in this function)
| conftest.c:413: (Each undeclared identifier is reported only once
| conftest.c:413: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef linkat
| |   (void) linkat;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether lseek is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether pipe is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether pipe2 is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:415: `pipe2' undeclared (first use in this function)
| conftest.c:415: (Each undeclared identifier is reported only once
| conftest.c:415: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef pipe2
| |   (void) pipe2;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether pread is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:415: `pread' undeclared (first use in this function)
| conftest.c:415: (Each undeclared identifier is reported only once
| conftest.c:415: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef pread
| |   (void) pread;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether pwrite is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:415: `pwrite' undeclared (first use in this function)
| conftest.c:415: (Each undeclared identifier is reported only once
| conftest.c:415: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef pwrite
| |   (void) pwrite;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether readlink is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether readlinkat is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:416: `readlinkat' undeclared (first use in this function)
| conftest.c:416: (Each undeclared identifier is reported only once
| conftest.c:416: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef readlinkat
| |   (void) readlinkat;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether rmdir is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether sethostname is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether sleep is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether symlink is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether symlinkat is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:420: `symlinkat' undeclared (first use in this function)
| conftest.c:420: (Each undeclared identifier is reported only once
| conftest.c:420: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef symlinkat
| |   (void) symlinkat;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether ttyname_r is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether unlink is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31715: checking whether unlinkat is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:422: `unlinkat' undeclared (first use in this function)
| conftest.c:422: (Each undeclared identifier is reported only once
| conftest.c:422: for each function it appears in.)
| configure:31745: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | /* end confdefs.h.  */
| | 
| | #if HAVE_UNISTD_H
| | # include <unistd.h>
| | #endif
| | /* Some systems declare various items in the wrong headers.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <fcntl.h>
| | # include <stdio.h>
| | # include <stdlib.h>
| | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
| | #  include <io.h>
| | # endif
| | #endif
| | 
| | int
| | main ()
| | {
| | #undef unlinkat
| |   (void) unlinkat;
| |   ;
| |   return 0;
| | }
| configure:31753: result: no
| configure:31715: checking whether usleep is declared without a macro
| configure:31745: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:31745: $? = 0
| configure:31753: result: yes
| configure:31880: checking for unsetenv
| configure:31880: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:31880: $? = 0
| configure:31880: result: yes
| configure:31893: checking for unsetenv() return type
| configure:31918: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c:415: conflicting types for `unsetenv'
| /usr/include/stdlib.h:179: previous declaration of `unsetenv'
| configure:31918: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | /* end confdefs.h.  */
| | 
| | #undef _BSD
| | #define _BSD 1 /* unhide unsetenv declaration in OSF/1 5.1 <stdlib.h> */
| | #include <stdlib.h>
| | extern
| | #ifdef __cplusplus
| | "C"
| | #endif
| | int unsetenv (const char *name);
| | 
| | int
| | main ()
| | {
| | 
| |   ;
| |   return 0;
| | }
| configure:31925: result: void
| configure:31934: checking whether unsetenv obeys POSIX
| configure:31979: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c: In function `main':
| conftest.c:425: wrong type argument to unary exclamation mark
| configure:31979: $? = 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
| | #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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | /* end confdefs.h.  */
| | 
| |        #include <stdlib.h>
| |        #include <errno.h>
| |        extern char **environ;
| | 
| | int
| | main ()
| | {
| | 
| |        char entry1[] = "a=1";
| |        char entry2[] = "b=2";
| |        char *env[] = { entry1, entry2, NULL };
| |        if (putenv ((char *) "a=1")) return 1;
| |        if (putenv (entry2)) return 2;
| |        entry2[0] = 'a';
| |        unsetenv ("a");
| |        if (getenv ("a")) return 3;
| |        if (!unsetenv ("") || errno != EINVAL) return 4;
| |        entry2[0] = 'b';
| |        environ = env;
| |        if (!getenv ("a")) return 5;
| |        entry2[0] = 'a';
| |        unsetenv ("a");
| |        if (getenv ("a")) return 6;
| | 
| |   ;
| |   return 0;
| | }
| configure:31989: result: no
| configure:32091: checking for ptrdiff_t
| configure:32091: result: yes
| configure:32226: checking for nl_langinfo
| configure:32226: result: no
| configure:32392: checking for ptrdiff_t
| configure:32392: result: yes
| configure:32448: checking for vsnprintf
| configure:32448: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:32448: $? = 0
| configure:32448: result: yes
| configure:32461: checking whether snprintf respects a size of 1
| configure:32506: result: yes
| configure:32516: checking whether printf supports POSIX/XSI format strings 
with positions
| configure:32559: result: no
| configure:32629: checking for vsnprintf
| configure:32629: result: yes
| configure:32642: checking whether snprintf truncates the result as in C99
| configure:32729: result: yes
| configure:32736: checking whether snprintf fully supports the 'n' directive
| configure:32821: result: yes
| configure:32827: checking whether snprintf respects a size of 1
| configure:32872: result: yes
| configure:32877: checking whether vsnprintf respects a zero size as in C99
| configure:32950: result: yes
| configure:33075: checking for nl_langinfo
| configure:33075: result: no
| configure:33241: checking for ptrdiff_t
| configure:33241: result: yes
| configure:33393: checking for nl_langinfo
| configure:33393: result: no
| configure:33559: checking for ptrdiff_t
| configure:33559: result: yes
| configure:33611: checking for waitid
| configure:33611: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccgtLL4K.o: In function `main':
| /usr/source/bison-2.7/conftest.c:470: undefined reference to `waitid'
| configure:33611: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | /* end confdefs.h.  */
| | /* Define waitid to an innocuous variant, in case <limits.h> declares 
waitid.
| |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| | #define waitid innocuous_waitid
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char waitid (); 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 waitid
| | 
| | /* 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 waitid ();
| | /* 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_waitid || defined __stub___waitid
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return waitid ();
| |   ;
| |   return 0;
| | }
| configure:33611: result: no
| configure:33752: checking whether btowc is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:453: `btowc' undeclared (first use in this function)
| conftest.c:453: (Each undeclared identifier is reported only once
| conftest.c:453: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef btowc
| |   (void) btowc;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wctob is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:453: `wctob' undeclared (first use in this function)
| conftest.c:453: (Each undeclared identifier is reported only once
| conftest.c:453: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wctob
| |   (void) wctob;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether mbsinit is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:453: `mbsinit' undeclared (first use in this function)
| conftest.c:453: (Each undeclared identifier is reported only once
| conftest.c:453: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef mbsinit
| |   (void) mbsinit;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether mbrtowc is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:453: `mbrtowc' undeclared (first use in this function)
| conftest.c:453: (Each undeclared identifier is reported only once
| conftest.c:453: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef mbrtowc
| |   (void) mbrtowc;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether mbrlen is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:453: `mbrlen' undeclared (first use in this function)
| conftest.c:453: (Each undeclared identifier is reported only once
| conftest.c:453: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef mbrlen
| |   (void) mbrlen;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether mbsrtowcs is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:453: `mbsrtowcs' undeclared (first use in this function)
| conftest.c:453: (Each undeclared identifier is reported only once
| conftest.c:453: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef mbsrtowcs
| |   (void) mbsrtowcs;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether mbsnrtowcs is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:453: `mbsnrtowcs' undeclared (first use in this function)
| conftest.c:453: (Each undeclared identifier is reported only once
| conftest.c:453: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef mbsnrtowcs
| |   (void) mbsnrtowcs;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcrtomb is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:453: `wcrtomb' undeclared (first use in this function)
| conftest.c:453: (Each undeclared identifier is reported only once
| conftest.c:453: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcrtomb
| |   (void) wcrtomb;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcsrtombs is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:453: `wcsrtombs' undeclared (first use in this function)
| conftest.c:453: (Each undeclared identifier is reported only once
| conftest.c:453: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcsrtombs
| |   (void) wcsrtombs;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcsnrtombs is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:453: `wcsnrtombs' undeclared (first use in this function)
| conftest.c:453: (Each undeclared identifier is reported only once
| conftest.c:453: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcsnrtombs
| |   (void) wcsnrtombs;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcwidth is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wmemchr is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:454: `wmemchr' undeclared (first use in this function)
| conftest.c:454: (Each undeclared identifier is reported only once
| conftest.c:454: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wmemchr
| |   (void) wmemchr;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wmemcmp is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:454: `wmemcmp' undeclared (first use in this function)
| conftest.c:454: (Each undeclared identifier is reported only once
| conftest.c:454: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wmemcmp
| |   (void) wmemcmp;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wmemcpy is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wmemmove is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:455: `wmemmove' undeclared (first use in this function)
| conftest.c:455: (Each undeclared identifier is reported only once
| conftest.c:455: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wmemmove
| |   (void) wmemmove;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wmemset is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:455: `wmemset' undeclared (first use in this function)
| conftest.c:455: (Each undeclared identifier is reported only once
| conftest.c:455: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wmemset
| |   (void) wmemset;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcslen is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wcsnlen is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:456: `wcsnlen' undeclared (first use in this function)
| conftest.c:456: (Each undeclared identifier is reported only once
| conftest.c:456: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcsnlen
| |   (void) wcsnlen;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcscpy is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wcpcpy is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:457: `wcpcpy' undeclared (first use in this function)
| conftest.c:457: (Each undeclared identifier is reported only once
| conftest.c:457: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcpcpy
| |   (void) wcpcpy;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcsncpy is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wcpncpy is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:458: `wcpncpy' undeclared (first use in this function)
| conftest.c:458: (Each undeclared identifier is reported only once
| conftest.c:458: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcpncpy
| |   (void) wcpncpy;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcscat is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wcsncat is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wcscmp is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wcsncmp is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wcscasecmp is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:462: `wcscasecmp' undeclared (first use in this function)
| conftest.c:462: (Each undeclared identifier is reported only once
| conftest.c:462: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | /* 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcscasecmp
| |   (void) wcscasecmp;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcsncasecmp is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:462: `wcsncasecmp' undeclared (first use in this function)
| conftest.c:462: (Each undeclared identifier is reported only once
| conftest.c:462: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | /* 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcsncasecmp
| |   (void) wcsncasecmp;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcscoll is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:462: `wcscoll' undeclared (first use in this function)
| conftest.c:462: (Each undeclared identifier is reported only once
| conftest.c:462: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | /* 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcscoll
| |   (void) wcscoll;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcsxfrm is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:462: `wcsxfrm' undeclared (first use in this function)
| conftest.c:462: (Each undeclared identifier is reported only once
| conftest.c:462: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | /* 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcsxfrm
| |   (void) wcsxfrm;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcsdup is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:462: `wcsdup' undeclared (first use in this function)
| conftest.c:462: (Each undeclared identifier is reported only once
| conftest.c:462: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | /* 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcsdup
| |   (void) wcsdup;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcschr is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wcsrchr is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wcscspn is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wcsspn is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:465: `wcsspn' undeclared (first use in this function)
| conftest.c:465: (Each undeclared identifier is reported only once
| conftest.c:465: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | #define HAVE_RAW_DECL_WCSCHR 1
| | #define HAVE_RAW_DECL_WCSRCHR 1
| | #define HAVE_RAW_DECL_WCSCSPN 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcsspn
| |   (void) wcsspn;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcspbrk is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33752: checking whether wcsstr is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:466: `wcsstr' undeclared (first use in this function)
| conftest.c:466: (Each undeclared identifier is reported only once
| conftest.c:466: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | #define HAVE_RAW_DECL_WCSCHR 1
| | #define HAVE_RAW_DECL_WCSRCHR 1
| | #define HAVE_RAW_DECL_WCSCSPN 1
| | #define HAVE_RAW_DECL_WCSPBRK 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcsstr
| |   (void) wcsstr;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcstok is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:466: `wcstok' undeclared (first use in this function)
| conftest.c:466: (Each undeclared identifier is reported only once
| conftest.c:466: for each function it appears in.)
| configure:33780: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | #define HAVE_RAW_DECL_WCSCHR 1
| | #define HAVE_RAW_DECL_WCSRCHR 1
| | #define HAVE_RAW_DECL_WCSCSPN 1
| | #define HAVE_RAW_DECL_WCSPBRK 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>.  */
| | #if !(defined __GLIBC__ && !defined __UCLIBC__)
| | # include <stddef.h>
| | # include <stdio.h>
| | # include <time.h>
| | #endif
| | #include <wchar.h>
| | 
| | int
| | main ()
| | {
| | #undef wcstok
| |   (void) wcstok;
| |   ;
| |   return 0;
| | }
| configure:33788: result: no
| configure:33752: checking whether wcswidth is declared without a macro
| configure:33780: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:33780: $? = 0
| configure:33788: result: yes
| configure:33896: checking whether iswcntrl works
| configure:33951: result: no
| configure:34023: checking for wctype_t
| configure:34059: result: yes
| configure:34065: checking for wctrans_t
| configure:34099: result: yes
| configure:34108: checking whether wctype is declared without a macro
| configure:34145: result: yes
| configure:34108: checking whether iswctype is declared without a macro
| configure:34145: result: yes
| configure:34108: checking whether wctrans is declared without a macro
| configure:34145: result: yes
| configure:34108: checking whether towctrans is declared without a macro
| configure:34145: result: yes
| configure:34168: checking whether wcwidth is declared
| configure:34168: result: yes
| configure:34197: checking whether wcwidth works reasonably in UTF-8 locales
| configure:34248: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:34248: $? = 0
| configure:34248: ./conftest
| configure:34248: $? = 0
| configure:34259: result: yes
| configure:34311: checking for stdint.h
| configure:34311: result: yes
| configure:34371: checking if malloc debugging is wanted
| configure:34389: result: no
| configure:34397: checking for sys/time.h
| configure:34397: result: yes
| configure:34397: checking sys/times.h usability
| configure:34397: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:34397: $? = 0
| configure:34397: result: yes
| configure:34397: checking sys/times.h presence
| configure:34397: gcc -std=gnu99 -E  conftest.c
| configure:34397: $? = 0
| configure:34397: result: yes
| configure:34397: checking for sys/times.h
| configure:34397: result: yes
| configure:34409: checking for sys/resource.h
| configure:34409: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:34409: $? = 0
| configure:34409: result: yes
| configure:34429: checking for times
| configure:34429: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| configure:34429: $? = 0
| configure:34429: result: yes
| configure:34439: checking whether getrusage is declared
| configure:34439: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:34439: $? = 0
| configure:34439: result: yes
| configure:34460: checking whether times is declared
| configure:34460: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:34460: $? = 0
| configure:34460: result: yes
| configure:34481: checking whether clock is declared
| configure:34481: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:34481: $? = 0
| configure:34481: result: yes
| configure:34502: checking whether sysconf is declared
| configure:34502: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:34502: $? = 0
| configure:34502: result: yes
| configure:34525: checking for clock_t
| configure:34525: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:34525: $? = 0
| configure:34525: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:513: parse error before ')' token
| configure:34525: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | #define HAVE_RAW_DECL_WCSCHR 1
| | #define HAVE_RAW_DECL_WCSRCHR 1
| | #define HAVE_RAW_DECL_WCSCSPN 1
| | #define HAVE_RAW_DECL_WCSPBRK 1
| | #define HAVE_RAW_DECL_WCSWIDTH 1
| | #define HAVE_RAW_DECL_WCTYPE 1
| | #define HAVE_RAW_DECL_ISWCTYPE 1
| | #define HAVE_RAW_DECL_WCTRANS 1
| | #define HAVE_RAW_DECL_TOWCTRANS 1
| | #define HAVE_DECL_WCWIDTH 1
| | #define GNULIB_TEST_WCWIDTH 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_SYS_TIMES_H 1
| | #define HAVE_SYS_RESOURCE_H 1
| | #define HAVE_TIMES 1
| | #define HAVE_DECL_GETRUSAGE 1
| | #define HAVE_DECL_TIMES 1
| | #define HAVE_DECL_CLOCK 1
| | #define HAVE_DECL_SYSCONF 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
| | #if HAVE_SYS_TIME_H
| | # include <sys/time.h>
| | #endif
| | #if HAVE_SYS_TIMES_H
| | # include <sys/times.h>
| | #endif
| | #if HAVE_SYS_RESOURCE_H
| | # include <sys/resource.h>
| | #endif
| | 
| | 
| | int
| | main ()
| | {
| | if (sizeof ((clock_t)))
| |         return 0;
| |   ;
| |   return 0;
| | }
| configure:34525: result: yes
| configure:34545: checking for struct tms
| configure:34545: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| configure:34545: $? = 0
| configure:34545: gcc -std=gnu99 -c -g -O2  conftest.c >&5
| conftest.c: In function `main':
| conftest.c:514: parse error before ')' token
| configure:34545: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | #define HAVE_RAW_DECL_WCSCHR 1
| | #define HAVE_RAW_DECL_WCSRCHR 1
| | #define HAVE_RAW_DECL_WCSCSPN 1
| | #define HAVE_RAW_DECL_WCSPBRK 1
| | #define HAVE_RAW_DECL_WCSWIDTH 1
| | #define HAVE_RAW_DECL_WCTYPE 1
| | #define HAVE_RAW_DECL_ISWCTYPE 1
| | #define HAVE_RAW_DECL_WCTRANS 1
| | #define HAVE_RAW_DECL_TOWCTRANS 1
| | #define HAVE_DECL_WCWIDTH 1
| | #define GNULIB_TEST_WCWIDTH 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_SYS_TIMES_H 1
| | #define HAVE_SYS_RESOURCE_H 1
| | #define HAVE_TIMES 1
| | #define HAVE_DECL_GETRUSAGE 1
| | #define HAVE_DECL_TIMES 1
| | #define HAVE_DECL_CLOCK 1
| | #define HAVE_DECL_SYSCONF 1
| | #define HAVE_CLOCK_T 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
| | #if HAVE_SYS_TIME_H
| | # include <sys/time.h>
| | #endif
| | #if HAVE_SYS_TIMES_H
| | # include <sys/times.h>
| | #endif
| | #if HAVE_SYS_RESOURCE_H
| | # include <sys/resource.h>
| | #endif
| | 
| | 
| | int
| | main ()
| | {
| | if (sizeof ((struct tms)))
| |         return 0;
| |   ;
| |   return 0;
| | }
| configure:34545: result: yes
| configure:34579: checking whether NLS is requested
| configure:34588: result: yes
| configure:34628: checking for msgfmt
| configure: trying /usr/bin/msgfmt...
| 0 translated messages.
| configure:34660: result: /usr/bin/msgfmt
| configure:34669: checking for gmsgfmt
| configure:34700: result: /usr/bin/msgfmt
| configure:34750: checking for xgettext
| configure: trying /usr/bin/xgettext...
| /usr/bin/xgettext: warning: file `/dev/null' extension `' is unknown; will 
try C
| configure:34782: result: /usr/bin/xgettext
| configure:34827: checking for msgmerge
| configure: trying /usr/bin/msgmerge...
| configure:34858: result: /usr/bin/msgmerge
| configure:35365: checking for CFPreferencesCopyAppValue
| configure:35383: gcc -std=gnu99 -o conftest -g -O2   conftest.c  
-Wl,-framework -Wl,CoreFoundation >&5
| conftest.c:468:42: CoreFoundation/CFPreferences.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:472: warning: implicit declaration of function 
`CFPreferencesCopyAppValue'
| conftest.c:472: `NULL' undeclared (first use in this function)
| conftest.c:472: (Each undeclared identifier is reported only once
| conftest.c:472: for each function it appears in.)
| configure:35383: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | #define HAVE_RAW_DECL_WCSCHR 1
| | #define HAVE_RAW_DECL_WCSRCHR 1
| | #define HAVE_RAW_DECL_WCSCSPN 1
| | #define HAVE_RAW_DECL_WCSPBRK 1
| | #define HAVE_RAW_DECL_WCSWIDTH 1
| | #define HAVE_RAW_DECL_WCTYPE 1
| | #define HAVE_RAW_DECL_ISWCTYPE 1
| | #define HAVE_RAW_DECL_WCTRANS 1
| | #define HAVE_RAW_DECL_TOWCTRANS 1
| | #define HAVE_DECL_WCWIDTH 1
| | #define GNULIB_TEST_WCWIDTH 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_SYS_TIMES_H 1
| | #define HAVE_SYS_RESOURCE_H 1
| | #define HAVE_TIMES 1
| | #define HAVE_DECL_GETRUSAGE 1
| | #define HAVE_DECL_TIMES 1
| | #define HAVE_DECL_CLOCK 1
| | #define HAVE_DECL_SYSCONF 1
| | #define HAVE_CLOCK_T 1
| | #define HAVE_STRUCT_TMS 1
| | /* end confdefs.h.  */
| | #include <CoreFoundation/CFPreferences.h>
| | int
| | main ()
| | {
| | CFPreferencesCopyAppValue(NULL, NULL)
| |   ;
| |   return 0;
| | }
| configure:35392: result: no
| configure:35399: checking for CFLocaleCopyCurrent
| configure:35417: gcc -std=gnu99 -o conftest -g -O2   conftest.c  
-Wl,-framework -Wl,CoreFoundation >&5
| conftest.c:468:37: CoreFoundation/CFLocale.h: No such file or directory
| conftest.c: In function `main':
| conftest.c:472: warning: implicit declaration of function 
`CFLocaleCopyCurrent'
| configure:35417: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | #define HAVE_RAW_DECL_WCSCHR 1
| | #define HAVE_RAW_DECL_WCSRCHR 1
| | #define HAVE_RAW_DECL_WCSCSPN 1
| | #define HAVE_RAW_DECL_WCSPBRK 1
| | #define HAVE_RAW_DECL_WCSWIDTH 1
| | #define HAVE_RAW_DECL_WCTYPE 1
| | #define HAVE_RAW_DECL_ISWCTYPE 1
| | #define HAVE_RAW_DECL_WCTRANS 1
| | #define HAVE_RAW_DECL_TOWCTRANS 1
| | #define HAVE_DECL_WCWIDTH 1
| | #define GNULIB_TEST_WCWIDTH 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_SYS_TIMES_H 1
| | #define HAVE_SYS_RESOURCE_H 1
| | #define HAVE_TIMES 1
| | #define HAVE_DECL_GETRUSAGE 1
| | #define HAVE_DECL_TIMES 1
| | #define HAVE_DECL_CLOCK 1
| | #define HAVE_DECL_SYSCONF 1
| | #define HAVE_CLOCK_T 1
| | #define HAVE_STRUCT_TMS 1
| | /* end confdefs.h.  */
| | #include <CoreFoundation/CFLocale.h>
| | int
| | main ()
| | {
| | CFLocaleCopyCurrent();
| |   ;
| |   return 0;
| | }
| configure:35426: result: no
| configure:35475: checking for GNU gettext in libc
| configure:35499: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| conftest.c: In function `main':
| conftest.c:479: warning: implicit declaration of function `ngettext'
| conftest.c:479: invalid type argument of `unary *'
| configure:35499: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | #define HAVE_RAW_DECL_WCSCHR 1
| | #define HAVE_RAW_DECL_WCSRCHR 1
| | #define HAVE_RAW_DECL_WCSCSPN 1
| | #define HAVE_RAW_DECL_WCSPBRK 1
| | #define HAVE_RAW_DECL_WCSWIDTH 1
| | #define HAVE_RAW_DECL_WCTYPE 1
| | #define HAVE_RAW_DECL_ISWCTYPE 1
| | #define HAVE_RAW_DECL_WCTRANS 1
| | #define HAVE_RAW_DECL_TOWCTRANS 1
| | #define HAVE_DECL_WCWIDTH 1
| | #define GNULIB_TEST_WCWIDTH 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_SYS_TIMES_H 1
| | #define HAVE_SYS_RESOURCE_H 1
| | #define HAVE_TIMES 1
| | #define HAVE_DECL_GETRUSAGE 1
| | #define HAVE_DECL_TIMES 1
| | #define HAVE_DECL_CLOCK 1
| | #define HAVE_DECL_SYSCONF 1
| | #define HAVE_CLOCK_T 1
| | #define HAVE_STRUCT_TMS 1
| | /* end confdefs.h.  */
| | 
| | #include <libintl.h>
| | 
| | extern int _nl_msg_cat_cntr;
| | extern int *_nl_domain_bindings;
| | 
| | int
| | main ()
| | {
| | 
| | bindtextdomain ("", "");
| | return * gettext ("") + * ngettext ("", "", 0) + _nl_msg_cat_cntr + 
*_nl_domain_bindings
| | 
| |   ;
| |   return 0;
| | }
| configure:35508: result: no
| configure:35542: checking for iconv
| configure:35566: gcc -std=gnu99 -o conftest -g -O2   conftest.c  >&5
| /var/tmp//ccT21t6e.o: In function `main':
| /usr/source/bison-2.7/conftest.c:475: undefined reference to `libiconv_open'
| /usr/source/bison-2.7/conftest.c:476: undefined reference to `libiconv'
| /usr/source/bison-2.7/conftest.c:477: undefined reference to `libiconv_close'
| configure:35566: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | #define HAVE_RAW_DECL_WCSCHR 1
| | #define HAVE_RAW_DECL_WCSRCHR 1
| | #define HAVE_RAW_DECL_WCSCSPN 1
| | #define HAVE_RAW_DECL_WCSPBRK 1
| | #define HAVE_RAW_DECL_WCSWIDTH 1
| | #define HAVE_RAW_DECL_WCTYPE 1
| | #define HAVE_RAW_DECL_ISWCTYPE 1
| | #define HAVE_RAW_DECL_WCTRANS 1
| | #define HAVE_RAW_DECL_TOWCTRANS 1
| | #define HAVE_DECL_WCWIDTH 1
| | #define GNULIB_TEST_WCWIDTH 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_SYS_TIMES_H 1
| | #define HAVE_SYS_RESOURCE_H 1
| | #define HAVE_TIMES 1
| | #define HAVE_DECL_GETRUSAGE 1
| | #define HAVE_DECL_TIMES 1
| | #define HAVE_DECL_CLOCK 1
| | #define HAVE_DECL_SYSCONF 1
| | #define HAVE_CLOCK_T 1
| | #define HAVE_STRUCT_TMS 1
| | /* end confdefs.h.  */
| | 
| | #include <stdlib.h>
| | #include <iconv.h>
| | 
| | int
| | main ()
| | {
| | iconv_t cd = iconv_open("","");
| |            iconv(cd,NULL,NULL,NULL,NULL);
| |            iconv_close(cd);
| |   ;
| |   return 0;
| | }
| configure:35590: gcc -std=gnu99 -o conftest -g -O2   conftest.c  
/usr/lib/libiconv.so >&5
| configure:35590: $? = 0
| configure:35600: result: yes
| configure:35603: checking for working iconv
| configure:35723: gcc -std=gnu99 -o conftest -g -O2   conftest.c  
/usr/lib/libiconv.so >&5
| configure:35723: $? = 0
| configure:35723: ./conftest
| configure:35723: $? = 0
| configure:35735: result: yes
| configure:35750: checking how to link with libiconv
| configure:35752: result: /usr/lib/libiconv.so
| configure:36224: checking for GNU gettext in libintl
| configure:36256: gcc -std=gnu99 -o conftest -g -O2    conftest.c  
/usr/lib/libintl.so >&5
| conftest.c: In function `main':
| conftest.c:484: warning: implicit declaration of function `ngettext'
| conftest.c:484: invalid type argument of `unary *'
| configure:36256: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | #define HAVE_RAW_DECL_WCSCHR 1
| | #define HAVE_RAW_DECL_WCSRCHR 1
| | #define HAVE_RAW_DECL_WCSCSPN 1
| | #define HAVE_RAW_DECL_WCSPBRK 1
| | #define HAVE_RAW_DECL_WCSWIDTH 1
| | #define HAVE_RAW_DECL_WCTYPE 1
| | #define HAVE_RAW_DECL_ISWCTYPE 1
| | #define HAVE_RAW_DECL_WCTRANS 1
| | #define HAVE_RAW_DECL_TOWCTRANS 1
| | #define HAVE_DECL_WCWIDTH 1
| | #define GNULIB_TEST_WCWIDTH 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_SYS_TIMES_H 1
| | #define HAVE_SYS_RESOURCE_H 1
| | #define HAVE_TIMES 1
| | #define HAVE_DECL_GETRUSAGE 1
| | #define HAVE_DECL_TIMES 1
| | #define HAVE_DECL_CLOCK 1
| | #define HAVE_DECL_SYSCONF 1
| | #define HAVE_CLOCK_T 1
| | #define HAVE_STRUCT_TMS 1
| | #define HAVE_ICONV 1
| | /* end confdefs.h.  */
| | 
| | #include <libintl.h>
| | 
| | extern int _nl_msg_cat_cntr;
| | extern
| | #ifdef __cplusplus
| | "C"
| | #endif
| | const char *_nl_expand_alias (const char *);
| | 
| | int
| | main ()
| | {
| | 
| | bindtextdomain ("", "");
| | return * gettext ("") + * ngettext ("", "", 0) + _nl_msg_cat_cntr + 
*_nl_expand_alias ("")
| | 
| |   ;
| |   return 0;
| | }
| configure:36288: gcc -std=gnu99 -o conftest -g -O2    conftest.c  
/usr/lib/libintl.so /usr/lib/libiconv.so >&5
| conftest.c: In function `main':
| conftest.c:484: warning: implicit declaration of function `ngettext'
| conftest.c:484: invalid type argument of `unary *'
| configure:36288: $? = 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
| | #define HAVE_RAW_DECL_SINF 1
| | #define HAVE_RAW_DECL_SINHF 1
| | #define HAVE_RAW_DECL_SQRTF 1
| | #define HAVE_RAW_DECL_TANF 1
| | #define HAVE_RAW_DECL_TANHF 1
| | #define HAVE_RAW_DECL_TRUNCF 1
| | #define HAVE_DECL_MBRTOWC 0
| | #define GNULIB_TEST_MBRTOWC 1
| | #define GNULIB_TEST_MBSCHR 1
| | #define HAVE_DECL_MBSINIT 0
| | #define GNULIB_TEST_MBSINIT 1
| | #define GNULIB_TEST_MBSRCHR 1
| | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| | #define mbstate_t int
| | #define GNULIB_TEST_MEMCHR 1
| | #define GNULIB_TEST_OBSTACK_PRINTF 1
| | #define OPEN_TRAILING_SLASH_BUG 1
| | #define GNULIB_TEST_OPEN 1
| | #define GNULIB_TEST_PERROR 1
| | #define GNULIB_TEST_PIPE2 1
| | #define GNULIB_PIPE2_SAFER 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| | #define HAVE_PATHS_H 1
| | #define HAVE_CONFSTR 1
| | #define HAVE_SCHED_SETPARAM 1
| | #define HAVE_SCHED_SETSCHEDULER 1
| | #define HAVE_SETEGID 1
| | #define HAVE_SETEUID 1
| | #define HAVE_VFORK 1
| | #define GNULIB_TEST_POSIX_SPAWNP 1
| | #define HAVE_LDEXP_IN_LIBC 1
| | #define REPLACE_PRINTF_POSIX 1
| | #define GNULIB_TEST_PRINTF_POSIX 1
| | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| | #define HAVE_RAISE 1
| | #define GNULIB_TEST_RAISE 1
| | #define GNULIB_TEST_RAWMEMCHR 1
| | #define HAVE_REALLOC_POSIX 1
| | #define GNULIB_TEST_REALLOC_POSIX 1
| | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| | #define GNULIB_TEST_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGACTION 1
| | #define HAVE_RAW_DECL_SIGADDSET 1
| | #define HAVE_RAW_DECL_SIGDELSET 1
| | #define HAVE_RAW_DECL_SIGEMPTYSET 1
| | #define HAVE_RAW_DECL_SIGFILLSET 1
| | #define HAVE_RAW_DECL_SIGISMEMBER 1
| | #define HAVE_RAW_DECL_SIGPENDING 1
| | #define HAVE_RAW_DECL_SIGPROCMASK 1
| | #define FLT_SIGNBIT_WORD 0
| | #define FLT_SIGNBIT_BIT 31
| | #define DBL_SIGNBIT_WORD 1
| | #define DBL_SIGNBIT_BIT 31
| | #define LDBL_SIGNBIT_WORD 2
| | #define LDBL_SIGNBIT_BIT 15
| | #define GNULIB_TEST_SIGNBIT 1
| | #define GNULIB_TEST_SIGPROCMASK 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SNPRINTF 1
| | #define GNULIB_TEST_SNPRINTF 1
| | #define GNULIB_SNPRINTF 1
| | #define HAVE_SNPRINTF 1
| | #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| | #define REPLACE_FUNC_STAT_FILE 1
| | #define GNULIB_TEST_STAT 1
| | #define GNULIB_FSCANF 1
| | #define GNULIB_SCANF 1
| | #define HAVE_RAW_DECL_FPURGE 1
| | #define HAVE_RAW_DECL_GETS 1
| | #define HAVE_RAW_DECL_PCLOSE 1
| | #define HAVE_RAW_DECL_POPEN 1
| | #define HAVE_RAW_DECL_SNPRINTF 1
| | #define HAVE_RAW_DECL_TMPFILE 1
| | #define HAVE_RAW_DECL_VSNPRINTF 1
| | #define HAVE_RAW_DECL_GETLOADAVG 1
| | #define HAVE_RAW_DECL_GETSUBOPT 1
| | #define HAVE_RAW_DECL_INITSTATE 1
| | #define HAVE_RAW_DECL_RANDOM 1
| | #define HAVE_RAW_DECL_REALPATH 1
| | #define HAVE_RAW_DECL_SETENV 1
| | #define HAVE_RAW_DECL_SETSTATE 1
| | #define HAVE_RAW_DECL_SRANDOM 1
| | #define HAVE_RAW_DECL_STRTOD 1
| | #define HAVE_RAW_DECL_STRTOLL 1
| | #define HAVE_RAW_DECL_STRTOULL 1
| | #define HAVE_RAW_DECL_UNSETENV 1
| | #define GNULIB_TEST_STPCPY 1
| | #define GNULIB_TEST_STRCHRNUL 1
| | #define GNULIB_TEST_STRDUP 1
| | #define GNULIB_STRERROR 1
| | #define GNULIB_TEST_STRERROR 1
| | #define GNULIB_TEST_STRERROR_R 1
| | #define GNULIB_TEST_STRNDUP 1
| | #define GNULIB_TEST_STRNLEN 1
| | #define HAVE_STRTOUL 1
| | #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| | #define HAVE_RAW_DECL_CHDIR 1
| | #define HAVE_RAW_DECL_CHOWN 1
| | #define HAVE_RAW_DECL_DUP 1
| | #define HAVE_RAW_DECL_DUP2 1
| | #define HAVE_RAW_DECL_FCHDIR 1
| | #define HAVE_RAW_DECL_FSYNC 1
| | #define HAVE_RAW_DECL_FTRUNCATE 1
| | #define HAVE_RAW_DECL_GETCWD 1
| | #define HAVE_RAW_DECL_GETDOMAINNAME 1
| | #define HAVE_RAW_DECL_GETDTABLESIZE 1
| | #define HAVE_RAW_DECL_GETGROUPS 1
| | #define HAVE_RAW_DECL_GETHOSTNAME 1
| | #define HAVE_RAW_DECL_GETLOGIN 1
| | #define HAVE_RAW_DECL_GETLOGIN_R 1
| | #define HAVE_RAW_DECL_GETPAGESIZE 1
| | #define HAVE_RAW_DECL_GETUSERSHELL 1
| | #define HAVE_RAW_DECL_SETUSERSHELL 1
| | #define HAVE_RAW_DECL_ENDUSERSHELL 1
| | #define HAVE_RAW_DECL_ISATTY 1
| | #define HAVE_RAW_DECL_LINK 1
| | #define HAVE_RAW_DECL_LSEEK 1
| | #define HAVE_RAW_DECL_PIPE 1
| | #define HAVE_RAW_DECL_READLINK 1
| | #define HAVE_RAW_DECL_RMDIR 1
| | #define HAVE_RAW_DECL_SETHOSTNAME 1
| | #define HAVE_RAW_DECL_SLEEP 1
| | #define HAVE_RAW_DECL_SYMLINK 1
| | #define HAVE_RAW_DECL_TTYNAME_R 1
| | #define HAVE_RAW_DECL_UNLINK 1
| | #define HAVE_RAW_DECL_USLEEP 1
| | #define USE_UNLOCKED_IO 1
| | #define HAVE_UNSETENV 1
| | #define VOID_UNSETENV 1
| | #define GNULIB_TEST_UNSETENV 1
| | #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 GNULIB_TEST_VFPRINTF_POSIX 1
| | #define HAVE_VSNPRINTF 1
| | #define GNULIB_TEST_VSNPRINTF 1
| | #define HAVE_VSNPRINTF 1
| | #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| | #define GNULIB_TEST_WAITPID 1
| | #define HAVE_RAW_DECL_WCWIDTH 1
| | #define HAVE_RAW_DECL_WMEMCPY 1
| | #define HAVE_RAW_DECL_WCSLEN 1
| | #define HAVE_RAW_DECL_WCSCPY 1
| | #define HAVE_RAW_DECL_WCSNCPY 1
| | #define HAVE_RAW_DECL_WCSCAT 1
| | #define HAVE_RAW_DECL_WCSNCAT 1
| | #define HAVE_RAW_DECL_WCSCMP 1
| | #define HAVE_RAW_DECL_WCSNCMP 1
| | #define HAVE_RAW_DECL_WCSCHR 1
| | #define HAVE_RAW_DECL_WCSRCHR 1
| | #define HAVE_RAW_DECL_WCSCSPN 1
| | #define HAVE_RAW_DECL_WCSPBRK 1
| | #define HAVE_RAW_DECL_WCSWIDTH 1
| | #define HAVE_RAW_DECL_WCTYPE 1
| | #define HAVE_RAW_DECL_ISWCTYPE 1
| | #define HAVE_RAW_DECL_WCTRANS 1
| | #define HAVE_RAW_DECL_TOWCTRANS 1
| | #define HAVE_DECL_WCWIDTH 1
| | #define GNULIB_TEST_WCWIDTH 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_SYS_TIME_H 1
| | #define HAVE_SYS_TIMES_H 1
| | #define HAVE_SYS_RESOURCE_H 1
| | #define HAVE_TIMES 1
| | #define HAVE_DECL_GETRUSAGE 1
| | #define HAVE_DECL_TIMES 1
| | #define HAVE_DECL_CLOCK 1
| | #define HAVE_DECL_SYSCONF 1
| | #define HAVE_CLOCK_T 1
| | #define HAVE_STRUCT_TMS 1
| | #define HAVE_ICONV 1
| | /* end confdefs.h.  */
| | 
| | #include <libintl.h>
| | 
| | extern int _nl_msg_cat_cntr;
| | extern
| | #ifdef __cplusplus
| | "C"
| | #endif
| | const char *_nl_expand_alias (const char *);
| | 
| | int
| | main ()
| | {
| | 
| | bindtextdomain ("", "");
| | return * gettext ("") + * ngettext ("", "", 0) + _nl_msg_cat_cntr + 
*_nl_expand_alias ("")
| | 
| |   ;
| |   return 0;
| | }
| configure:36301: result: no
| configure:36336: checking whether to use NLS
| configure:36338: result: no
| configure:36458: checking for valgrind
| configure:36488: result: no
| configure:36514: checking for Java virtual machine
| configure:36717: result: no
| configure:36812: checking for Java compiler
| configure:37018: found /usr/bin/gcj
| configure:37105: gcj -C -d . conftestlib.java
| configure:37287: result: no
| configure:37298: checking for Java virtual machine
| configure:37501: result: no
| configure:37624: checking that generated files are newer than configure
| configure:37630: result: done
| configure:37734: creating ./config.status
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by GNU Bison config.status 2.7, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status 
| 
| on doctor.nl2k.ab.ca
| 
| config.status:2426: creating javacomp.sh
| config.status:2426: creating javaexec.sh
| config.status:2426: creating runtime-po/Makefile.in
| config.status:2426: creating etc/bench.pl
| config.status:2426: creating tests/Makefile
| config.status:2426: creating tests/atlocal
| config.status:2426: creating tests/bison
| config.status:2426: creating Makefile
| config.status:2426: creating build-aux/Makefile
| config.status:2426: creating po/Makefile.in
| config.status:2426: creating data/Makefile
| config.status:2426: creating etc/Makefile
| config.status:2426: creating examples/Makefile
| config.status:2426: creating examples/calc++/Makefile
| config.status:2426: creating lib/Makefile
| config.status:2426: creating src/Makefile
| config.status:2426: creating doc/Makefile
| config.status:2426: creating doc/yacc.1
| config.status:2426: creating lib/config.h
| config.status:2686: executing depfiles commands
| config.status:2686: executing po-directories commands
| config.status:2686: executing tests/atconfig commands
| 
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
| 
| ac_cv_build=i386-pc-bsdi4.3
| ac_cv_c_bigendian=no
| ac_cv_c_compiler_gnu=yes
| ac_cv_c_inline=inline
| ac_cv_c_restrict=__restrict
| ac_cv_cxx_compiler_gnu=yes
| ac_cv_env_CCC_set=
| ac_cv_env_CCC_value=
| ac_cv_env_CC_set=
| ac_cv_env_CC_value=
| ac_cv_env_CFLAGS_set=
| ac_cv_env_CFLAGS_value=
| ac_cv_env_CPPFLAGS_set=
| ac_cv_env_CPPFLAGS_value=
| ac_cv_env_CPP_set=
| ac_cv_env_CPP_value=
| ac_cv_env_CXXFLAGS_set=
| ac_cv_env_CXXFLAGS_value=
| ac_cv_env_CXX_set=
| ac_cv_env_CXX_value=
| ac_cv_env_LDFLAGS_set=
| ac_cv_env_LDFLAGS_value=
| ac_cv_env_LIBS_set=
| ac_cv_env_LIBS_value=
| ac_cv_env_M4_set=
| ac_cv_env_M4_value=
| ac_cv_env_YACC_set=
| ac_cv_env_YACC_value=
| ac_cv_env_YFLAGS_set=
| ac_cv_env_YFLAGS_value=
| ac_cv_env_build_alias_set=
| ac_cv_env_build_alias_value=
| ac_cv_env_host_alias_set=
| ac_cv_env_host_alias_value=
| ac_cv_env_target_alias_set=
| ac_cv_env_target_alias_value=
| ac_cv_func___fpending=no
| ac_cv_func___fseterr=no
| ac_cv_func___xpg_strerror_r=no
| ac_cv_func__set_invalid_parameter_handler=no
| ac_cv_func_alarm=yes
| ac_cv_func_alloca_works=yes
| ac_cv_func_catgets=no
| ac_cv_func_confstr=yes
| ac_cv_func_fcntl=yes
| ac_cv_func_flockfile=yes
| ac_cv_func_funlockfile=yes
| ac_cv_func_getdelim=no
| ac_cv_func_getdtablesize=yes
| ac_cv_func_getline=no
| ac_cv_func_getopt_long_only=no
| ac_cv_func_isascii=yes
| ac_cv_func_iswblank=no
| ac_cv_func_iswcntrl=yes
| ac_cv_func_lstat=yes
| ac_cv_func_malloc_0_nonnull=yes
| ac_cv_func_mbrtowc=no
| ac_cv_func_mbsinit=no
| ac_cv_func_mmap=yes
| ac_cv_func_mprotect=yes
| ac_cv_func_nl_langinfo=no
| ac_cv_func_obstack=no
| ac_cv_func_obstack_printf=no
| ac_cv_func_pipe2=no
| ac_cv_func_pipe=yes
| ac_cv_func_posix_spawn=no
| ac_cv_func_raise=yes
| ac_cv_func_rawmemchr=no
| ac_cv_func_sched_setparam=yes
| ac_cv_func_sched_setscheduler=yes
| ac_cv_func_setegid=yes
| ac_cv_func_seteuid=yes
| ac_cv_func_setlocale=yes
| ac_cv_func_sigaction=yes
| ac_cv_func_sigaltstack=yes
| ac_cv_func_siginterrupt=yes
| ac_cv_func_sigprocmask=yes
| ac_cv_func_snprintf=yes
| ac_cv_func_stpcpy=no
| ac_cv_func_strchrnul=no
| ac_cv_func_strdup=yes
| ac_cv_func_strerror_r=no
| ac_cv_func_strerror_r_char_p=no
| ac_cv_func_strndup=no
| ac_cv_func_strnlen=no
| ac_cv_func_strtoul=yes
| ac_cv_func_strverscmp=no
| ac_cv_func_symlink=yes
| ac_cv_func_times=yes
| ac_cv_func_unsetenv=yes
| ac_cv_func_vasnprintf=no
| ac_cv_func_vfork=yes
| ac_cv_func_vsnprintf=yes
| ac_cv_func_waitid=no
| ac_cv_func_wcrtomb=no
| ac_cv_func_wcslen=yes
| ac_cv_func_wcsnlen=no
| ac_cv_func_wcwidth=yes
| ac_cv_gnu_library_2_1=no
| ac_cv_have_decl___fpending=no
| ac_cv_have_decl__snprintf=no
| ac_cv_have_decl_acosf=yes
| ac_cv_have_decl_asinf=yes
| ac_cv_have_decl_atanf=yes
| ac_cv_have_decl_cbrt=yes
| ac_cv_have_decl_cbrtf=yes
| ac_cv_have_decl_ceilf=yes
| ac_cv_have_decl_chdir=yes
| ac_cv_have_decl_chown=yes
| ac_cv_have_decl_clearerr_unlocked=no
| ac_cv_have_decl_clock=yes
| ac_cv_have_decl_copysign=yes
| ac_cv_have_decl_copysignf=yes
| ac_cv_have_decl_cosf=yes
| ac_cv_have_decl_coshf=yes
| ac_cv_have_decl_dup2=yes
| ac_cv_have_decl_dup=yes
| ac_cv_have_decl_endusershell=yes
| ac_cv_have_decl_exp2=yes
| ac_cv_have_decl_expf=yes
| ac_cv_have_decl_expm1=yes
| ac_cv_have_decl_expm1f=yes
| ac_cv_have_decl_fabsf=yes
| ac_cv_have_decl_fchdir=yes
| ac_cv_have_decl_fcntl=yes
| ac_cv_have_decl_feof_unlocked=no
| ac_cv_have_decl_ferror_unlocked=no
| ac_cv_have_decl_fflush_unlocked=no
| ac_cv_have_decl_fgets_unlocked=no
| ac_cv_have_decl_floorf=yes
| ac_cv_have_decl_fmod=yes
| ac_cv_have_decl_fmodf=yes
| ac_cv_have_decl_fpurge=yes
| ac_cv_have_decl_fputc_unlocked=no
| ac_cv_have_decl_fputs_unlocked=no
| ac_cv_have_decl_fread_unlocked=no
| ac_cv_have_decl_frexpf=yes
| ac_cv_have_decl_frexpl=no
| ac_cv_have_decl_fstat=yes
| ac_cv_have_decl_fsync=yes
| ac_cv_have_decl_ftruncate=yes
| ac_cv_have_decl_fwrite_unlocked=no
| ac_cv_have_decl_getc_unlocked=yes
| ac_cv_have_decl_getchar_unlocked=yes
| ac_cv_have_decl_getcwd=yes
| ac_cv_have_decl_getdelim=no
| ac_cv_have_decl_getdomainname=yes
| ac_cv_have_decl_getdtablesize=yes
| ac_cv_have_decl_getenv=yes
| ac_cv_have_decl_getgroups=yes
| ac_cv_have_decl_gethostname=yes
| ac_cv_have_decl_getline=no
| ac_cv_have_decl_getloadavg=yes
| ac_cv_have_decl_getlogin=yes
| ac_cv_have_decl_getlogin_r=yes
| ac_cv_have_decl_getpagesize=yes
| ac_cv_have_decl_getrusage=yes
| ac_cv_have_decl_gets=yes
| ac_cv_have_decl_getsubopt=yes
| ac_cv_have_decl_getusershell=yes
| ac_cv_have_decl_hypotf=yes
| ac_cv_have_decl_ilogb=yes
| ac_cv_have_decl_ilogbf=yes
| ac_cv_have_decl_initstate=yes
| ac_cv_have_decl_isatty=yes
| ac_cv_have_decl_iswblank=yes
| ac_cv_have_decl_iswctype=yes
| ac_cv_have_decl_ldexpf=yes
| ac_cv_have_decl_ldexpl=no
| ac_cv_have_decl_link=yes
| ac_cv_have_decl_log10=yes
| ac_cv_have_decl_log10f=yes
| ac_cv_have_decl_log1p=yes
| ac_cv_have_decl_log1pf=yes
| ac_cv_have_decl_log2=yes
| ac_cv_have_decl_log=yes
| ac_cv_have_decl_logb=yes
| ac_cv_have_decl_logbf=yes
| ac_cv_have_decl_logf=yes
| ac_cv_have_decl_lseek=yes
| ac_cv_have_decl_lstat=yes
| ac_cv_have_decl_mbrtowc=no
| ac_cv_have_decl_mbsinit=no
| ac_cv_have_decl_mbswidth=no
| ac_cv_have_decl_mkfifo=yes
| ac_cv_have_decl_modf=yes
| ac_cv_have_decl_modff=yes
| ac_cv_have_decl_obstack_printf=no
| ac_cv_have_decl_pclose=yes
| ac_cv_have_decl_pipe=yes
| ac_cv_have_decl_popen=yes
| ac_cv_have_decl_powf=yes
| ac_cv_have_decl_program_invocation_name=no
| ac_cv_have_decl_program_invocation_short_name=no
| ac_cv_have_decl_putc_unlocked=yes
| ac_cv_have_decl_putchar_unlocked=yes
| ac_cv_have_decl_random=yes
| ac_cv_have_decl_readlink=yes
| ac_cv_have_decl_realpath=yes
| ac_cv_have_decl_remainder=yes
| ac_cv_have_decl_remainderf=yes
| ac_cv_have_decl_rint=yes
| ac_cv_have_decl_rintf=yes
| ac_cv_have_decl_rmdir=yes
| ac_cv_have_decl_setenv=yes
| ac_cv_have_decl_sethostname=yes
| ac_cv_have_decl_setstate=yes
| ac_cv_have_decl_setusershell=yes
| ac_cv_have_decl_sigaction=yes
| ac_cv_have_decl_sigaddset=yes
| ac_cv_have_decl_sigdelset=yes
| ac_cv_have_decl_sigemptyset=yes
| ac_cv_have_decl_sigfillset=yes
| ac_cv_have_decl_sigismember=yes
| ac_cv_have_decl_sigpending=yes
| ac_cv_have_decl_sigprocmask=yes
| ac_cv_have_decl_sinf=yes
| ac_cv_have_decl_sinhf=yes
| ac_cv_have_decl_sleep=yes
| ac_cv_have_decl_snprintf=yes
| ac_cv_have_decl_sqrtf=yes
| ac_cv_have_decl_srandom=yes
| ac_cv_have_decl_stat=yes
| ac_cv_have_decl_strdup=yes
| ac_cv_have_decl_strerror_r=no
| ac_cv_have_decl_strncat=yes
| ac_cv_have_decl_strndup=no
| ac_cv_have_decl_strnlen=no
| ac_cv_have_decl_strpbrk=yes
| ac_cv_have_decl_strsep=yes
| ac_cv_have_decl_strtod=yes
| ac_cv_have_decl_strtok_r=yes
| ac_cv_have_decl_strtoll=yes
| ac_cv_have_decl_strtoull=yes
| ac_cv_have_decl_symlink=yes
| ac_cv_have_decl_sysconf=yes
| ac_cv_have_decl_tanf=yes
| ac_cv_have_decl_tanhf=yes
| ac_cv_have_decl_times=yes
| ac_cv_have_decl_tmpfile=yes
| ac_cv_have_decl_towctrans=yes
| ac_cv_have_decl_truncf=yes
| ac_cv_have_decl_ttyname_r=yes
| ac_cv_have_decl_unlink=yes
| ac_cv_have_decl_unsetenv=yes
| ac_cv_have_decl_usleep=yes
| ac_cv_have_decl_vsnprintf=yes
| ac_cv_have_decl_waitpid=yes
| ac_cv_have_decl_wcscat=yes
| ac_cv_have_decl_wcschr=yes
| ac_cv_have_decl_wcscmp=yes
| ac_cv_have_decl_wcscpy=yes
| ac_cv_have_decl_wcscspn=yes
| ac_cv_have_decl_wcslen=yes
| ac_cv_have_decl_wcsncat=yes
| ac_cv_have_decl_wcsncmp=yes
| ac_cv_have_decl_wcsncpy=yes
| ac_cv_have_decl_wcspbrk=yes
| ac_cv_have_decl_wcsrchr=yes
| ac_cv_have_decl_wcswidth=yes
| ac_cv_have_decl_wctrans=yes
| ac_cv_have_decl_wctype=yes
| ac_cv_have_decl_wcwidth=yes
| ac_cv_have_decl_wmemcpy=yes
| ac_cv_header_features_h=no
| ac_cv_header_getopt_h=yes
| ac_cv_header_inttypes_h=yes
| ac_cv_header_locale_h=yes
| ac_cv_header_math_h=yes
| ac_cv_header_memory_h=yes
| ac_cv_header_minix_config_h=no
| ac_cv_header_paths_h=yes
| ac_cv_header_pthread_h=yes
| ac_cv_header_sched_h=yes
| ac_cv_header_spawn_h=no
| ac_cv_header_stat_broken=no
| ac_cv_header_stdbool_h=yes
| ac_cv_header_stdc=yes
| ac_cv_header_stdint_h=yes
| ac_cv_header_stdio_ext_h=no
| ac_cv_header_stdlib_h=yes
| ac_cv_header_string_h=yes
| ac_cv_header_strings_h=yes
| ac_cv_header_sys_bitypes_h=yes
| ac_cv_header_sys_inttypes_h=no
| ac_cv_header_sys_mman_h=yes
| ac_cv_header_sys_param_h=yes
| ac_cv_header_sys_resource_h=yes
| ac_cv_header_sys_socket_h=yes
| ac_cv_header_sys_stat_h=yes
| ac_cv_header_sys_time_h=yes
| ac_cv_header_sys_times_h=yes
| ac_cv_header_sys_types_h=yes
| ac_cv_header_sys_wait_h=yes
| ac_cv_header_unistd_h=yes
| ac_cv_header_wchar_h=yes
| ac_cv_header_wctype_h=yes
| ac_cv_host=i386-pc-bsdi4.3
| ac_cv_lib_error_at_line=no
| ac_cv_lib_lex=-lfl
| ac_cv_lib_pthread_pthread_kill=yes
| ac_cv_member_struct_sigaction_sa_sigaction=yes
| ac_cv_objext=o
| ac_cv_path_EGREP='/bin/grep -E'
| ac_cv_path_GMSGFMT=/usr/bin/msgfmt
| ac_cv_path_GREP=/bin/grep
| ac_cv_path_M4=/usr/contrib/bin/m4
| ac_cv_path_MSGFMT=/usr/bin/msgfmt
| ac_cv_path_MSGMERGE=/usr/bin/msgmerge
| ac_cv_path_PERL=/usr/bin/perl
| ac_cv_path_XGETTEXT=/usr/bin/xgettext
| ac_cv_path_XSLTPROC=/usr/contrib/bin/xsltproc
| ac_cv_path_install='/usr/bin/install -c'
| ac_cv_path_mkdir=/usr/bin/mkdir
| ac_cv_prog_AWK=gawk
| ac_cv_prog_CPP='gcc -std=gnu99 -E'
| ac_cv_prog_HAVE_GCJ_IN_PATH=yes
| ac_cv_prog_LEX=flex
| ac_cv_prog_YACC='bison -y'
| ac_cv_prog_ac_ct_AR=ar
| ac_cv_prog_ac_ct_CC=gcc
| ac_cv_prog_ac_ct_CXX=g++
| ac_cv_prog_ac_ct_RANLIB=ranlib
| ac_cv_prog_cc_c89=
| ac_cv_prog_cc_c99=-std=gnu99
| ac_cv_prog_cc_g=yes
| ac_cv_prog_cc_gcc_c_o=yes
| ac_cv_prog_cc_stdc=-std=gnu99
| ac_cv_prog_cxx_g=yes
| ac_cv_prog_gnu_m4_debugfile=--debugfile
| ac_cv_prog_gnu_m4_gnu=yes
| ac_cv_prog_lex_is_flex=yes
| ac_cv_prog_lex_root=lex.yy
| ac_cv_prog_lex_yytext_pointer=yes
| ac_cv_prog_make_make_set=yes
| ac_cv_safe_to_define___extensions__=yes
| ac_cv_sys_file_offset_bits=no
| ac_cv_sys_largefile_CC=no
| ac_cv_sys_pending_output_n_bytes='fp->_p - fp->_bf._base'
| ac_cv_type__Bool=yes
| ac_cv_type_clock_t=yes
| ac_cv_type_long_long_int=yes
| ac_cv_type_mbstate_t=no
| ac_cv_type_mode_t=yes
| ac_cv_type_nlink_t=yes
| ac_cv_type_pid_t=yes
| ac_cv_type_pthread_rwlock_t=no
| ac_cv_type_ptrdiff_t=yes
| ac_cv_type_sig_atomic_t=yes
| ac_cv_type_sighandler_t=no
| ac_cv_type_sigset_t=yes
| ac_cv_type_size_t=yes
| ac_cv_type_struct_tms=yes
| ac_cv_type_uid_t=yes
| ac_cv_type_unsigned_long_long_int=yes
| ac_cv_type_volatile_sig_atomic_t=yes
| ac_cv_working_alloca_h=no
| acl_cv_hardcode_direct=no
| acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
| acl_cv_hardcode_libdir_separator=
| acl_cv_hardcode_minus_L=no
| acl_cv_libext=a
| acl_cv_libname_spec='lib$name'
| acl_cv_library_names_spec='$libname$shrext'
| acl_cv_path_LD=/usr/bin/ld
| acl_cv_prog_gnu_ld=yes
| acl_cv_rpath=done
| acl_cv_shlibext=so
| acl_cv_wl=-Wl,
| am_cv_CC_dependencies_compiler_type=gcc3
| am_cv_CXX_dependencies_compiler_type=gcc3
| am_cv_func_iconv=yes
| am_cv_func_iconv_works=yes
| am_cv_func_working_getline=no
| am_cv_langinfo_codeset=no
| am_cv_lib_iconv=yes
| am_cv_make_support_nested_variables=no
| bison_cv_c_supports_posixly_correct=yes
| bison_cv_cxx_supports_posixly_correct=yes
| bison_cv_cxx_works=yes
| gl_cv_bitsizeof_ptrdiff_t=32
| gl_cv_bitsizeof_sig_atomic_t=32
| gl_cv_bitsizeof_size_t=32
| gl_cv_bitsizeof_wchar_t=32
| gl_cv_bitsizeof_wint_t=32
| gl_cv_c_amsterdam_compiler=no
| gl_cv_c_multiarch=no
| gl_cv_cc_double_expbit0='word 1 bit 20'
| gl_cv_cc_double_signbit='word 1 bit 31'
| gl_cv_cc_float_expbit0='word 0 bit 23'
| gl_cv_cc_float_signbit='word 0 bit 31'
| gl_cv_cc_long_double_expbit0='word 2 bit 0'
| gl_cv_cc_long_double_signbit='word 2 bit 15'
| gl_cv_decl_null_works=yes
| gl_cv_double_slash_root=no
| gl_cv_func_dup2_works=yes
| gl_cv_func_fcntl_f_dupfd_cloexec=no
| gl_cv_func_fcntl_f_dupfd_works=yes
| gl_cv_func_fopen_slash=yes
| gl_cv_func_fprintf_posix=no
| gl_cv_func_frexp_no_libm=yes
| gl_cv_func_frexp_works=no
| gl_cv_func_frexpl_no_libm=no
| gl_cv_func_isnand_no_libm=yes
| gl_cv_func_isnanf_in_libm=yes
| gl_cv_func_isnanf_no_libm=no
| gl_cv_func_isnanf_works=yes
| gl_cv_func_isnanl_in_libm=no
| gl_cv_func_isnanl_no_libm=no
| gl_cv_func_iswcntrl_works=no
| gl_cv_func_itold_works=yes
| gl_cv_func_ldexp_no_libm=yes
| gl_cv_func_ldexpl_no_libm=no
| gl_cv_func_malloc_posix=yes
| gl_cv_func_memchr_works=yes
| gl_cv_func_open_slash=no
| gl_cv_func_perror_works=yes
| gl_cv_func_posix_spawn_file_actions_addclose_works=no
| gl_cv_func_posix_spawn_file_actions_adddup2_works=no
| gl_cv_func_posix_spawn_file_actions_addopen_works=no
| gl_cv_func_printf_directive_a=no
| gl_cv_func_printf_directive_f=yes
| gl_cv_func_printf_directive_ls=no
| gl_cv_func_printf_directive_n=yes
| gl_cv_func_printf_enomem=no
| gl_cv_func_printf_flag_grouping=no
| gl_cv_func_printf_flag_leftadjust=yes
| gl_cv_func_printf_flag_zero=no
| gl_cv_func_printf_infinite=yes
| gl_cv_func_printf_infinite_long_double=irrelevant
| gl_cv_func_printf_long_double=no
| gl_cv_func_printf_positions=no
| gl_cv_func_printf_precision=yes
| gl_cv_func_printf_sizes_c99=no
| gl_cv_func_signbit=no
| gl_cv_func_signbit_gcc=no
| gl_cv_func_sigprocmask=1
| gl_cv_func_snprintf_directive_n=yes
| gl_cv_func_snprintf_posix=no
| gl_cv_func_snprintf_retval_c99=yes
| gl_cv_func_snprintf_size1=yes
| gl_cv_func_snprintf_truncation_c99=yes
| gl_cv_func_snprintf_usable=no
| gl_cv_func_sprintf_posix=no
| gl_cv_func_stat_dir_slash=yes
| gl_cv_func_stat_file_slash=no
| gl_cv_func_strerror_0_works=no
| gl_cv_func_unsetenv_works=no
| gl_cv_func_vfprintf_posix=no
| gl_cv_func_vsnprintf_posix=no
| gl_cv_func_vsnprintf_usable=no
| gl_cv_func_vsnprintf_zerosize_c99=yes
| gl_cv_func_vsprintf_posix=no
| gl_cv_func_wcwidth_works=yes
| gl_cv_have_include_next=yes
| gl_cv_have_raw_decl__Exit=no
| gl_cv_have_raw_decl_acosf=yes
| gl_cv_have_raw_decl_acosl=no
| gl_cv_have_raw_decl_asinf=yes
| gl_cv_have_raw_decl_asinl=no
| gl_cv_have_raw_decl_atanf=yes
| gl_cv_have_raw_decl_atanl=no
| gl_cv_have_raw_decl_atoll=no
| gl_cv_have_raw_decl_btowc=no
| gl_cv_have_raw_decl_canonicalize_file_name=no
| gl_cv_have_raw_decl_cbrt=yes
| gl_cv_have_raw_decl_cbrtf=yes
| gl_cv_have_raw_decl_cbrtl=no
| gl_cv_have_raw_decl_ceilf=yes
| gl_cv_have_raw_decl_ceill=no
| gl_cv_have_raw_decl_chdir=yes
| gl_cv_have_raw_decl_chown=yes
| gl_cv_have_raw_decl_copysign=yes
| gl_cv_have_raw_decl_copysignf=yes
| gl_cv_have_raw_decl_copysignl=no
| gl_cv_have_raw_decl_cosf=yes
| gl_cv_have_raw_decl_coshf=yes
| gl_cv_have_raw_decl_cosl=no
| gl_cv_have_raw_decl_dprintf=no
| gl_cv_have_raw_decl_dup2=yes
| gl_cv_have_raw_decl_dup3=no
| gl_cv_have_raw_decl_dup=yes
| gl_cv_have_raw_decl_endusershell=yes
| gl_cv_have_raw_decl_environ=no
| gl_cv_have_raw_decl_euidaccess=no
| gl_cv_have_raw_decl_exp2=yes
| gl_cv_have_raw_decl_exp2f=no
| gl_cv_have_raw_decl_exp2l=no
| gl_cv_have_raw_decl_expf=yes
| gl_cv_have_raw_decl_expl=no
| gl_cv_have_raw_decl_expm1=yes
| gl_cv_have_raw_decl_expm1f=yes
| gl_cv_have_raw_decl_expm1l=no
| gl_cv_have_raw_decl_fabsf=yes
| gl_cv_have_raw_decl_fabsl=no
| gl_cv_have_raw_decl_faccessat=no
| gl_cv_have_raw_decl_fchdir=yes
| gl_cv_have_raw_decl_fchmodat=no
| gl_cv_have_raw_decl_fchownat=no
| gl_cv_have_raw_decl_fcntl=yes
| gl_cv_have_raw_decl_fdatasync=no
| gl_cv_have_raw_decl_ffsl=no
| gl_cv_have_raw_decl_ffsll=no
| gl_cv_have_raw_decl_floorf=yes
| gl_cv_have_raw_decl_floorl=no
| gl_cv_have_raw_decl_fma=no
| gl_cv_have_raw_decl_fmaf=no
| gl_cv_have_raw_decl_fmal=no
| gl_cv_have_raw_decl_fmod=yes
| gl_cv_have_raw_decl_fmodf=yes
| gl_cv_have_raw_decl_fmodl=no
| gl_cv_have_raw_decl_fpurge=yes
| gl_cv_have_raw_decl_frexpf=yes
| gl_cv_have_raw_decl_frexpl=no
| gl_cv_have_raw_decl_fseeko=no
| gl_cv_have_raw_decl_fstat=yes
| gl_cv_have_raw_decl_fstatat=no
| gl_cv_have_raw_decl_fsync=yes
| gl_cv_have_raw_decl_ftello=no
| gl_cv_have_raw_decl_ftruncate=yes
| gl_cv_have_raw_decl_futimens=no
| gl_cv_have_raw_decl_getcwd=yes
| gl_cv_have_raw_decl_getdelim=no
| gl_cv_have_raw_decl_getdomainname=yes
| gl_cv_have_raw_decl_getdtablesize=yes
| gl_cv_have_raw_decl_getgroups=yes
| gl_cv_have_raw_decl_gethostname=yes
| gl_cv_have_raw_decl_getline=no
| gl_cv_have_raw_decl_getloadavg=yes
| gl_cv_have_raw_decl_getlogin=yes
| gl_cv_have_raw_decl_getlogin_r=yes
| gl_cv_have_raw_decl_getpagesize=yes
| gl_cv_have_raw_decl_gets=yes
| gl_cv_have_raw_decl_getsubopt=yes
| gl_cv_have_raw_decl_getusershell=yes
| gl_cv_have_raw_decl_grantpt=no
| gl_cv_have_raw_decl_group_member=no
| gl_cv_have_raw_decl_hypotf=yes
| gl_cv_have_raw_decl_hypotl=no
| gl_cv_have_raw_decl_ilogb=yes
| gl_cv_have_raw_decl_ilogbf=yes
| gl_cv_have_raw_decl_ilogbl=no
| gl_cv_have_raw_decl_imaxabs=no
| gl_cv_have_raw_decl_imaxdiv=no
| gl_cv_have_raw_decl_initstate=yes
| gl_cv_have_raw_decl_initstate_r=no
| gl_cv_have_raw_decl_isatty=yes
| gl_cv_have_raw_decl_iswctype=yes
| gl_cv_have_raw_decl_lchmod=no
| gl_cv_have_raw_decl_lchown=no
| gl_cv_have_raw_decl_ldexpf=yes
| gl_cv_have_raw_decl_ldexpl=no
| gl_cv_have_raw_decl_link=yes
| gl_cv_have_raw_decl_linkat=no
| gl_cv_have_raw_decl_log10=yes
| gl_cv_have_raw_decl_log10f=yes
| gl_cv_have_raw_decl_log10l=no
| gl_cv_have_raw_decl_log1p=yes
| gl_cv_have_raw_decl_log1pf=yes
| gl_cv_have_raw_decl_log1pl=no
| gl_cv_have_raw_decl_log2=yes
| gl_cv_have_raw_decl_log2f=no
| gl_cv_have_raw_decl_log2l=no
| gl_cv_have_raw_decl_log=yes
| gl_cv_have_raw_decl_logb=yes
| gl_cv_have_raw_decl_logbf=yes
| gl_cv_have_raw_decl_logbl=no
| gl_cv_have_raw_decl_logf=yes
| gl_cv_have_raw_decl_logl=no
| gl_cv_have_raw_decl_lseek=yes
| gl_cv_have_raw_decl_lstat=yes
| gl_cv_have_raw_decl_mbrlen=no
| gl_cv_have_raw_decl_mbrtowc=no
| gl_cv_have_raw_decl_mbsinit=no
| gl_cv_have_raw_decl_mbsnrtowcs=no
| gl_cv_have_raw_decl_mbsrtowcs=no
| gl_cv_have_raw_decl_memmem=no
| gl_cv_have_raw_decl_mempcpy=no
| gl_cv_have_raw_decl_memrchr=no
| gl_cv_have_raw_decl_mkdirat=no
| gl_cv_have_raw_decl_mkdtemp=no
| gl_cv_have_raw_decl_mkfifo=yes
| gl_cv_have_raw_decl_mkfifoat=no
| gl_cv_have_raw_decl_mknod=no
| gl_cv_have_raw_decl_mknodat=no
| gl_cv_have_raw_decl_mkostemp=no
| gl_cv_have_raw_decl_mkostemps=no
| gl_cv_have_raw_decl_mkstemp=no
| gl_cv_have_raw_decl_mkstemps=no
| gl_cv_have_raw_decl_modf=yes
| gl_cv_have_raw_decl_modff=yes
| gl_cv_have_raw_decl_modfl=no
| gl_cv_have_raw_decl_openat=no
| gl_cv_have_raw_decl_pclose=yes
| gl_cv_have_raw_decl_pipe2=no
| gl_cv_have_raw_decl_pipe=yes
| gl_cv_have_raw_decl_popen=yes
| gl_cv_have_raw_decl_posix_openpt=no
| gl_cv_have_raw_decl_posix_spawn=no
| gl_cv_have_raw_decl_posix_spawn_file_actions_addclose=no
| gl_cv_have_raw_decl_posix_spawn_file_actions_adddup2=no
| gl_cv_have_raw_decl_posix_spawn_file_actions_addopen=no
| gl_cv_have_raw_decl_posix_spawn_file_actions_destroy=no
| gl_cv_have_raw_decl_posix_spawn_file_actions_init=no
| gl_cv_have_raw_decl_posix_spawnattr_destroy=no
| gl_cv_have_raw_decl_posix_spawnattr_getflags=no
| gl_cv_have_raw_decl_posix_spawnattr_getpgroup=no
| gl_cv_have_raw_decl_posix_spawnattr_getschedparam=no
| gl_cv_have_raw_decl_posix_spawnattr_getschedpolicy=no
| gl_cv_have_raw_decl_posix_spawnattr_getsigdefault=no
| gl_cv_have_raw_decl_posix_spawnattr_getsigmask=no
| gl_cv_have_raw_decl_posix_spawnattr_init=no
| gl_cv_have_raw_decl_posix_spawnattr_setflags=no
| gl_cv_have_raw_decl_posix_spawnattr_setpgroup=no
| gl_cv_have_raw_decl_posix_spawnattr_setschedparam=no
| gl_cv_have_raw_decl_posix_spawnattr_setschedpolicy=no
| gl_cv_have_raw_decl_posix_spawnattr_setsigdefault=no
| gl_cv_have_raw_decl_posix_spawnattr_setsigmask=no
| gl_cv_have_raw_decl_posix_spawnp=no
| gl_cv_have_raw_decl_powf=yes
| gl_cv_have_raw_decl_pread=no
| gl_cv_have_raw_decl_pthread_sigmask=no
| gl_cv_have_raw_decl_ptsname=no
| gl_cv_have_raw_decl_ptsname_r=no
| gl_cv_have_raw_decl_pwrite=no
| gl_cv_have_raw_decl_random=yes
| gl_cv_have_raw_decl_random_r=no
| gl_cv_have_raw_decl_rawmemchr=no
| gl_cv_have_raw_decl_readlink=yes
| gl_cv_have_raw_decl_readlinkat=no
| gl_cv_have_raw_decl_realpath=yes
| gl_cv_have_raw_decl_remainder=yes
| gl_cv_have_raw_decl_remainderf=yes
| gl_cv_have_raw_decl_remainderl=no
| gl_cv_have_raw_decl_renameat=no
| gl_cv_have_raw_decl_rint=yes
| gl_cv_have_raw_decl_rintf=yes
| gl_cv_have_raw_decl_rintl=no
| gl_cv_have_raw_decl_rmdir=yes
| gl_cv_have_raw_decl_round=no
| gl_cv_have_raw_decl_roundf=no
| gl_cv_have_raw_decl_roundl=no
| gl_cv_have_raw_decl_rpmatch=no
| gl_cv_have_raw_decl_setenv=yes
| gl_cv_have_raw_decl_sethostname=yes
| gl_cv_have_raw_decl_setstate=yes
| gl_cv_have_raw_decl_setstate_r=no
| gl_cv_have_raw_decl_setusershell=yes
| gl_cv_have_raw_decl_sigaction=yes
| gl_cv_have_raw_decl_sigaddset=yes
| gl_cv_have_raw_decl_sigdelset=yes
| gl_cv_have_raw_decl_sigemptyset=yes
| gl_cv_have_raw_decl_sigfillset=yes
| gl_cv_have_raw_decl_sigismember=yes
| gl_cv_have_raw_decl_sigpending=yes
| gl_cv_have_raw_decl_sigprocmask=yes
| gl_cv_have_raw_decl_sinf=yes
| gl_cv_have_raw_decl_sinhf=yes
| gl_cv_have_raw_decl_sinl=no
| gl_cv_have_raw_decl_sleep=yes
| gl_cv_have_raw_decl_snprintf=yes
| gl_cv_have_raw_decl_sqrtf=yes
| gl_cv_have_raw_decl_sqrtl=no
| gl_cv_have_raw_decl_srandom=yes
| gl_cv_have_raw_decl_srandom_r=no
| gl_cv_have_raw_decl_stat=yes
| gl_cv_have_raw_decl_stpcpy=no
| gl_cv_have_raw_decl_stpncpy=no
| gl_cv_have_raw_decl_strcasestr=no
| gl_cv_have_raw_decl_strchrnul=no
| gl_cv_have_raw_decl_strdup=yes
| gl_cv_have_raw_decl_strerror_r=no
| gl_cv_have_raw_decl_strncat=yes
| gl_cv_have_raw_decl_strndup=no
| gl_cv_have_raw_decl_strnlen=no
| gl_cv_have_raw_decl_strpbrk=yes
| gl_cv_have_raw_decl_strsep=yes
| gl_cv_have_raw_decl_strsignal=no
| gl_cv_have_raw_decl_strtod=yes
| gl_cv_have_raw_decl_strtoimax=no
| gl_cv_have_raw_decl_strtok_r=yes
| gl_cv_have_raw_decl_strtoll=yes
| gl_cv_have_raw_decl_strtoull=yes
| gl_cv_have_raw_decl_strtoumax=no
| gl_cv_have_raw_decl_strverscmp=no
| gl_cv_have_raw_decl_symlink=yes
| gl_cv_have_raw_decl_symlinkat=no
| gl_cv_have_raw_decl_tanf=yes
| gl_cv_have_raw_decl_tanhf=yes
| gl_cv_have_raw_decl_tanl=no
| gl_cv_have_raw_decl_tmpfile=yes
| gl_cv_have_raw_decl_towctrans=yes
| gl_cv_have_raw_decl_trunc=no
| gl_cv_have_raw_decl_truncf=yes
| gl_cv_have_raw_decl_truncl=no
| gl_cv_have_raw_decl_ttyname_r=yes
| gl_cv_have_raw_decl_unlink=yes
| gl_cv_have_raw_decl_unlinkat=no
| gl_cv_have_raw_decl_unlockpt=no
| gl_cv_have_raw_decl_unsetenv=yes
| gl_cv_have_raw_decl_usleep=yes
| gl_cv_have_raw_decl_utimensat=no
| gl_cv_have_raw_decl_vdprintf=no
| gl_cv_have_raw_decl_vsnprintf=yes
| gl_cv_have_raw_decl_waitpid=yes
| gl_cv_have_raw_decl_wcpcpy=no
| gl_cv_have_raw_decl_wcpncpy=no
| gl_cv_have_raw_decl_wcrtomb=no
| gl_cv_have_raw_decl_wcscasecmp=no
| gl_cv_have_raw_decl_wcscat=yes
| gl_cv_have_raw_decl_wcschr=yes
| gl_cv_have_raw_decl_wcscmp=yes
| gl_cv_have_raw_decl_wcscoll=no
| gl_cv_have_raw_decl_wcscpy=yes
| gl_cv_have_raw_decl_wcscspn=yes
| gl_cv_have_raw_decl_wcsdup=no
| gl_cv_have_raw_decl_wcslen=yes
| gl_cv_have_raw_decl_wcsncasecmp=no
| gl_cv_have_raw_decl_wcsncat=yes
| gl_cv_have_raw_decl_wcsncmp=yes
| gl_cv_have_raw_decl_wcsncpy=yes
| gl_cv_have_raw_decl_wcsnlen=no
| gl_cv_have_raw_decl_wcsnrtombs=no
| gl_cv_have_raw_decl_wcspbrk=yes
| gl_cv_have_raw_decl_wcsrchr=yes
| gl_cv_have_raw_decl_wcsrtombs=no
| gl_cv_have_raw_decl_wcsspn=no
| gl_cv_have_raw_decl_wcsstr=no
| gl_cv_have_raw_decl_wcstok=no
| gl_cv_have_raw_decl_wcswidth=yes
| gl_cv_have_raw_decl_wcsxfrm=no
| gl_cv_have_raw_decl_wctob=no
| gl_cv_have_raw_decl_wctrans=yes
| gl_cv_have_raw_decl_wctype=yes
| gl_cv_have_raw_decl_wcwidth=yes
| gl_cv_have_raw_decl_wmemchr=no
| gl_cv_have_raw_decl_wmemcmp=no
| gl_cv_have_raw_decl_wmemcpy=yes
| gl_cv_have_raw_decl_wmemmove=no
| gl_cv_have_raw_decl_wmemset=no
| gl_cv_have_weak=yes
| gl_cv_header_errno_h_EMULTIHOP=no
| gl_cv_header_errno_h_ENOLINK=no
| gl_cv_header_errno_h_EOVERFLOW=no
| gl_cv_header_errno_h_complete=no
| gl_cv_header_inttypes_h=no
| gl_cv_header_math_huge_val_works=yes
| gl_cv_header_math_nan_works=yes
| gl_cv_header_stdint_h=no
| gl_cv_header_wchar_h_correct_inline=yes
| gl_cv_header_working_fcntl_h=no
| gl_cv_header_working_stdint_h=no
| gl_cv_long_double_equals_double=no
| gl_cv_next_errno_h='<errno.h>'
| gl_cv_next_fcntl_h='<fcntl.h>'
| gl_cv_next_getopt_h='<getopt.h>'
| gl_cv_next_inttypes_h='<inttypes.h>'
| gl_cv_next_math_h='<math.h>'
| gl_cv_next_signal_h='<signal.h>'
| gl_cv_next_spawn_h='<spawn.h>'
| gl_cv_next_stdint_h='<stdint.h>'
| gl_cv_next_stdio_h='<stdio.h>'
| gl_cv_next_stdlib_h='<stdlib.h>'
| gl_cv_next_string_h='<string.h>'
| gl_cv_next_sys_stat_h='<sys/stat.h>'
| gl_cv_next_sys_types_h='<sys/types.h>'
| gl_cv_next_sys_wait_h='<sys/wait.h>'
| gl_cv_next_time_h='<time.h>'
| gl_cv_next_unistd_h='<unistd.h>'
| gl_cv_next_wchar_h='<wchar.h>'
| gl_cv_next_wctype_h='<wctype.h>'
| gl_cv_pragma_columns=no
| gl_cv_prog_as_underscore=no
| gl_cv_promoted_mode_t=int
| gl_cv_size_max=yes
| gl_cv_sys_struct_timespec_in_time_h=yes
| gl_cv_test_INT32_MAX_LT_INTMAX_MAX=yes
| gl_cv_test_INT64_MAX_EQ_LONG_MAX=no
| gl_cv_test_UINT32_MAX_LT_UINTMAX_MAX=yes
| gl_cv_test_UINT64_MAX_EQ_ULONG_MAX=no
| gl_cv_type_ptrdiff_t_signed=yes
| gl_cv_type_ptrdiff_t_suffix=
| gl_cv_type_sig_atomic_t_signed=yes
| gl_cv_type_sig_atomic_t_suffix=
| gl_cv_type_sigset_t=yes
| gl_cv_type_size_t_signed=no
| gl_cv_type_size_t_suffix=u
| gl_cv_type_wchar_t_signed=yes
| gl_cv_type_wchar_t_suffix=
| gl_cv_type_wctrans_t=yes
| gl_cv_type_wctype_t=yes
| gl_cv_type_wint_t_signed=yes
| gl_cv_type_wint_t_suffix=
| gt_cv_c_intmax_t=no
| gt_cv_c_wchar_t=yes
| gt_cv_c_wint_t=yes
| gt_cv_func_CFLocaleCopyCurrent=no
| gt_cv_func_CFPreferencesCopyAppValue=no
| gt_cv_func_gnugettext2_libc=no
| gt_cv_func_gnugettext2_libintl=no
| gt_cv_func_unsetenv_ret=void
| gt_cv_inttypes_pri_broken=no
| gt_cv_locale_fr_utf8=none
| gt_cv_locale_ja=none
| gt_cv_locale_zh_CN=none
| gt_cv_ssize_t=yes
| gt_cv_var_environ_declaration=no
| lv_cv_gcc_pragma_push_works=no
| 
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
| 
| ACLOCAL='${SHELL} /usr/source/bison-2.7/build-aux/missing --run aclocal-1.12'
| ALLOCA=''
| ALLOCA_H='alloca.h'
| AMDEPBACKSLASH='\'
| AMDEP_FALSE='#'
| AMDEP_TRUE=''
| AMTAR='$${TAR-tar}'
| AM_BACKSLASH='\'
| AM_DEFAULT_V='0'
| AM_DEFAULT_VERBOSITY='0'
| AM_V='0'
| APPLE_UNIVERSAL_BUILD='0'
| AR='ar'
| ARFLAGS='cru'
| ASM_SYMBOL_PREFIX='""'
| AUTOCONF='${SHELL} /usr/source/bison-2.7/build-aux/missing --run autoconf'
| AUTOHEADER='${SHELL} /usr/source/bison-2.7/build-aux/missing --run autoheader'
| AUTOM4TE='${SHELL} /usr/source/bison-2.7/build-aux/missing --run autom4te'
| AUTOMAKE='${SHELL} /usr/source/bison-2.7/build-aux/missing --run 
automake-1.12'
| AWK='gawk'
| BISON_CXX_WORKS=':'
| BISON_CXX_WORKS_FALSE='#'
| BISON_CXX_WORKS_TRUE=''
| BISON_C_WORKS=':'
| BISON_LOCALEDIR=''
| BITSIZEOF_PTRDIFF_T='32'
| BITSIZEOF_SIG_ATOMIC_T='32'
| BITSIZEOF_SIZE_T='32'
| BITSIZEOF_WCHAR_T='32'
| BITSIZEOF_WINT_T='32'
| CC='gcc -std=gnu99'
| CCDEPMODE='depmode=gcc3'
| CFLAGS='-g -O2'
| 
CLASSPATH='/usr/local/share/kaffe:/usr/X11/bin/java_301:/usr/local/netscape/java/classes/java40.jar:/usr/contrib/bin'
| CLASSPATH_SEPARATOR=':'
| CONFIG_INCLUDE='lib/config.h'
| CONF_JAVA=''
| CONF_JAVAC=''
| CPP='gcc -std=gnu99 -E'
| CPPFLAGS=''
| CXX='g++'
| CXXDEPMODE='depmode=gcc3'
| CXXFLAGS='-g -O2'
| CXX_COMPILER_POSIXLY_CORRECT='true'
| CYGPATH_W='echo'
| C_COMPILER_POSIXLY_CORRECT='true'
| DEFS=''
| DEPDIR='.deps'
| DOT='${SHELL} /usr/source/bison-2.7/build-aux/missing --run dot'
| ECHO_C=''
| ECHO_N='-n'
| ECHO_T=''
| EGREP='/bin/grep -E'
| EMULTIHOP_HIDDEN='0'
| EMULTIHOP_VALUE=''
| ENOLINK_HIDDEN='0'
| ENOLINK_VALUE=''
| EOVERFLOW_HIDDEN='0'
| EOVERFLOW_VALUE=''
| ERRNO_H='errno.h'
| EXEEXT=''
| FLOAT_H=''
| GCC='yes'
| GETOPT_H='getopt.h'
| GETTEXT_MACRO_VERSION='0.18'
| GLIBC21='no'
| GL_COND_LIBTOOL_FALSE=''
| GL_COND_LIBTOOL_TRUE='#'
| GL_GENERATE_ALLOCA_H_FALSE='#'
| GL_GENERATE_ALLOCA_H_TRUE=''
| GL_GENERATE_ERRNO_H_FALSE='#'
| GL_GENERATE_ERRNO_H_TRUE=''
| GL_GENERATE_FLOAT_H_FALSE=''
| GL_GENERATE_FLOAT_H_TRUE='#'
| GL_GENERATE_SCHED_H_FALSE=''
| GL_GENERATE_SCHED_H_TRUE='#'
| GL_GENERATE_STDBOOL_H_FALSE=''
| GL_GENERATE_STDBOOL_H_TRUE='#'
| GL_GENERATE_STDDEF_H_FALSE=''
| GL_GENERATE_STDDEF_H_TRUE='#'
| GL_GENERATE_STDINT_H_FALSE='#'
| GL_GENERATE_STDINT_H_TRUE=''
| GMSGFMT='/usr/bin/msgfmt'
| GMSGFMT_015='/usr/bin/msgfmt'
| GNULIB_ACOSF='0'
| GNULIB_ACOSL='0'
| GNULIB_ASINF='0'
| GNULIB_ASINL='0'
| GNULIB_ATAN2F='0'
| GNULIB_ATANF='0'
| GNULIB_ATANL='0'
| GNULIB_ATOLL='0'
| GNULIB_BTOWC='0'
| GNULIB_CALLOC_POSIX='1'
| GNULIB_CANONICALIZE_FILE_NAME='0'
| GNULIB_CBRT='0'
| GNULIB_CBRTF='0'
| GNULIB_CBRTL='0'
| GNULIB_CEIL='0'
| GNULIB_CEILF='0'
| GNULIB_CEILL='0'
| GNULIB_CHDIR='0'
| GNULIB_CHOWN='0'
| GNULIB_CLOSE='1'
| GNULIB_COPYSIGN='0'
| GNULIB_COPYSIGNF='0'
| GNULIB_COPYSIGNL='0'
| GNULIB_COSF='0'
| GNULIB_COSHF='0'
| GNULIB_COSL='0'
| GNULIB_DPRINTF='0'
| GNULIB_DUP2='1'
| GNULIB_DUP3='0'
| GNULIB_DUP='0'
| GNULIB_ENVIRON='1'
| GNULIB_EUIDACCESS='0'
| GNULIB_EXP2='0'
| GNULIB_EXP2F='0'
| GNULIB_EXP2L='0'
| GNULIB_EXPF='0'
| GNULIB_EXPL='0'
| GNULIB_EXPM1='0'
| GNULIB_EXPM1F='0'
| GNULIB_EXPM1L='0'
| GNULIB_FABSF='0'
| GNULIB_FABSL='0'
| GNULIB_FACCESSAT='0'
| GNULIB_FCHDIR='0'
| GNULIB_FCHMODAT='0'
| GNULIB_FCHOWNAT='0'
| GNULIB_FCLOSE='0'
| GNULIB_FCNTL='1'
| GNULIB_FDATASYNC='0'
| GNULIB_FDOPEN='0'
| GNULIB_FFLUSH='0'
| GNULIB_FFSL='0'
| GNULIB_FFSLL='0'
| GNULIB_FGETC='1'
| GNULIB_FGETS='1'
| GNULIB_FLOOR='0'
| GNULIB_FLOORF='0'
| GNULIB_FLOORL='0'
| GNULIB_FMA='0'
| GNULIB_FMAF='0'
| GNULIB_FMAL='0'
| GNULIB_FMOD='0'
| GNULIB_FMODF='0'
| GNULIB_FMODL='0'
| GNULIB_FOPEN='1'
| GNULIB_FPRINTF='1'
| GNULIB_FPRINTF_POSIX='1'
| GNULIB_FPURGE='0'
| GNULIB_FPUTC='1'
| GNULIB_FPUTS='1'
| GNULIB_FREAD='1'
| GNULIB_FREOPEN='0'
| GNULIB_FREXP='1'
| GNULIB_FREXPF='0'
| GNULIB_FREXPL='1'
| GNULIB_FSCANF='1'
| GNULIB_FSEEK='0'
| GNULIB_FSEEKO='0'
| GNULIB_FSTAT='1'
| GNULIB_FSTATAT='0'
| GNULIB_FSYNC='0'
| GNULIB_FTELL='0'
| GNULIB_FTELLO='0'
| GNULIB_FTRUNCATE='0'
| GNULIB_FUTIMENS='0'
| GNULIB_FWRITE='1'
| GNULIB_GETC='1'
| GNULIB_GETCHAR='1'
| GNULIB_GETCWD='0'
| GNULIB_GETDELIM='1'
| GNULIB_GETDOMAINNAME='0'
| GNULIB_GETDTABLESIZE='1'
| GNULIB_GETGROUPS='0'
| GNULIB_GETHOSTNAME='0'
| GNULIB_GETLINE='1'
| GNULIB_GETLOADAVG='0'
| GNULIB_GETLOGIN='0'
| GNULIB_GETLOGIN_R='0'
| GNULIB_GETPAGESIZE='0'
| GNULIB_GETSUBOPT='0'
| GNULIB_GETUSERSHELL='0'
| GNULIB_GL_UNISTD_H_GETOPT='1'
| GNULIB_GRANTPT='0'
| GNULIB_GROUP_MEMBER='0'
| GNULIB_HYPOT='0'
| GNULIB_HYPOTF='0'
| GNULIB_HYPOTL='0'
| GNULIB_ILOGB='0'
| GNULIB_ILOGBF='0'
| GNULIB_ILOGBL='0'
| GNULIB_IMAXABS='0'
| GNULIB_IMAXDIV='0'
| GNULIB_ISATTY='0'
| GNULIB_ISFINITE='0'
| GNULIB_ISINF='0'
| GNULIB_ISNAN='1'
| GNULIB_ISNAND='1'
| GNULIB_ISNANF='1'
| GNULIB_ISNANL='1'
| GNULIB_ISWBLANK='1'
| GNULIB_ISWCTYPE='0'
| GNULIB_LCHMOD='0'
| GNULIB_LCHOWN='0'
| GNULIB_LDEXPF='0'
| GNULIB_LDEXPL='1'
| GNULIB_LINK='0'
| GNULIB_LINKAT='0'
| GNULIB_LOG10='0'
| GNULIB_LOG10F='0'
| GNULIB_LOG10L='0'
| GNULIB_LOG1P='0'
| GNULIB_LOG1PF='0'
| GNULIB_LOG1PL='0'
| GNULIB_LOG2='0'
| GNULIB_LOG2F='0'
| GNULIB_LOG2L='0'
| GNULIB_LOG='0'
| GNULIB_LOGB='0'
| GNULIB_LOGBF='0'
| GNULIB_LOGBL='0'
| GNULIB_LOGF='0'
| GNULIB_LOGL='0'
| GNULIB_LSEEK='0'
| GNULIB_LSTAT='0'
| GNULIB_MALLOC_POSIX='1'
| GNULIB_MBRLEN='0'
| GNULIB_MBRTOWC='1'
| GNULIB_MBSCASECMP='0'
| GNULIB_MBSCASESTR='0'
| GNULIB_MBSCHR='1'
| GNULIB_MBSCSPN='0'
| GNULIB_MBSINIT='1'
| GNULIB_MBSLEN='0'
| GNULIB_MBSNCASECMP='0'
| GNULIB_MBSNLEN='0'
| GNULIB_MBSNRTOWCS='0'
| GNULIB_MBSPBRK='0'
| GNULIB_MBSPCASECMP='0'
| GNULIB_MBSRCHR='1'
| GNULIB_MBSRTOWCS='0'
| GNULIB_MBSSEP='0'
| GNULIB_MBSSPN='0'
| GNULIB_MBSSTR='0'
| GNULIB_MBSTOK_R='0'
| GNULIB_MBTOWC='0'
| GNULIB_MEMCHR='1'
| GNULIB_MEMMEM='0'
| GNULIB_MEMPCPY='0'
| GNULIB_MEMRCHR='0'
| GNULIB_MKDIRAT='0'
| GNULIB_MKDTEMP='0'
| GNULIB_MKFIFO='0'
| GNULIB_MKFIFOAT='0'
| GNULIB_MKNOD='0'
| GNULIB_MKNODAT='0'
| GNULIB_MKOSTEMP='0'
| GNULIB_MKOSTEMPS='0'
| GNULIB_MKSTEMP='0'
| GNULIB_MKSTEMPS='0'
| GNULIB_MKTIME='0'
| GNULIB_MODF='0'
| GNULIB_MODFF='0'
| GNULIB_MODFL='0'
| GNULIB_NANOSLEEP='0'
| GNULIB_NONBLOCKING='0'
| GNULIB_OBSTACK_PRINTF='1'
| GNULIB_OBSTACK_PRINTF_POSIX='0'
| GNULIB_OPEN='1'
| GNULIB_OPENAT='0'
| GNULIB_PCLOSE='0'
| GNULIB_PERROR='1'
| GNULIB_PIPE2='1'
| GNULIB_PIPE='0'
| GNULIB_POPEN='0'
| GNULIB_POSIX_OPENPT='0'
| GNULIB_POSIX_SPAWN='0'
| GNULIB_POSIX_SPAWNATTR_DESTROY='1'
| GNULIB_POSIX_SPAWNATTR_GETFLAGS='0'
| GNULIB_POSIX_SPAWNATTR_GETPGROUP='0'
| GNULIB_POSIX_SPAWNATTR_GETSCHEDPARAM='0'
| GNULIB_POSIX_SPAWNATTR_GETSCHEDPOLICY='0'
| GNULIB_POSIX_SPAWNATTR_GETSIGDEFAULT='0'
| GNULIB_POSIX_SPAWNATTR_GETSIGMASK='0'
| GNULIB_POSIX_SPAWNATTR_INIT='1'
| GNULIB_POSIX_SPAWNATTR_SETFLAGS='1'
| GNULIB_POSIX_SPAWNATTR_SETPGROUP='0'
| GNULIB_POSIX_SPAWNATTR_SETSCHEDPARAM='0'
| GNULIB_POSIX_SPAWNATTR_SETSCHEDPOLICY='0'
| GNULIB_POSIX_SPAWNATTR_SETSIGDEFAULT='0'
| GNULIB_POSIX_SPAWNATTR_SETSIGMASK='1'
| GNULIB_POSIX_SPAWNP='1'
| GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE='1'
| GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2='1'
| GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN='1'
| GNULIB_POSIX_SPAWN_FILE_ACTIONS_DESTROY='1'
| GNULIB_POSIX_SPAWN_FILE_ACTIONS_INIT='1'
| GNULIB_POWF='0'
| GNULIB_PREAD='0'
| GNULIB_PRINTF='1'
| GNULIB_PRINTF_POSIX='1'
| GNULIB_PTHREAD_SIGMASK='0'
| GNULIB_PTSNAME='0'
| GNULIB_PTSNAME_R='0'
| GNULIB_PUTC='1'
| GNULIB_PUTCHAR='1'
| GNULIB_PUTENV='0'
| GNULIB_PUTS='1'
| GNULIB_PWRITE='0'
| GNULIB_RAISE='1'
| GNULIB_RANDOM='0'
| GNULIB_RANDOM_R='0'
| GNULIB_RAWMEMCHR='1'
| GNULIB_READ='0'
| GNULIB_READLINK='0'
| GNULIB_READLINKAT='0'
| GNULIB_REALLOC_POSIX='1'
| GNULIB_REALPATH='0'
| GNULIB_REMAINDER='0'
| GNULIB_REMAINDERF='0'
| GNULIB_REMAINDERL='0'
| GNULIB_REMOVE='0'
| GNULIB_RENAME='0'
| GNULIB_RENAMEAT='0'
| GNULIB_RINT='0'
| GNULIB_RINTF='0'
| GNULIB_RINTL='0'
| GNULIB_RMDIR='0'
| GNULIB_ROUND='0'
| GNULIB_ROUNDF='0'
| GNULIB_ROUNDL='0'
| GNULIB_RPMATCH='0'
| GNULIB_SCANF='1'
| GNULIB_SETENV='0'
| GNULIB_SETHOSTNAME='0'
| GNULIB_SIGACTION='1'
| GNULIB_SIGNAL_H_SIGPIPE='0'
| GNULIB_SIGNBIT='1'
| GNULIB_SIGPROCMASK='1'
| GNULIB_SINF='0'
| GNULIB_SINHF='0'
| GNULIB_SINL='0'
| GNULIB_SLEEP='0'
| GNULIB_SNPRINTF='1'
| GNULIB_SPRINTF_POSIX='1'
| GNULIB_SQRTF='0'
| GNULIB_SQRTL='0'
| GNULIB_STAT='1'
| GNULIB_STDIO_H_NONBLOCKING='0'
| GNULIB_STDIO_H_SIGPIPE='0'
| GNULIB_STPCPY='1'
| GNULIB_STPNCPY='0'
| GNULIB_STRCASESTR='0'
| GNULIB_STRCHRNUL='1'
| GNULIB_STRDUP='1'
| GNULIB_STRERROR='1'
| GNULIB_STRERROR_R='1'
| GNULIB_STRNCAT='0'
| GNULIB_STRNDUP='1'
| GNULIB_STRNLEN='1'
| GNULIB_STRPBRK='0'
| GNULIB_STRPTIME='0'
| GNULIB_STRSEP='0'
| GNULIB_STRSIGNAL='0'
| GNULIB_STRSTR='0'
| GNULIB_STRTOD='0'
| GNULIB_STRTOIMAX='0'
| GNULIB_STRTOK_R='0'
| GNULIB_STRTOLL='0'
| GNULIB_STRTOULL='0'
| GNULIB_STRTOUMAX='0'
| GNULIB_STRVERSCMP='1'
| GNULIB_SYMLINK='0'
| GNULIB_SYMLINKAT='0'
| GNULIB_SYSTEM_POSIX='0'
| GNULIB_TANF='0'
| GNULIB_TANHF='0'
| GNULIB_TANL='0'
| GNULIB_TIMEGM='0'
| GNULIB_TIME_R='0'
| GNULIB_TMPFILE='0'
| GNULIB_TOWCTRANS='0'
| GNULIB_TRUNC='0'
| GNULIB_TRUNCF='0'
| GNULIB_TRUNCL='0'
| GNULIB_TTYNAME_R='0'
| GNULIB_UNISTD_H_NONBLOCKING='0'
| GNULIB_UNISTD_H_SIGPIPE='0'
| GNULIB_UNLINK='0'
| GNULIB_UNLINKAT='0'
| GNULIB_UNLOCKPT='0'
| GNULIB_UNSETENV='1'
| GNULIB_USLEEP='0'
| GNULIB_UTIMENSAT='0'
| GNULIB_VASPRINTF='0'
| GNULIB_VDPRINTF='0'
| GNULIB_VFPRINTF='1'
| GNULIB_VFPRINTF_POSIX='1'
| GNULIB_VFSCANF='0'
| GNULIB_VPRINTF='1'
| GNULIB_VPRINTF_POSIX='0'
| GNULIB_VSCANF='0'
| GNULIB_VSNPRINTF='1'
| GNULIB_VSPRINTF_POSIX='1'
| GNULIB_WAITPID='1'
| GNULIB_WCPCPY='0'
| GNULIB_WCPNCPY='0'
| GNULIB_WCRTOMB='0'
| GNULIB_WCSCASECMP='0'
| GNULIB_WCSCAT='0'
| GNULIB_WCSCHR='0'
| GNULIB_WCSCMP='0'
| GNULIB_WCSCOLL='0'
| GNULIB_WCSCPY='0'
| GNULIB_WCSCSPN='0'
| GNULIB_WCSDUP='0'
| GNULIB_WCSLEN='0'
| GNULIB_WCSNCASECMP='0'
| GNULIB_WCSNCAT='0'
| GNULIB_WCSNCMP='0'
| GNULIB_WCSNCPY='0'
| GNULIB_WCSNLEN='0'
| GNULIB_WCSNRTOMBS='0'
| GNULIB_WCSPBRK='0'
| GNULIB_WCSRCHR='0'
| GNULIB_WCSRTOMBS='0'
| GNULIB_WCSSPN='0'
| GNULIB_WCSSTR='0'
| GNULIB_WCSTOK='0'
| GNULIB_WCSWIDTH='0'
| GNULIB_WCSXFRM='0'
| GNULIB_WCTOB='0'
| GNULIB_WCTOMB='0'
| GNULIB_WCTRANS='0'
| GNULIB_WCTYPE='0'
| GNULIB_WCWIDTH='1'
| GNULIB_WMEMCHR='0'
| GNULIB_WMEMCMP='0'
| GNULIB_WMEMCPY='0'
| GNULIB_WMEMMOVE='0'
| GNULIB_WMEMSET='0'
| GNULIB_WRITE='0'
| GNULIB__EXIT='0'
| GREP='/bin/grep'
| HAVE_ACOSF='1'
| HAVE_ACOSL='1'
| HAVE_ASINF='1'
| HAVE_ASINL='1'
| HAVE_ATAN2F='1'
| HAVE_ATANF='1'
| HAVE_ATANL='1'
| HAVE_ATOLL='1'
| HAVE_BTOWC='1'
| HAVE_CANONICALIZE_FILE_NAME='1'
| HAVE_CBRT='1'
| HAVE_CBRTF='1'
| HAVE_CBRTL='1'
| HAVE_CHOWN='1'
| HAVE_COPYSIGN='1'
| HAVE_COPYSIGNL='1'
| HAVE_COSF='1'
| HAVE_COSHF='1'
| HAVE_COSL='1'
| HAVE_DECL_ACOSL='1'
| HAVE_DECL_ASINL='1'
| HAVE_DECL_ATANL='1'
| HAVE_DECL_CBRTF='1'
| HAVE_DECL_CBRTL='1'
| HAVE_DECL_CEILF='1'
| HAVE_DECL_CEILL='1'
| HAVE_DECL_COPYSIGNF='1'
| HAVE_DECL_COSL='1'
| HAVE_DECL_ENVIRON='0'
| HAVE_DECL_EXP2='1'
| HAVE_DECL_EXP2F='1'
| HAVE_DECL_EXP2L='1'
| HAVE_DECL_EXPL='1'
| HAVE_DECL_EXPM1L='1'
| HAVE_DECL_FCHDIR='1'
| HAVE_DECL_FDATASYNC='1'
| HAVE_DECL_FLOORF='1'
| HAVE_DECL_FLOORL='1'
| HAVE_DECL_FPURGE='1'
| HAVE_DECL_FREXPL='0'
| HAVE_DECL_FSEEKO='1'
| HAVE_DECL_FTELLO='1'
| HAVE_DECL_GETDELIM='0'
| HAVE_DECL_GETDOMAINNAME='1'
| HAVE_DECL_GETLINE='0'
| HAVE_DECL_GETLOADAVG='1'
| HAVE_DECL_GETLOGIN_R='1'
| HAVE_DECL_GETPAGESIZE='1'
| HAVE_DECL_GETUSERSHELL='1'
| HAVE_DECL_IMAXABS='1'
| HAVE_DECL_IMAXDIV='1'
| HAVE_DECL_LDEXPL='0'
| HAVE_DECL_LOCALTIME_R='1'
| HAVE_DECL_LOG10L='1'
| HAVE_DECL_LOG2='1'
| HAVE_DECL_LOG2F='1'
| HAVE_DECL_LOG2L='1'
| HAVE_DECL_LOGB='1'
| HAVE_DECL_LOGL='1'
| HAVE_DECL_MEMMEM='1'
| HAVE_DECL_MEMRCHR='1'
| HAVE_DECL_OBSTACK_PRINTF='0'
| HAVE_DECL_REMAINDER='1'
| HAVE_DECL_REMAINDERL='1'
| HAVE_DECL_RINTF='1'
| HAVE_DECL_ROUND='1'
| HAVE_DECL_ROUNDF='1'
| HAVE_DECL_ROUNDL='1'
| HAVE_DECL_SETENV='1'
| HAVE_DECL_SETHOSTNAME='1'
| HAVE_DECL_SINL='1'
| HAVE_DECL_SNPRINTF='1'
| HAVE_DECL_SQRTL='1'
| HAVE_DECL_STRDUP='1'
| HAVE_DECL_STRERROR_R='0'
| HAVE_DECL_STRNDUP='0'
| HAVE_DECL_STRNLEN='0'
| HAVE_DECL_STRSIGNAL='1'
| HAVE_DECL_STRTOIMAX='1'
| HAVE_DECL_STRTOK_R='1'
| HAVE_DECL_STRTOUMAX='1'
| HAVE_DECL_TANL='1'
| HAVE_DECL_TRUNC='1'
| HAVE_DECL_TRUNCF='1'
| HAVE_DECL_TRUNCL='1'
| HAVE_DECL_TTYNAME_R='1'
| HAVE_DECL_UNSETENV='1'
| HAVE_DECL_VSNPRINTF='1'
| HAVE_DECL_WCTOB='1'
| HAVE_DECL_WCWIDTH='1'
| HAVE_DPRINTF='1'
| HAVE_DUP2='1'
| HAVE_DUP3='1'
| HAVE_EUIDACCESS='1'
| HAVE_EXPF='1'
| HAVE_EXPL='1'
| HAVE_EXPM1='1'
| HAVE_EXPM1F='1'
| HAVE_FABSF='1'
| HAVE_FABSL='1'
| HAVE_FACCESSAT='1'
| HAVE_FCHDIR='1'
| HAVE_FCHMODAT='1'
| HAVE_FCHOWNAT='1'
| HAVE_FCNTL='1'
| HAVE_FDATASYNC='1'
| HAVE_FEATURES_H='0'
| HAVE_FFSL='1'
| HAVE_FFSLL='1'
| HAVE_FMA='1'
| HAVE_FMAF='1'
| HAVE_FMAL='1'
| HAVE_FMODF='1'
| HAVE_FMODL='1'
| HAVE_FREXPF='1'
| HAVE_FSEEKO='1'
| HAVE_FSTATAT='1'
| HAVE_FSYNC='1'
| HAVE_FTELLO='1'
| HAVE_FTRUNCATE='1'
| HAVE_FUTIMENS='1'
| HAVE_GCJ_C=''
| HAVE_GCJ_IN_PATH='yes'
| HAVE_GETDTABLESIZE='1'
| HAVE_GETGROUPS='1'
| HAVE_GETHOSTNAME='1'
| HAVE_GETLOGIN='1'
| HAVE_GETOPT_H='1'
| HAVE_GETPAGESIZE='1'
| HAVE_GETSUBOPT='1'
| HAVE_GIJ=''
| HAVE_GIJ_IN_PATH=''
| HAVE_GRANTPT='1'
| HAVE_GROUP_MEMBER='1'
| HAVE_HYPOTF='1'
| HAVE_HYPOTL='1'
| HAVE_ILOGB='1'
| HAVE_ILOGBF='1'
| HAVE_ILOGBL='1'
| HAVE_INTTYPES_H='1'
| HAVE_ISNAND='1'
| HAVE_ISNANF='1'
| HAVE_ISNANL='0'
| HAVE_ISWBLANK='0'
| HAVE_ISWCNTRL='1'
| HAVE_JAVA=''
| HAVE_JAVAC=''
| HAVE_JAVAC_ENVVAR=''
| HAVE_JAVAC_IN_PATH=''
| HAVE_JAVA_ENVVAR=''
| HAVE_JAVA_IN_PATH=''
| HAVE_JIKES=''
| HAVE_JIKES_IN_PATH=''
| HAVE_JRE=''
| HAVE_JRE_IN_PATH=''
| HAVE_JVIEW=''
| HAVE_JVIEW_IN_PATH=''
| HAVE_LCHMOD='1'
| HAVE_LCHOWN='1'
| HAVE_LDEXPF='1'
| HAVE_LINK='1'
| HAVE_LINKAT='1'
| HAVE_LOG10F='1'
| HAVE_LOG10L='1'
| HAVE_LOG1P='1'
| HAVE_LOG1PF='1'
| HAVE_LOG1PL='1'
| HAVE_LOGBF='1'
| HAVE_LOGBL='1'
| HAVE_LOGF='1'
| HAVE_LOGL='1'
| HAVE_LONG_LONG_INT='1'
| HAVE_LSTAT='1'
| HAVE_MBRLEN='1'
| HAVE_MBRTOWC='0'
| HAVE_MBSINIT='0'
| HAVE_MBSLEN='0'
| HAVE_MBSNRTOWCS='1'
| HAVE_MBSRTOWCS='1'
| HAVE_MEMCHR='1'
| HAVE_MEMPCPY='1'
| HAVE_MKDIRAT='1'
| HAVE_MKDTEMP='1'
| HAVE_MKFIFO='1'
| HAVE_MKFIFOAT='1'
| HAVE_MKNOD='1'
| HAVE_MKNODAT='1'
| HAVE_MKOSTEMP='1'
| HAVE_MKOSTEMPS='1'
| HAVE_MKSTEMP='1'
| HAVE_MKSTEMPS='1'
| HAVE_MODFF='1'
| HAVE_MODFL='1'
| HAVE_MSVC_INVALID_PARAMETER_HANDLER='0'
| HAVE_NANOSLEEP='1'
| HAVE_OPENAT='1'
| HAVE_OS_H='0'
| HAVE_PCLOSE='1'
| HAVE_PIPE2='0'
| HAVE_PIPE='1'
| HAVE_POPEN='1'
| HAVE_POSIX_OPENPT='1'
| HAVE_POSIX_SIGNALBLOCKING='1'
| HAVE_POSIX_SPAWN='0'
| HAVE_POSIX_SPAWNATTR_T='0'
| HAVE_POSIX_SPAWN_FILE_ACTIONS_T='0'
| HAVE_POWF='1'
| HAVE_PREAD='1'
| HAVE_PTHREAD_SIGMASK='1'
| HAVE_PTSNAME='1'
| HAVE_PTSNAME_R='1'
| HAVE_PWRITE='1'
| HAVE_RAISE='1'
| HAVE_RANDOM='1'
| HAVE_RANDOM_H='1'
| HAVE_RANDOM_R='1'
| HAVE_RAWMEMCHR='0'
| HAVE_READLINK='1'
| HAVE_READLINKAT='1'
| HAVE_REALPATH='1'
| HAVE_REMAINDER='1'
| HAVE_REMAINDERF='1'
| HAVE_RENAMEAT='1'
| HAVE_RINT='1'
| HAVE_RINTL='1'
| HAVE_RPMATCH='1'
| HAVE_SAME_LONG_DOUBLE_AS_DOUBLE='0'
| HAVE_SCHED_H=''
| HAVE_SETENV='1'
| HAVE_SETHOSTNAME='1'
| HAVE_SIGACTION='1'
| HAVE_SIGHANDLER_T='0'
| HAVE_SIGINFO_T='1'
| HAVE_SIGNED_SIG_ATOMIC_T='1'
| HAVE_SIGNED_WCHAR_T='1'
| HAVE_SIGNED_WINT_T='1'
| HAVE_SIGSET_T='1'
| HAVE_SINF='1'
| HAVE_SINHF='1'
| HAVE_SINL='1'
| HAVE_SLEEP='1'
| HAVE_SPAWN_H='0'
| HAVE_SQRTF='1'
| HAVE_SQRTL='1'
| HAVE_STDINT_H='1'
| HAVE_STPCPY='0'
| HAVE_STPNCPY='1'
| HAVE_STRCASESTR='1'
| HAVE_STRCHRNUL='0'
| HAVE_STRPBRK='1'
| HAVE_STRPTIME='1'
| HAVE_STRSEP='1'
| HAVE_STRTOD='1'
| HAVE_STRTOLL='1'
| HAVE_STRTOULL='1'
| HAVE_STRUCT_RANDOM_DATA='1'
| HAVE_STRUCT_SCHED_PARAM=''
| HAVE_STRUCT_SIGACTION_SA_SIGACTION='1'
| HAVE_STRVERSCMP='0'
| HAVE_SYMLINK='1'
| HAVE_SYMLINKAT='1'
| HAVE_SYS_BITYPES_H='1'
| HAVE_SYS_INTTYPES_H='0'
| HAVE_SYS_LOADAVG_H='0'
| HAVE_SYS_PARAM_H='0'
| HAVE_SYS_TYPES_H='1'
| HAVE_TANF='1'
| HAVE_TANHF='1'
| HAVE_TANL='1'
| HAVE_TIMEGM='1'
| HAVE_TYPE_VOLATILE_SIG_ATOMIC_T='1'
| HAVE_UNISTD_H='1'
| HAVE_UNLINKAT='1'
| HAVE_UNLOCKPT='1'
| HAVE_UNSIGNED_LONG_LONG_INT='1'
| HAVE_USLEEP='1'
| HAVE_UTIMENSAT='1'
| HAVE_VASPRINTF='1'
| HAVE_VDPRINTF='1'
| HAVE_WCHAR_H='1'
| HAVE_WCHAR_T='1'
| HAVE_WCPCPY='1'
| HAVE_WCPNCPY='1'
| HAVE_WCRTOMB='1'
| HAVE_WCSCASECMP='1'
| HAVE_WCSCAT='1'
| HAVE_WCSCHR='1'
| HAVE_WCSCMP='1'
| HAVE_WCSCOLL='1'
| HAVE_WCSCPY='1'
| HAVE_WCSCSPN='1'
| HAVE_WCSDUP='1'
| HAVE_WCSLEN='1'
| HAVE_WCSNCASECMP='1'
| HAVE_WCSNCAT='1'
| HAVE_WCSNCMP='1'
| HAVE_WCSNCPY='1'
| HAVE_WCSNLEN='1'
| HAVE_WCSNRTOMBS='1'
| HAVE_WCSPBRK='1'
| HAVE_WCSRCHR='1'
| HAVE_WCSRTOMBS='1'
| HAVE_WCSSPN='1'
| HAVE_WCSSTR='1'
| HAVE_WCSTOK='1'
| HAVE_WCSWIDTH='1'
| HAVE_WCSXFRM='1'
| HAVE_WCTRANS_T='1'
| HAVE_WCTYPE_H='1'
| HAVE_WCTYPE_T='1'
| HAVE_WINSOCK2_H='0'
| HAVE_WINT_T='1'
| HAVE_WMEMCHR='1'
| HAVE_WMEMCMP='1'
| HAVE_WMEMCPY='1'
| HAVE_WMEMMOVE='1'
| HAVE_WMEMSET='1'
| HAVE__BOOL='1'
| HAVE__EXIT='1'
| HELP2MAN='${SHELL} /usr/source/bison-2.7/build-aux/missing --run help2man'
| INCLUDE_NEXT='include_next'
| INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'
| INSTALL_DATA='${INSTALL} -m 644'
| INSTALL_PROGRAM='${INSTALL}'
| INSTALL_SCRIPT='${INSTALL}'
| INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
| INT32_MAX_LT_INTMAX_MAX='1'
| INT64_MAX_EQ_LONG_MAX='0'
| INTLLIBS=''
| INTL_MACOSX_LIBS=''
| ISNAND_LIBM=''
| ISNANF_LIBM='-lm'
| ISNANL_LIBM=''
| ISNAN_LIBM=''
| LDEXPL_LIBM=''
| LDEXP_LIBM=''
| LDFLAGS=''
| LEX='flex'
| LEXLIB='-lfl'
| LEX_IS_FLEX='true'
| LEX_OUTPUT_ROOT='lex.yy'
| LIBBISON_LIBDEPS=''
| LIBBISON_LTLIBDEPS=''
| LIBICONV='/usr/lib/libiconv.so'
| LIBINTL=''
| LIBMULTITHREAD='-lpthread'
| LIBOBJS=''
| LIBPTH=''
| LIBPTH_PREFIX=''
| LIBS=''
| LIBTHREAD=''
| LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_FALSE='#'
| LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE=''
| LIBUNISTRING_UNITYPES_H='unitypes.h'
| LIBUNISTRING_UNIWIDTH_H='uniwidth.h'
| LOCALCHARSET_TESTS_ENVIRONMENT='CHARSETALIASDIR="$(abs_top_builddir)/lib"'
| LOCALE_FR_UTF8='none'
| LOCALE_JA='none'
| LOCALE_ZH_CN='none'
| LTLIBICONV='-L/usr/lib -liconv'
| LTLIBINTL=''
| LTLIBMULTITHREAD='-lpthread'
| LTLIBOBJS=''
| LTLIBPTH=''
| LTLIBTHREAD=''
| M4='/usr/contrib/bin/m4'
| M4_DEBUGFILE='--debugfile'
| M4_GNU='--gnu'
| MAKEINFO='${SHELL} /usr/source/bison-2.7/build-aux/missing --run makeinfo'
| MKDIR_P='/usr/bin/mkdir -p'
| MSGFMT='/usr/bin/msgfmt'
| MSGFMT_015='/usr/bin/msgfmt'
| MSGMERGE='/usr/bin/msgmerge'
| NEXT_AS_FIRST_DIRECTIVE_ERRNO_H='<errno.h>'
| NEXT_AS_FIRST_DIRECTIVE_FCNTL_H='<fcntl.h>'
| NEXT_AS_FIRST_DIRECTIVE_FLOAT_H=''
| NEXT_AS_FIRST_DIRECTIVE_GETOPT_H='<getopt.h>'
| NEXT_AS_FIRST_DIRECTIVE_INTTYPES_H='<inttypes.h>'
| NEXT_AS_FIRST_DIRECTIVE_MATH_H='<math.h>'
| NEXT_AS_FIRST_DIRECTIVE_SCHED_H=''
| NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H='<signal.h>'
| NEXT_AS_FIRST_DIRECTIVE_SPAWN_H='<spawn.h>'
| NEXT_AS_FIRST_DIRECTIVE_STDDEF_H=''
| NEXT_AS_FIRST_DIRECTIVE_STDINT_H='<stdint.h>'
| NEXT_AS_FIRST_DIRECTIVE_STDIO_H='<stdio.h>'
| NEXT_AS_FIRST_DIRECTIVE_STDLIB_H='<stdlib.h>'
| NEXT_AS_FIRST_DIRECTIVE_STRING_H='<string.h>'
| NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H='<sys/stat.h>'
| NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H='<sys/types.h>'
| NEXT_AS_FIRST_DIRECTIVE_SYS_WAIT_H='<sys/wait.h>'
| NEXT_AS_FIRST_DIRECTIVE_TIME_H='<time.h>'
| NEXT_AS_FIRST_DIRECTIVE_UNISTD_H='<unistd.h>'
| NEXT_AS_FIRST_DIRECTIVE_WCHAR_H='<wchar.h>'
| NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H='<wctype.h>'
| NEXT_ERRNO_H='<errno.h>'
| NEXT_FCNTL_H='<fcntl.h>'
| NEXT_FLOAT_H=''
| NEXT_GETOPT_H='<getopt.h>'
| NEXT_INTTYPES_H='<inttypes.h>'
| NEXT_MATH_H='<math.h>'
| NEXT_SCHED_H=''
| NEXT_SIGNAL_H='<signal.h>'
| NEXT_SPAWN_H='<spawn.h>'
| NEXT_STDDEF_H=''
| NEXT_STDINT_H='<stdint.h>'
| NEXT_STDIO_H='<stdio.h>'
| NEXT_STDLIB_H='<stdlib.h>'
| NEXT_STRING_H='<string.h>'
| NEXT_SYS_STAT_H='<sys/stat.h>'
| NEXT_SYS_TYPES_H='<sys/types.h>'
| NEXT_SYS_WAIT_H='<sys/wait.h>'
| NEXT_TIME_H='<time.h>'
| NEXT_UNISTD_H='<unistd.h>'
| NEXT_WCHAR_H='<wchar.h>'
| NEXT_WCTYPE_H='<wctype.h>'
| OBJEXT='o'
| PACKAGE='bison'
| PACKAGE_BUGREPORT='address@hidden'
| PACKAGE_COPYRIGHT_YEAR='2012'
| PACKAGE_NAME='GNU Bison'
| PACKAGE_STRING='GNU Bison 2.7'
| PACKAGE_TARNAME='bison'
| PACKAGE_URL='http://www.gnu.org/software/bison/'
| PACKAGE_VERSION='2.7'
| PATH_SEPARATOR=':'
| PERL='/usr/bin/perl'
| POSUB=''
| PRAGMA_COLUMNS=''
| PRAGMA_SYSTEM_HEADER='#pragma GCC system_header'
| PRIPTR_PREFIX='"l"'
| PRI_MACROS_BROKEN='0'
| PTHREAD_H_DEFINES_STRUCT_TIMESPEC='0'
| PTRDIFF_T_SUFFIX=''
| RANLIB='ranlib'
| REPLACE_BTOWC='0'
| REPLACE_CALLOC='0'
| REPLACE_CANONICALIZE_FILE_NAME='0'
| REPLACE_CBRTF='0'
| REPLACE_CBRTL='0'
| REPLACE_CEIL='0'
| REPLACE_CEILF='0'
| REPLACE_CEILL='0'
| REPLACE_CHOWN='0'
| REPLACE_CLOSE='0'
| REPLACE_DPRINTF='0'
| REPLACE_DUP2='0'
| REPLACE_DUP='0'
| REPLACE_EXP2='0'
| REPLACE_EXP2L='0'
| REPLACE_EXPM1='0'
| REPLACE_EXPM1F='0'
| REPLACE_FABSL='0'
| REPLACE_FCHOWNAT='0'
| REPLACE_FCLOSE='0'
| REPLACE_FCNTL='1'
| REPLACE_FDOPEN='0'
| REPLACE_FFLUSH='0'
| REPLACE_FLOOR='0'
| REPLACE_FLOORF='0'
| REPLACE_FLOORL='0'
| REPLACE_FMA='0'
| REPLACE_FMAF='0'
| REPLACE_FMAL='0'
| REPLACE_FMOD='0'
| REPLACE_FMODF='0'
| REPLACE_FMODL='0'
| REPLACE_FOPEN='0'
| REPLACE_FPRINTF='1'
| REPLACE_FPURGE='0'
| REPLACE_FREOPEN='0'
| REPLACE_FREXP='1'
| REPLACE_FREXPF='0'
| REPLACE_FREXPL='1'
| REPLACE_FSEEK='0'
| REPLACE_FSEEKO='0'
| REPLACE_FSTAT='0'
| REPLACE_FSTATAT='0'
| REPLACE_FTELL='0'
| REPLACE_FTELLO='0'
| REPLACE_FTRUNCATE='0'
| REPLACE_FUTIMENS='0'
| REPLACE_GETCWD='0'
| REPLACE_GETDELIM='0'
| REPLACE_GETDOMAINNAME='0'
| REPLACE_GETGROUPS='0'
| REPLACE_GETLINE='1'
| REPLACE_GETLOGIN_R='0'
| REPLACE_GETPAGESIZE='0'
| REPLACE_HUGE_VAL='0'
| REPLACE_HYPOT='0'
| REPLACE_HYPOTF='0'
| REPLACE_HYPOTL='0'
| REPLACE_ILOGB='0'
| REPLACE_ILOGBF='0'
| REPLACE_ISATTY='0'
| REPLACE_ISFINITE='0'
| REPLACE_ISINF='0'
| REPLACE_ISNAN='1'
| REPLACE_ISWBLANK='1'
| REPLACE_ISWCNTRL='1'
| REPLACE_ITOLD='0'
| REPLACE_LCHOWN='0'
| REPLACE_LDEXPL='0'
| REPLACE_LINK='0'
| REPLACE_LINKAT='0'
| REPLACE_LOCALTIME_R='GNULIB_PORTCHECK'
| REPLACE_LOG10='0'
| REPLACE_LOG10F='0'
| REPLACE_LOG10L='0'
| REPLACE_LOG1P='0'
| REPLACE_LOG1PF='0'
| REPLACE_LOG1PL='0'
| REPLACE_LOG2='0'
| REPLACE_LOG2F='0'
| REPLACE_LOG2L='0'
| REPLACE_LOG='0'
| REPLACE_LOGB='0'
| REPLACE_LOGBF='0'
| REPLACE_LOGBL='0'
| REPLACE_LOGF='0'
| REPLACE_LOGL='0'
| REPLACE_LSEEK='0'
| REPLACE_LSTAT='0'
| REPLACE_MALLOC='0'
| REPLACE_MBRLEN='0'
| REPLACE_MBRTOWC='0'
| REPLACE_MBSINIT='0'
| REPLACE_MBSNRTOWCS='0'
| REPLACE_MBSRTOWCS='0'
| REPLACE_MBSTATE_T='1'
| REPLACE_MBTOWC='0'
| REPLACE_MEMCHR='0'
| REPLACE_MEMMEM='0'
| REPLACE_MKDIR='0'
| REPLACE_MKFIFO='0'
| REPLACE_MKNOD='0'
| REPLACE_MKSTEMP='0'
| REPLACE_MKTIME='GNULIB_PORTCHECK'
| REPLACE_MODF='0'
| REPLACE_MODFF='0'
| REPLACE_MODFL='0'
| REPLACE_NAN='0'
| REPLACE_NANOSLEEP='GNULIB_PORTCHECK'
| REPLACE_NULL='0'
| REPLACE_OBSTACK_PRINTF='0'
| REPLACE_OPEN='1'
| REPLACE_OPENAT='0'
| REPLACE_PERROR='1'
| REPLACE_POPEN='0'
| REPLACE_POSIX_SPAWN='0'
| REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE='1'
| REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2='1'
| REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN='1'
| REPLACE_PREAD='0'
| REPLACE_PRINTF='1'
| REPLACE_PTHREAD_SIGMASK='0'
| REPLACE_PTSNAME='0'
| REPLACE_PTSNAME_R='0'
| REPLACE_PUTENV='0'
| REPLACE_PWRITE='0'
| REPLACE_RAISE='0'
| REPLACE_RANDOM_R='0'
| REPLACE_READ='0'
| REPLACE_READLINK='0'
| REPLACE_REALLOC='0'
| REPLACE_REALPATH='0'
| REPLACE_REMAINDER='0'
| REPLACE_REMAINDERF='0'
| REPLACE_REMAINDERL='0'
| REPLACE_REMOVE='0'
| REPLACE_RENAME='0'
| REPLACE_RENAMEAT='0'
| REPLACE_RMDIR='0'
| REPLACE_ROUND='0'
| REPLACE_ROUNDF='0'
| REPLACE_ROUNDL='0'
| REPLACE_SETENV='0'
| REPLACE_SIGNBIT='1'
| REPLACE_SIGNBIT_USING_GCC='0'
| REPLACE_SLEEP='0'
| REPLACE_SNPRINTF='1'
| REPLACE_SPRINTF='1'
| REPLACE_SQRTL='0'
| REPLACE_STAT='1'
| REPLACE_STDIO_READ_FUNCS='0'
| REPLACE_STDIO_WRITE_FUNCS='0'
| REPLACE_STPNCPY='0'
| REPLACE_STRCASESTR='0'
| REPLACE_STRCHRNUL='0'
| REPLACE_STRDUP='0'
| REPLACE_STRERROR='1'
| REPLACE_STRERROR_R='0'
| REPLACE_STRNCAT='0'
| REPLACE_STRNDUP='0'
| REPLACE_STRNLEN='0'
| REPLACE_STRSIGNAL='0'
| REPLACE_STRSTR='0'
| REPLACE_STRTOD='0'
| REPLACE_STRTOIMAX='0'
| REPLACE_STRTOK_R='0'
| REPLACE_SYMLINK='0'
| REPLACE_TIMEGM='GNULIB_PORTCHECK'
| REPLACE_TMPFILE='0'
| REPLACE_TOWLOWER='1'
| REPLACE_TRUNC='0'
| REPLACE_TRUNCF='0'
| REPLACE_TRUNCL='0'
| REPLACE_TTYNAME_R='0'
| REPLACE_UNLINK='0'
| REPLACE_UNLINKAT='0'
| REPLACE_UNSETENV='1'
| REPLACE_USLEEP='0'
| REPLACE_UTIMENSAT='0'
| REPLACE_VASPRINTF='0'
| REPLACE_VDPRINTF='0'
| REPLACE_VFPRINTF='1'
| REPLACE_VPRINTF='0'
| REPLACE_VSNPRINTF='1'
| REPLACE_VSPRINTF='1'
| REPLACE_WCRTOMB='0'
| REPLACE_WCSNRTOMBS='0'
| REPLACE_WCSRTOMBS='0'
| REPLACE_WCSWIDTH='0'
| REPLACE_WCTOB='0'
| REPLACE_WCTOMB='0'
| REPLACE_WCWIDTH='0'
| REPLACE_WRITE='0'
| SCHED_H=''
| SET_MAKE=''
| SHELL='/bin/bash'
| SIG_ATOMIC_T_SUFFIX=''
| SIZE_T_SUFFIX='u'
| STDBOOL_H=''
| STDDEF_H=''
| STDINT_H='stdint.h'
| STRIP=''
| SYS_TIME_H_DEFINES_STRUCT_TIMESPEC='0'
| TIME_H_DEFINES_STRUCT_TIMESPEC='1'
| UINT32_MAX_LT_UINTMAX_MAX='1'
| UINT64_MAX_EQ_ULONG_MAX='0'
| UNDEFINE_STRTOK_R='0'
| UNISTD_H_HAVE_WINSOCK2_H='0'
| UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS='0'
| USE_NLS='no'
| VALGRIND=''
| VALGRIND_PREBISON=''
| VERSION='2.7'
| WARN_CFLAGS=''
| WARN_CFLAGS_TEST=''
| WARN_CXXFLAGS=''
| WARN_CXXFLAGS_TEST=''
| WCHAR_T_SUFFIX=''
| WERROR_CFLAGS=''
| WERROR_CXXFLAGS=''
| WINDOWS_64_BIT_OFF_T='0'
| WINDOWS_64_BIT_ST_SIZE='0'
| WINT_T_SUFFIX=''
| XGETTEXT='/usr/bin/xgettext'
| XGETTEXT_015='/usr/bin/xgettext'
| XGETTEXT_EXTRA_OPTIONS=' --flag=error:3:c-format 
--flag=error_at_line:5:c-format'
| XSLTPROC='/usr/contrib/bin/xsltproc'
| YACC='bison -y'
| YACC_LIBRARY='liby.a'
| YACC_SCRIPT='yacc'
| YFLAGS=''
| ac_ct_CC='gcc'
| ac_ct_CXX='g++'
| aclocaldir='${datadir}/aclocal'
| am__EXEEXT_FALSE=''
| am__EXEEXT_TRUE='#'
| am__fastdepCC_FALSE='#'
| am__fastdepCC_TRUE=''
| am__fastdepCXX_FALSE='#'
| am__fastdepCXX_TRUE=''
| am__include='.include'
| am__isrc=''
| am__leading_dot='.'
| am__nodep='_no'
| am__quote='"'
| am__tar='$${TAR-tar} chof - "$$tardir"'
| am__untar='$${TAR-tar} xf -'
| bindir='${exec_prefix}/bin'
| build='i386-pc-bsdi4.3'
| build_alias=''
| build_cpu='i386'
| build_os='bsdi4.3'
| build_vendor='pc'
| datadir='${datarootdir}'
| datarootdir='${prefix}/share'
| docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
| dvidir='${docdir}'
| exec_prefix='${prefix}'
| gl_LIBOBJS=' asnprintf.o error.o fcntl.o fpending.o fprintf.o frexp.o 
frexpl.o fseterr.o getdelim.o getline.o getopt.o getopt1.o isnand.o isnanf.o 
isnanl.o ldexpl.o mbrtowc.o mbsinit.o obstack.o obstack_printf.o open.o 
perror.o printf.o printf-args.o printf-parse.o rawmemchr.o signbitd.o 
signbitf.o signbitl.o snprintf.o spawn_faction_addclose.o 
spawn_faction_adddup2.o spawn_faction_addopen.o spawn_faction_destroy.o 
spawn_faction_init.o spawnattr_destroy.o spawnattr_init.o spawnattr_setflags.o 
spawnattr_setsigmask.o spawni.o spawnp.o sprintf.o stat.o stpcpy.o strchrnul.o 
strerror.o strerror-override.o strerror_r.o strndup.o strnlen.o strverscmp.o 
unsetenv.o vasnprintf.o vfprintf.o vsnprintf.o vsprintf.o xmemdup0.o'
| gl_LTLIBOBJS=' asnprintf.lo error.lo fcntl.lo fpending.lo fprintf.lo frexp.lo 
frexpl.lo fseterr.lo getdelim.lo getline.lo getopt.lo getopt1.lo isnand.lo 
isnanf.lo isnanl.lo ldexpl.lo mbrtowc.lo mbsinit.lo obstack.lo 
obstack_printf.lo open.lo perror.lo printf.lo printf-args.lo printf-parse.lo 
rawmemchr.lo signbitd.lo signbitf.lo signbitl.lo snprintf.lo 
spawn_faction_addclose.lo spawn_faction_adddup2.lo spawn_faction_addopen.lo 
spawn_faction_destroy.lo spawn_faction_init.lo spawnattr_destroy.lo 
spawnattr_init.lo spawnattr_setflags.lo spawnattr_setsigmask.lo spawni.lo 
spawnp.lo sprintf.lo stat.lo stpcpy.lo strchrnul.lo strerror.lo 
strerror-override.lo strerror_r.lo strndup.lo strnlen.lo strverscmp.lo 
unsetenv.lo vasnprintf.lo vfprintf.lo vsnprintf.lo vsprintf.lo xmemdup0.lo'
| gltests_LIBOBJS=''
| gltests_LTLIBOBJS=''
| gltests_WITNESS='IN_BISON_GNULIB_TESTS'
| host='i386-pc-bsdi4.3'
| host_alias=''
| host_cpu='i386'
| host_os='bsdi4.3'
| host_vendor='pc'
| htmldir='${docdir}'
| includedir='${prefix}/include'
| infodir='${datarootdir}/info'
| install_sh='${SHELL} /usr/source/bison-2.7/build-aux/install-sh'
| libdir='${exec_prefix}/lib'
| libexecdir='${exec_prefix}/libexec'
| lispdir='${datarootdir}/emacs/site-lisp'
| localedir='${datarootdir}/locale'
| localstatedir='/var'
| mandir='${datarootdir}/man'
| mkdir_p='/usr/bin/mkdir -p'
| oldincludedir='/usr/include'
| pdfdir='${docdir}'
| pkglibexecdir='${libexecdir}/${PACKAGE}'
| prefix='/usr'
| program_transform_name='s,x,x,'
| psdir='${docdir}'
| sbindir='${exec_prefix}/sbin'
| sharedstatedir='/etc'
| sysconfdir='${prefix}/etc'
| target_alias=''
| 
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
| 
| /* 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
| #define HAVE_RAW_DECL_SINF 1
| #define HAVE_RAW_DECL_SINHF 1
| #define HAVE_RAW_DECL_SQRTF 1
| #define HAVE_RAW_DECL_TANF 1
| #define HAVE_RAW_DECL_TANHF 1
| #define HAVE_RAW_DECL_TRUNCF 1
| #define HAVE_DECL_MBRTOWC 0
| #define GNULIB_TEST_MBRTOWC 1
| #define GNULIB_TEST_MBSCHR 1
| #define HAVE_DECL_MBSINIT 0
| #define GNULIB_TEST_MBSINIT 1
| #define GNULIB_TEST_MBSRCHR 1
| #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
| #define mbstate_t int
| #define GNULIB_TEST_MEMCHR 1
| #define GNULIB_TEST_OBSTACK_PRINTF 1
| #define OPEN_TRAILING_SLASH_BUG 1
| #define GNULIB_TEST_OPEN 1
| #define GNULIB_TEST_PERROR 1
| #define GNULIB_TEST_PIPE2 1
| #define GNULIB_PIPE2_SAFER 1
| #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
| #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
| #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
| #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
| #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
| #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
| #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
| #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
| #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
| #define HAVE_PATHS_H 1
| #define HAVE_CONFSTR 1
| #define HAVE_SCHED_SETPARAM 1
| #define HAVE_SCHED_SETSCHEDULER 1
| #define HAVE_SETEGID 1
| #define HAVE_SETEUID 1
| #define HAVE_VFORK 1
| #define GNULIB_TEST_POSIX_SPAWNP 1
| #define HAVE_LDEXP_IN_LIBC 1
| #define REPLACE_PRINTF_POSIX 1
| #define GNULIB_TEST_PRINTF_POSIX 1
| #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0
| #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 0
| #define HAVE_RAISE 1
| #define GNULIB_TEST_RAISE 1
| #define GNULIB_TEST_RAWMEMCHR 1
| #define HAVE_REALLOC_POSIX 1
| #define GNULIB_TEST_REALLOC_POSIX 1
| #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
| #define GNULIB_TEST_SIGACTION 1
| #define HAVE_RAW_DECL_SIGACTION 1
| #define HAVE_RAW_DECL_SIGADDSET 1
| #define HAVE_RAW_DECL_SIGDELSET 1
| #define HAVE_RAW_DECL_SIGEMPTYSET 1
| #define HAVE_RAW_DECL_SIGFILLSET 1
| #define HAVE_RAW_DECL_SIGISMEMBER 1
| #define HAVE_RAW_DECL_SIGPENDING 1
| #define HAVE_RAW_DECL_SIGPROCMASK 1
| #define FLT_SIGNBIT_WORD 0
| #define FLT_SIGNBIT_BIT 31
| #define DBL_SIGNBIT_WORD 1
| #define DBL_SIGNBIT_BIT 31
| #define LDBL_SIGNBIT_WORD 2
| #define LDBL_SIGNBIT_BIT 15
| #define GNULIB_TEST_SIGNBIT 1
| #define GNULIB_TEST_SIGPROCMASK 1
| #define HAVE_STDINT_H 1
| #define HAVE_SNPRINTF 1
| #define GNULIB_TEST_SNPRINTF 1
| #define GNULIB_SNPRINTF 1
| #define HAVE_SNPRINTF 1
| #define 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 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 GNULIB_TEST_SPRINTF_POSIX 1
| #define REPLACE_FUNC_STAT_FILE 1
| #define GNULIB_TEST_STAT 1
| #define GNULIB_FSCANF 1
| #define GNULIB_SCANF 1
| #define HAVE_RAW_DECL_FPURGE 1
| #define HAVE_RAW_DECL_GETS 1
| #define HAVE_RAW_DECL_PCLOSE 1
| #define HAVE_RAW_DECL_POPEN 1
| #define HAVE_RAW_DECL_SNPRINTF 1
| #define HAVE_RAW_DECL_TMPFILE 1
| #define HAVE_RAW_DECL_VSNPRINTF 1
| #define HAVE_RAW_DECL_GETLOADAVG 1
| #define HAVE_RAW_DECL_GETSUBOPT 1
| #define HAVE_RAW_DECL_INITSTATE 1
| #define HAVE_RAW_DECL_RANDOM 1
| #define HAVE_RAW_DECL_REALPATH 1
| #define HAVE_RAW_DECL_SETENV 1
| #define HAVE_RAW_DECL_SETSTATE 1
| #define HAVE_RAW_DECL_SRANDOM 1
| #define HAVE_RAW_DECL_STRTOD 1
| #define HAVE_RAW_DECL_STRTOLL 1
| #define HAVE_RAW_DECL_STRTOULL 1
| #define HAVE_RAW_DECL_UNSETENV 1
| #define GNULIB_TEST_STPCPY 1
| #define GNULIB_TEST_STRCHRNUL 1
| #define GNULIB_TEST_STRDUP 1
| #define GNULIB_STRERROR 1
| #define GNULIB_TEST_STRERROR 1
| #define GNULIB_TEST_STRERROR_R 1
| #define GNULIB_TEST_STRNDUP 1
| #define GNULIB_TEST_STRNLEN 1
| #define HAVE_STRTOUL 1
| #define GNULIB_TEST_STRVERSCMP 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_RAW_DECL_WAITPID 1
| #define HAVE_RAW_DECL_CHDIR 1
| #define HAVE_RAW_DECL_CHOWN 1
| #define HAVE_RAW_DECL_DUP 1
| #define HAVE_RAW_DECL_DUP2 1
| #define HAVE_RAW_DECL_FCHDIR 1
| #define HAVE_RAW_DECL_FSYNC 1
| #define HAVE_RAW_DECL_FTRUNCATE 1
| #define HAVE_RAW_DECL_GETCWD 1
| #define HAVE_RAW_DECL_GETDOMAINNAME 1
| #define HAVE_RAW_DECL_GETDTABLESIZE 1
| #define HAVE_RAW_DECL_GETGROUPS 1
| #define HAVE_RAW_DECL_GETHOSTNAME 1
| #define HAVE_RAW_DECL_GETLOGIN 1
| #define HAVE_RAW_DECL_GETLOGIN_R 1
| #define HAVE_RAW_DECL_GETPAGESIZE 1
| #define HAVE_RAW_DECL_GETUSERSHELL 1
| #define HAVE_RAW_DECL_SETUSERSHELL 1
| #define HAVE_RAW_DECL_ENDUSERSHELL 1
| #define HAVE_RAW_DECL_ISATTY 1
| #define HAVE_RAW_DECL_LINK 1
| #define HAVE_RAW_DECL_LSEEK 1
| #define HAVE_RAW_DECL_PIPE 1
| #define HAVE_RAW_DECL_READLINK 1
| #define HAVE_RAW_DECL_RMDIR 1
| #define HAVE_RAW_DECL_SETHOSTNAME 1
| #define HAVE_RAW_DECL_SLEEP 1
| #define HAVE_RAW_DECL_SYMLINK 1
| #define HAVE_RAW_DECL_TTYNAME_R 1
| #define HAVE_RAW_DECL_UNLINK 1
| #define HAVE_RAW_DECL_USLEEP 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_UNSETENV 1
| #define VOID_UNSETENV 1
| #define GNULIB_TEST_UNSETENV 1
| #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 GNULIB_TEST_VFPRINTF_POSIX 1
| #define HAVE_VSNPRINTF 1
| #define GNULIB_TEST_VSNPRINTF 1
| #define HAVE_VSNPRINTF 1
| #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 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 GNULIB_TEST_VSPRINTF_POSIX 1
| #define GNULIB_TEST_WAITPID 1
| #define HAVE_RAW_DECL_WCWIDTH 1
| #define HAVE_RAW_DECL_WMEMCPY 1
| #define HAVE_RAW_DECL_WCSLEN 1
| #define HAVE_RAW_DECL_WCSCPY 1
| #define HAVE_RAW_DECL_WCSNCPY 1
| #define HAVE_RAW_DECL_WCSCAT 1
| #define HAVE_RAW_DECL_WCSNCAT 1
| #define HAVE_RAW_DECL_WCSCMP 1
| #define HAVE_RAW_DECL_WCSNCMP 1
| #define HAVE_RAW_DECL_WCSCHR 1
| #define HAVE_RAW_DECL_WCSRCHR 1
| #define HAVE_RAW_DECL_WCSCSPN 1
| #define HAVE_RAW_DECL_WCSPBRK 1
| #define HAVE_RAW_DECL_WCSWIDTH 1
| #define HAVE_RAW_DECL_WCTYPE 1
| #define HAVE_RAW_DECL_ISWCTYPE 1
| #define HAVE_RAW_DECL_WCTRANS 1
| #define HAVE_RAW_DECL_TOWCTRANS 1
| #define HAVE_DECL_WCWIDTH 1
| #define GNULIB_TEST_WCWIDTH 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TIMES_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_TIMES 1
| #define HAVE_DECL_GETRUSAGE 1
| #define HAVE_DECL_TIMES 1
| #define HAVE_DECL_CLOCK 1
| #define HAVE_DECL_SYSCONF 1
| #define HAVE_CLOCK_T 1
| #define HAVE_STRUCT_TMS 1
| #define HAVE_ICONV 1
| 
| configure: exit 0


-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]