]>
Commit | Line | Data |
---|---|---|
87326c78 DD |
1 | #! /bin/sh |
2 | # Guess values for system-dependent variables and create Makefiles. | |
d0ac1c44 SM |
3 | # Generated by GNU Autoconf 2.69. |
4 | # | |
5 | # | |
6 | # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. | |
87326c78 | 7 | # |
87326c78 DD |
8 | # |
9 | # This configure script is free software; the Free Software Foundation | |
10 | # gives unlimited permission to copy, distribute and modify it. | |
11 | ## -------------------- ## | |
12 | ## M4sh Initialization. ## | |
13 | ## -------------------- ## | |
14 | ||
15 | # Be more Bourne compatible | |
16 | DUALCASE=1; export DUALCASE # for MKS sh | |
17 | if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : | |
18 | emulate sh | |
19 | NULLCMD=: | |
20 | # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which | |
21 | # is contrary to our usage. Disable this feature. | |
22 | alias -g '${1+"$@"}'='"$@"' | |
23 | setopt NO_GLOB_SUBST | |
24 | else | |
25 | case `(set -o) 2>/dev/null` in #( | |
26 | *posix*) : | |
27 | set -o posix ;; #( | |
28 | *) : | |
29 | ;; | |
30 | esac | |
31 | fi | |
32 | ||
33 | ||
34 | as_nl=' | |
35 | ' | |
36 | export as_nl | |
37 | # Printing a long string crashes Solaris 7 /usr/bin/printf. | |
38 | as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' | |
39 | as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo | |
40 | as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo | |
41 | # Prefer a ksh shell builtin over an external printf program on Solaris, | |
42 | # but without wasting forks for bash or zsh. | |
43 | if test -z "$BASH_VERSION$ZSH_VERSION" \ | |
44 | && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then | |
45 | as_echo='print -r --' | |
46 | as_echo_n='print -rn --' | |
47 | elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then | |
48 | as_echo='printf %s\n' | |
49 | as_echo_n='printf %s' | |
50 | else | |
51 | if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then | |
52 | as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' | |
53 | as_echo_n='/usr/ucb/echo -n' | |
54 | else | |
55 | as_echo_body='eval expr "X$1" : "X\\(.*\\)"' | |
56 | as_echo_n_body='eval | |
57 | arg=$1; | |
58 | case $arg in #( | |
59 | *"$as_nl"*) | |
60 | expr "X$arg" : "X\\(.*\\)$as_nl"; | |
61 | arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; | |
62 | esac; | |
63 | expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" | |
64 | ' | |
65 | export as_echo_n_body | |
66 | as_echo_n='sh -c $as_echo_n_body as_echo' | |
67 | fi | |
68 | export as_echo_body | |
69 | as_echo='sh -c $as_echo_body as_echo' | |
70 | fi | |
71 | ||
72 | # The user is always right. | |
73 | if test "${PATH_SEPARATOR+set}" != set; then | |
74 | PATH_SEPARATOR=: | |
75 | (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { | |
76 | (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || | |
77 | PATH_SEPARATOR=';' | |
78 | } | |
79 | fi | |
80 | ||
81 | ||
82 | # IFS | |
83 | # We need space, tab and new line, in precisely that order. Quoting is | |
84 | # there to prevent editors from complaining about space-tab. | |
85 | # (If _AS_PATH_WALK were called with IFS unset, it would disable word | |
86 | # splitting by setting IFS to empty value.) | |
87 | IFS=" "" $as_nl" | |
88 | ||
89 | # Find who we are. Look in the path if we contain no directory separator. | |
d0ac1c44 | 90 | as_myself= |
87326c78 DD |
91 | case $0 in #(( |
92 | *[\\/]* ) as_myself=$0 ;; | |
93 | *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
94 | for as_dir in $PATH | |
95 | do | |
96 | IFS=$as_save_IFS | |
97 | test -z "$as_dir" && as_dir=. | |
98 | test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break | |
99 | done | |
100 | IFS=$as_save_IFS | |
101 | ||
102 | ;; | |
103 | esac | |
104 | # We did not find ourselves, most probably we were run as `sh COMMAND' | |
105 | # in which case we are not to be found in the path. | |
106 | if test "x$as_myself" = x; then | |
107 | as_myself=$0 | |
108 | fi | |
109 | if test ! -f "$as_myself"; then | |
110 | $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 | |
111 | exit 1 | |
112 | fi | |
113 | ||
114 | # Unset variables that we do not need and which cause bugs (e.g. in | |
115 | # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" | |
116 | # suppresses any "Segmentation fault" message there. '((' could | |
117 | # trigger a bug in pdksh 5.2.14. | |
118 | for as_var in BASH_ENV ENV MAIL MAILPATH | |
119 | do eval test x\${$as_var+set} = xset \ | |
120 | && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : | |
121 | done | |
122 | PS1='$ ' | |
123 | PS2='> ' | |
124 | PS4='+ ' | |
125 | ||
126 | # NLS nuisances. | |
127 | LC_ALL=C | |
128 | export LC_ALL | |
129 | LANGUAGE=C | |
130 | export LANGUAGE | |
131 | ||
132 | # CDPATH. | |
133 | (unset CDPATH) >/dev/null 2>&1 && unset CDPATH | |
134 | ||
d0ac1c44 SM |
135 | # Use a proper internal environment variable to ensure we don't fall |
136 | # into an infinite loop, continuously re-executing ourselves. | |
137 | if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then | |
138 | _as_can_reexec=no; export _as_can_reexec; | |
139 | # We cannot yet assume a decent shell, so we have to provide a | |
140 | # neutralization value for shells without unset; and this also | |
141 | # works around shells that cannot unset nonexistent variables. | |
142 | # Preserve -v and -x to the replacement shell. | |
143 | BASH_ENV=/dev/null | |
144 | ENV=/dev/null | |
145 | (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV | |
146 | case $- in # (((( | |
147 | *v*x* | *x*v* ) as_opts=-vx ;; | |
148 | *v* ) as_opts=-v ;; | |
149 | *x* ) as_opts=-x ;; | |
150 | * ) as_opts= ;; | |
151 | esac | |
152 | exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} | |
153 | # Admittedly, this is quite paranoid, since all the known shells bail | |
154 | # out after a failed `exec'. | |
155 | $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 | |
156 | as_fn_exit 255 | |
157 | fi | |
158 | # We don't want this to propagate to other subprocesses. | |
159 | { _as_can_reexec=; unset _as_can_reexec;} | |
87326c78 DD |
160 | if test "x$CONFIG_SHELL" = x; then |
161 | as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : | |
162 | emulate sh | |
163 | NULLCMD=: | |
164 | # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which | |
165 | # is contrary to our usage. Disable this feature. | |
166 | alias -g '\${1+\"\$@\"}'='\"\$@\"' | |
167 | setopt NO_GLOB_SUBST | |
168 | else | |
169 | case \`(set -o) 2>/dev/null\` in #( | |
170 | *posix*) : | |
171 | set -o posix ;; #( | |
172 | *) : | |
173 | ;; | |
174 | esac | |
175 | fi | |
176 | " | |
177 | as_required="as_fn_return () { (exit \$1); } | |
178 | as_fn_success () { as_fn_return 0; } | |
179 | as_fn_failure () { as_fn_return 1; } | |
180 | as_fn_ret_success () { return 0; } | |
181 | as_fn_ret_failure () { return 1; } | |
182 | ||
183 | exitcode=0 | |
184 | as_fn_success || { exitcode=1; echo as_fn_success failed.; } | |
185 | as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } | |
186 | as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } | |
187 | as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } | |
188 | if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : | |
189 | ||
190 | else | |
191 | exitcode=1; echo positional parameters were not saved. | |
192 | fi | |
d0ac1c44 SM |
193 | test x\$exitcode = x0 || exit 1 |
194 | test -x / || exit 1" | |
87326c78 DD |
195 | as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO |
196 | as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO | |
197 | eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && | |
198 | test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 | |
6bb11ab3 L |
199 | test \$(( 1 + 1 )) = 2 || exit 1 |
200 | ||
201 | test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( | |
202 | ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' | |
203 | ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO | |
204 | ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO | |
205 | PATH=/empty FPATH=/empty; export PATH FPATH | |
206 | test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ | |
207 | || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1" | |
87326c78 DD |
208 | if (eval "$as_required") 2>/dev/null; then : |
209 | as_have_required=yes | |
210 | else | |
211 | as_have_required=no | |
212 | fi | |
213 | if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : | |
214 | ||
215 | else | |
216 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
217 | as_found=false | |
218 | for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH | |
219 | do | |
220 | IFS=$as_save_IFS | |
221 | test -z "$as_dir" && as_dir=. | |
222 | as_found=: | |
223 | case $as_dir in #( | |
224 | /*) | |
225 | for as_base in sh bash ksh sh5; do | |
226 | # Try only shells that exist, to save several forks. | |
227 | as_shell=$as_dir/$as_base | |
228 | if { test -f "$as_shell" || test -f "$as_shell.exe"; } && | |
229 | { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : | |
230 | CONFIG_SHELL=$as_shell as_have_required=yes | |
231 | if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : | |
232 | break 2 | |
233 | fi | |
234 | fi | |
235 | done;; | |
236 | esac | |
237 | as_found=false | |
238 | done | |
239 | $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && | |
240 | { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : | |
241 | CONFIG_SHELL=$SHELL as_have_required=yes | |
242 | fi; } | |
243 | IFS=$as_save_IFS | |
244 | ||
245 | ||
246 | if test "x$CONFIG_SHELL" != x; then : | |
d0ac1c44 SM |
247 | export CONFIG_SHELL |
248 | # We cannot yet assume a decent shell, so we have to provide a | |
249 | # neutralization value for shells without unset; and this also | |
250 | # works around shells that cannot unset nonexistent variables. | |
251 | # Preserve -v and -x to the replacement shell. | |
252 | BASH_ENV=/dev/null | |
253 | ENV=/dev/null | |
254 | (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV | |
255 | case $- in # (((( | |
256 | *v*x* | *x*v* ) as_opts=-vx ;; | |
257 | *v* ) as_opts=-v ;; | |
258 | *x* ) as_opts=-x ;; | |
259 | * ) as_opts= ;; | |
260 | esac | |
261 | exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} | |
262 | # Admittedly, this is quite paranoid, since all the known shells bail | |
263 | # out after a failed `exec'. | |
264 | $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 | |
265 | exit 255 | |
87326c78 DD |
266 | fi |
267 | ||
268 | if test x$as_have_required = xno; then : | |
269 | $as_echo "$0: This script requires a shell more modern than all" | |
270 | $as_echo "$0: the shells that I found on your system." | |
271 | if test x${ZSH_VERSION+set} = xset ; then | |
272 | $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" | |
273 | $as_echo "$0: be upgraded to zsh 4.3.4 or later." | |
274 | else | |
275 | $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, | |
276 | $0: including any error possibly output before this | |
277 | $0: message. Then install a modern shell, or manually run | |
278 | $0: the script under such a shell if you do have one." | |
279 | fi | |
280 | exit 1 | |
281 | fi | |
282 | fi | |
283 | fi | |
284 | SHELL=${CONFIG_SHELL-/bin/sh} | |
285 | export SHELL | |
286 | # Unset more variables known to interfere with behavior of common tools. | |
287 | CLICOLOR_FORCE= GREP_OPTIONS= | |
288 | unset CLICOLOR_FORCE GREP_OPTIONS | |
289 | ||
290 | ## --------------------- ## | |
291 | ## M4sh Shell Functions. ## | |
292 | ## --------------------- ## | |
293 | # as_fn_unset VAR | |
294 | # --------------- | |
295 | # Portably unset VAR. | |
296 | as_fn_unset () | |
297 | { | |
298 | { eval $1=; unset $1;} | |
299 | } | |
300 | as_unset=as_fn_unset | |
301 | ||
302 | # as_fn_set_status STATUS | |
303 | # ----------------------- | |
304 | # Set $? to STATUS, without forking. | |
305 | as_fn_set_status () | |
306 | { | |
307 | return $1 | |
308 | } # as_fn_set_status | |
309 | ||
310 | # as_fn_exit STATUS | |
311 | # ----------------- | |
312 | # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. | |
313 | as_fn_exit () | |
314 | { | |
315 | set +e | |
316 | as_fn_set_status $1 | |
317 | exit $1 | |
318 | } # as_fn_exit | |
319 | ||
320 | # as_fn_mkdir_p | |
321 | # ------------- | |
322 | # Create "$as_dir" as a directory, including parents if necessary. | |
323 | as_fn_mkdir_p () | |
324 | { | |
325 | ||
326 | case $as_dir in #( | |
327 | -*) as_dir=./$as_dir;; | |
328 | esac | |
329 | test -d "$as_dir" || eval $as_mkdir_p || { | |
330 | as_dirs= | |
331 | while :; do | |
332 | case $as_dir in #( | |
333 | *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( | |
334 | *) as_qdir=$as_dir;; | |
335 | esac | |
336 | as_dirs="'$as_qdir' $as_dirs" | |
337 | as_dir=`$as_dirname -- "$as_dir" || | |
338 | $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | |
339 | X"$as_dir" : 'X\(//\)[^/]' \| \ | |
340 | X"$as_dir" : 'X\(//\)$' \| \ | |
341 | X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || | |
342 | $as_echo X"$as_dir" | | |
343 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ | |
344 | s//\1/ | |
345 | q | |
346 | } | |
347 | /^X\(\/\/\)[^/].*/{ | |
348 | s//\1/ | |
349 | q | |
350 | } | |
351 | /^X\(\/\/\)$/{ | |
352 | s//\1/ | |
353 | q | |
354 | } | |
355 | /^X\(\/\).*/{ | |
356 | s//\1/ | |
357 | q | |
358 | } | |
359 | s/.*/./; q'` | |
360 | test -d "$as_dir" && break | |
361 | done | |
362 | test -z "$as_dirs" || eval "mkdir $as_dirs" | |
d0ac1c44 | 363 | } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" |
87326c78 DD |
364 | |
365 | ||
366 | } # as_fn_mkdir_p | |
d0ac1c44 SM |
367 | |
368 | # as_fn_executable_p FILE | |
369 | # ----------------------- | |
370 | # Test if FILE is an executable regular file. | |
371 | as_fn_executable_p () | |
372 | { | |
373 | test -f "$1" && test -x "$1" | |
374 | } # as_fn_executable_p | |
87326c78 DD |
375 | # as_fn_append VAR VALUE |
376 | # ---------------------- | |
377 | # Append the text in VALUE to the end of the definition contained in VAR. Take | |
378 | # advantage of any shell optimizations that allow amortized linear growth over | |
379 | # repeated appends, instead of the typical quadratic growth present in naive | |
380 | # implementations. | |
381 | if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : | |
382 | eval 'as_fn_append () | |
383 | { | |
384 | eval $1+=\$2 | |
385 | }' | |
386 | else | |
387 | as_fn_append () | |
388 | { | |
389 | eval $1=\$$1\$2 | |
390 | } | |
391 | fi # as_fn_append | |
392 | ||
393 | # as_fn_arith ARG... | |
394 | # ------------------ | |
395 | # Perform arithmetic evaluation on the ARGs, and store the result in the | |
396 | # global $as_val. Take advantage of shells that can avoid forks. The arguments | |
397 | # must be portable across $(()) and expr. | |
398 | if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : | |
399 | eval 'as_fn_arith () | |
400 | { | |
401 | as_val=$(( $* )) | |
402 | }' | |
403 | else | |
404 | as_fn_arith () | |
405 | { | |
406 | as_val=`expr "$@" || test $? -eq 1` | |
407 | } | |
408 | fi # as_fn_arith | |
409 | ||
410 | ||
d0ac1c44 SM |
411 | # as_fn_error STATUS ERROR [LINENO LOG_FD] |
412 | # ---------------------------------------- | |
87326c78 DD |
413 | # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are |
414 | # provided, also output the error to LOG_FD, referencing LINENO. Then exit the | |
d0ac1c44 | 415 | # script with STATUS, using 1 if that was 0. |
87326c78 DD |
416 | as_fn_error () |
417 | { | |
d0ac1c44 SM |
418 | as_status=$1; test $as_status -eq 0 && as_status=1 |
419 | if test "$4"; then | |
420 | as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | |
421 | $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 | |
87326c78 | 422 | fi |
d0ac1c44 | 423 | $as_echo "$as_me: error: $2" >&2 |
87326c78 DD |
424 | as_fn_exit $as_status |
425 | } # as_fn_error | |
426 | ||
427 | if expr a : '\(a\)' >/dev/null 2>&1 && | |
428 | test "X`expr 00001 : '.*\(...\)'`" = X001; then | |
429 | as_expr=expr | |
430 | else | |
431 | as_expr=false | |
432 | fi | |
433 | ||
434 | if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then | |
435 | as_basename=basename | |
436 | else | |
437 | as_basename=false | |
438 | fi | |
439 | ||
440 | if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then | |
441 | as_dirname=dirname | |
442 | else | |
443 | as_dirname=false | |
444 | fi | |
445 | ||
446 | as_me=`$as_basename -- "$0" || | |
447 | $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ | |
448 | X"$0" : 'X\(//\)$' \| \ | |
449 | X"$0" : 'X\(/\)' \| . 2>/dev/null || | |
450 | $as_echo X/"$0" | | |
451 | sed '/^.*\/\([^/][^/]*\)\/*$/{ | |
452 | s//\1/ | |
453 | q | |
454 | } | |
455 | /^X\/\(\/\/\)$/{ | |
456 | s//\1/ | |
457 | q | |
458 | } | |
459 | /^X\/\(\/\).*/{ | |
460 | s//\1/ | |
461 | q | |
462 | } | |
463 | s/.*/./; q'` | |
464 | ||
465 | # Avoid depending upon Character Ranges. | |
466 | as_cr_letters='abcdefghijklmnopqrstuvwxyz' | |
467 | as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' | |
468 | as_cr_Letters=$as_cr_letters$as_cr_LETTERS | |
469 | as_cr_digits='0123456789' | |
470 | as_cr_alnum=$as_cr_Letters$as_cr_digits | |
471 | ||
472 | ||
473 | as_lineno_1=$LINENO as_lineno_1a=$LINENO | |
474 | as_lineno_2=$LINENO as_lineno_2a=$LINENO | |
475 | eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && | |
476 | test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { | |
477 | # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) | |
478 | sed -n ' | |
479 | p | |
480 | /[$]LINENO/= | |
481 | ' <$as_myself | | |
482 | sed ' | |
483 | s/[$]LINENO.*/&-/ | |
484 | t lineno | |
485 | b | |
486 | :lineno | |
487 | N | |
488 | :loop | |
489 | s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ | |
490 | t loop | |
491 | s/-\n.*// | |
492 | ' >$as_me.lineno && | |
493 | chmod +x "$as_me.lineno" || | |
494 | { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } | |
495 | ||
d0ac1c44 SM |
496 | # If we had to re-execute with $CONFIG_SHELL, we're ensured to have |
497 | # already done that, so ensure we don't try to do so again and fall | |
498 | # in an infinite loop. This has already happened in practice. | |
499 | _as_can_reexec=no; export _as_can_reexec | |
87326c78 DD |
500 | # Don't try to exec as it changes $[0], causing all sort of problems |
501 | # (the dirname of $[0] is not the place where we might find the | |
502 | # original and so on. Autoconf is especially sensitive to this). | |
503 | . "./$as_me.lineno" | |
504 | # Exit status is that of the last command. | |
505 | exit | |
506 | } | |
507 | ||
508 | ECHO_C= ECHO_N= ECHO_T= | |
509 | case `echo -n x` in #((((( | |
510 | -n*) | |
511 | case `echo 'xy\c'` in | |
512 | *c*) ECHO_T=' ';; # ECHO_T is single tab character. | |
513 | xy) ECHO_C='\c';; | |
514 | *) echo `echo ksh88 bug on AIX 6.1` > /dev/null | |
515 | ECHO_T=' ';; | |
516 | esac;; | |
517 | *) | |
518 | ECHO_N='-n';; | |
519 | esac | |
520 | ||
521 | rm -f conf$$ conf$$.exe conf$$.file | |
522 | if test -d conf$$.dir; then | |
523 | rm -f conf$$.dir/conf$$.file | |
524 | else | |
525 | rm -f conf$$.dir | |
526 | mkdir conf$$.dir 2>/dev/null | |
527 | fi | |
528 | if (echo >conf$$.file) 2>/dev/null; then | |
529 | if ln -s conf$$.file conf$$ 2>/dev/null; then | |
530 | as_ln_s='ln -s' | |
531 | # ... but there are two gotchas: | |
532 | # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. | |
533 | # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. | |
d0ac1c44 | 534 | # In both cases, we have to default to `cp -pR'. |
87326c78 | 535 | ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || |
d0ac1c44 | 536 | as_ln_s='cp -pR' |
87326c78 DD |
537 | elif ln conf$$.file conf$$ 2>/dev/null; then |
538 | as_ln_s=ln | |
539 | else | |
d0ac1c44 | 540 | as_ln_s='cp -pR' |
87326c78 DD |
541 | fi |
542 | else | |
d0ac1c44 | 543 | as_ln_s='cp -pR' |
87326c78 DD |
544 | fi |
545 | rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file | |
546 | rmdir conf$$.dir 2>/dev/null | |
547 | ||
548 | if mkdir -p . 2>/dev/null; then | |
549 | as_mkdir_p='mkdir -p "$as_dir"' | |
550 | else | |
551 | test -d ./-p && rmdir ./-p | |
552 | as_mkdir_p=false | |
553 | fi | |
554 | ||
d0ac1c44 SM |
555 | as_test_x='test -x' |
556 | as_executable_p=as_fn_executable_p | |
87326c78 DD |
557 | |
558 | # Sed expression to map a string onto a valid CPP name. | |
559 | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" | |
560 | ||
561 | # Sed expression to map a string onto a valid variable name. | |
562 | as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" | |
563 | ||
6bb11ab3 L |
564 | SHELL=${CONFIG_SHELL-/bin/sh} |
565 | ||
87326c78 | 566 | |
d0ac1c44 SM |
567 | test -n "$DJDIR" || exec 7<&0 </dev/null |
568 | exec 6>&1 | |
87326c78 DD |
569 | |
570 | # Name of the host. | |
d0ac1c44 | 571 | # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, |
87326c78 DD |
572 | # so uname gets run too. |
573 | ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` | |
574 | ||
575 | # | |
576 | # Initializations. | |
577 | # | |
578 | ac_default_prefix=/usr/local | |
579 | ac_clean_files= | |
580 | ac_config_libobj_dir=. | |
581 | LIBOBJS= | |
582 | cross_compiling=no | |
583 | subdirs= | |
584 | MFLAGS= | |
585 | MAKEFLAGS= | |
586 | ||
587 | # Identity of this package. | |
588 | PACKAGE_NAME= | |
589 | PACKAGE_TARNAME= | |
590 | PACKAGE_VERSION= | |
591 | PACKAGE_STRING= | |
592 | PACKAGE_BUGREPORT= | |
593 | PACKAGE_URL= | |
594 | ||
595 | ac_unique_file="Makefile.in" | |
596 | # Factoring default headers for most tests. | |
597 | ac_includes_default="\ | |
598 | #include <stdio.h> | |
599 | #ifdef HAVE_SYS_TYPES_H | |
600 | # include <sys/types.h> | |
601 | #endif | |
602 | #ifdef HAVE_SYS_STAT_H | |
603 | # include <sys/stat.h> | |
604 | #endif | |
605 | #ifdef STDC_HEADERS | |
606 | # include <stdlib.h> | |
607 | # include <stddef.h> | |
608 | #else | |
609 | # ifdef HAVE_STDLIB_H | |
610 | # include <stdlib.h> | |
611 | # endif | |
612 | #endif | |
613 | #ifdef HAVE_STRING_H | |
614 | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
615 | # include <memory.h> | |
616 | # endif | |
617 | # include <string.h> | |
618 | #endif | |
619 | #ifdef HAVE_STRINGS_H | |
620 | # include <strings.h> | |
621 | #endif | |
622 | #ifdef HAVE_INTTYPES_H | |
623 | # include <inttypes.h> | |
624 | #endif | |
625 | #ifdef HAVE_STDINT_H | |
626 | # include <stdint.h> | |
627 | #endif | |
628 | #ifdef HAVE_UNISTD_H | |
629 | # include <unistd.h> | |
630 | #endif" | |
631 | ||
632 | ac_subst_vars='LTLIBOBJS | |
633 | LIBOBJS | |
760b3e8b | 634 | sim_reserved_bits |
760b3e8b MF |
635 | sim_default_model |
636 | sim_scache | |
637 | sim_float | |
638 | sim_endian | |
639 | sim_bitsize | |
640 | sim_alignment | |
87326c78 DD |
641 | cgen_breaks |
642 | REPORT_BUGS_TEXI | |
643 | REPORT_BUGS_TO | |
644 | PKGVERSION | |
87326c78 | 645 | MAINT |
31e6ad7d MF |
646 | MAINTAINER_MODE_FALSE |
647 | MAINTAINER_MODE_TRUE | |
6bb11ab3 L |
648 | lt_cv_dlopen_libs |
649 | OTOOL64 | |
650 | OTOOL | |
651 | LIPO | |
652 | NMEDIT | |
653 | DSYMUTIL | |
654 | AWK | |
655 | STRIP | |
656 | OBJDUMP | |
657 | LN_S | |
658 | NM | |
659 | ac_ct_DUMPBIN | |
660 | DUMPBIN | |
661 | LD | |
662 | FGREP | |
663 | SED | |
664 | LIBTOOL | |
665 | PLUGINS_FALSE | |
666 | PLUGINS_TRUE | |
aadc9410 MF |
667 | zlibinc |
668 | zlibdir | |
87326c78 DD |
669 | CATOBJEXT |
670 | GENCAT | |
671 | INSTOBJEXT | |
672 | DATADIRNAME | |
673 | CATALOGS | |
674 | POSUB | |
675 | GMSGFMT | |
676 | XGETTEXT | |
677 | INCINTL | |
678 | LIBINTL_DEP | |
679 | LIBINTL | |
680 | USE_NLS | |
db2e4d67 MF |
681 | CCDEPMODE |
682 | DEPDIR | |
683 | am__leading_dot | |
5f3ef9d0 | 684 | PACKAGE |
46f900c0 | 685 | C_DIALECT |
87326c78 DD |
686 | RANLIB |
687 | AR | |
c2783492 | 688 | LDFLAGS_FOR_BUILD |
c25ea03d | 689 | CFLAGS_FOR_BUILD |
aa0fca16 | 690 | RANLIB_FOR_BUILD |
87326c78 | 691 | CC_FOR_BUILD |
aa0fca16 | 692 | AR_FOR_BUILD |
87326c78 DD |
693 | INSTALL_DATA |
694 | INSTALL_SCRIPT | |
695 | INSTALL_PROGRAM | |
2232061b MF |
696 | EGREP |
697 | GREP | |
c2783492 MF |
698 | CPP |
699 | OBJEXT | |
700 | EXEEXT | |
701 | ac_ct_CC | |
702 | CPPFLAGS | |
703 | LDFLAGS | |
704 | CFLAGS | |
705 | CC | |
87326c78 DD |
706 | target_os |
707 | target_vendor | |
708 | target_cpu | |
709 | target | |
710 | host_os | |
711 | host_vendor | |
712 | host_cpu | |
713 | host | |
714 | build_os | |
715 | build_vendor | |
716 | build_cpu | |
717 | build | |
87326c78 DD |
718 | target_alias |
719 | host_alias | |
720 | build_alias | |
721 | LIBS | |
722 | ECHO_T | |
723 | ECHO_N | |
724 | ECHO_C | |
725 | DEFS | |
726 | mandir | |
727 | localedir | |
728 | libdir | |
729 | psdir | |
730 | pdfdir | |
731 | dvidir | |
732 | htmldir | |
733 | infodir | |
734 | docdir | |
735 | oldincludedir | |
736 | includedir | |
737 | localstatedir | |
738 | sharedstatedir | |
739 | sysconfdir | |
740 | datadir | |
741 | datarootdir | |
742 | libexecdir | |
743 | sbindir | |
744 | bindir | |
745 | program_transform_name | |
746 | prefix | |
747 | exec_prefix | |
748 | PACKAGE_URL | |
749 | PACKAGE_BUGREPORT | |
750 | PACKAGE_STRING | |
751 | PACKAGE_VERSION | |
752 | PACKAGE_TARNAME | |
753 | PACKAGE_NAME | |
754 | PATH_SEPARATOR | |
136da8cd MF |
755 | SHELL |
756 | WERROR_CFLAGS | |
757 | WARN_CFLAGS | |
66d055c7 MF |
758 | sim_inline |
759 | sim_hw | |
760 | sim_hw_objs | |
761 | sim_hw_cflags' | |
87326c78 DD |
762 | ac_subst_files='' |
763 | ac_user_opts=' | |
764 | enable_option_checking | |
aadc9410 | 765 | with_system_zlib |
6bb11ab3 L |
766 | enable_plugins |
767 | enable_shared | |
768 | enable_static | |
769 | with_pic | |
770 | enable_fast_install | |
771 | with_gnu_ld | |
772 | enable_libtool_lock | |
87326c78 | 773 | enable_maintainer_mode |
87326c78 DD |
774 | enable_sim_debug |
775 | enable_sim_stdio | |
776 | enable_sim_trace | |
777 | enable_sim_profile | |
347fe5bb | 778 | enable_sim_inline |
87326c78 DD |
779 | with_pkgversion |
780 | with_bugurl | |
5c1008a4 MF |
781 | enable_werror |
782 | enable_build_warnings | |
783 | enable_sim_build_warnings | |
66d055c7 | 784 | enable_sim_hardware |
87326c78 DD |
785 | ' |
786 | ac_precious_vars='build_alias | |
787 | host_alias | |
788 | target_alias | |
789 | CC | |
790 | CFLAGS | |
791 | LDFLAGS | |
792 | LIBS | |
793 | CPPFLAGS | |
794 | CPP' | |
795 | ||
796 | ||
797 | # Initialize some variables set by options. | |
798 | ac_init_help= | |
799 | ac_init_version=false | |
800 | ac_unrecognized_opts= | |
801 | ac_unrecognized_sep= | |
802 | # The variables have the same names as the options, with | |
803 | # dashes changed to underlines. | |
804 | cache_file=/dev/null | |
805 | exec_prefix=NONE | |
806 | no_create= | |
807 | no_recursion= | |
808 | prefix=NONE | |
809 | program_prefix=NONE | |
810 | program_suffix=NONE | |
811 | program_transform_name=s,x,x, | |
812 | silent= | |
813 | site= | |
814 | srcdir= | |
815 | verbose= | |
816 | x_includes=NONE | |
817 | x_libraries=NONE | |
818 | ||
819 | # Installation directory options. | |
820 | # These are left unexpanded so users can "make install exec_prefix=/foo" | |
821 | # and all the variables that are supposed to be based on exec_prefix | |
822 | # by default will actually change. | |
823 | # Use braces instead of parens because sh, perl, etc. also accept them. | |
824 | # (The list follows the same order as the GNU Coding Standards.) | |
825 | bindir='${exec_prefix}/bin' | |
826 | sbindir='${exec_prefix}/sbin' | |
827 | libexecdir='${exec_prefix}/libexec' | |
828 | datarootdir='${prefix}/share' | |
829 | datadir='${datarootdir}' | |
830 | sysconfdir='${prefix}/etc' | |
831 | sharedstatedir='${prefix}/com' | |
832 | localstatedir='${prefix}/var' | |
833 | includedir='${prefix}/include' | |
834 | oldincludedir='/usr/include' | |
835 | docdir='${datarootdir}/doc/${PACKAGE}' | |
836 | infodir='${datarootdir}/info' | |
837 | htmldir='${docdir}' | |
838 | dvidir='${docdir}' | |
839 | pdfdir='${docdir}' | |
840 | psdir='${docdir}' | |
841 | libdir='${exec_prefix}/lib' | |
842 | localedir='${datarootdir}/locale' | |
843 | mandir='${datarootdir}/man' | |
844 | ||
845 | ac_prev= | |
846 | ac_dashdash= | |
847 | for ac_option | |
848 | do | |
849 | # If the previous option needs an argument, assign it. | |
850 | if test -n "$ac_prev"; then | |
851 | eval $ac_prev=\$ac_option | |
852 | ac_prev= | |
853 | continue | |
854 | fi | |
855 | ||
856 | case $ac_option in | |
d0ac1c44 SM |
857 | *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; |
858 | *=) ac_optarg= ;; | |
859 | *) ac_optarg=yes ;; | |
87326c78 DD |
860 | esac |
861 | ||
862 | # Accept the important Cygnus configure options, so we can diagnose typos. | |
863 | ||
864 | case $ac_dashdash$ac_option in | |
865 | --) | |
866 | ac_dashdash=yes ;; | |
867 | ||
868 | -bindir | --bindir | --bindi | --bind | --bin | --bi) | |
869 | ac_prev=bindir ;; | |
870 | -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) | |
871 | bindir=$ac_optarg ;; | |
872 | ||
873 | -build | --build | --buil | --bui | --bu) | |
874 | ac_prev=build_alias ;; | |
875 | -build=* | --build=* | --buil=* | --bui=* | --bu=*) | |
876 | build_alias=$ac_optarg ;; | |
877 | ||
878 | -cache-file | --cache-file | --cache-fil | --cache-fi \ | |
879 | | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) | |
880 | ac_prev=cache_file ;; | |
881 | -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | |
882 | | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) | |
883 | cache_file=$ac_optarg ;; | |
884 | ||
885 | --config-cache | -C) | |
886 | cache_file=config.cache ;; | |
887 | ||
888 | -datadir | --datadir | --datadi | --datad) | |
889 | ac_prev=datadir ;; | |
890 | -datadir=* | --datadir=* | --datadi=* | --datad=*) | |
891 | datadir=$ac_optarg ;; | |
892 | ||
893 | -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | |
894 | | --dataroo | --dataro | --datar) | |
895 | ac_prev=datarootdir ;; | |
896 | -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | |
897 | | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) | |
898 | datarootdir=$ac_optarg ;; | |
899 | ||
900 | -disable-* | --disable-*) | |
901 | ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` | |
902 | # Reject names that are not valid shell variable names. | |
903 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && | |
d0ac1c44 | 904 | as_fn_error $? "invalid feature name: $ac_useropt" |
87326c78 DD |
905 | ac_useropt_orig=$ac_useropt |
906 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` | |
907 | case $ac_user_opts in | |
908 | *" | |
909 | "enable_$ac_useropt" | |
910 | "*) ;; | |
911 | *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" | |
912 | ac_unrecognized_sep=', ';; | |
913 | esac | |
914 | eval enable_$ac_useropt=no ;; | |
915 | ||
916 | -docdir | --docdir | --docdi | --doc | --do) | |
917 | ac_prev=docdir ;; | |
918 | -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) | |
919 | docdir=$ac_optarg ;; | |
920 | ||
921 | -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) | |
922 | ac_prev=dvidir ;; | |
923 | -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) | |
924 | dvidir=$ac_optarg ;; | |
925 | ||
926 | -enable-* | --enable-*) | |
927 | ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` | |
928 | # Reject names that are not valid shell variable names. | |
929 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && | |
d0ac1c44 | 930 | as_fn_error $? "invalid feature name: $ac_useropt" |
87326c78 DD |
931 | ac_useropt_orig=$ac_useropt |
932 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` | |
933 | case $ac_user_opts in | |
934 | *" | |
935 | "enable_$ac_useropt" | |
936 | "*) ;; | |
937 | *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" | |
938 | ac_unrecognized_sep=', ';; | |
939 | esac | |
940 | eval enable_$ac_useropt=\$ac_optarg ;; | |
941 | ||
942 | -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | |
943 | | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | |
944 | | --exec | --exe | --ex) | |
945 | ac_prev=exec_prefix ;; | |
946 | -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | |
947 | | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | |
948 | | --exec=* | --exe=* | --ex=*) | |
949 | exec_prefix=$ac_optarg ;; | |
950 | ||
951 | -gas | --gas | --ga | --g) | |
952 | # Obsolete; use --with-gas. | |
953 | with_gas=yes ;; | |
954 | ||
955 | -help | --help | --hel | --he | -h) | |
956 | ac_init_help=long ;; | |
957 | -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) | |
958 | ac_init_help=recursive ;; | |
959 | -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) | |
960 | ac_init_help=short ;; | |
961 | ||
962 | -host | --host | --hos | --ho) | |
963 | ac_prev=host_alias ;; | |
964 | -host=* | --host=* | --hos=* | --ho=*) | |
965 | host_alias=$ac_optarg ;; | |
966 | ||
967 | -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) | |
968 | ac_prev=htmldir ;; | |
969 | -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | |
970 | | --ht=*) | |
971 | htmldir=$ac_optarg ;; | |
972 | ||
973 | -includedir | --includedir | --includedi | --included | --include \ | |
974 | | --includ | --inclu | --incl | --inc) | |
975 | ac_prev=includedir ;; | |
976 | -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | |
977 | | --includ=* | --inclu=* | --incl=* | --inc=*) | |
978 | includedir=$ac_optarg ;; | |
979 | ||
980 | -infodir | --infodir | --infodi | --infod | --info | --inf) | |
981 | ac_prev=infodir ;; | |
982 | -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) | |
983 | infodir=$ac_optarg ;; | |
984 | ||
985 | -libdir | --libdir | --libdi | --libd) | |
986 | ac_prev=libdir ;; | |
987 | -libdir=* | --libdir=* | --libdi=* | --libd=*) | |
988 | libdir=$ac_optarg ;; | |
989 | ||
990 | -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | |
991 | | --libexe | --libex | --libe) | |
992 | ac_prev=libexecdir ;; | |
993 | -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | |
994 | | --libexe=* | --libex=* | --libe=*) | |
995 | libexecdir=$ac_optarg ;; | |
996 | ||
997 | -localedir | --localedir | --localedi | --localed | --locale) | |
998 | ac_prev=localedir ;; | |
999 | -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) | |
1000 | localedir=$ac_optarg ;; | |
1001 | ||
1002 | -localstatedir | --localstatedir | --localstatedi | --localstated \ | |
1003 | | --localstate | --localstat | --localsta | --localst | --locals) | |
1004 | ac_prev=localstatedir ;; | |
1005 | -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | |
1006 | | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) | |
1007 | localstatedir=$ac_optarg ;; | |
1008 | ||
1009 | -mandir | --mandir | --mandi | --mand | --man | --ma | --m) | |
1010 | ac_prev=mandir ;; | |
1011 | -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) | |
1012 | mandir=$ac_optarg ;; | |
1013 | ||
1014 | -nfp | --nfp | --nf) | |
1015 | # Obsolete; use --without-fp. | |
1016 | with_fp=no ;; | |
1017 | ||
1018 | -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | |
1019 | | --no-cr | --no-c | -n) | |
1020 | no_create=yes ;; | |
1021 | ||
1022 | -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | |
1023 | | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) | |
1024 | no_recursion=yes ;; | |
1025 | ||
1026 | -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | |
1027 | | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | |
1028 | | --oldin | --oldi | --old | --ol | --o) | |
1029 | ac_prev=oldincludedir ;; | |
1030 | -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | |
1031 | | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | |
1032 | | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) | |
1033 | oldincludedir=$ac_optarg ;; | |
1034 | ||
1035 | -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) | |
1036 | ac_prev=prefix ;; | |
1037 | -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) | |
1038 | prefix=$ac_optarg ;; | |
1039 | ||
1040 | -program-prefix | --program-prefix | --program-prefi | --program-pref \ | |
1041 | | --program-pre | --program-pr | --program-p) | |
1042 | ac_prev=program_prefix ;; | |
1043 | -program-prefix=* | --program-prefix=* | --program-prefi=* \ | |
1044 | | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) | |
1045 | program_prefix=$ac_optarg ;; | |
1046 | ||
1047 | -program-suffix | --program-suffix | --program-suffi | --program-suff \ | |
1048 | | --program-suf | --program-su | --program-s) | |
1049 | ac_prev=program_suffix ;; | |
1050 | -program-suffix=* | --program-suffix=* | --program-suffi=* \ | |
1051 | | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) | |
1052 | program_suffix=$ac_optarg ;; | |
1053 | ||
1054 | -program-transform-name | --program-transform-name \ | |
1055 | | --program-transform-nam | --program-transform-na \ | |
1056 | | --program-transform-n | --program-transform- \ | |
1057 | | --program-transform | --program-transfor \ | |
1058 | | --program-transfo | --program-transf \ | |
1059 | | --program-trans | --program-tran \ | |
1060 | | --progr-tra | --program-tr | --program-t) | |
1061 | ac_prev=program_transform_name ;; | |
1062 | -program-transform-name=* | --program-transform-name=* \ | |
1063 | | --program-transform-nam=* | --program-transform-na=* \ | |
1064 | | --program-transform-n=* | --program-transform-=* \ | |
1065 | | --program-transform=* | --program-transfor=* \ | |
1066 | | --program-transfo=* | --program-transf=* \ | |
1067 | | --program-trans=* | --program-tran=* \ | |
1068 | | --progr-tra=* | --program-tr=* | --program-t=*) | |
1069 | program_transform_name=$ac_optarg ;; | |
1070 | ||
1071 | -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) | |
1072 | ac_prev=pdfdir ;; | |
1073 | -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) | |
1074 | pdfdir=$ac_optarg ;; | |
1075 | ||
1076 | -psdir | --psdir | --psdi | --psd | --ps) | |
1077 | ac_prev=psdir ;; | |
1078 | -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) | |
1079 | psdir=$ac_optarg ;; | |
1080 | ||
1081 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | |
1082 | | -silent | --silent | --silen | --sile | --sil) | |
1083 | silent=yes ;; | |
1084 | ||
1085 | -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) | |
1086 | ac_prev=sbindir ;; | |
1087 | -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | |
1088 | | --sbi=* | --sb=*) | |
1089 | sbindir=$ac_optarg ;; | |
1090 | ||
1091 | -sharedstatedir | --sharedstatedir | --sharedstatedi \ | |
1092 | | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | |
1093 | | --sharedst | --shareds | --shared | --share | --shar \ | |
1094 | | --sha | --sh) | |
1095 | ac_prev=sharedstatedir ;; | |
1096 | -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | |
1097 | | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | |
1098 | | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | |
1099 | | --sha=* | --sh=*) | |
1100 | sharedstatedir=$ac_optarg ;; | |
1101 | ||
1102 | -site | --site | --sit) | |
1103 | ac_prev=site ;; | |
1104 | -site=* | --site=* | --sit=*) | |
1105 | site=$ac_optarg ;; | |
1106 | ||
1107 | -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) | |
1108 | ac_prev=srcdir ;; | |
1109 | -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) | |
1110 | srcdir=$ac_optarg ;; | |
1111 | ||
1112 | -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | |
1113 | | --syscon | --sysco | --sysc | --sys | --sy) | |
1114 | ac_prev=sysconfdir ;; | |
1115 | -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | |
1116 | | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) | |
1117 | sysconfdir=$ac_optarg ;; | |
1118 | ||
1119 | -target | --target | --targe | --targ | --tar | --ta | --t) | |
1120 | ac_prev=target_alias ;; | |
1121 | -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) | |
1122 | target_alias=$ac_optarg ;; | |
1123 | ||
1124 | -v | -verbose | --verbose | --verbos | --verbo | --verb) | |
1125 | verbose=yes ;; | |
1126 | ||
1127 | -version | --version | --versio | --versi | --vers | -V) | |
1128 | ac_init_version=: ;; | |
1129 | ||
1130 | -with-* | --with-*) | |
1131 | ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` | |
1132 | # Reject names that are not valid shell variable names. | |
1133 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && | |
d0ac1c44 | 1134 | as_fn_error $? "invalid package name: $ac_useropt" |
87326c78 DD |
1135 | ac_useropt_orig=$ac_useropt |
1136 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` | |
1137 | case $ac_user_opts in | |
1138 | *" | |
1139 | "with_$ac_useropt" | |
1140 | "*) ;; | |
1141 | *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" | |
1142 | ac_unrecognized_sep=', ';; | |
1143 | esac | |
1144 | eval with_$ac_useropt=\$ac_optarg ;; | |
1145 | ||
1146 | -without-* | --without-*) | |
1147 | ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` | |
1148 | # Reject names that are not valid shell variable names. | |
1149 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && | |
d0ac1c44 | 1150 | as_fn_error $? "invalid package name: $ac_useropt" |
87326c78 DD |
1151 | ac_useropt_orig=$ac_useropt |
1152 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` | |
1153 | case $ac_user_opts in | |
1154 | *" | |
1155 | "with_$ac_useropt" | |
1156 | "*) ;; | |
1157 | *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" | |
1158 | ac_unrecognized_sep=', ';; | |
1159 | esac | |
1160 | eval with_$ac_useropt=no ;; | |
1161 | ||
1162 | --x) | |
1163 | # Obsolete; use --with-x. | |
1164 | with_x=yes ;; | |
1165 | ||
1166 | -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | |
1167 | | --x-incl | --x-inc | --x-in | --x-i) | |
1168 | ac_prev=x_includes ;; | |
1169 | -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | |
1170 | | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) | |
1171 | x_includes=$ac_optarg ;; | |
1172 | ||
1173 | -x-libraries | --x-libraries | --x-librarie | --x-librari \ | |
1174 | | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) | |
1175 | ac_prev=x_libraries ;; | |
1176 | -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | |
1177 | | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) | |
1178 | x_libraries=$ac_optarg ;; | |
1179 | ||
d0ac1c44 SM |
1180 | -*) as_fn_error $? "unrecognized option: \`$ac_option' |
1181 | Try \`$0 --help' for more information" | |
87326c78 DD |
1182 | ;; |
1183 | ||
1184 | *=*) | |
1185 | ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` | |
1186 | # Reject names that are not valid shell variable names. | |
1187 | case $ac_envvar in #( | |
1188 | '' | [0-9]* | *[!_$as_cr_alnum]* ) | |
d0ac1c44 | 1189 | as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; |
87326c78 DD |
1190 | esac |
1191 | eval $ac_envvar=\$ac_optarg | |
1192 | export $ac_envvar ;; | |
1193 | ||
1194 | *) | |
1195 | # FIXME: should be removed in autoconf 3.0. | |
1196 | $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 | |
1197 | expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && | |
1198 | $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 | |
d0ac1c44 | 1199 | : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" |
87326c78 DD |
1200 | ;; |
1201 | ||
1202 | esac | |
1203 | done | |
1204 | ||
1205 | if test -n "$ac_prev"; then | |
1206 | ac_option=--`echo $ac_prev | sed 's/_/-/g'` | |
d0ac1c44 | 1207 | as_fn_error $? "missing argument to $ac_option" |
87326c78 DD |
1208 | fi |
1209 | ||
1210 | if test -n "$ac_unrecognized_opts"; then | |
1211 | case $enable_option_checking in | |
1212 | no) ;; | |
d0ac1c44 | 1213 | fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; |
87326c78 DD |
1214 | *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; |
1215 | esac | |
1216 | fi | |
1217 | ||
1218 | # Check all directory arguments for consistency. | |
1219 | for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ | |
1220 | datadir sysconfdir sharedstatedir localstatedir includedir \ | |
1221 | oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ | |
1222 | libdir localedir mandir | |
1223 | do | |
1224 | eval ac_val=\$$ac_var | |
1225 | # Remove trailing slashes. | |
1226 | case $ac_val in | |
1227 | */ ) | |
1228 | ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` | |
1229 | eval $ac_var=\$ac_val;; | |
1230 | esac | |
1231 | # Be sure to have absolute directory names. | |
1232 | case $ac_val in | |
1233 | [\\/$]* | ?:[\\/]* ) continue;; | |
1234 | NONE | '' ) case $ac_var in *prefix ) continue;; esac;; | |
1235 | esac | |
d0ac1c44 | 1236 | as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" |
87326c78 DD |
1237 | done |
1238 | ||
1239 | # There might be people who depend on the old broken behavior: `$host' | |
1240 | # used to hold the argument of --host etc. | |
1241 | # FIXME: To remove some day. | |
1242 | build=$build_alias | |
1243 | host=$host_alias | |
1244 | target=$target_alias | |
1245 | ||
1246 | # FIXME: To remove some day. | |
1247 | if test "x$host_alias" != x; then | |
1248 | if test "x$build_alias" = x; then | |
1249 | cross_compiling=maybe | |
87326c78 DD |
1250 | elif test "x$build_alias" != "x$host_alias"; then |
1251 | cross_compiling=yes | |
1252 | fi | |
1253 | fi | |
1254 | ||
1255 | ac_tool_prefix= | |
1256 | test -n "$host_alias" && ac_tool_prefix=$host_alias- | |
1257 | ||
1258 | test "$silent" = yes && exec 6>/dev/null | |
1259 | ||
1260 | ||
1261 | ac_pwd=`pwd` && test -n "$ac_pwd" && | |
1262 | ac_ls_di=`ls -di .` && | |
1263 | ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || | |
d0ac1c44 | 1264 | as_fn_error $? "working directory cannot be determined" |
87326c78 | 1265 | test "X$ac_ls_di" = "X$ac_pwd_ls_di" || |
d0ac1c44 | 1266 | as_fn_error $? "pwd does not report name of working directory" |
87326c78 DD |
1267 | |
1268 | ||
1269 | # Find the source files, if location was not specified. | |
1270 | if test -z "$srcdir"; then | |
1271 | ac_srcdir_defaulted=yes | |
1272 | # Try the directory containing this script, then the parent directory. | |
1273 | ac_confdir=`$as_dirname -- "$as_myself" || | |
1274 | $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | |
1275 | X"$as_myself" : 'X\(//\)[^/]' \| \ | |
1276 | X"$as_myself" : 'X\(//\)$' \| \ | |
1277 | X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || | |
1278 | $as_echo X"$as_myself" | | |
1279 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ | |
1280 | s//\1/ | |
1281 | q | |
1282 | } | |
1283 | /^X\(\/\/\)[^/].*/{ | |
1284 | s//\1/ | |
1285 | q | |
1286 | } | |
1287 | /^X\(\/\/\)$/{ | |
1288 | s//\1/ | |
1289 | q | |
1290 | } | |
1291 | /^X\(\/\).*/{ | |
1292 | s//\1/ | |
1293 | q | |
1294 | } | |
1295 | s/.*/./; q'` | |
1296 | srcdir=$ac_confdir | |
1297 | if test ! -r "$srcdir/$ac_unique_file"; then | |
1298 | srcdir=.. | |
1299 | fi | |
1300 | else | |
1301 | ac_srcdir_defaulted=no | |
1302 | fi | |
1303 | if test ! -r "$srcdir/$ac_unique_file"; then | |
1304 | test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." | |
d0ac1c44 | 1305 | as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" |
87326c78 DD |
1306 | fi |
1307 | ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" | |
1308 | ac_abs_confdir=`( | |
d0ac1c44 | 1309 | cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" |
87326c78 DD |
1310 | pwd)` |
1311 | # When building in place, set srcdir=. | |
1312 | if test "$ac_abs_confdir" = "$ac_pwd"; then | |
1313 | srcdir=. | |
1314 | fi | |
1315 | # Remove unnecessary trailing slashes from srcdir. | |
1316 | # Double slashes in file names in object file debugging info | |
1317 | # mess up M-x gdb in Emacs. | |
1318 | case $srcdir in | |
1319 | */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; | |
1320 | esac | |
1321 | for ac_var in $ac_precious_vars; do | |
1322 | eval ac_env_${ac_var}_set=\${${ac_var}+set} | |
1323 | eval ac_env_${ac_var}_value=\$${ac_var} | |
1324 | eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} | |
1325 | eval ac_cv_env_${ac_var}_value=\$${ac_var} | |
1326 | done | |
1327 | ||
1328 | # | |
1329 | # Report the --help message. | |
1330 | # | |
1331 | if test "$ac_init_help" = "long"; then | |
1332 | # Omit some internal or obsolete options to make the list less imposing. | |
1333 | # This message is too long to be a string in the A/UX 3.1 sh. | |
1334 | cat <<_ACEOF | |
1335 | \`configure' configures this package to adapt to many kinds of systems. | |
1336 | ||
1337 | Usage: $0 [OPTION]... [VAR=VALUE]... | |
1338 | ||
1339 | To assign environment variables (e.g., CC, CFLAGS...), specify them as | |
1340 | VAR=VALUE. See below for descriptions of some of the useful variables. | |
1341 | ||
1342 | Defaults for the options are specified in brackets. | |
1343 | ||
1344 | Configuration: | |
1345 | -h, --help display this help and exit | |
1346 | --help=short display options specific to this package | |
1347 | --help=recursive display the short help of all the included packages | |
1348 | -V, --version display version information and exit | |
d0ac1c44 | 1349 | -q, --quiet, --silent do not print \`checking ...' messages |
87326c78 DD |
1350 | --cache-file=FILE cache test results in FILE [disabled] |
1351 | -C, --config-cache alias for \`--cache-file=config.cache' | |
1352 | -n, --no-create do not create output files | |
1353 | --srcdir=DIR find the sources in DIR [configure dir or \`..'] | |
1354 | ||
1355 | Installation directories: | |
1356 | --prefix=PREFIX install architecture-independent files in PREFIX | |
1357 | [$ac_default_prefix] | |
1358 | --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX | |
1359 | [PREFIX] | |
1360 | ||
1361 | By default, \`make install' will install all the files in | |
1362 | \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify | |
1363 | an installation prefix other than \`$ac_default_prefix' using \`--prefix', | |
1364 | for instance \`--prefix=\$HOME'. | |
1365 | ||
1366 | For better control, use the options below. | |
1367 | ||
1368 | Fine tuning of the installation directories: | |
1369 | --bindir=DIR user executables [EPREFIX/bin] | |
1370 | --sbindir=DIR system admin executables [EPREFIX/sbin] | |
1371 | --libexecdir=DIR program executables [EPREFIX/libexec] | |
1372 | --sysconfdir=DIR read-only single-machine data [PREFIX/etc] | |
1373 | --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] | |
1374 | --localstatedir=DIR modifiable single-machine data [PREFIX/var] | |
1375 | --libdir=DIR object code libraries [EPREFIX/lib] | |
1376 | --includedir=DIR C header files [PREFIX/include] | |
1377 | --oldincludedir=DIR C header files for non-gcc [/usr/include] | |
1378 | --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] | |
1379 | --datadir=DIR read-only architecture-independent data [DATAROOTDIR] | |
1380 | --infodir=DIR info documentation [DATAROOTDIR/info] | |
1381 | --localedir=DIR locale-dependent data [DATAROOTDIR/locale] | |
1382 | --mandir=DIR man documentation [DATAROOTDIR/man] | |
1383 | --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] | |
1384 | --htmldir=DIR html documentation [DOCDIR] | |
1385 | --dvidir=DIR dvi documentation [DOCDIR] | |
1386 | --pdfdir=DIR pdf documentation [DOCDIR] | |
1387 | --psdir=DIR ps documentation [DOCDIR] | |
1388 | _ACEOF | |
1389 | ||
1390 | cat <<\_ACEOF | |
1391 | ||
1392 | Program names: | |
1393 | --program-prefix=PREFIX prepend PREFIX to installed program names | |
1394 | --program-suffix=SUFFIX append SUFFIX to installed program names | |
1395 | --program-transform-name=PROGRAM run sed PROGRAM on installed program names | |
1396 | ||
1397 | System types: | |
1398 | --build=BUILD configure for building on BUILD [guessed] | |
1399 | --host=HOST cross-compile to build programs to run on HOST [BUILD] | |
1400 | --target=TARGET configure for building compilers for TARGET [HOST] | |
1401 | _ACEOF | |
1402 | fi | |
1403 | ||
1404 | if test -n "$ac_init_help"; then | |
1405 | ||
1406 | cat <<\_ACEOF | |
1407 | ||
1408 | Optional Features: | |
1409 | --disable-option-checking ignore unrecognized --enable/--with options | |
1410 | --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) | |
1411 | --enable-FEATURE[=ARG] include FEATURE [ARG=yes] | |
faa743bb | 1412 | --enable-plugins Enable support for plugins |
6bb11ab3 L |
1413 | --enable-shared[=PKGS] build shared libraries [default=yes] |
1414 | --enable-static[=PKGS] build static libraries [default=yes] | |
1415 | --enable-fast-install[=PKGS] | |
1416 | optimize for fast installation [default=yes] | |
1417 | --disable-libtool-lock avoid locking (might break parallel builds) | |
d0ac1c44 SM |
1418 | --enable-maintainer-mode |
1419 | enable make rules and dependencies not useful (and | |
1420 | sometimes confusing) to the casual installer | |
8d0978fb MF |
1421 | --enable-sim-debug=opts Enable debugging flags (for developers of the sim |
1422 | itself) | |
1423 | --enable-sim-stdio Specify whether to use stdio for console | |
1424 | input/output | |
1425 | --enable-sim-trace=opts Enable tracing of simulated programs | |
1426 | --enable-sim-profile=opts | |
1427 | Enable profiling flags | |
347fe5bb MF |
1428 | --enable-sim-inline=inlines |
1429 | Specify which functions should be inlined | |
5c1008a4 MF |
1430 | --enable-werror treat compile warnings as errors |
1431 | --enable-build-warnings enable build-time compiler warnings if gcc is used | |
1432 | --enable-sim-build-warnings | |
1433 | enable SIM specific build-time compiler warnings if | |
1434 | gcc is used | |
66d055c7 MF |
1435 | --enable-sim-hardware=LIST |
1436 | Specify the hardware to be included in the build. | |
87326c78 DD |
1437 | |
1438 | Optional Packages: | |
1439 | --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] | |
1440 | --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) | |
aadc9410 | 1441 | --with-system-zlib use installed libz |
6bb11ab3 L |
1442 | --with-pic try to use only PIC/non-PIC objects [default=use |
1443 | both] | |
1444 | --with-gnu-ld assume the C compiler uses GNU ld [default=no] | |
bf12d44e | 1445 | --with-pkgversion=PKG Use PKG in the version string in place of "SIM" |
87326c78 DD |
1446 | --with-bugurl=URL Direct users to URL to report a bug |
1447 | ||
1448 | Some influential environment variables: | |
1449 | CC C compiler command | |
1450 | CFLAGS C compiler flags | |
1451 | LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a | |
1452 | nonstandard directory <lib dir> | |
1453 | LIBS libraries to pass to the linker, e.g. -l<library> | |
d0ac1c44 | 1454 | CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if |
87326c78 DD |
1455 | you have headers in a nonstandard directory <include dir> |
1456 | CPP C preprocessor | |
1457 | ||
1458 | Use these variables to override the choices made by `configure' or to help | |
1459 | it to find libraries and programs with nonstandard names/locations. | |
1460 | ||
1461 | Report bugs to the package provider. | |
1462 | _ACEOF | |
1463 | ac_status=$? | |
1464 | fi | |
1465 | ||
1466 | if test "$ac_init_help" = "recursive"; then | |
1467 | # If there are subdirs, report their specific --help. | |
1468 | for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue | |
1469 | test -d "$ac_dir" || | |
1470 | { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || | |
1471 | continue | |
1472 | ac_builddir=. | |
1473 | ||
1474 | case "$ac_dir" in | |
1475 | .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; | |
1476 | *) | |
1477 | ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` | |
1478 | # A ".." for each directory in $ac_dir_suffix. | |
1479 | ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` | |
1480 | case $ac_top_builddir_sub in | |
1481 | "") ac_top_builddir_sub=. ac_top_build_prefix= ;; | |
1482 | *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; | |
1483 | esac ;; | |
1484 | esac | |
1485 | ac_abs_top_builddir=$ac_pwd | |
1486 | ac_abs_builddir=$ac_pwd$ac_dir_suffix | |
1487 | # for backward compatibility: | |
1488 | ac_top_builddir=$ac_top_build_prefix | |
1489 | ||
1490 | case $srcdir in | |
1491 | .) # We are building in place. | |
1492 | ac_srcdir=. | |
1493 | ac_top_srcdir=$ac_top_builddir_sub | |
1494 | ac_abs_top_srcdir=$ac_pwd ;; | |
1495 | [\\/]* | ?:[\\/]* ) # Absolute name. | |
1496 | ac_srcdir=$srcdir$ac_dir_suffix; | |
1497 | ac_top_srcdir=$srcdir | |
1498 | ac_abs_top_srcdir=$srcdir ;; | |
1499 | *) # Relative name. | |
1500 | ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix | |
1501 | ac_top_srcdir=$ac_top_build_prefix$srcdir | |
1502 | ac_abs_top_srcdir=$ac_pwd/$srcdir ;; | |
1503 | esac | |
1504 | ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix | |
1505 | ||
1506 | cd "$ac_dir" || { ac_status=$?; continue; } | |
1507 | # Check for guested configure. | |
1508 | if test -f "$ac_srcdir/configure.gnu"; then | |
1509 | echo && | |
1510 | $SHELL "$ac_srcdir/configure.gnu" --help=recursive | |
1511 | elif test -f "$ac_srcdir/configure"; then | |
1512 | echo && | |
1513 | $SHELL "$ac_srcdir/configure" --help=recursive | |
1514 | else | |
1515 | $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 | |
1516 | fi || ac_status=$? | |
1517 | cd "$ac_pwd" || { ac_status=$?; break; } | |
1518 | done | |
1519 | fi | |
1520 | ||
1521 | test -n "$ac_init_help" && exit $ac_status | |
1522 | if $ac_init_version; then | |
1523 | cat <<\_ACEOF | |
1524 | configure | |
d0ac1c44 | 1525 | generated by GNU Autoconf 2.69 |
87326c78 | 1526 | |
d0ac1c44 | 1527 | Copyright (C) 2012 Free Software Foundation, Inc. |
87326c78 DD |
1528 | This configure script is free software; the Free Software Foundation |
1529 | gives unlimited permission to copy, distribute and modify it. | |
1530 | _ACEOF | |
1531 | exit | |
1532 | fi | |
1533 | ||
1534 | ## ------------------------ ## | |
1535 | ## Autoconf initialization. ## | |
1536 | ## ------------------------ ## | |
1537 | ||
1538 | # ac_fn_c_try_compile LINENO | |
1539 | # -------------------------- | |
1540 | # Try to compile conftest.$ac_ext, and return whether this succeeded. | |
1541 | ac_fn_c_try_compile () | |
1542 | { | |
1543 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | |
1544 | rm -f conftest.$ac_objext | |
1545 | if { { ac_try="$ac_compile" | |
1546 | case "(($ac_try" in | |
1547 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | |
1548 | *) ac_try_echo=$ac_try;; | |
1549 | esac | |
1550 | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" | |
1551 | $as_echo "$ac_try_echo"; } >&5 | |
1552 | (eval "$ac_compile") 2>conftest.err | |
1553 | ac_status=$? | |
1554 | if test -s conftest.err; then | |
1555 | grep -v '^ *+' conftest.err >conftest.er1 | |
1556 | cat conftest.er1 >&5 | |
1557 | mv -f conftest.er1 conftest.err | |
1558 | fi | |
1559 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
1560 | test $ac_status = 0; } && { | |
1561 | test -z "$ac_c_werror_flag" || | |
1562 | test ! -s conftest.err | |
1563 | } && test -s conftest.$ac_objext; then : | |
1564 | ac_retval=0 | |
1565 | else | |
1566 | $as_echo "$as_me: failed program was:" >&5 | |
1567 | sed 's/^/| /' conftest.$ac_ext >&5 | |
1568 | ||
1569 | ac_retval=1 | |
1570 | fi | |
d0ac1c44 SM |
1571 | eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno |
1572 | as_fn_set_status $ac_retval | |
87326c78 DD |
1573 | |
1574 | } # ac_fn_c_try_compile | |
1575 | ||
1576 | # ac_fn_c_try_cpp LINENO | |
1577 | # ---------------------- | |
1578 | # Try to preprocess conftest.$ac_ext, and return whether this succeeded. | |
1579 | ac_fn_c_try_cpp () | |
1580 | { | |
1581 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | |
1582 | if { { ac_try="$ac_cpp conftest.$ac_ext" | |
1583 | case "(($ac_try" in | |
1584 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | |
1585 | *) ac_try_echo=$ac_try;; | |
1586 | esac | |
1587 | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" | |
1588 | $as_echo "$ac_try_echo"; } >&5 | |
1589 | (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err | |
1590 | ac_status=$? | |
1591 | if test -s conftest.err; then | |
1592 | grep -v '^ *+' conftest.err >conftest.er1 | |
1593 | cat conftest.er1 >&5 | |
1594 | mv -f conftest.er1 conftest.err | |
1595 | fi | |
1596 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
d0ac1c44 | 1597 | test $ac_status = 0; } > conftest.i && { |
87326c78 DD |
1598 | test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || |
1599 | test ! -s conftest.err | |
1600 | }; then : | |
1601 | ac_retval=0 | |
1602 | else | |
1603 | $as_echo "$as_me: failed program was:" >&5 | |
1604 | sed 's/^/| /' conftest.$ac_ext >&5 | |
1605 | ||
1606 | ac_retval=1 | |
1607 | fi | |
d0ac1c44 SM |
1608 | eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno |
1609 | as_fn_set_status $ac_retval | |
87326c78 DD |
1610 | |
1611 | } # ac_fn_c_try_cpp | |
1612 | ||
1613 | # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES | |
1614 | # ------------------------------------------------------- | |
1615 | # Tests whether HEADER exists, giving a warning if it cannot be compiled using | |
1616 | # the include files in INCLUDES and setting the cache variable VAR | |
1617 | # accordingly. | |
1618 | ac_fn_c_check_header_mongrel () | |
1619 | { | |
1620 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | |
d0ac1c44 | 1621 | if eval \${$3+:} false; then : |
87326c78 DD |
1622 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 |
1623 | $as_echo_n "checking for $2... " >&6; } | |
d0ac1c44 | 1624 | if eval \${$3+:} false; then : |
87326c78 DD |
1625 | $as_echo_n "(cached) " >&6 |
1626 | fi | |
1627 | eval ac_res=\$$3 | |
1628 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 | |
1629 | $as_echo "$ac_res" >&6; } | |
1630 | else | |
1631 | # Is the header compilable? | |
1632 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 | |
1633 | $as_echo_n "checking $2 usability... " >&6; } | |
1634 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
1635 | /* end confdefs.h. */ | |
1636 | $4 | |
1637 | #include <$2> | |
1638 | _ACEOF | |
1639 | if ac_fn_c_try_compile "$LINENO"; then : | |
1640 | ac_header_compiler=yes | |
1641 | else | |
1642 | ac_header_compiler=no | |
1643 | fi | |
1644 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
1645 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 | |
1646 | $as_echo "$ac_header_compiler" >&6; } | |
1647 | ||
1648 | # Is the header present? | |
1649 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 | |
1650 | $as_echo_n "checking $2 presence... " >&6; } | |
1651 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
1652 | /* end confdefs.h. */ | |
1653 | #include <$2> | |
1654 | _ACEOF | |
1655 | if ac_fn_c_try_cpp "$LINENO"; then : | |
1656 | ac_header_preproc=yes | |
1657 | else | |
1658 | ac_header_preproc=no | |
1659 | fi | |
d0ac1c44 | 1660 | rm -f conftest.err conftest.i conftest.$ac_ext |
87326c78 DD |
1661 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 |
1662 | $as_echo "$ac_header_preproc" >&6; } | |
1663 | ||
1664 | # So? What about this header? | |
1665 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( | |
1666 | yes:no: ) | |
1667 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 | |
1668 | $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} | |
1669 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 | |
1670 | $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} | |
1671 | ;; | |
1672 | no:yes:* ) | |
1673 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 | |
1674 | $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} | |
1675 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 | |
1676 | $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} | |
1677 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 | |
1678 | $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} | |
1679 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 | |
1680 | $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} | |
1681 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 | |
1682 | $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} | |
1683 | ;; | |
1684 | esac | |
1685 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 | |
1686 | $as_echo_n "checking for $2... " >&6; } | |
d0ac1c44 | 1687 | if eval \${$3+:} false; then : |
87326c78 DD |
1688 | $as_echo_n "(cached) " >&6 |
1689 | else | |
1690 | eval "$3=\$ac_header_compiler" | |
1691 | fi | |
1692 | eval ac_res=\$$3 | |
1693 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 | |
1694 | $as_echo "$ac_res" >&6; } | |
1695 | fi | |
d0ac1c44 | 1696 | eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno |
87326c78 DD |
1697 | |
1698 | } # ac_fn_c_check_header_mongrel | |
1699 | ||
1700 | # ac_fn_c_try_run LINENO | |
1701 | # ---------------------- | |
1702 | # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes | |
1703 | # that executables *can* be run. | |
1704 | ac_fn_c_try_run () | |
1705 | { | |
1706 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | |
1707 | if { { ac_try="$ac_link" | |
1708 | case "(($ac_try" in | |
1709 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | |
1710 | *) ac_try_echo=$ac_try;; | |
1711 | esac | |
1712 | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" | |
1713 | $as_echo "$ac_try_echo"; } >&5 | |
1714 | (eval "$ac_link") 2>&5 | |
1715 | ac_status=$? | |
1716 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
1717 | test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' | |
1718 | { { case "(($ac_try" in | |
1719 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | |
1720 | *) ac_try_echo=$ac_try;; | |
1721 | esac | |
1722 | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" | |
1723 | $as_echo "$ac_try_echo"; } >&5 | |
1724 | (eval "$ac_try") 2>&5 | |
1725 | ac_status=$? | |
1726 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
1727 | test $ac_status = 0; }; }; then : | |
1728 | ac_retval=0 | |
1729 | else | |
1730 | $as_echo "$as_me: program exited with status $ac_status" >&5 | |
1731 | $as_echo "$as_me: failed program was:" >&5 | |
1732 | sed 's/^/| /' conftest.$ac_ext >&5 | |
1733 | ||
1734 | ac_retval=$ac_status | |
1735 | fi | |
1736 | rm -rf conftest.dSYM conftest_ipa8_conftest.oo | |
d0ac1c44 SM |
1737 | eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno |
1738 | as_fn_set_status $ac_retval | |
87326c78 DD |
1739 | |
1740 | } # ac_fn_c_try_run | |
1741 | ||
1742 | # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES | |
1743 | # ------------------------------------------------------- | |
1744 | # Tests whether HEADER exists and can be compiled using the include files in | |
1745 | # INCLUDES, setting the cache variable VAR accordingly. | |
1746 | ac_fn_c_check_header_compile () | |
1747 | { | |
1748 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | |
1749 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 | |
1750 | $as_echo_n "checking for $2... " >&6; } | |
d0ac1c44 | 1751 | if eval \${$3+:} false; then : |
87326c78 DD |
1752 | $as_echo_n "(cached) " >&6 |
1753 | else | |
1754 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
1755 | /* end confdefs.h. */ | |
1756 | $4 | |
1757 | #include <$2> | |
1758 | _ACEOF | |
1759 | if ac_fn_c_try_compile "$LINENO"; then : | |
1760 | eval "$3=yes" | |
1761 | else | |
1762 | eval "$3=no" | |
1763 | fi | |
1764 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
1765 | fi | |
1766 | eval ac_res=\$$3 | |
1767 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 | |
1768 | $as_echo "$ac_res" >&6; } | |
d0ac1c44 | 1769 | eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno |
87326c78 DD |
1770 | |
1771 | } # ac_fn_c_check_header_compile | |
1772 | ||
1773 | # ac_fn_c_try_link LINENO | |
1774 | # ----------------------- | |
1775 | # Try to link conftest.$ac_ext, and return whether this succeeded. | |
1776 | ac_fn_c_try_link () | |
1777 | { | |
1778 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | |
1779 | rm -f conftest.$ac_objext conftest$ac_exeext | |
1780 | if { { ac_try="$ac_link" | |
1781 | case "(($ac_try" in | |
1782 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | |
1783 | *) ac_try_echo=$ac_try;; | |
1784 | esac | |
1785 | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" | |
1786 | $as_echo "$ac_try_echo"; } >&5 | |
1787 | (eval "$ac_link") 2>conftest.err | |
1788 | ac_status=$? | |
1789 | if test -s conftest.err; then | |
1790 | grep -v '^ *+' conftest.err >conftest.er1 | |
1791 | cat conftest.er1 >&5 | |
1792 | mv -f conftest.er1 conftest.err | |
1793 | fi | |
1794 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
1795 | test $ac_status = 0; } && { | |
1796 | test -z "$ac_c_werror_flag" || | |
1797 | test ! -s conftest.err | |
1798 | } && test -s conftest$ac_exeext && { | |
1799 | test "$cross_compiling" = yes || | |
d0ac1c44 | 1800 | test -x conftest$ac_exeext |
87326c78 DD |
1801 | }; then : |
1802 | ac_retval=0 | |
1803 | else | |
1804 | $as_echo "$as_me: failed program was:" >&5 | |
1805 | sed 's/^/| /' conftest.$ac_ext >&5 | |
1806 | ||
1807 | ac_retval=1 | |
1808 | fi | |
1809 | # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information | |
1810 | # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would | |
1811 | # interfere with the next link command; also delete a directory that is | |
1812 | # left behind by Apple's compiler. We do this before executing the actions. | |
1813 | rm -rf conftest.dSYM conftest_ipa8_conftest.oo | |
d0ac1c44 SM |
1814 | eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno |
1815 | as_fn_set_status $ac_retval | |
87326c78 DD |
1816 | |
1817 | } # ac_fn_c_try_link | |
1818 | ||
1819 | # ac_fn_c_check_func LINENO FUNC VAR | |
1820 | # ---------------------------------- | |
1821 | # Tests whether FUNC exists, setting the cache variable VAR accordingly | |
1822 | ac_fn_c_check_func () | |
1823 | { | |
1824 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | |
1825 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 | |
1826 | $as_echo_n "checking for $2... " >&6; } | |
d0ac1c44 | 1827 | if eval \${$3+:} false; then : |
87326c78 DD |
1828 | $as_echo_n "(cached) " >&6 |
1829 | else | |
1830 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
1831 | /* end confdefs.h. */ | |
1832 | /* Define $2 to an innocuous variant, in case <limits.h> declares $2. | |
1833 | For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
1834 | #define $2 innocuous_$2 | |
1835 | ||
1836 | /* System header to define __stub macros and hopefully few prototypes, | |
1837 | which can conflict with char $2 (); below. | |
1838 | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
1839 | <limits.h> exists even on freestanding compilers. */ | |
1840 | ||
1841 | #ifdef __STDC__ | |
1842 | # include <limits.h> | |
1843 | #else | |
1844 | # include <assert.h> | |
1845 | #endif | |
1846 | ||
1847 | #undef $2 | |
1848 | ||
1849 | /* Override any GCC internal prototype to avoid an error. | |
1850 | Use char because int might match the return type of a GCC | |
1851 | builtin and then its argument prototype would still apply. */ | |
1852 | #ifdef __cplusplus | |
1853 | extern "C" | |
1854 | #endif | |
1855 | char $2 (); | |
1856 | /* The GNU C library defines this for functions which it implements | |
1857 | to always fail with ENOSYS. Some functions are actually named | |
1858 | something starting with __ and the normal name is an alias. */ | |
1859 | #if defined __stub_$2 || defined __stub___$2 | |
1860 | choke me | |
1861 | #endif | |
1862 | ||
1863 | int | |
1864 | main () | |
1865 | { | |
1866 | return $2 (); | |
1867 | ; | |
1868 | return 0; | |
1869 | } | |
1870 | _ACEOF | |
1871 | if ac_fn_c_try_link "$LINENO"; then : | |
1872 | eval "$3=yes" | |
1873 | else | |
1874 | eval "$3=no" | |
1875 | fi | |
1876 | rm -f core conftest.err conftest.$ac_objext \ | |
1877 | conftest$ac_exeext conftest.$ac_ext | |
1878 | fi | |
1879 | eval ac_res=\$$3 | |
1880 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 | |
1881 | $as_echo "$ac_res" >&6; } | |
d0ac1c44 | 1882 | eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno |
87326c78 DD |
1883 | |
1884 | } # ac_fn_c_check_func | |
1885 | cat >config.log <<_ACEOF | |
1886 | This file contains any messages produced by compilers while | |
1887 | running configure, to aid debugging if configure makes a mistake. | |
1888 | ||
1889 | It was created by $as_me, which was | |
d0ac1c44 | 1890 | generated by GNU Autoconf 2.69. Invocation command line was |
87326c78 DD |
1891 | |
1892 | $ $0 $@ | |
1893 | ||
1894 | _ACEOF | |
1895 | exec 5>>config.log | |
1896 | { | |
1897 | cat <<_ASUNAME | |
1898 | ## --------- ## | |
1899 | ## Platform. ## | |
1900 | ## --------- ## | |
1901 | ||
1902 | hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` | |
1903 | uname -m = `(uname -m) 2>/dev/null || echo unknown` | |
1904 | uname -r = `(uname -r) 2>/dev/null || echo unknown` | |
1905 | uname -s = `(uname -s) 2>/dev/null || echo unknown` | |
1906 | uname -v = `(uname -v) 2>/dev/null || echo unknown` | |
1907 | ||
1908 | /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` | |
1909 | /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` | |
1910 | ||
1911 | /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` | |
1912 | /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` | |
1913 | /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` | |
1914 | /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` | |
1915 | /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` | |
1916 | /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` | |
1917 | /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` | |
1918 | ||
1919 | _ASUNAME | |
1920 | ||
1921 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
1922 | for as_dir in $PATH | |
1923 | do | |
1924 | IFS=$as_save_IFS | |
1925 | test -z "$as_dir" && as_dir=. | |
1926 | $as_echo "PATH: $as_dir" | |
1927 | done | |
1928 | IFS=$as_save_IFS | |
1929 | ||
1930 | } >&5 | |
1931 | ||
1932 | cat >&5 <<_ACEOF | |
1933 | ||
1934 | ||
1935 | ## ----------- ## | |
1936 | ## Core tests. ## | |
1937 | ## ----------- ## | |
1938 | ||
1939 | _ACEOF | |
1940 | ||
1941 | ||
1942 | # Keep a trace of the command line. | |
1943 | # Strip out --no-create and --no-recursion so they do not pile up. | |
1944 | # Strip out --silent because we don't want to record it for future runs. | |
1945 | # Also quote any args containing shell meta-characters. | |
1946 | # Make two passes to allow for proper duplicate-argument suppression. | |
1947 | ac_configure_args= | |
1948 | ac_configure_args0= | |
1949 | ac_configure_args1= | |
1950 | ac_must_keep_next=false | |
1951 | for ac_pass in 1 2 | |
1952 | do | |
1953 | for ac_arg | |
1954 | do | |
1955 | case $ac_arg in | |
1956 | -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; | |
1957 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | |
1958 | | -silent | --silent | --silen | --sile | --sil) | |
1959 | continue ;; | |
1960 | *\'*) | |
1961 | ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; | |
1962 | esac | |
1963 | case $ac_pass in | |
1964 | 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; | |
1965 | 2) | |
1966 | as_fn_append ac_configure_args1 " '$ac_arg'" | |
1967 | if test $ac_must_keep_next = true; then | |
1968 | ac_must_keep_next=false # Got value, back to normal. | |
1969 | else | |
1970 | case $ac_arg in | |
1971 | *=* | --config-cache | -C | -disable-* | --disable-* \ | |
1972 | | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | |
1973 | | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | |
1974 | | -with-* | --with-* | -without-* | --without-* | --x) | |
1975 | case "$ac_configure_args0 " in | |
1976 | "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; | |
1977 | esac | |
1978 | ;; | |
1979 | -* ) ac_must_keep_next=true ;; | |
1980 | esac | |
1981 | fi | |
1982 | as_fn_append ac_configure_args " '$ac_arg'" | |
1983 | ;; | |
1984 | esac | |
1985 | done | |
1986 | done | |
1987 | { ac_configure_args0=; unset ac_configure_args0;} | |
1988 | { ac_configure_args1=; unset ac_configure_args1;} | |
1989 | ||
1990 | # When interrupted or exit'd, cleanup temporary files, and complete | |
1991 | # config.log. We remove comments because anyway the quotes in there | |
1992 | # would cause problems or look ugly. | |
1993 | # WARNING: Use '\'' to represent an apostrophe within the trap. | |
1994 | # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. | |
1995 | trap 'exit_status=$? | |
1996 | # Save into config.log some information that might help in debugging. | |
1997 | { | |
1998 | echo | |
1999 | ||
d0ac1c44 | 2000 | $as_echo "## ---------------- ## |
87326c78 | 2001 | ## Cache variables. ## |
d0ac1c44 | 2002 | ## ---------------- ##" |
87326c78 DD |
2003 | echo |
2004 | # The following way of writing the cache mishandles newlines in values, | |
2005 | ( | |
2006 | for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do | |
2007 | eval ac_val=\$$ac_var | |
2008 | case $ac_val in #( | |
2009 | *${as_nl}*) | |
2010 | case $ac_var in #( | |
2011 | *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 | |
2012 | $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; | |
2013 | esac | |
2014 | case $ac_var in #( | |
2015 | _ | IFS | as_nl) ;; #( | |
2016 | BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( | |
2017 | *) { eval $ac_var=; unset $ac_var;} ;; | |
2018 | esac ;; | |
2019 | esac | |
2020 | done | |
2021 | (set) 2>&1 | | |
2022 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( | |
2023 | *${as_nl}ac_space=\ *) | |
2024 | sed -n \ | |
2025 | "s/'\''/'\''\\\\'\'''\''/g; | |
2026 | s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" | |
2027 | ;; #( | |
2028 | *) | |
2029 | sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" | |
2030 | ;; | |
2031 | esac | | |
2032 | sort | |
2033 | ) | |
2034 | echo | |
2035 | ||
d0ac1c44 | 2036 | $as_echo "## ----------------- ## |
87326c78 | 2037 | ## Output variables. ## |
d0ac1c44 | 2038 | ## ----------------- ##" |
87326c78 DD |
2039 | echo |
2040 | for ac_var in $ac_subst_vars | |
2041 | do | |
2042 | eval ac_val=\$$ac_var | |
2043 | case $ac_val in | |
2044 | *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; | |
2045 | esac | |
2046 | $as_echo "$ac_var='\''$ac_val'\''" | |
2047 | done | sort | |
2048 | echo | |
2049 | ||
2050 | if test -n "$ac_subst_files"; then | |
d0ac1c44 | 2051 | $as_echo "## ------------------- ## |
87326c78 | 2052 | ## File substitutions. ## |
d0ac1c44 | 2053 | ## ------------------- ##" |
87326c78 DD |
2054 | echo |
2055 | for ac_var in $ac_subst_files | |
2056 | do | |
2057 | eval ac_val=\$$ac_var | |
2058 | case $ac_val in | |
2059 | *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; | |
2060 | esac | |
2061 | $as_echo "$ac_var='\''$ac_val'\''" | |
2062 | done | sort | |
2063 | echo | |
2064 | fi | |
2065 | ||
2066 | if test -s confdefs.h; then | |
d0ac1c44 | 2067 | $as_echo "## ----------- ## |
87326c78 | 2068 | ## confdefs.h. ## |
d0ac1c44 | 2069 | ## ----------- ##" |
87326c78 DD |
2070 | echo |
2071 | cat confdefs.h | |
2072 | echo | |
2073 | fi | |
2074 | test "$ac_signal" != 0 && | |
2075 | $as_echo "$as_me: caught signal $ac_signal" | |
2076 | $as_echo "$as_me: exit $exit_status" | |
2077 | } >&5 | |
2078 | rm -f core *.core core.conftest.* && | |
2079 | rm -f -r conftest* confdefs* conf$$* $ac_clean_files && | |
2080 | exit $exit_status | |
2081 | ' 0 | |
2082 | for ac_signal in 1 2 13 15; do | |
2083 | trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal | |
2084 | done | |
2085 | ac_signal=0 | |
2086 | ||
2087 | # confdefs.h avoids OS command line length limits that DEFS can exceed. | |
2088 | rm -f -r conftest* confdefs.h | |
2089 | ||
2090 | $as_echo "/* confdefs.h */" > confdefs.h | |
2091 | ||
2092 | # Predefined preprocessor variables. | |
2093 | ||
2094 | cat >>confdefs.h <<_ACEOF | |
2095 | #define PACKAGE_NAME "$PACKAGE_NAME" | |
2096 | _ACEOF | |
2097 | ||
2098 | cat >>confdefs.h <<_ACEOF | |
2099 | #define PACKAGE_TARNAME "$PACKAGE_TARNAME" | |
2100 | _ACEOF | |
2101 | ||
2102 | cat >>confdefs.h <<_ACEOF | |
2103 | #define PACKAGE_VERSION "$PACKAGE_VERSION" | |
2104 | _ACEOF | |
2105 | ||
2106 | cat >>confdefs.h <<_ACEOF | |
2107 | #define PACKAGE_STRING "$PACKAGE_STRING" | |
2108 | _ACEOF | |
2109 | ||
2110 | cat >>confdefs.h <<_ACEOF | |
2111 | #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" | |
2112 | _ACEOF | |
2113 | ||
2114 | cat >>confdefs.h <<_ACEOF | |
2115 | #define PACKAGE_URL "$PACKAGE_URL" | |
2116 | _ACEOF | |
2117 | ||
2118 | ||
2119 | # Let the site file select an alternate cache file if it wants to. | |
2120 | # Prefer an explicitly selected file to automatically selected ones. | |
2121 | ac_site_file1=NONE | |
2122 | ac_site_file2=NONE | |
2123 | if test -n "$CONFIG_SITE"; then | |
d0ac1c44 SM |
2124 | # We do not want a PATH search for config.site. |
2125 | case $CONFIG_SITE in #(( | |
2126 | -*) ac_site_file1=./$CONFIG_SITE;; | |
2127 | */*) ac_site_file1=$CONFIG_SITE;; | |
2128 | *) ac_site_file1=./$CONFIG_SITE;; | |
2129 | esac | |
87326c78 DD |
2130 | elif test "x$prefix" != xNONE; then |
2131 | ac_site_file1=$prefix/share/config.site | |
2132 | ac_site_file2=$prefix/etc/config.site | |
2133 | else | |
2134 | ac_site_file1=$ac_default_prefix/share/config.site | |
2135 | ac_site_file2=$ac_default_prefix/etc/config.site | |
2136 | fi | |
2137 | for ac_site_file in "$ac_site_file1" "$ac_site_file2" | |
2138 | do | |
2139 | test "x$ac_site_file" = xNONE && continue | |
d0ac1c44 | 2140 | if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then |
87326c78 DD |
2141 | { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 |
2142 | $as_echo "$as_me: loading site script $ac_site_file" >&6;} | |
2143 | sed 's/^/| /' "$ac_site_file" >&5 | |
d0ac1c44 SM |
2144 | . "$ac_site_file" \ |
2145 | || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | |
2146 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | |
2147 | as_fn_error $? "failed to load site script $ac_site_file | |
2148 | See \`config.log' for more details" "$LINENO" 5; } | |
87326c78 DD |
2149 | fi |
2150 | done | |
2151 | ||
2152 | if test -r "$cache_file"; then | |
d0ac1c44 SM |
2153 | # Some versions of bash will fail to source /dev/null (special files |
2154 | # actually), so we avoid doing that. DJGPP emulates it as a regular file. | |
2155 | if test /dev/null != "$cache_file" && test -f "$cache_file"; then | |
87326c78 DD |
2156 | { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 |
2157 | $as_echo "$as_me: loading cache $cache_file" >&6;} | |
2158 | case $cache_file in | |
2159 | [\\/]* | ?:[\\/]* ) . "$cache_file";; | |
2160 | *) . "./$cache_file";; | |
2161 | esac | |
2162 | fi | |
2163 | else | |
2164 | { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 | |
2165 | $as_echo "$as_me: creating cache $cache_file" >&6;} | |
2166 | >$cache_file | |
2167 | fi | |
2168 | ||
2169 | # Check that the precious variables saved in the cache have kept the same | |
2170 | # value. | |
2171 | ac_cache_corrupted=false | |
2172 | for ac_var in $ac_precious_vars; do | |
2173 | eval ac_old_set=\$ac_cv_env_${ac_var}_set | |
2174 | eval ac_new_set=\$ac_env_${ac_var}_set | |
2175 | eval ac_old_val=\$ac_cv_env_${ac_var}_value | |
2176 | eval ac_new_val=\$ac_env_${ac_var}_value | |
2177 | case $ac_old_set,$ac_new_set in | |
2178 | set,) | |
2179 | { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 | |
2180 | $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} | |
2181 | ac_cache_corrupted=: ;; | |
2182 | ,set) | |
2183 | { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 | |
2184 | $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} | |
2185 | ac_cache_corrupted=: ;; | |
2186 | ,);; | |
2187 | *) | |
2188 | if test "x$ac_old_val" != "x$ac_new_val"; then | |
2189 | # differences in whitespace do not lead to failure. | |
2190 | ac_old_val_w=`echo x $ac_old_val` | |
2191 | ac_new_val_w=`echo x $ac_new_val` | |
2192 | if test "$ac_old_val_w" != "$ac_new_val_w"; then | |
2193 | { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 | |
2194 | $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} | |
2195 | ac_cache_corrupted=: | |
2196 | else | |
2197 | { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 | |
2198 | $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} | |
2199 | eval $ac_var=\$ac_old_val | |
2200 | fi | |
2201 | { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 | |
2202 | $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} | |
2203 | { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 | |
2204 | $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} | |
2205 | fi;; | |
2206 | esac | |
2207 | # Pass precious variables to config.status. | |
2208 | if test "$ac_new_set" = set; then | |
2209 | case $ac_new_val in | |
2210 | *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; | |
2211 | *) ac_arg=$ac_var=$ac_new_val ;; | |
2212 | esac | |
2213 | case " $ac_configure_args " in | |
2214 | *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. | |
2215 | *) as_fn_append ac_configure_args " '$ac_arg'" ;; | |
2216 | esac | |
2217 | fi | |
2218 | done | |
2219 | if $ac_cache_corrupted; then | |
2220 | { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | |
2221 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | |
2222 | { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 | |
2223 | $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} | |
d0ac1c44 | 2224 | as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 |
87326c78 DD |
2225 | fi |
2226 | ## -------------------- ## | |
2227 | ## Main body of script. ## | |
2228 | ## -------------------- ## | |
2229 | ||
2230 | ac_ext=c | |
2231 | ac_cpp='$CPP $CPPFLAGS' | |
2232 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | |
2233 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | |
2234 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | |
2235 | ||
2236 | ||
6bb11ab3 L |
2237 | |
2238 | ||
2239 | ||
2240 | ||
2241 | ||
c2783492 MF |
2242 | ac_aux_dir= |
2243 | for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do | |
2244 | if test -f "$ac_dir/install-sh"; then | |
2245 | ac_aux_dir=$ac_dir | |
2246 | ac_install_sh="$ac_aux_dir/install-sh -c" | |
2247 | break | |
2248 | elif test -f "$ac_dir/install.sh"; then | |
2249 | ac_aux_dir=$ac_dir | |
2250 | ac_install_sh="$ac_aux_dir/install.sh -c" | |
2251 | break | |
2252 | elif test -f "$ac_dir/shtool"; then | |
2253 | ac_aux_dir=$ac_dir | |
2254 | ac_install_sh="$ac_aux_dir/shtool install -c" | |
2255 | break | |
2256 | fi | |
2257 | done | |
2258 | if test -z "$ac_aux_dir"; then | |
2259 | as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 | |
2260 | fi | |
2261 | ||
2262 | # These three variables are undocumented and unsupported, | |
2263 | # and are intended to be withdrawn in a future Autoconf release. | |
2264 | # They can cause serious problems if a builder's source tree is in a directory | |
2265 | # whose full name contains unusual characters. | |
2266 | ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. | |
2267 | ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. | |
2268 | ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. | |
2269 | ||
2270 | ||
2271 | # Make sure we can run config.sub. | |
2272 | $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || | |
2273 | as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 | |
2274 | ||
2275 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 | |
2276 | $as_echo_n "checking build system type... " >&6; } | |
2277 | if ${ac_cv_build+:} false; then : | |
2278 | $as_echo_n "(cached) " >&6 | |
2279 | else | |
2280 | ac_build_alias=$build_alias | |
2281 | test "x$ac_build_alias" = x && | |
2282 | ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` | |
2283 | test "x$ac_build_alias" = x && | |
2284 | as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 | |
2285 | ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || | |
2286 | as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 | |
2287 | ||
2288 | fi | |
2289 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 | |
2290 | $as_echo "$ac_cv_build" >&6; } | |
2291 | case $ac_cv_build in | |
2292 | *-*-*) ;; | |
2293 | *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; | |
2294 | esac | |
2295 | build=$ac_cv_build | |
2296 | ac_save_IFS=$IFS; IFS='-' | |
2297 | set x $ac_cv_build | |
2298 | shift | |
2299 | build_cpu=$1 | |
2300 | build_vendor=$2 | |
2301 | shift; shift | |
2302 | # Remember, the first character of IFS is used to create $*, | |
2303 | # except with old shells: | |
2304 | build_os=$* | |
2305 | IFS=$ac_save_IFS | |
2306 | case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac | |
2307 | ||
2308 | ||
2309 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 | |
2310 | $as_echo_n "checking host system type... " >&6; } | |
2311 | if ${ac_cv_host+:} false; then : | |
2312 | $as_echo_n "(cached) " >&6 | |
2313 | else | |
2314 | if test "x$host_alias" = x; then | |
2315 | ac_cv_host=$ac_cv_build | |
2316 | else | |
2317 | ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || | |
2318 | as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 | |
2319 | fi | |
2320 | ||
2321 | fi | |
2322 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 | |
2323 | $as_echo "$ac_cv_host" >&6; } | |
2324 | case $ac_cv_host in | |
2325 | *-*-*) ;; | |
2326 | *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; | |
2327 | esac | |
2328 | host=$ac_cv_host | |
2329 | ac_save_IFS=$IFS; IFS='-' | |
2330 | set x $ac_cv_host | |
2331 | shift | |
2332 | host_cpu=$1 | |
2333 | host_vendor=$2 | |
2334 | shift; shift | |
2335 | # Remember, the first character of IFS is used to create $*, | |
2336 | # except with old shells: | |
2337 | host_os=$* | |
2338 | IFS=$ac_save_IFS | |
2339 | case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac | |
2340 | ||
2341 | ||
2342 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 | |
2343 | $as_echo_n "checking target system type... " >&6; } | |
2344 | if ${ac_cv_target+:} false; then : | |
2345 | $as_echo_n "(cached) " >&6 | |
2346 | else | |
2347 | if test "x$target_alias" = x; then | |
2348 | ac_cv_target=$ac_cv_host | |
2349 | else | |
2350 | ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || | |
2351 | as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 | |
2352 | fi | |
2353 | ||
2354 | fi | |
2355 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 | |
2356 | $as_echo "$ac_cv_target" >&6; } | |
2357 | case $ac_cv_target in | |
2358 | *-*-*) ;; | |
2359 | *) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; | |
2360 | esac | |
2361 | target=$ac_cv_target | |
2362 | ac_save_IFS=$IFS; IFS='-' | |
2363 | set x $ac_cv_target | |
2364 | shift | |
2365 | target_cpu=$1 | |
2366 | target_vendor=$2 | |
2367 | shift; shift | |
2368 | # Remember, the first character of IFS is used to create $*, | |
2369 | # except with old shells: | |
2370 | target_os=$* | |
2371 | IFS=$ac_save_IFS | |
2372 | case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac | |
2373 | ||
2374 | ||
2375 | # The aliases save the names the user supplied, while $host etc. | |
2376 | # will get canonicalized. | |
2377 | test -n "$target_alias" && | |
2378 | test "$program_prefix$program_suffix$program_transform_name" = \ | |
2379 | NONENONEs,x,x, && | |
2380 | program_prefix=${target_alias}- | |
6bb11ab3 L |
2381 | ac_ext=c |
2382 | ac_cpp='$CPP $CPPFLAGS' | |
2383 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | |
2384 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | |
2385 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | |
2386 | if test -n "$ac_tool_prefix"; then | |
2387 | # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. | |
2388 | set dummy ${ac_tool_prefix}gcc; ac_word=$2 | |
2389 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
2390 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 2391 | if ${ac_cv_prog_CC+:} false; then : |
6bb11ab3 L |
2392 | $as_echo_n "(cached) " >&6 |
2393 | else | |
2394 | if test -n "$CC"; then | |
2395 | ac_cv_prog_CC="$CC" # Let the user override the test. | |
2396 | else | |
2397 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
2398 | for as_dir in $PATH | |
2399 | do | |
2400 | IFS=$as_save_IFS | |
2401 | test -z "$as_dir" && as_dir=. | |
2402 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 2403 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
2404 | ac_cv_prog_CC="${ac_tool_prefix}gcc" |
2405 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
2406 | break 2 | |
2407 | fi | |
2408 | done | |
2409 | done | |
2410 | IFS=$as_save_IFS | |
2411 | ||
2412 | fi | |
2413 | fi | |
2414 | CC=$ac_cv_prog_CC | |
2415 | if test -n "$CC"; then | |
2416 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 | |
2417 | $as_echo "$CC" >&6; } | |
2418 | else | |
2419 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
2420 | $as_echo "no" >&6; } | |
2421 | fi | |
2422 | ||
2423 | ||
2424 | fi | |
2425 | if test -z "$ac_cv_prog_CC"; then | |
2426 | ac_ct_CC=$CC | |
2427 | # Extract the first word of "gcc", so it can be a program name with args. | |
2428 | set dummy gcc; ac_word=$2 | |
2429 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
2430 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 2431 | if ${ac_cv_prog_ac_ct_CC+:} false; then : |
6bb11ab3 L |
2432 | $as_echo_n "(cached) " >&6 |
2433 | else | |
2434 | if test -n "$ac_ct_CC"; then | |
2435 | ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. | |
2436 | else | |
2437 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
2438 | for as_dir in $PATH | |
2439 | do | |
2440 | IFS=$as_save_IFS | |
2441 | test -z "$as_dir" && as_dir=. | |
2442 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 2443 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
2444 | ac_cv_prog_ac_ct_CC="gcc" |
2445 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
2446 | break 2 | |
2447 | fi | |
2448 | done | |
2449 | done | |
2450 | IFS=$as_save_IFS | |
2451 | ||
2452 | fi | |
2453 | fi | |
2454 | ac_ct_CC=$ac_cv_prog_ac_ct_CC | |
2455 | if test -n "$ac_ct_CC"; then | |
2456 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 | |
2457 | $as_echo "$ac_ct_CC" >&6; } | |
2458 | else | |
2459 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
2460 | $as_echo "no" >&6; } | |
2461 | fi | |
2462 | ||
2463 | if test "x$ac_ct_CC" = x; then | |
2464 | CC="" | |
2465 | else | |
2466 | case $cross_compiling:$ac_tool_warned in | |
2467 | yes:) | |
2468 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
2469 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
2470 | ac_tool_warned=yes ;; | |
2471 | esac | |
2472 | CC=$ac_ct_CC | |
2473 | fi | |
2474 | else | |
2475 | CC="$ac_cv_prog_CC" | |
2476 | fi | |
2477 | ||
2478 | if test -z "$CC"; then | |
2479 | if test -n "$ac_tool_prefix"; then | |
2480 | # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. | |
2481 | set dummy ${ac_tool_prefix}cc; ac_word=$2 | |
2482 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
2483 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 2484 | if ${ac_cv_prog_CC+:} false; then : |
6bb11ab3 L |
2485 | $as_echo_n "(cached) " >&6 |
2486 | else | |
2487 | if test -n "$CC"; then | |
2488 | ac_cv_prog_CC="$CC" # Let the user override the test. | |
2489 | else | |
2490 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
2491 | for as_dir in $PATH | |
2492 | do | |
2493 | IFS=$as_save_IFS | |
2494 | test -z "$as_dir" && as_dir=. | |
2495 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 2496 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
2497 | ac_cv_prog_CC="${ac_tool_prefix}cc" |
2498 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
2499 | break 2 | |
2500 | fi | |
2501 | done | |
2502 | done | |
2503 | IFS=$as_save_IFS | |
2504 | ||
2505 | fi | |
2506 | fi | |
2507 | CC=$ac_cv_prog_CC | |
2508 | if test -n "$CC"; then | |
2509 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 | |
2510 | $as_echo "$CC" >&6; } | |
2511 | else | |
2512 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
2513 | $as_echo "no" >&6; } | |
2514 | fi | |
2515 | ||
2516 | ||
2517 | fi | |
2518 | fi | |
2519 | if test -z "$CC"; then | |
2520 | # Extract the first word of "cc", so it can be a program name with args. | |
2521 | set dummy cc; ac_word=$2 | |
2522 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
2523 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 2524 | if ${ac_cv_prog_CC+:} false; then : |
6bb11ab3 L |
2525 | $as_echo_n "(cached) " >&6 |
2526 | else | |
2527 | if test -n "$CC"; then | |
2528 | ac_cv_prog_CC="$CC" # Let the user override the test. | |
2529 | else | |
2530 | ac_prog_rejected=no | |
2531 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
2532 | for as_dir in $PATH | |
2533 | do | |
2534 | IFS=$as_save_IFS | |
2535 | test -z "$as_dir" && as_dir=. | |
2536 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 2537 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
2538 | if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then |
2539 | ac_prog_rejected=yes | |
2540 | continue | |
2541 | fi | |
2542 | ac_cv_prog_CC="cc" | |
2543 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
2544 | break 2 | |
2545 | fi | |
2546 | done | |
2547 | done | |
2548 | IFS=$as_save_IFS | |
2549 | ||
2550 | if test $ac_prog_rejected = yes; then | |
2551 | # We found a bogon in the path, so make sure we never use it. | |
2552 | set dummy $ac_cv_prog_CC | |
2553 | shift | |
2554 | if test $# != 0; then | |
2555 | # We chose a different compiler from the bogus one. | |
2556 | # However, it has the same basename, so the bogon will be chosen | |
2557 | # first if we set CC to just the basename; use the full file name. | |
2558 | shift | |
2559 | ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" | |
2560 | fi | |
2561 | fi | |
2562 | fi | |
2563 | fi | |
2564 | CC=$ac_cv_prog_CC | |
2565 | if test -n "$CC"; then | |
2566 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 | |
2567 | $as_echo "$CC" >&6; } | |
2568 | else | |
2569 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
2570 | $as_echo "no" >&6; } | |
2571 | fi | |
2572 | ||
2573 | ||
2574 | fi | |
2575 | if test -z "$CC"; then | |
2576 | if test -n "$ac_tool_prefix"; then | |
2577 | for ac_prog in cl.exe | |
2578 | do | |
2579 | # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. | |
2580 | set dummy $ac_tool_prefix$ac_prog; ac_word=$2 | |
2581 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
2582 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 2583 | if ${ac_cv_prog_CC+:} false; then : |
6bb11ab3 L |
2584 | $as_echo_n "(cached) " >&6 |
2585 | else | |
2586 | if test -n "$CC"; then | |
2587 | ac_cv_prog_CC="$CC" # Let the user override the test. | |
2588 | else | |
2589 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
2590 | for as_dir in $PATH | |
2591 | do | |
2592 | IFS=$as_save_IFS | |
2593 | test -z "$as_dir" && as_dir=. | |
2594 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 2595 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
2596 | ac_cv_prog_CC="$ac_tool_prefix$ac_prog" |
2597 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
2598 | break 2 | |
2599 | fi | |
2600 | done | |
2601 | done | |
2602 | IFS=$as_save_IFS | |
2603 | ||
2604 | fi | |
2605 | fi | |
2606 | CC=$ac_cv_prog_CC | |
2607 | if test -n "$CC"; then | |
2608 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 | |
2609 | $as_echo "$CC" >&6; } | |
2610 | else | |
2611 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
2612 | $as_echo "no" >&6; } | |
2613 | fi | |
2614 | ||
2615 | ||
2616 | test -n "$CC" && break | |
2617 | done | |
2618 | fi | |
2619 | if test -z "$CC"; then | |
2620 | ac_ct_CC=$CC | |
2621 | for ac_prog in cl.exe | |
2622 | do | |
2623 | # Extract the first word of "$ac_prog", so it can be a program name with args. | |
2624 | set dummy $ac_prog; ac_word=$2 | |
2625 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
2626 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 2627 | if ${ac_cv_prog_ac_ct_CC+:} false; then : |
6bb11ab3 L |
2628 | $as_echo_n "(cached) " >&6 |
2629 | else | |
2630 | if test -n "$ac_ct_CC"; then | |
2631 | ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. | |
2632 | else | |
2633 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
2634 | for as_dir in $PATH | |
2635 | do | |
2636 | IFS=$as_save_IFS | |
2637 | test -z "$as_dir" && as_dir=. | |
2638 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 2639 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
2640 | ac_cv_prog_ac_ct_CC="$ac_prog" |
2641 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
2642 | break 2 | |
2643 | fi | |
2644 | done | |
2645 | done | |
2646 | IFS=$as_save_IFS | |
2647 | ||
2648 | fi | |
2649 | fi | |
2650 | ac_ct_CC=$ac_cv_prog_ac_ct_CC | |
2651 | if test -n "$ac_ct_CC"; then | |
2652 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 | |
2653 | $as_echo "$ac_ct_CC" >&6; } | |
2654 | else | |
2655 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
2656 | $as_echo "no" >&6; } | |
2657 | fi | |
2658 | ||
2659 | ||
2660 | test -n "$ac_ct_CC" && break | |
2661 | done | |
2662 | ||
2663 | if test "x$ac_ct_CC" = x; then | |
2664 | CC="" | |
2665 | else | |
2666 | case $cross_compiling:$ac_tool_warned in | |
2667 | yes:) | |
2668 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
2669 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
2670 | ac_tool_warned=yes ;; | |
2671 | esac | |
2672 | CC=$ac_ct_CC | |
2673 | fi | |
2674 | fi | |
2675 | ||
2676 | fi | |
2677 | ||
2678 | ||
2679 | test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | |
2680 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | |
d0ac1c44 SM |
2681 | as_fn_error $? "no acceptable C compiler found in \$PATH |
2682 | See \`config.log' for more details" "$LINENO" 5; } | |
6bb11ab3 L |
2683 | |
2684 | # Provide some information about the compiler. | |
2685 | $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 | |
2686 | set X $ac_compile | |
2687 | ac_compiler=$2 | |
2688 | for ac_option in --version -v -V -qversion; do | |
2689 | { { ac_try="$ac_compiler $ac_option >&5" | |
2690 | case "(($ac_try" in | |
2691 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | |
2692 | *) ac_try_echo=$ac_try;; | |
2693 | esac | |
2694 | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" | |
2695 | $as_echo "$ac_try_echo"; } >&5 | |
2696 | (eval "$ac_compiler $ac_option >&5") 2>conftest.err | |
2697 | ac_status=$? | |
2698 | if test -s conftest.err; then | |
2699 | sed '10a\ | |
2700 | ... rest of stderr output deleted ... | |
2701 | 10q' conftest.err >conftest.er1 | |
2702 | cat conftest.er1 >&5 | |
6bb11ab3 | 2703 | fi |
d0ac1c44 | 2704 | rm -f conftest.er1 conftest.err |
6bb11ab3 L |
2705 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 |
2706 | test $ac_status = 0; } | |
2707 | done | |
2708 | ||
2709 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
2710 | /* end confdefs.h. */ | |
2711 | ||
2712 | int | |
2713 | main () | |
2714 | { | |
2715 | ||
2716 | ; | |
2717 | return 0; | |
2718 | } | |
2719 | _ACEOF | |
2720 | ac_clean_files_save=$ac_clean_files | |
d0ac1c44 | 2721 | ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" |
6bb11ab3 L |
2722 | # Try to create an executable without -o first, disregard a.out. |
2723 | # It will help us diagnose broken compilers, and finding out an intuition | |
2724 | # of exeext. | |
d0ac1c44 SM |
2725 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 |
2726 | $as_echo_n "checking whether the C compiler works... " >&6; } | |
6bb11ab3 L |
2727 | ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` |
2728 | ||
2729 | # The possible output files: | |
2730 | ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" | |
2731 | ||
2732 | ac_rmfiles= | |
2733 | for ac_file in $ac_files | |
2734 | do | |
2735 | case $ac_file in | |
2736 | *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; | |
2737 | * ) ac_rmfiles="$ac_rmfiles $ac_file";; | |
2738 | esac | |
2739 | done | |
2740 | rm -f $ac_rmfiles | |
2741 | ||
2742 | if { { ac_try="$ac_link_default" | |
2743 | case "(($ac_try" in | |
2744 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | |
2745 | *) ac_try_echo=$ac_try;; | |
2746 | esac | |
2747 | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" | |
2748 | $as_echo "$ac_try_echo"; } >&5 | |
2749 | (eval "$ac_link_default") 2>&5 | |
2750 | ac_status=$? | |
2751 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
2752 | test $ac_status = 0; }; then : | |
2753 | # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. | |
2754 | # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' | |
2755 | # in a Makefile. We should not override ac_cv_exeext if it was cached, | |
2756 | # so that the user can short-circuit this test for compilers unknown to | |
2757 | # Autoconf. | |
2758 | for ac_file in $ac_files '' | |
2759 | do | |
2760 | test -f "$ac_file" || continue | |
2761 | case $ac_file in | |
2762 | *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) | |
2763 | ;; | |
2764 | [ab].out ) | |
2765 | # We found the default executable, but exeext='' is most | |
2766 | # certainly right. | |
2767 | break;; | |
2768 | *.* ) | |
2769 | if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; | |
2770 | then :; else | |
2771 | ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` | |
2772 | fi | |
2773 | # We set ac_cv_exeext here because the later test for it is not | |
2774 | # safe: cross compilers may not add the suffix if given an `-o' | |
2775 | # argument, so we may need to know it at that point already. | |
2776 | # Even if this section looks crufty: it has the advantage of | |
2777 | # actually working. | |
2778 | break;; | |
2779 | * ) | |
2780 | break;; | |
2781 | esac | |
2782 | done | |
2783 | test "$ac_cv_exeext" = no && ac_cv_exeext= | |
2784 | ||
2785 | else | |
2786 | ac_file='' | |
2787 | fi | |
6bb11ab3 | 2788 | if test -z "$ac_file"; then : |
d0ac1c44 SM |
2789 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 |
2790 | $as_echo "no" >&6; } | |
2791 | $as_echo "$as_me: failed program was:" >&5 | |
6bb11ab3 L |
2792 | sed 's/^/| /' conftest.$ac_ext >&5 |
2793 | ||
2794 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | |
2795 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | |
d0ac1c44 SM |
2796 | as_fn_error 77 "C compiler cannot create executables |
2797 | See \`config.log' for more details" "$LINENO" 5; } | |
2798 | else | |
2799 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | |
2800 | $as_echo "yes" >&6; } | |
6bb11ab3 | 2801 | fi |
d0ac1c44 SM |
2802 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 |
2803 | $as_echo_n "checking for C compiler default output file name... " >&6; } | |
2804 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 | |
2805 | $as_echo "$ac_file" >&6; } | |
6bb11ab3 L |
2806 | ac_exeext=$ac_cv_exeext |
2807 | ||
d0ac1c44 | 2808 | rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out |
6bb11ab3 | 2809 | ac_clean_files=$ac_clean_files_save |
6bb11ab3 L |
2810 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 |
2811 | $as_echo_n "checking for suffix of executables... " >&6; } | |
2812 | if { { ac_try="$ac_link" | |
2813 | case "(($ac_try" in | |
2814 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | |
2815 | *) ac_try_echo=$ac_try;; | |
2816 | esac | |
2817 | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" | |
2818 | $as_echo "$ac_try_echo"; } >&5 | |
2819 | (eval "$ac_link") 2>&5 | |
2820 | ac_status=$? | |
2821 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
2822 | test $ac_status = 0; }; then : | |
2823 | # If both `conftest.exe' and `conftest' are `present' (well, observable) | |
2824 | # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will | |
2825 | # work properly (i.e., refer to `conftest.exe'), while it won't with | |
2826 | # `rm'. | |
2827 | for ac_file in conftest.exe conftest conftest.*; do | |
2828 | test -f "$ac_file" || continue | |
2829 | case $ac_file in | |
2830 | *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; | |
2831 | *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` | |
2832 | break;; | |
2833 | * ) break;; | |
2834 | esac | |
2835 | done | |
2836 | else | |
2837 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | |
2838 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | |
d0ac1c44 SM |
2839 | as_fn_error $? "cannot compute suffix of executables: cannot compile and link |
2840 | See \`config.log' for more details" "$LINENO" 5; } | |
6bb11ab3 | 2841 | fi |
d0ac1c44 | 2842 | rm -f conftest conftest$ac_cv_exeext |
6bb11ab3 L |
2843 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 |
2844 | $as_echo "$ac_cv_exeext" >&6; } | |
2845 | ||
2846 | rm -f conftest.$ac_ext | |
2847 | EXEEXT=$ac_cv_exeext | |
2848 | ac_exeext=$EXEEXT | |
d0ac1c44 SM |
2849 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
2850 | /* end confdefs.h. */ | |
2851 | #include <stdio.h> | |
2852 | int | |
2853 | main () | |
2854 | { | |
2855 | FILE *f = fopen ("conftest.out", "w"); | |
2856 | return ferror (f) || fclose (f) != 0; | |
2857 | ||
2858 | ; | |
2859 | return 0; | |
2860 | } | |
2861 | _ACEOF | |
2862 | ac_clean_files="$ac_clean_files conftest.out" | |
2863 | # Check that the compiler produces executables we can run. If not, either | |
2864 | # the compiler is broken, or we cross compile. | |
2865 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 | |
2866 | $as_echo_n "checking whether we are cross compiling... " >&6; } | |
2867 | if test "$cross_compiling" != yes; then | |
2868 | { { ac_try="$ac_link" | |
2869 | case "(($ac_try" in | |
2870 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | |
2871 | *) ac_try_echo=$ac_try;; | |
2872 | esac | |
2873 | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" | |
2874 | $as_echo "$ac_try_echo"; } >&5 | |
2875 | (eval "$ac_link") 2>&5 | |
2876 | ac_status=$? | |
2877 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
2878 | test $ac_status = 0; } | |
2879 | if { ac_try='./conftest$ac_cv_exeext' | |
2880 | { { case "(($ac_try" in | |
2881 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | |
2882 | *) ac_try_echo=$ac_try;; | |
2883 | esac | |
2884 | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" | |
2885 | $as_echo "$ac_try_echo"; } >&5 | |
2886 | (eval "$ac_try") 2>&5 | |
2887 | ac_status=$? | |
2888 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
2889 | test $ac_status = 0; }; }; then | |
2890 | cross_compiling=no | |
2891 | else | |
2892 | if test "$cross_compiling" = maybe; then | |
2893 | cross_compiling=yes | |
2894 | else | |
2895 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | |
2896 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | |
2897 | as_fn_error $? "cannot run C compiled programs. | |
2898 | If you meant to cross compile, use \`--host'. | |
2899 | See \`config.log' for more details" "$LINENO" 5; } | |
2900 | fi | |
2901 | fi | |
2902 | fi | |
2903 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 | |
2904 | $as_echo "$cross_compiling" >&6; } | |
2905 | ||
2906 | rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out | |
2907 | ac_clean_files=$ac_clean_files_save | |
6bb11ab3 L |
2908 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 |
2909 | $as_echo_n "checking for suffix of object files... " >&6; } | |
d0ac1c44 | 2910 | if ${ac_cv_objext+:} false; then : |
6bb11ab3 L |
2911 | $as_echo_n "(cached) " >&6 |
2912 | else | |
2913 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
2914 | /* end confdefs.h. */ | |
2915 | ||
2916 | int | |
2917 | main () | |
2918 | { | |
2919 | ||
2920 | ; | |
2921 | return 0; | |
2922 | } | |
2923 | _ACEOF | |
2924 | rm -f conftest.o conftest.obj | |
2925 | if { { ac_try="$ac_compile" | |
2926 | case "(($ac_try" in | |
2927 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | |
2928 | *) ac_try_echo=$ac_try;; | |
2929 | esac | |
2930 | eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" | |
2931 | $as_echo "$ac_try_echo"; } >&5 | |
2932 | (eval "$ac_compile") 2>&5 | |
2933 | ac_status=$? | |
2934 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
2935 | test $ac_status = 0; }; then : | |
2936 | for ac_file in conftest.o conftest.obj conftest.*; do | |
2937 | test -f "$ac_file" || continue; | |
2938 | case $ac_file in | |
2939 | *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; | |
2940 | *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` | |
2941 | break;; | |
2942 | esac | |
2943 | done | |
2944 | else | |
2945 | $as_echo "$as_me: failed program was:" >&5 | |
2946 | sed 's/^/| /' conftest.$ac_ext >&5 | |
2947 | ||
2948 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | |
2949 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | |
d0ac1c44 SM |
2950 | as_fn_error $? "cannot compute suffix of object files: cannot compile |
2951 | See \`config.log' for more details" "$LINENO" 5; } | |
6bb11ab3 L |
2952 | fi |
2953 | rm -f conftest.$ac_cv_objext conftest.$ac_ext | |
2954 | fi | |
2955 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 | |
2956 | $as_echo "$ac_cv_objext" >&6; } | |
2957 | OBJEXT=$ac_cv_objext | |
2958 | ac_objext=$OBJEXT | |
2959 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 | |
2960 | $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } | |
d0ac1c44 | 2961 | if ${ac_cv_c_compiler_gnu+:} false; then : |
6bb11ab3 L |
2962 | $as_echo_n "(cached) " >&6 |
2963 | else | |
2964 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
2965 | /* end confdefs.h. */ | |
2966 | ||
2967 | int | |
2968 | main () | |
2969 | { | |
2970 | #ifndef __GNUC__ | |
2971 | choke me | |
2972 | #endif | |
2973 | ||
2974 | ; | |
2975 | return 0; | |
2976 | } | |
2977 | _ACEOF | |
2978 | if ac_fn_c_try_compile "$LINENO"; then : | |
2979 | ac_compiler_gnu=yes | |
2980 | else | |
2981 | ac_compiler_gnu=no | |
2982 | fi | |
2983 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
2984 | ac_cv_c_compiler_gnu=$ac_compiler_gnu | |
2985 | ||
2986 | fi | |
2987 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 | |
2988 | $as_echo "$ac_cv_c_compiler_gnu" >&6; } | |
2989 | if test $ac_compiler_gnu = yes; then | |
2990 | GCC=yes | |
2991 | else | |
2992 | GCC= | |
2993 | fi | |
2994 | ac_test_CFLAGS=${CFLAGS+set} | |
2995 | ac_save_CFLAGS=$CFLAGS | |
2996 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 | |
2997 | $as_echo_n "checking whether $CC accepts -g... " >&6; } | |
d0ac1c44 | 2998 | if ${ac_cv_prog_cc_g+:} false; then : |
6bb11ab3 L |
2999 | $as_echo_n "(cached) " >&6 |
3000 | else | |
3001 | ac_save_c_werror_flag=$ac_c_werror_flag | |
3002 | ac_c_werror_flag=yes | |
3003 | ac_cv_prog_cc_g=no | |
3004 | CFLAGS="-g" | |
3005 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3006 | /* end confdefs.h. */ | |
3007 | ||
3008 | int | |
3009 | main () | |
3010 | { | |
3011 | ||
3012 | ; | |
3013 | return 0; | |
3014 | } | |
3015 | _ACEOF | |
3016 | if ac_fn_c_try_compile "$LINENO"; then : | |
3017 | ac_cv_prog_cc_g=yes | |
3018 | else | |
3019 | CFLAGS="" | |
3020 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3021 | /* end confdefs.h. */ | |
3022 | ||
3023 | int | |
3024 | main () | |
3025 | { | |
3026 | ||
3027 | ; | |
3028 | return 0; | |
3029 | } | |
3030 | _ACEOF | |
3031 | if ac_fn_c_try_compile "$LINENO"; then : | |
3032 | ||
3033 | else | |
3034 | ac_c_werror_flag=$ac_save_c_werror_flag | |
3035 | CFLAGS="-g" | |
3036 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3037 | /* end confdefs.h. */ | |
3038 | ||
3039 | int | |
3040 | main () | |
3041 | { | |
3042 | ||
3043 | ; | |
3044 | return 0; | |
3045 | } | |
3046 | _ACEOF | |
3047 | if ac_fn_c_try_compile "$LINENO"; then : | |
3048 | ac_cv_prog_cc_g=yes | |
3049 | fi | |
3050 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
3051 | fi | |
3052 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
3053 | fi | |
3054 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
3055 | ac_c_werror_flag=$ac_save_c_werror_flag | |
3056 | fi | |
3057 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 | |
3058 | $as_echo "$ac_cv_prog_cc_g" >&6; } | |
3059 | if test "$ac_test_CFLAGS" = set; then | |
3060 | CFLAGS=$ac_save_CFLAGS | |
3061 | elif test $ac_cv_prog_cc_g = yes; then | |
3062 | if test "$GCC" = yes; then | |
3063 | CFLAGS="-g -O2" | |
3064 | else | |
3065 | CFLAGS="-g" | |
3066 | fi | |
3067 | else | |
3068 | if test "$GCC" = yes; then | |
3069 | CFLAGS="-O2" | |
3070 | else | |
3071 | CFLAGS= | |
3072 | fi | |
3073 | fi | |
3074 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 | |
3075 | $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } | |
d0ac1c44 | 3076 | if ${ac_cv_prog_cc_c89+:} false; then : |
6bb11ab3 L |
3077 | $as_echo_n "(cached) " >&6 |
3078 | else | |
3079 | ac_cv_prog_cc_c89=no | |
3080 | ac_save_CC=$CC | |
3081 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3082 | /* end confdefs.h. */ | |
3083 | #include <stdarg.h> | |
3084 | #include <stdio.h> | |
d0ac1c44 | 3085 | struct stat; |
6bb11ab3 L |
3086 | /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ |
3087 | struct buf { int x; }; | |
3088 | FILE * (*rcsopen) (struct buf *, struct stat *, int); | |
3089 | static char *e (p, i) | |
3090 | char **p; | |
3091 | int i; | |
3092 | { | |
3093 | return p[i]; | |
3094 | } | |
3095 | static char *f (char * (*g) (char **, int), char **p, ...) | |
3096 | { | |
3097 | char *s; | |
3098 | va_list v; | |
3099 | va_start (v,p); | |
3100 | s = g (p, va_arg (v,int)); | |
3101 | va_end (v); | |
3102 | return s; | |
3103 | } | |
3104 | ||
3105 | /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has | |
3106 | function prototypes and stuff, but not '\xHH' hex character constants. | |
3107 | These don't provoke an error unfortunately, instead are silently treated | |
3108 | as 'x'. The following induces an error, until -std is added to get | |
3109 | proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an | |
3110 | array size at least. It's necessary to write '\x00'==0 to get something | |
3111 | that's true only with -std. */ | |
3112 | int osf4_cc_array ['\x00' == 0 ? 1 : -1]; | |
3113 | ||
3114 | /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters | |
3115 | inside strings and character constants. */ | |
3116 | #define FOO(x) 'x' | |
3117 | int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; | |
3118 | ||
3119 | int test (int i, double x); | |
3120 | struct s1 {int (*f) (int a);}; | |
3121 | struct s2 {int (*f) (double a);}; | |
3122 | int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); | |
3123 | int argc; | |
3124 | char **argv; | |
3125 | int | |
3126 | main () | |
3127 | { | |
3128 | return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; | |
3129 | ; | |
3130 | return 0; | |
3131 | } | |
3132 | _ACEOF | |
3133 | for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ | |
3134 | -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" | |
3135 | do | |
3136 | CC="$ac_save_CC $ac_arg" | |
3137 | if ac_fn_c_try_compile "$LINENO"; then : | |
3138 | ac_cv_prog_cc_c89=$ac_arg | |
3139 | fi | |
3140 | rm -f core conftest.err conftest.$ac_objext | |
3141 | test "x$ac_cv_prog_cc_c89" != "xno" && break | |
3142 | done | |
3143 | rm -f conftest.$ac_ext | |
3144 | CC=$ac_save_CC | |
3145 | ||
3146 | fi | |
3147 | # AC_CACHE_VAL | |
3148 | case "x$ac_cv_prog_cc_c89" in | |
3149 | x) | |
3150 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 | |
3151 | $as_echo "none needed" >&6; } ;; | |
3152 | xno) | |
3153 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 | |
3154 | $as_echo "unsupported" >&6; } ;; | |
3155 | *) | |
3156 | CC="$CC $ac_cv_prog_cc_c89" | |
3157 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 | |
3158 | $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; | |
3159 | esac | |
3160 | if test "x$ac_cv_prog_cc_c89" != xno; then : | |
3161 | ||
3162 | fi | |
3163 | ||
3164 | ac_ext=c | |
3165 | ac_cpp='$CPP $CPPFLAGS' | |
3166 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | |
3167 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | |
3168 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | |
3169 | ||
c2783492 | 3170 | |
ebe9564b MF |
3171 | ac_ext=c |
3172 | ac_cpp='$CPP $CPPFLAGS' | |
3173 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | |
3174 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | |
3175 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | |
3176 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 | |
3177 | $as_echo_n "checking how to run the C preprocessor... " >&6; } | |
3178 | # On Suns, sometimes $CPP names a directory. | |
3179 | if test -n "$CPP" && test -d "$CPP"; then | |
3180 | CPP= | |
3181 | fi | |
3182 | if test -z "$CPP"; then | |
3183 | if ${ac_cv_prog_CPP+:} false; then : | |
3184 | $as_echo_n "(cached) " >&6 | |
3185 | else | |
3186 | # Double quotes because CPP needs to be expanded | |
3187 | for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" | |
3188 | do | |
3189 | ac_preproc_ok=false | |
3190 | for ac_c_preproc_warn_flag in '' yes | |
3191 | do | |
3192 | # Use a header file that comes with gcc, so configuring glibc | |
3193 | # with a fresh cross-compiler works. | |
3194 | # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
3195 | # <limits.h> exists even on freestanding compilers. | |
3196 | # On the NeXT, cc -E runs the code through the compiler's parser, | |
3197 | # not just through cpp. "Syntax error" is here to catch this case. | |
3198 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3199 | /* end confdefs.h. */ | |
3200 | #ifdef __STDC__ | |
3201 | # include <limits.h> | |
3202 | #else | |
3203 | # include <assert.h> | |
3204 | #endif | |
3205 | Syntax error | |
3206 | _ACEOF | |
3207 | if ac_fn_c_try_cpp "$LINENO"; then : | |
3208 | ||
3209 | else | |
3210 | # Broken: fails on valid input. | |
3211 | continue | |
3212 | fi | |
3213 | rm -f conftest.err conftest.i conftest.$ac_ext | |
3214 | ||
3215 | # OK, works on sane cases. Now check whether nonexistent headers | |
3216 | # can be detected and how. | |
3217 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3218 | /* end confdefs.h. */ | |
3219 | #include <ac_nonexistent.h> | |
3220 | _ACEOF | |
3221 | if ac_fn_c_try_cpp "$LINENO"; then : | |
3222 | # Broken: success on invalid input. | |
3223 | continue | |
3224 | else | |
3225 | # Passes both tests. | |
3226 | ac_preproc_ok=: | |
3227 | break | |
3228 | fi | |
3229 | rm -f conftest.err conftest.i conftest.$ac_ext | |
3230 | ||
3231 | done | |
3232 | # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. | |
3233 | rm -f conftest.i conftest.err conftest.$ac_ext | |
3234 | if $ac_preproc_ok; then : | |
3235 | break | |
3236 | fi | |
3237 | ||
3238 | done | |
3239 | ac_cv_prog_CPP=$CPP | |
3240 | ||
3241 | fi | |
3242 | CPP=$ac_cv_prog_CPP | |
3243 | else | |
3244 | ac_cv_prog_CPP=$CPP | |
3245 | fi | |
3246 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 | |
3247 | $as_echo "$CPP" >&6; } | |
3248 | ac_preproc_ok=false | |
3249 | for ac_c_preproc_warn_flag in '' yes | |
3250 | do | |
3251 | # Use a header file that comes with gcc, so configuring glibc | |
3252 | # with a fresh cross-compiler works. | |
3253 | # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
3254 | # <limits.h> exists even on freestanding compilers. | |
3255 | # On the NeXT, cc -E runs the code through the compiler's parser, | |
3256 | # not just through cpp. "Syntax error" is here to catch this case. | |
3257 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3258 | /* end confdefs.h. */ | |
3259 | #ifdef __STDC__ | |
3260 | # include <limits.h> | |
3261 | #else | |
3262 | # include <assert.h> | |
3263 | #endif | |
3264 | Syntax error | |
3265 | _ACEOF | |
3266 | if ac_fn_c_try_cpp "$LINENO"; then : | |
3267 | ||
3268 | else | |
3269 | # Broken: fails on valid input. | |
3270 | continue | |
3271 | fi | |
3272 | rm -f conftest.err conftest.i conftest.$ac_ext | |
3273 | ||
3274 | # OK, works on sane cases. Now check whether nonexistent headers | |
3275 | # can be detected and how. | |
3276 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3277 | /* end confdefs.h. */ | |
3278 | #include <ac_nonexistent.h> | |
3279 | _ACEOF | |
3280 | if ac_fn_c_try_cpp "$LINENO"; then : | |
3281 | # Broken: success on invalid input. | |
3282 | continue | |
3283 | else | |
3284 | # Passes both tests. | |
3285 | ac_preproc_ok=: | |
3286 | break | |
3287 | fi | |
3288 | rm -f conftest.err conftest.i conftest.$ac_ext | |
3289 | ||
3290 | done | |
3291 | # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. | |
3292 | rm -f conftest.i conftest.err conftest.$ac_ext | |
3293 | if $ac_preproc_ok; then : | |
3294 | ||
3295 | else | |
3296 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | |
3297 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | |
3298 | as_fn_error $? "C preprocessor \"$CPP\" fails sanity check | |
3299 | See \`config.log' for more details" "$LINENO" 5; } | |
3300 | fi | |
3301 | ||
3302 | ac_ext=c | |
3303 | ac_cpp='$CPP $CPPFLAGS' | |
3304 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | |
3305 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | |
3306 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | |
3307 | ||
6bb11ab3 L |
3308 | |
3309 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 | |
3310 | $as_echo_n "checking for grep that handles long lines and -e... " >&6; } | |
d0ac1c44 | 3311 | if ${ac_cv_path_GREP+:} false; then : |
6bb11ab3 L |
3312 | $as_echo_n "(cached) " >&6 |
3313 | else | |
3314 | if test -z "$GREP"; then | |
3315 | ac_path_GREP_found=false | |
3316 | # Loop through the user's path and test for each of PROGNAME-LIST | |
3317 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
3318 | for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin | |
3319 | do | |
3320 | IFS=$as_save_IFS | |
3321 | test -z "$as_dir" && as_dir=. | |
3322 | for ac_prog in grep ggrep; do | |
3323 | for ac_exec_ext in '' $ac_executable_extensions; do | |
3324 | ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" | |
d0ac1c44 | 3325 | as_fn_executable_p "$ac_path_GREP" || continue |
6bb11ab3 L |
3326 | # Check for GNU ac_path_GREP and select it if it is found. |
3327 | # Check for GNU $ac_path_GREP | |
3328 | case `"$ac_path_GREP" --version 2>&1` in | |
3329 | *GNU*) | |
3330 | ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; | |
3331 | *) | |
3332 | ac_count=0 | |
3333 | $as_echo_n 0123456789 >"conftest.in" | |
3334 | while : | |
3335 | do | |
3336 | cat "conftest.in" "conftest.in" >"conftest.tmp" | |
3337 | mv "conftest.tmp" "conftest.in" | |
3338 | cp "conftest.in" "conftest.nl" | |
3339 | $as_echo 'GREP' >> "conftest.nl" | |
3340 | "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break | |
3341 | diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break | |
3342 | as_fn_arith $ac_count + 1 && ac_count=$as_val | |
3343 | if test $ac_count -gt ${ac_path_GREP_max-0}; then | |
3344 | # Best one so far, save it but keep looking for a better one | |
3345 | ac_cv_path_GREP="$ac_path_GREP" | |
3346 | ac_path_GREP_max=$ac_count | |
3347 | fi | |
3348 | # 10*(2^10) chars as input seems more than enough | |
3349 | test $ac_count -gt 10 && break | |
3350 | done | |
3351 | rm -f conftest.in conftest.tmp conftest.nl conftest.out;; | |
3352 | esac | |
3353 | ||
3354 | $ac_path_GREP_found && break 3 | |
3355 | done | |
3356 | done | |
3357 | done | |
3358 | IFS=$as_save_IFS | |
3359 | if test -z "$ac_cv_path_GREP"; then | |
d0ac1c44 | 3360 | as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 |
6bb11ab3 L |
3361 | fi |
3362 | else | |
3363 | ac_cv_path_GREP=$GREP | |
3364 | fi | |
3365 | ||
3366 | fi | |
3367 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 | |
3368 | $as_echo "$ac_cv_path_GREP" >&6; } | |
3369 | GREP="$ac_cv_path_GREP" | |
3370 | ||
3371 | ||
3372 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 | |
3373 | $as_echo_n "checking for egrep... " >&6; } | |
d0ac1c44 | 3374 | if ${ac_cv_path_EGREP+:} false; then : |
6bb11ab3 L |
3375 | $as_echo_n "(cached) " >&6 |
3376 | else | |
3377 | if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 | |
3378 | then ac_cv_path_EGREP="$GREP -E" | |
3379 | else | |
3380 | if test -z "$EGREP"; then | |
3381 | ac_path_EGREP_found=false | |
3382 | # Loop through the user's path and test for each of PROGNAME-LIST | |
3383 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
3384 | for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin | |
3385 | do | |
3386 | IFS=$as_save_IFS | |
3387 | test -z "$as_dir" && as_dir=. | |
3388 | for ac_prog in egrep; do | |
3389 | for ac_exec_ext in '' $ac_executable_extensions; do | |
3390 | ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" | |
d0ac1c44 | 3391 | as_fn_executable_p "$ac_path_EGREP" || continue |
6bb11ab3 L |
3392 | # Check for GNU ac_path_EGREP and select it if it is found. |
3393 | # Check for GNU $ac_path_EGREP | |
3394 | case `"$ac_path_EGREP" --version 2>&1` in | |
3395 | *GNU*) | |
3396 | ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; | |
3397 | *) | |
3398 | ac_count=0 | |
3399 | $as_echo_n 0123456789 >"conftest.in" | |
3400 | while : | |
3401 | do | |
3402 | cat "conftest.in" "conftest.in" >"conftest.tmp" | |
3403 | mv "conftest.tmp" "conftest.in" | |
3404 | cp "conftest.in" "conftest.nl" | |
3405 | $as_echo 'EGREP' >> "conftest.nl" | |
3406 | "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break | |
3407 | diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break | |
3408 | as_fn_arith $ac_count + 1 && ac_count=$as_val | |
3409 | if test $ac_count -gt ${ac_path_EGREP_max-0}; then | |
3410 | # Best one so far, save it but keep looking for a better one | |
3411 | ac_cv_path_EGREP="$ac_path_EGREP" | |
3412 | ac_path_EGREP_max=$ac_count | |
3413 | fi | |
3414 | # 10*(2^10) chars as input seems more than enough | |
3415 | test $ac_count -gt 10 && break | |
3416 | done | |
3417 | rm -f conftest.in conftest.tmp conftest.nl conftest.out;; | |
3418 | esac | |
3419 | ||
3420 | $ac_path_EGREP_found && break 3 | |
3421 | done | |
3422 | done | |
3423 | done | |
3424 | IFS=$as_save_IFS | |
3425 | if test -z "$ac_cv_path_EGREP"; then | |
d0ac1c44 | 3426 | as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 |
6bb11ab3 L |
3427 | fi |
3428 | else | |
3429 | ac_cv_path_EGREP=$EGREP | |
3430 | fi | |
3431 | ||
3432 | fi | |
3433 | fi | |
3434 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 | |
3435 | $as_echo "$ac_cv_path_EGREP" >&6; } | |
3436 | EGREP="$ac_cv_path_EGREP" | |
3437 | ||
3438 | ||
3439 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 | |
3440 | $as_echo_n "checking for ANSI C header files... " >&6; } | |
d0ac1c44 | 3441 | if ${ac_cv_header_stdc+:} false; then : |
6bb11ab3 L |
3442 | $as_echo_n "(cached) " >&6 |
3443 | else | |
3444 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3445 | /* end confdefs.h. */ | |
3446 | #include <stdlib.h> | |
3447 | #include <stdarg.h> | |
3448 | #include <string.h> | |
3449 | #include <float.h> | |
3450 | ||
3451 | int | |
3452 | main () | |
3453 | { | |
3454 | ||
3455 | ; | |
3456 | return 0; | |
3457 | } | |
3458 | _ACEOF | |
3459 | if ac_fn_c_try_compile "$LINENO"; then : | |
3460 | ac_cv_header_stdc=yes | |
3461 | else | |
3462 | ac_cv_header_stdc=no | |
3463 | fi | |
3464 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
3465 | ||
3466 | if test $ac_cv_header_stdc = yes; then | |
3467 | # SunOS 4.x string.h does not declare mem*, contrary to ANSI. | |
3468 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3469 | /* end confdefs.h. */ | |
3470 | #include <string.h> | |
3471 | ||
3472 | _ACEOF | |
3473 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | | |
3474 | $EGREP "memchr" >/dev/null 2>&1; then : | |
3475 | ||
3476 | else | |
3477 | ac_cv_header_stdc=no | |
3478 | fi | |
3479 | rm -f conftest* | |
3480 | ||
3481 | fi | |
3482 | ||
3483 | if test $ac_cv_header_stdc = yes; then | |
3484 | # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. | |
3485 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3486 | /* end confdefs.h. */ | |
3487 | #include <stdlib.h> | |
3488 | ||
3489 | _ACEOF | |
3490 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | | |
3491 | $EGREP "free" >/dev/null 2>&1; then : | |
3492 | ||
3493 | else | |
3494 | ac_cv_header_stdc=no | |
3495 | fi | |
3496 | rm -f conftest* | |
3497 | ||
3498 | fi | |
3499 | ||
3500 | if test $ac_cv_header_stdc = yes; then | |
3501 | # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. | |
3502 | if test "$cross_compiling" = yes; then : | |
3503 | : | |
3504 | else | |
3505 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3506 | /* end confdefs.h. */ | |
3507 | #include <ctype.h> | |
3508 | #include <stdlib.h> | |
3509 | #if ((' ' & 0x0FF) == 0x020) | |
3510 | # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') | |
3511 | # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) | |
3512 | #else | |
3513 | # define ISLOWER(c) \ | |
3514 | (('a' <= (c) && (c) <= 'i') \ | |
3515 | || ('j' <= (c) && (c) <= 'r') \ | |
3516 | || ('s' <= (c) && (c) <= 'z')) | |
3517 | # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) | |
3518 | #endif | |
3519 | ||
3520 | #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) | |
3521 | int | |
3522 | main () | |
3523 | { | |
3524 | int i; | |
3525 | for (i = 0; i < 256; i++) | |
3526 | if (XOR (islower (i), ISLOWER (i)) | |
3527 | || toupper (i) != TOUPPER (i)) | |
3528 | return 2; | |
3529 | return 0; | |
3530 | } | |
3531 | _ACEOF | |
3532 | if ac_fn_c_try_run "$LINENO"; then : | |
3533 | ||
3534 | else | |
3535 | ac_cv_header_stdc=no | |
3536 | fi | |
3537 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ | |
3538 | conftest.$ac_objext conftest.beam conftest.$ac_ext | |
3539 | fi | |
3540 | ||
3541 | fi | |
3542 | fi | |
3543 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 | |
3544 | $as_echo "$ac_cv_header_stdc" >&6; } | |
3545 | if test $ac_cv_header_stdc = yes; then | |
3546 | ||
3547 | $as_echo "#define STDC_HEADERS 1" >>confdefs.h | |
3548 | ||
3549 | fi | |
3550 | ||
3551 | # On IRIX 5.3, sys/types and inttypes.h are conflicting. | |
3552 | for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ | |
3553 | inttypes.h stdint.h unistd.h | |
3554 | do : | |
3555 | as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` | |
3556 | ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default | |
3557 | " | |
d0ac1c44 | 3558 | if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : |
6bb11ab3 L |
3559 | cat >>confdefs.h <<_ACEOF |
3560 | #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 | |
3561 | _ACEOF | |
3562 | ||
3563 | fi | |
3564 | ||
3565 | done | |
3566 | ||
3567 | ||
3568 | ||
3569 | ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" | |
d0ac1c44 | 3570 | if test "x$ac_cv_header_minix_config_h" = xyes; then : |
6bb11ab3 L |
3571 | MINIX=yes |
3572 | else | |
3573 | MINIX= | |
3574 | fi | |
3575 | ||
3576 | ||
3577 | if test "$MINIX" = yes; then | |
3578 | ||
3579 | $as_echo "#define _POSIX_SOURCE 1" >>confdefs.h | |
3580 | ||
3581 | ||
3582 | $as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h | |
3583 | ||
3584 | ||
3585 | $as_echo "#define _MINIX 1" >>confdefs.h | |
3586 | ||
3587 | fi | |
3588 | ||
3589 | ||
3590 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 | |
3591 | $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } | |
d0ac1c44 | 3592 | if ${ac_cv_safe_to_define___extensions__+:} false; then : |
6bb11ab3 L |
3593 | $as_echo_n "(cached) " >&6 |
3594 | else | |
3595 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
3596 | /* end confdefs.h. */ | |
3597 | ||
d0ac1c44 SM |
3598 | # define __EXTENSIONS__ 1 |
3599 | $ac_includes_default | |
6bb11ab3 L |
3600 | int |
3601 | main () | |
3602 | { | |
3603 | ||
3604 | ; | |
3605 | return 0; | |
3606 | } | |
3607 | _ACEOF | |
3608 | if ac_fn_c_try_compile "$LINENO"; then : | |
3609 | ac_cv_safe_to_define___extensions__=yes | |
3610 | else | |
3611 | ac_cv_safe_to_define___extensions__=no | |
3612 | fi | |
3613 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
3614 | fi | |
3615 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 | |
3616 | $as_echo "$ac_cv_safe_to_define___extensions__" >&6; } | |
3617 | test $ac_cv_safe_to_define___extensions__ = yes && | |
3618 | $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h | |
3619 | ||
3620 | $as_echo "#define _ALL_SOURCE 1" >>confdefs.h | |
3621 | ||
3622 | $as_echo "#define _GNU_SOURCE 1" >>confdefs.h | |
3623 | ||
3624 | $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h | |
3625 | ||
3626 | $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h | |
3627 | ||
3628 | ||
3629 | test "$program_prefix" != NONE && | |
3630 | program_transform_name="s&^&$program_prefix&;$program_transform_name" | |
3631 | # Use a double $ so make ignores it. | |
3632 | test "$program_suffix" != NONE && | |
3633 | program_transform_name="s&\$&$program_suffix&;$program_transform_name" | |
3634 | # Double any \ or $. | |
3635 | # By default was `s,x,x', remove it if useless. | |
3636 | ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' | |
3637 | program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` | |
3638 | ||
3639 | # Find a good install program. We prefer a C program (faster), | |
3640 | # so one script is as good as another. But avoid the broken or | |
3641 | # incompatible versions: | |
3642 | # SysV /etc/install, /usr/sbin/install | |
3643 | # SunOS /usr/etc/install | |
3644 | # IRIX /sbin/install | |
3645 | # AIX /bin/install | |
3646 | # AmigaOS /C/install, which installs bootblocks on floppy discs | |
3647 | # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag | |
3648 | # AFS /usr/afsws/bin/install, which mishandles nonexistent args | |
3649 | # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" | |
3650 | # OS/2's system install, which has a completely different semantic | |
3651 | # ./install, which can be erroneously created by make from ./install.sh. | |
3652 | # Reject install programs that cannot install multiple files. | |
3653 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 | |
3654 | $as_echo_n "checking for a BSD-compatible install... " >&6; } | |
3655 | if test -z "$INSTALL"; then | |
d0ac1c44 | 3656 | if ${ac_cv_path_install+:} false; then : |
6bb11ab3 L |
3657 | $as_echo_n "(cached) " >&6 |
3658 | else | |
3659 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
3660 | for as_dir in $PATH | |
3661 | do | |
3662 | IFS=$as_save_IFS | |
3663 | test -z "$as_dir" && as_dir=. | |
3664 | # Account for people who put trailing slashes in PATH elements. | |
3665 | case $as_dir/ in #(( | |
3666 | ./ | .// | /[cC]/* | \ | |
3667 | /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ | |
3668 | ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ | |
3669 | /usr/ucb/* ) ;; | |
3670 | *) | |
3671 | # OSF1 and SCO ODT 3.0 have their own names for install. | |
3672 | # Don't use installbsd from OSF since it installs stuff as root | |
3673 | # by default. | |
3674 | for ac_prog in ginstall scoinst install; do | |
3675 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 3676 | if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then |
6bb11ab3 L |
3677 | if test $ac_prog = install && |
3678 | grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then | |
3679 | # AIX install. It has an incompatible calling convention. | |
3680 | : | |
3681 | elif test $ac_prog = install && | |
3682 | grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then | |
3683 | # program-specific install script used by HP pwplus--don't use. | |
3684 | : | |
3685 | else | |
3686 | rm -rf conftest.one conftest.two conftest.dir | |
3687 | echo one > conftest.one | |
3688 | echo two > conftest.two | |
3689 | mkdir conftest.dir | |
3690 | if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && | |
3691 | test -s conftest.one && test -s conftest.two && | |
3692 | test -s conftest.dir/conftest.one && | |
3693 | test -s conftest.dir/conftest.two | |
3694 | then | |
3695 | ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" | |
3696 | break 3 | |
3697 | fi | |
3698 | fi | |
3699 | fi | |
3700 | done | |
3701 | done | |
3702 | ;; | |
3703 | esac | |
3704 | ||
3705 | done | |
3706 | IFS=$as_save_IFS | |
3707 | ||
3708 | rm -rf conftest.one conftest.two conftest.dir | |
3709 | ||
3710 | fi | |
3711 | if test "${ac_cv_path_install+set}" = set; then | |
3712 | INSTALL=$ac_cv_path_install | |
3713 | else | |
3714 | # As a last resort, use the slow shell script. Don't cache a | |
3715 | # value for INSTALL within a source directory, because that will | |
3716 | # break other packages using the cache if that directory is | |
3717 | # removed, or if the value is a relative name. | |
3718 | INSTALL=$ac_install_sh | |
3719 | fi | |
3720 | fi | |
3721 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 | |
3722 | $as_echo "$INSTALL" >&6; } | |
3723 | ||
3724 | # Use test -z because SunOS4 sh mishandles braces in ${var-val}. | |
3725 | # It thinks the first close brace ends the variable substitution. | |
3726 | test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' | |
3727 | ||
3728 | test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' | |
3729 | ||
3730 | test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' | |
3731 | ||
3732 | rm -rf .tst 2>/dev/null | |
3733 | mkdir .tst 2>/dev/null | |
3734 | if test -d .tst; then | |
3735 | am__leading_dot=. | |
3736 | else | |
3737 | am__leading_dot=_ | |
3738 | fi | |
3739 | rmdir .tst 2>/dev/null | |
3740 | ||
3741 | DEPDIR="${am__leading_dot}deps" | |
3742 | ||
3743 | case `pwd` in | |
3744 | *\ * | *\ *) | |
3745 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 | |
3746 | $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; | |
3747 | esac | |
3748 | ||
3749 | ||
3750 | ||
3751 | macro_version='2.2.7a' | |
3752 | macro_revision='1.3134' | |
3753 | ||
3754 | ||
3755 | ||
3756 | ||
3757 | ||
3758 | ||
3759 | ||
3760 | ||
3761 | ||
3762 | ||
3763 | ||
3764 | ||
3765 | ||
3766 | ltmain="$ac_aux_dir/ltmain.sh" | |
3767 | ||
3768 | # Backslashify metacharacters that are still active within | |
3769 | # double-quoted strings. | |
3770 | sed_quote_subst='s/\(["`$\\]\)/\\\1/g' | |
3771 | ||
3772 | # Same as above, but do not quote variable references. | |
3773 | double_quote_subst='s/\(["`\\]\)/\\\1/g' | |
3774 | ||
3775 | # Sed substitution to delay expansion of an escaped shell variable in a | |
3776 | # double_quote_subst'ed string. | |
3777 | delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' | |
3778 | ||
3779 | # Sed substitution to delay expansion of an escaped single quote. | |
3780 | delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' | |
3781 | ||
3782 | # Sed substitution to avoid accidental globbing in evaled expressions | |
3783 | no_glob_subst='s/\*/\\\*/g' | |
3784 | ||
3785 | ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' | |
3786 | ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO | |
3787 | ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO | |
3788 | ||
3789 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 | |
3790 | $as_echo_n "checking how to print strings... " >&6; } | |
3791 | # Test print first, because it will be a builtin if present. | |
3792 | if test "X`print -r -- -n 2>/dev/null`" = X-n && \ | |
3793 | test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then | |
3794 | ECHO='print -r --' | |
3795 | elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then | |
3796 | ECHO='printf %s\n' | |
3797 | else | |
3798 | # Use this function as a fallback that always works. | |
3799 | func_fallback_echo () | |
3800 | { | |
3801 | eval 'cat <<_LTECHO_EOF | |
3802 | $1 | |
3803 | _LTECHO_EOF' | |
3804 | } | |
3805 | ECHO='func_fallback_echo' | |
3806 | fi | |
3807 | ||
3808 | # func_echo_all arg... | |
3809 | # Invoke $ECHO with all args, space-separated. | |
3810 | func_echo_all () | |
3811 | { | |
3812 | $ECHO "" | |
3813 | } | |
3814 | ||
3815 | case "$ECHO" in | |
3816 | printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 | |
3817 | $as_echo "printf" >&6; } ;; | |
3818 | print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 | |
3819 | $as_echo "print -r" >&6; } ;; | |
3820 | *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 | |
3821 | $as_echo "cat" >&6; } ;; | |
3822 | esac | |
3823 | ||
3824 | ||
3825 | ||
3826 | ||
3827 | ||
3828 | ||
3829 | ||
3830 | ||
3831 | ||
3832 | ||
3833 | ||
3834 | ||
3835 | ||
3836 | ||
3837 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 | |
3838 | $as_echo_n "checking for a sed that does not truncate output... " >&6; } | |
d0ac1c44 | 3839 | if ${ac_cv_path_SED+:} false; then : |
6bb11ab3 L |
3840 | $as_echo_n "(cached) " >&6 |
3841 | else | |
3842 | ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ | |
3843 | for ac_i in 1 2 3 4 5 6 7; do | |
3844 | ac_script="$ac_script$as_nl$ac_script" | |
3845 | done | |
3846 | echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed | |
3847 | { ac_script=; unset ac_script;} | |
3848 | if test -z "$SED"; then | |
3849 | ac_path_SED_found=false | |
3850 | # Loop through the user's path and test for each of PROGNAME-LIST | |
3851 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
3852 | for as_dir in $PATH | |
3853 | do | |
3854 | IFS=$as_save_IFS | |
3855 | test -z "$as_dir" && as_dir=. | |
3856 | for ac_prog in sed gsed; do | |
3857 | for ac_exec_ext in '' $ac_executable_extensions; do | |
3858 | ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" | |
d0ac1c44 | 3859 | as_fn_executable_p "$ac_path_SED" || continue |
6bb11ab3 L |
3860 | # Check for GNU ac_path_SED and select it if it is found. |
3861 | # Check for GNU $ac_path_SED | |
3862 | case `"$ac_path_SED" --version 2>&1` in | |
3863 | *GNU*) | |
3864 | ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; | |
3865 | *) | |
3866 | ac_count=0 | |
3867 | $as_echo_n 0123456789 >"conftest.in" | |
3868 | while : | |
3869 | do | |
3870 | cat "conftest.in" "conftest.in" >"conftest.tmp" | |
3871 | mv "conftest.tmp" "conftest.in" | |
3872 | cp "conftest.in" "conftest.nl" | |
3873 | $as_echo '' >> "conftest.nl" | |
3874 | "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break | |
3875 | diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break | |
3876 | as_fn_arith $ac_count + 1 && ac_count=$as_val | |
3877 | if test $ac_count -gt ${ac_path_SED_max-0}; then | |
3878 | # Best one so far, save it but keep looking for a better one | |
3879 | ac_cv_path_SED="$ac_path_SED" | |
3880 | ac_path_SED_max=$ac_count | |
3881 | fi | |
3882 | # 10*(2^10) chars as input seems more than enough | |
3883 | test $ac_count -gt 10 && break | |
3884 | done | |
3885 | rm -f conftest.in conftest.tmp conftest.nl conftest.out;; | |
3886 | esac | |
3887 | ||
3888 | $ac_path_SED_found && break 3 | |
3889 | done | |
3890 | done | |
3891 | done | |
3892 | IFS=$as_save_IFS | |
3893 | if test -z "$ac_cv_path_SED"; then | |
d0ac1c44 | 3894 | as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 |
6bb11ab3 L |
3895 | fi |
3896 | else | |
3897 | ac_cv_path_SED=$SED | |
3898 | fi | |
3899 | ||
3900 | fi | |
3901 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 | |
3902 | $as_echo "$ac_cv_path_SED" >&6; } | |
3903 | SED="$ac_cv_path_SED" | |
3904 | rm -f conftest.sed | |
3905 | ||
3906 | test -z "$SED" && SED=sed | |
3907 | Xsed="$SED -e 1s/^X//" | |
3908 | ||
3909 | ||
3910 | ||
3911 | ||
3912 | ||
3913 | ||
3914 | ||
3915 | ||
3916 | ||
3917 | ||
3918 | ||
3919 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 | |
3920 | $as_echo_n "checking for fgrep... " >&6; } | |
d0ac1c44 | 3921 | if ${ac_cv_path_FGREP+:} false; then : |
6bb11ab3 L |
3922 | $as_echo_n "(cached) " >&6 |
3923 | else | |
3924 | if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 | |
3925 | then ac_cv_path_FGREP="$GREP -F" | |
3926 | else | |
3927 | if test -z "$FGREP"; then | |
3928 | ac_path_FGREP_found=false | |
3929 | # Loop through the user's path and test for each of PROGNAME-LIST | |
3930 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
3931 | for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin | |
3932 | do | |
3933 | IFS=$as_save_IFS | |
3934 | test -z "$as_dir" && as_dir=. | |
3935 | for ac_prog in fgrep; do | |
3936 | for ac_exec_ext in '' $ac_executable_extensions; do | |
3937 | ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" | |
d0ac1c44 | 3938 | as_fn_executable_p "$ac_path_FGREP" || continue |
6bb11ab3 L |
3939 | # Check for GNU ac_path_FGREP and select it if it is found. |
3940 | # Check for GNU $ac_path_FGREP | |
3941 | case `"$ac_path_FGREP" --version 2>&1` in | |
3942 | *GNU*) | |
3943 | ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; | |
3944 | *) | |
3945 | ac_count=0 | |
3946 | $as_echo_n 0123456789 >"conftest.in" | |
3947 | while : | |
3948 | do | |
3949 | cat "conftest.in" "conftest.in" >"conftest.tmp" | |
3950 | mv "conftest.tmp" "conftest.in" | |
3951 | cp "conftest.in" "conftest.nl" | |
3952 | $as_echo 'FGREP' >> "conftest.nl" | |
3953 | "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break | |
3954 | diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break | |
3955 | as_fn_arith $ac_count + 1 && ac_count=$as_val | |
3956 | if test $ac_count -gt ${ac_path_FGREP_max-0}; then | |
3957 | # Best one so far, save it but keep looking for a better one | |
3958 | ac_cv_path_FGREP="$ac_path_FGREP" | |
3959 | ac_path_FGREP_max=$ac_count | |
3960 | fi | |
3961 | # 10*(2^10) chars as input seems more than enough | |
3962 | test $ac_count -gt 10 && break | |
3963 | done | |
3964 | rm -f conftest.in conftest.tmp conftest.nl conftest.out;; | |
3965 | esac | |
3966 | ||
3967 | $ac_path_FGREP_found && break 3 | |
3968 | done | |
3969 | done | |
3970 | done | |
3971 | IFS=$as_save_IFS | |
3972 | if test -z "$ac_cv_path_FGREP"; then | |
d0ac1c44 | 3973 | as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 |
6bb11ab3 L |
3974 | fi |
3975 | else | |
3976 | ac_cv_path_FGREP=$FGREP | |
3977 | fi | |
3978 | ||
3979 | fi | |
3980 | fi | |
3981 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 | |
3982 | $as_echo "$ac_cv_path_FGREP" >&6; } | |
3983 | FGREP="$ac_cv_path_FGREP" | |
3984 | ||
3985 | ||
3986 | test -z "$GREP" && GREP=grep | |
3987 | ||
3988 | ||
3989 | ||
3990 | ||
3991 | ||
3992 | ||
3993 | ||
3994 | ||
3995 | ||
3996 | ||
3997 | ||
3998 | ||
3999 | ||
4000 | ||
4001 | ||
4002 | ||
4003 | ||
4004 | ||
4005 | ||
4006 | # Check whether --with-gnu-ld was given. | |
4007 | if test "${with_gnu_ld+set}" = set; then : | |
4008 | withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes | |
4009 | else | |
4010 | with_gnu_ld=no | |
4011 | fi | |
4012 | ||
4013 | ac_prog=ld | |
4014 | if test "$GCC" = yes; then | |
4015 | # Check if gcc -print-prog-name=ld gives a path. | |
4016 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 | |
4017 | $as_echo_n "checking for ld used by $CC... " >&6; } | |
4018 | case $host in | |
4019 | *-*-mingw*) | |
4020 | # gcc leaves a trailing carriage return which upsets mingw | |
4021 | ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; | |
4022 | *) | |
4023 | ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; | |
4024 | esac | |
4025 | case $ac_prog in | |
4026 | # Accept absolute paths. | |
4027 | [\\/]* | ?:[\\/]*) | |
4028 | re_direlt='/[^/][^/]*/\.\./' | |
4029 | # Canonicalize the pathname of ld | |
4030 | ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` | |
4031 | while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do | |
4032 | ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` | |
4033 | done | |
4034 | test -z "$LD" && LD="$ac_prog" | |
4035 | ;; | |
4036 | "") | |
4037 | # If it fails, then pretend we aren't using GCC. | |
4038 | ac_prog=ld | |
4039 | ;; | |
4040 | *) | |
4041 | # If it is relative, then search for the first ld in PATH. | |
4042 | with_gnu_ld=unknown | |
4043 | ;; | |
4044 | esac | |
4045 | elif test "$with_gnu_ld" = yes; then | |
4046 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 | |
4047 | $as_echo_n "checking for GNU ld... " >&6; } | |
4048 | else | |
4049 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 | |
4050 | $as_echo_n "checking for non-GNU ld... " >&6; } | |
4051 | fi | |
d0ac1c44 | 4052 | if ${lt_cv_path_LD+:} false; then : |
6bb11ab3 L |
4053 | $as_echo_n "(cached) " >&6 |
4054 | else | |
4055 | if test -z "$LD"; then | |
4056 | lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR | |
4057 | for ac_dir in $PATH; do | |
4058 | IFS="$lt_save_ifs" | |
4059 | test -z "$ac_dir" && ac_dir=. | |
4060 | if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then | |
4061 | lt_cv_path_LD="$ac_dir/$ac_prog" | |
4062 | # Check to see if the program is GNU ld. I'd rather use --version, | |
4063 | # but apparently some variants of GNU ld only accept -v. | |
4064 | # Break only if it was the GNU/non-GNU ld that we prefer. | |
4065 | case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in | |
4066 | *GNU* | *'with BFD'*) | |
4067 | test "$with_gnu_ld" != no && break | |
4068 | ;; | |
4069 | *) | |
4070 | test "$with_gnu_ld" != yes && break | |
4071 | ;; | |
4072 | esac | |
4073 | fi | |
4074 | done | |
4075 | IFS="$lt_save_ifs" | |
4076 | else | |
4077 | lt_cv_path_LD="$LD" # Let the user override the test with a path. | |
4078 | fi | |
4079 | fi | |
4080 | ||
4081 | LD="$lt_cv_path_LD" | |
4082 | if test -n "$LD"; then | |
4083 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 | |
4084 | $as_echo "$LD" >&6; } | |
4085 | else | |
4086 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
4087 | $as_echo "no" >&6; } | |
4088 | fi | |
d0ac1c44 | 4089 | test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 |
6bb11ab3 L |
4090 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 |
4091 | $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } | |
d0ac1c44 | 4092 | if ${lt_cv_prog_gnu_ld+:} false; then : |
6bb11ab3 L |
4093 | $as_echo_n "(cached) " >&6 |
4094 | else | |
4095 | # I'd rather use --version here, but apparently some GNU lds only accept -v. | |
4096 | case `$LD -v 2>&1 </dev/null` in | |
4097 | *GNU* | *'with BFD'*) | |
4098 | lt_cv_prog_gnu_ld=yes | |
4099 | ;; | |
4100 | *) | |
4101 | lt_cv_prog_gnu_ld=no | |
4102 | ;; | |
4103 | esac | |
4104 | fi | |
4105 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_gnu_ld" >&5 | |
4106 | $as_echo "$lt_cv_prog_gnu_ld" >&6; } | |
4107 | with_gnu_ld=$lt_cv_prog_gnu_ld | |
4108 | ||
4109 | ||
4110 | ||
4111 | ||
4112 | ||
4113 | ||
4114 | ||
4115 | ||
4116 | ||
4117 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 | |
4118 | $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } | |
d0ac1c44 | 4119 | if ${lt_cv_path_NM+:} false; then : |
6bb11ab3 L |
4120 | $as_echo_n "(cached) " >&6 |
4121 | else | |
4122 | if test -n "$NM"; then | |
4123 | # Let the user override the test. | |
4124 | lt_cv_path_NM="$NM" | |
4125 | else | |
4126 | lt_nm_to_check="${ac_tool_prefix}nm" | |
4127 | if test -n "$ac_tool_prefix" && test "$build" = "$host"; then | |
4128 | lt_nm_to_check="$lt_nm_to_check nm" | |
4129 | fi | |
4130 | for lt_tmp_nm in $lt_nm_to_check; do | |
4131 | lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR | |
4132 | for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do | |
4133 | IFS="$lt_save_ifs" | |
4134 | test -z "$ac_dir" && ac_dir=. | |
4135 | tmp_nm="$ac_dir/$lt_tmp_nm" | |
4136 | if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then | |
4137 | # Check to see if the nm accepts a BSD-compat flag. | |
4138 | # Adding the `sed 1q' prevents false positives on HP-UX, which says: | |
4139 | # nm: unknown option "B" ignored | |
4140 | # Tru64's nm complains that /dev/null is an invalid object file | |
4141 | case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in | |
4142 | */dev/null* | *'Invalid file or object type'*) | |
4143 | lt_cv_path_NM="$tmp_nm -B" | |
4144 | break | |
4145 | ;; | |
4146 | *) | |
4147 | case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in | |
4148 | */dev/null*) | |
4149 | lt_cv_path_NM="$tmp_nm -p" | |
4150 | break | |
4151 | ;; | |
4152 | *) | |
4153 | lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but | |
4154 | continue # so that we can try to find one that supports BSD flags | |
4155 | ;; | |
4156 | esac | |
4157 | ;; | |
4158 | esac | |
4159 | fi | |
4160 | done | |
4161 | IFS="$lt_save_ifs" | |
4162 | done | |
4163 | : ${lt_cv_path_NM=no} | |
4164 | fi | |
4165 | fi | |
4166 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 | |
4167 | $as_echo "$lt_cv_path_NM" >&6; } | |
4168 | if test "$lt_cv_path_NM" != "no"; then | |
4169 | NM="$lt_cv_path_NM" | |
4170 | else | |
4171 | # Didn't find any BSD compatible name lister, look for dumpbin. | |
4172 | if test -n "$DUMPBIN"; then : | |
4173 | # Let the user override the test. | |
4174 | else | |
4175 | if test -n "$ac_tool_prefix"; then | |
4176 | for ac_prog in dumpbin "link -dump" | |
4177 | do | |
4178 | # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. | |
4179 | set dummy $ac_tool_prefix$ac_prog; ac_word=$2 | |
4180 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
4181 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 4182 | if ${ac_cv_prog_DUMPBIN+:} false; then : |
6bb11ab3 L |
4183 | $as_echo_n "(cached) " >&6 |
4184 | else | |
4185 | if test -n "$DUMPBIN"; then | |
4186 | ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. | |
4187 | else | |
4188 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
4189 | for as_dir in $PATH | |
4190 | do | |
4191 | IFS=$as_save_IFS | |
4192 | test -z "$as_dir" && as_dir=. | |
4193 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 4194 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
4195 | ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" |
4196 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
4197 | break 2 | |
4198 | fi | |
4199 | done | |
4200 | done | |
4201 | IFS=$as_save_IFS | |
4202 | ||
4203 | fi | |
4204 | fi | |
4205 | DUMPBIN=$ac_cv_prog_DUMPBIN | |
4206 | if test -n "$DUMPBIN"; then | |
4207 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 | |
4208 | $as_echo "$DUMPBIN" >&6; } | |
4209 | else | |
4210 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
4211 | $as_echo "no" >&6; } | |
4212 | fi | |
4213 | ||
4214 | ||
4215 | test -n "$DUMPBIN" && break | |
4216 | done | |
4217 | fi | |
4218 | if test -z "$DUMPBIN"; then | |
4219 | ac_ct_DUMPBIN=$DUMPBIN | |
4220 | for ac_prog in dumpbin "link -dump" | |
4221 | do | |
4222 | # Extract the first word of "$ac_prog", so it can be a program name with args. | |
4223 | set dummy $ac_prog; ac_word=$2 | |
4224 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
4225 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 4226 | if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : |
6bb11ab3 L |
4227 | $as_echo_n "(cached) " >&6 |
4228 | else | |
4229 | if test -n "$ac_ct_DUMPBIN"; then | |
4230 | ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. | |
4231 | else | |
4232 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
4233 | for as_dir in $PATH | |
4234 | do | |
4235 | IFS=$as_save_IFS | |
4236 | test -z "$as_dir" && as_dir=. | |
4237 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 4238 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
4239 | ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" |
4240 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
4241 | break 2 | |
4242 | fi | |
4243 | done | |
4244 | done | |
4245 | IFS=$as_save_IFS | |
4246 | ||
4247 | fi | |
4248 | fi | |
4249 | ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN | |
4250 | if test -n "$ac_ct_DUMPBIN"; then | |
4251 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 | |
4252 | $as_echo "$ac_ct_DUMPBIN" >&6; } | |
4253 | else | |
4254 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
4255 | $as_echo "no" >&6; } | |
4256 | fi | |
4257 | ||
4258 | ||
4259 | test -n "$ac_ct_DUMPBIN" && break | |
4260 | done | |
4261 | ||
4262 | if test "x$ac_ct_DUMPBIN" = x; then | |
4263 | DUMPBIN=":" | |
4264 | else | |
4265 | case $cross_compiling:$ac_tool_warned in | |
4266 | yes:) | |
4267 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
4268 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
4269 | ac_tool_warned=yes ;; | |
4270 | esac | |
4271 | DUMPBIN=$ac_ct_DUMPBIN | |
4272 | fi | |
4273 | fi | |
4274 | ||
4275 | case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in | |
4276 | *COFF*) | |
4277 | DUMPBIN="$DUMPBIN -symbols" | |
4278 | ;; | |
4279 | *) | |
4280 | DUMPBIN=: | |
4281 | ;; | |
4282 | esac | |
4283 | fi | |
4284 | ||
4285 | if test "$DUMPBIN" != ":"; then | |
4286 | NM="$DUMPBIN" | |
4287 | fi | |
4288 | fi | |
4289 | test -z "$NM" && NM=nm | |
4290 | ||
4291 | ||
4292 | ||
4293 | ||
4294 | ||
4295 | ||
4296 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 | |
4297 | $as_echo_n "checking the name lister ($NM) interface... " >&6; } | |
d0ac1c44 | 4298 | if ${lt_cv_nm_interface+:} false; then : |
6bb11ab3 L |
4299 | $as_echo_n "(cached) " >&6 |
4300 | else | |
4301 | lt_cv_nm_interface="BSD nm" | |
4302 | echo "int some_variable = 0;" > conftest.$ac_ext | |
4303 | (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) | |
4304 | (eval "$ac_compile" 2>conftest.err) | |
4305 | cat conftest.err >&5 | |
4306 | (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) | |
4307 | (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) | |
4308 | cat conftest.err >&5 | |
4309 | (eval echo "\"\$as_me:$LINENO: output\"" >&5) | |
4310 | cat conftest.out >&5 | |
4311 | if $GREP 'External.*some_variable' conftest.out > /dev/null; then | |
4312 | lt_cv_nm_interface="MS dumpbin" | |
4313 | fi | |
4314 | rm -f conftest* | |
4315 | fi | |
4316 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 | |
4317 | $as_echo "$lt_cv_nm_interface" >&6; } | |
4318 | ||
4319 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 | |
4320 | $as_echo_n "checking whether ln -s works... " >&6; } | |
4321 | LN_S=$as_ln_s | |
4322 | if test "$LN_S" = "ln -s"; then | |
4323 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | |
4324 | $as_echo "yes" >&6; } | |
4325 | else | |
4326 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 | |
4327 | $as_echo "no, using $LN_S" >&6; } | |
4328 | fi | |
4329 | ||
4330 | # find the maximum length of command line arguments | |
4331 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 | |
4332 | $as_echo_n "checking the maximum length of command line arguments... " >&6; } | |
d0ac1c44 | 4333 | if ${lt_cv_sys_max_cmd_len+:} false; then : |
6bb11ab3 L |
4334 | $as_echo_n "(cached) " >&6 |
4335 | else | |
4336 | i=0 | |
4337 | teststring="ABCD" | |
4338 | ||
4339 | case $build_os in | |
4340 | msdosdjgpp*) | |
4341 | # On DJGPP, this test can blow up pretty badly due to problems in libc | |
4342 | # (any single argument exceeding 2000 bytes causes a buffer overrun | |
4343 | # during glob expansion). Even if it were fixed, the result of this | |
4344 | # check would be larger than it should be. | |
4345 | lt_cv_sys_max_cmd_len=12288; # 12K is about right | |
4346 | ;; | |
4347 | ||
4348 | gnu*) | |
4349 | # Under GNU Hurd, this test is not required because there is | |
4350 | # no limit to the length of command line arguments. | |
4351 | # Libtool will interpret -1 as no limit whatsoever | |
4352 | lt_cv_sys_max_cmd_len=-1; | |
4353 | ;; | |
4354 | ||
4355 | cygwin* | mingw* | cegcc*) | |
4356 | # On Win9x/ME, this test blows up -- it succeeds, but takes | |
4357 | # about 5 minutes as the teststring grows exponentially. | |
4358 | # Worse, since 9x/ME are not pre-emptively multitasking, | |
4359 | # you end up with a "frozen" computer, even though with patience | |
4360 | # the test eventually succeeds (with a max line length of 256k). | |
4361 | # Instead, let's just punt: use the minimum linelength reported by | |
4362 | # all of the supported platforms: 8192 (on NT/2K/XP). | |
4363 | lt_cv_sys_max_cmd_len=8192; | |
4364 | ;; | |
4365 | ||
4366 | mint*) | |
4367 | # On MiNT this can take a long time and run out of memory. | |
4368 | lt_cv_sys_max_cmd_len=8192; | |
4369 | ;; | |
4370 | ||
4371 | amigaos*) | |
4372 | # On AmigaOS with pdksh, this test takes hours, literally. | |
4373 | # So we just punt and use a minimum line length of 8192. | |
4374 | lt_cv_sys_max_cmd_len=8192; | |
4375 | ;; | |
4376 | ||
4377 | netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) | |
4378 | # This has been around since 386BSD, at least. Likely further. | |
4379 | if test -x /sbin/sysctl; then | |
4380 | lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` | |
4381 | elif test -x /usr/sbin/sysctl; then | |
4382 | lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` | |
4383 | else | |
4384 | lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs | |
4385 | fi | |
4386 | # And add a safety zone | |
4387 | lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` | |
4388 | lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` | |
4389 | ;; | |
4390 | ||
4391 | interix*) | |
4392 | # We know the value 262144 and hardcode it with a safety zone (like BSD) | |
4393 | lt_cv_sys_max_cmd_len=196608 | |
4394 | ;; | |
4395 | ||
4396 | osf*) | |
4397 | # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure | |
4398 | # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not | |
4399 | # nice to cause kernel panics so lets avoid the loop below. | |
4400 | # First set a reasonable default. | |
4401 | lt_cv_sys_max_cmd_len=16384 | |
4402 | # | |
4403 | if test -x /sbin/sysconfig; then | |
4404 | case `/sbin/sysconfig -q proc exec_disable_arg_limit` in | |
4405 | *1*) lt_cv_sys_max_cmd_len=-1 ;; | |
4406 | esac | |
4407 | fi | |
4408 | ;; | |
4409 | sco3.2v5*) | |
4410 | lt_cv_sys_max_cmd_len=102400 | |
4411 | ;; | |
4412 | sysv5* | sco5v6* | sysv4.2uw2*) | |
4413 | kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` | |
4414 | if test -n "$kargmax"; then | |
4415 | lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` | |
4416 | else | |
4417 | lt_cv_sys_max_cmd_len=32768 | |
4418 | fi | |
4419 | ;; | |
4420 | *) | |
4421 | lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` | |
4422 | if test -n "$lt_cv_sys_max_cmd_len"; then | |
4423 | lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` | |
4424 | lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` | |
4425 | else | |
4426 | # Make teststring a little bigger before we do anything with it. | |
4427 | # a 1K string should be a reasonable start. | |
4428 | for i in 1 2 3 4 5 6 7 8 ; do | |
4429 | teststring=$teststring$teststring | |
4430 | done | |
4431 | SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} | |
4432 | # If test is not a shell built-in, we'll probably end up computing a | |
4433 | # maximum length that is only half of the actual maximum length, but | |
4434 | # we can't tell. | |
4435 | while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \ | |
4436 | = "X$teststring$teststring"; } >/dev/null 2>&1 && | |
4437 | test $i != 17 # 1/2 MB should be enough | |
4438 | do | |
4439 | i=`expr $i + 1` | |
4440 | teststring=$teststring$teststring | |
4441 | done | |
4442 | # Only check the string length outside the loop. | |
4443 | lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` | |
4444 | teststring= | |
4445 | # Add a significant safety factor because C++ compilers can tack on | |
4446 | # massive amounts of additional arguments before passing them to the | |
4447 | # linker. It appears as though 1/2 is a usable value. | |
4448 | lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` | |
4449 | fi | |
4450 | ;; | |
4451 | esac | |
4452 | ||
4453 | fi | |
4454 | ||
4455 | if test -n $lt_cv_sys_max_cmd_len ; then | |
4456 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 | |
4457 | $as_echo "$lt_cv_sys_max_cmd_len" >&6; } | |
4458 | else | |
4459 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 | |
4460 | $as_echo "none" >&6; } | |
4461 | fi | |
4462 | max_cmd_len=$lt_cv_sys_max_cmd_len | |
4463 | ||
4464 | ||
4465 | ||
4466 | ||
4467 | ||
4468 | ||
4469 | : ${CP="cp -f"} | |
4470 | : ${MV="mv -f"} | |
4471 | : ${RM="rm -f"} | |
4472 | ||
4473 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 | |
4474 | $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } | |
4475 | # Try some XSI features | |
4476 | xsi_shell=no | |
4477 | ( _lt_dummy="a/b/c" | |
4478 | test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \ | |
4479 | = c,a/b,, \ | |
4480 | && eval 'test $(( 1 + 1 )) -eq 2 \ | |
4481 | && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ | |
4482 | && xsi_shell=yes | |
4483 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 | |
4484 | $as_echo "$xsi_shell" >&6; } | |
4485 | ||
4486 | ||
4487 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 | |
4488 | $as_echo_n "checking whether the shell understands \"+=\"... " >&6; } | |
4489 | lt_shell_append=no | |
4490 | ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ | |
4491 | >/dev/null 2>&1 \ | |
4492 | && lt_shell_append=yes | |
4493 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 | |
4494 | $as_echo "$lt_shell_append" >&6; } | |
4495 | ||
4496 | ||
4497 | if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then | |
4498 | lt_unset=unset | |
4499 | else | |
4500 | lt_unset=false | |
4501 | fi | |
4502 | ||
4503 | ||
4504 | ||
4505 | ||
4506 | ||
4507 | # test EBCDIC or ASCII | |
4508 | case `echo X|tr X '\101'` in | |
4509 | A) # ASCII based system | |
4510 | # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr | |
4511 | lt_SP2NL='tr \040 \012' | |
4512 | lt_NL2SP='tr \015\012 \040\040' | |
4513 | ;; | |
4514 | *) # EBCDIC based system | |
4515 | lt_SP2NL='tr \100 \n' | |
4516 | lt_NL2SP='tr \r\n \100\100' | |
4517 | ;; | |
4518 | esac | |
4519 | ||
4520 | ||
4521 | ||
4522 | ||
4523 | ||
4524 | ||
4525 | ||
4526 | ||
4527 | ||
4528 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 | |
4529 | $as_echo_n "checking for $LD option to reload object files... " >&6; } | |
d0ac1c44 | 4530 | if ${lt_cv_ld_reload_flag+:} false; then : |
6bb11ab3 L |
4531 | $as_echo_n "(cached) " >&6 |
4532 | else | |
4533 | lt_cv_ld_reload_flag='-r' | |
4534 | fi | |
4535 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 | |
4536 | $as_echo "$lt_cv_ld_reload_flag" >&6; } | |
4537 | reload_flag=$lt_cv_ld_reload_flag | |
4538 | case $reload_flag in | |
4539 | "" | " "*) ;; | |
4540 | *) reload_flag=" $reload_flag" ;; | |
4541 | esac | |
4542 | reload_cmds='$LD$reload_flag -o $output$reload_objs' | |
4543 | case $host_os in | |
4544 | darwin*) | |
4545 | if test "$GCC" = yes; then | |
4546 | reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' | |
4547 | else | |
4548 | reload_cmds='$LD$reload_flag -o $output$reload_objs' | |
4549 | fi | |
4550 | ;; | |
4551 | esac | |
4552 | ||
4553 | ||
4554 | ||
4555 | ||
4556 | ||
4557 | ||
4558 | ||
4559 | ||
4560 | ||
4561 | if test -n "$ac_tool_prefix"; then | |
4562 | # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. | |
4563 | set dummy ${ac_tool_prefix}objdump; ac_word=$2 | |
4564 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
4565 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 4566 | if ${ac_cv_prog_OBJDUMP+:} false; then : |
6bb11ab3 L |
4567 | $as_echo_n "(cached) " >&6 |
4568 | else | |
4569 | if test -n "$OBJDUMP"; then | |
4570 | ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. | |
4571 | else | |
4572 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
4573 | for as_dir in $PATH | |
4574 | do | |
4575 | IFS=$as_save_IFS | |
4576 | test -z "$as_dir" && as_dir=. | |
4577 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 4578 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
4579 | ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" |
4580 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
4581 | break 2 | |
4582 | fi | |
4583 | done | |
4584 | done | |
4585 | IFS=$as_save_IFS | |
4586 | ||
4587 | fi | |
4588 | fi | |
4589 | OBJDUMP=$ac_cv_prog_OBJDUMP | |
4590 | if test -n "$OBJDUMP"; then | |
4591 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 | |
4592 | $as_echo "$OBJDUMP" >&6; } | |
4593 | else | |
4594 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
4595 | $as_echo "no" >&6; } | |
4596 | fi | |
4597 | ||
4598 | ||
4599 | fi | |
4600 | if test -z "$ac_cv_prog_OBJDUMP"; then | |
4601 | ac_ct_OBJDUMP=$OBJDUMP | |
4602 | # Extract the first word of "objdump", so it can be a program name with args. | |
4603 | set dummy objdump; ac_word=$2 | |
4604 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
4605 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 4606 | if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : |
6bb11ab3 L |
4607 | $as_echo_n "(cached) " >&6 |
4608 | else | |
4609 | if test -n "$ac_ct_OBJDUMP"; then | |
4610 | ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. | |
4611 | else | |
4612 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
4613 | for as_dir in $PATH | |
4614 | do | |
4615 | IFS=$as_save_IFS | |
4616 | test -z "$as_dir" && as_dir=. | |
4617 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 4618 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
4619 | ac_cv_prog_ac_ct_OBJDUMP="objdump" |
4620 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
4621 | break 2 | |
4622 | fi | |
4623 | done | |
4624 | done | |
4625 | IFS=$as_save_IFS | |
4626 | ||
4627 | fi | |
4628 | fi | |
4629 | ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP | |
4630 | if test -n "$ac_ct_OBJDUMP"; then | |
4631 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 | |
4632 | $as_echo "$ac_ct_OBJDUMP" >&6; } | |
4633 | else | |
4634 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
4635 | $as_echo "no" >&6; } | |
4636 | fi | |
4637 | ||
4638 | if test "x$ac_ct_OBJDUMP" = x; then | |
4639 | OBJDUMP="false" | |
4640 | else | |
4641 | case $cross_compiling:$ac_tool_warned in | |
4642 | yes:) | |
4643 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
4644 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
4645 | ac_tool_warned=yes ;; | |
4646 | esac | |
4647 | OBJDUMP=$ac_ct_OBJDUMP | |
4648 | fi | |
4649 | else | |
4650 | OBJDUMP="$ac_cv_prog_OBJDUMP" | |
4651 | fi | |
4652 | ||
4653 | test -z "$OBJDUMP" && OBJDUMP=objdump | |
4654 | ||
4655 | ||
4656 | ||
4657 | ||
4658 | ||
4659 | ||
4660 | ||
4661 | ||
4662 | ||
4663 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 | |
4664 | $as_echo_n "checking how to recognize dependent libraries... " >&6; } | |
d0ac1c44 | 4665 | if ${lt_cv_deplibs_check_method+:} false; then : |
6bb11ab3 L |
4666 | $as_echo_n "(cached) " >&6 |
4667 | else | |
4668 | lt_cv_file_magic_cmd='$MAGIC_CMD' | |
4669 | lt_cv_file_magic_test_file= | |
4670 | lt_cv_deplibs_check_method='unknown' | |
4671 | # Need to set the preceding variable on all platforms that support | |
4672 | # interlibrary dependencies. | |
4673 | # 'none' -- dependencies not supported. | |
4674 | # `unknown' -- same as none, but documents that we really don't know. | |
4675 | # 'pass_all' -- all dependencies passed with no checks. | |
4676 | # 'test_compile' -- check by making test program. | |
4677 | # 'file_magic [[regex]]' -- check by looking for files in library path | |
4678 | # which responds to the $file_magic_cmd with a given extended regex. | |
4679 | # If you have `file' or equivalent on your system and you're not sure | |
4680 | # whether `pass_all' will *always* work, you probably want this one. | |
4681 | ||
4682 | case $host_os in | |
4683 | aix[4-9]*) | |
4684 | lt_cv_deplibs_check_method=pass_all | |
4685 | ;; | |
4686 | ||
4687 | beos*) | |
4688 | lt_cv_deplibs_check_method=pass_all | |
4689 | ;; | |
4690 | ||
4691 | bsdi[45]*) | |
4692 | lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' | |
4693 | lt_cv_file_magic_cmd='/usr/bin/file -L' | |
4694 | lt_cv_file_magic_test_file=/shlib/libc.so | |
4695 | ;; | |
4696 | ||
4697 | cygwin*) | |
4698 | # func_win32_libid is a shell function defined in ltmain.sh | |
4699 | lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' | |
4700 | lt_cv_file_magic_cmd='func_win32_libid' | |
4701 | ;; | |
4702 | ||
4703 | mingw* | pw32*) | |
4704 | # Base MSYS/MinGW do not provide the 'file' command needed by | |
4705 | # func_win32_libid shell function, so use a weaker test based on 'objdump', | |
4706 | # unless we find 'file', for example because we are cross-compiling. | |
4707 | # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. | |
4708 | if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then | |
4709 | lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' | |
4710 | lt_cv_file_magic_cmd='func_win32_libid' | |
4711 | else | |
4712 | lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' | |
4713 | lt_cv_file_magic_cmd='$OBJDUMP -f' | |
4714 | fi | |
4715 | ;; | |
4716 | ||
4717 | cegcc*) | |
4718 | # use the weaker test based on 'objdump'. See mingw*. | |
4719 | lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' | |
4720 | lt_cv_file_magic_cmd='$OBJDUMP -f' | |
4721 | ;; | |
4722 | ||
4723 | darwin* | rhapsody*) | |
4724 | lt_cv_deplibs_check_method=pass_all | |
4725 | ;; | |
4726 | ||
4727 | freebsd* | dragonfly*) | |
4728 | if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then | |
4729 | case $host_cpu in | |
4730 | i*86 ) | |
4731 | # Not sure whether the presence of OpenBSD here was a mistake. | |
4732 | # Let's accept both of them until this is cleared up. | |
4733 | lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' | |
4734 | lt_cv_file_magic_cmd=/usr/bin/file | |
4735 | lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` | |
4736 | ;; | |
4737 | esac | |
4738 | else | |
4739 | lt_cv_deplibs_check_method=pass_all | |
4740 | fi | |
4741 | ;; | |
4742 | ||
4743 | gnu*) | |
4744 | lt_cv_deplibs_check_method=pass_all | |
4745 | ;; | |
4746 | ||
4747 | haiku*) | |
4748 | lt_cv_deplibs_check_method=pass_all | |
4749 | ;; | |
4750 | ||
4751 | hpux10.20* | hpux11*) | |
4752 | lt_cv_file_magic_cmd=/usr/bin/file | |
4753 | case $host_cpu in | |
4754 | ia64*) | |
4755 | lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' | |
4756 | lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so | |
4757 | ;; | |
4758 | hppa*64*) | |
4759 | lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' | |
4760 | lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl | |
4761 | ;; | |
4762 | *) | |
4763 | lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' | |
4764 | lt_cv_file_magic_test_file=/usr/lib/libc.sl | |
4765 | ;; | |
4766 | esac | |
4767 | ;; | |
4768 | ||
4769 | interix[3-9]*) | |
4770 | # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here | |
4771 | lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' | |
4772 | ;; | |
4773 | ||
4774 | irix5* | irix6* | nonstopux*) | |
4775 | case $LD in | |
4776 | *-32|*"-32 ") libmagic=32-bit;; | |
4777 | *-n32|*"-n32 ") libmagic=N32;; | |
4778 | *-64|*"-64 ") libmagic=64-bit;; | |
4779 | *) libmagic=never-match;; | |
4780 | esac | |
4781 | lt_cv_deplibs_check_method=pass_all | |
4782 | ;; | |
4783 | ||
4784 | # This must be Linux ELF. | |
4785 | linux* | k*bsd*-gnu | kopensolaris*-gnu) | |
4786 | lt_cv_deplibs_check_method=pass_all | |
4787 | ;; | |
4788 | ||
4789 | netbsd*) | |
4790 | if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then | |
4791 | lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' | |
4792 | else | |
4793 | lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' | |
4794 | fi | |
4795 | ;; | |
4796 | ||
4797 | newos6*) | |
4798 | lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' | |
4799 | lt_cv_file_magic_cmd=/usr/bin/file | |
4800 | lt_cv_file_magic_test_file=/usr/lib/libnls.so | |
4801 | ;; | |
4802 | ||
4803 | *nto* | *qnx*) | |
4804 | lt_cv_deplibs_check_method=pass_all | |
4805 | ;; | |
4806 | ||
4807 | openbsd*) | |
4808 | if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then | |
4809 | lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' | |
4810 | else | |
4811 | lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' | |
4812 | fi | |
4813 | ;; | |
4814 | ||
4815 | osf3* | osf4* | osf5*) | |
4816 | lt_cv_deplibs_check_method=pass_all | |
4817 | ;; | |
4818 | ||
4819 | rdos*) | |
4820 | lt_cv_deplibs_check_method=pass_all | |
4821 | ;; | |
4822 | ||
4823 | solaris*) | |
4824 | lt_cv_deplibs_check_method=pass_all | |
4825 | ;; | |
4826 | ||
4827 | sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) | |
4828 | lt_cv_deplibs_check_method=pass_all | |
4829 | ;; | |
4830 | ||
4831 | sysv4 | sysv4.3*) | |
4832 | case $host_vendor in | |
4833 | motorola) | |
4834 | lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' | |
4835 | lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` | |
4836 | ;; | |
4837 | ncr) | |
4838 | lt_cv_deplibs_check_method=pass_all | |
4839 | ;; | |
4840 | sequent) | |
4841 | lt_cv_file_magic_cmd='/bin/file' | |
4842 | lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' | |
4843 | ;; | |
4844 | sni) | |
4845 | lt_cv_file_magic_cmd='/bin/file' | |
4846 | lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" | |
4847 | lt_cv_file_magic_test_file=/lib/libc.so | |
4848 | ;; | |
4849 | siemens) | |
4850 | lt_cv_deplibs_check_method=pass_all | |
4851 | ;; | |
4852 | pc) | |
4853 | lt_cv_deplibs_check_method=pass_all | |
4854 | ;; | |
4855 | esac | |
4856 | ;; | |
4857 | ||
4858 | tpf*) | |
4859 | lt_cv_deplibs_check_method=pass_all | |
4860 | ;; | |
4861 | esac | |
4862 | ||
4863 | fi | |
4864 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 | |
4865 | $as_echo "$lt_cv_deplibs_check_method" >&6; } | |
4866 | file_magic_cmd=$lt_cv_file_magic_cmd | |
4867 | deplibs_check_method=$lt_cv_deplibs_check_method | |
4868 | test -z "$deplibs_check_method" && deplibs_check_method=unknown | |
4869 | ||
4870 | ||
4871 | ||
4872 | ||
4873 | ||
4874 | ||
4875 | ||
4876 | ||
4877 | ||
4878 | ||
4879 | ||
4880 | ||
68ed2854 MF |
4881 | plugin_option= |
4882 | plugin_names="liblto_plugin.so liblto_plugin-0.dll cyglto_plugin-0.dll" | |
4883 | for plugin in $plugin_names; do | |
4884 | plugin_so=`${CC} ${CFLAGS} --print-prog-name $plugin` | |
4885 | if test x$plugin_so = x$plugin; then | |
4886 | plugin_so=`${CC} ${CFLAGS} --print-file-name $plugin` | |
4887 | fi | |
4888 | if test x$plugin_so != x$plugin; then | |
4889 | plugin_option="--plugin $plugin_so" | |
4890 | break | |
4891 | fi | |
4892 | done | |
4893 | ||
6bb11ab3 L |
4894 | if test -n "$ac_tool_prefix"; then |
4895 | # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. | |
4896 | set dummy ${ac_tool_prefix}ar; ac_word=$2 | |
4897 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
4898 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 4899 | if ${ac_cv_prog_AR+:} false; then : |
6bb11ab3 L |
4900 | $as_echo_n "(cached) " >&6 |
4901 | else | |
4902 | if test -n "$AR"; then | |
4903 | ac_cv_prog_AR="$AR" # Let the user override the test. | |
4904 | else | |
4905 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
4906 | for as_dir in $PATH | |
4907 | do | |
4908 | IFS=$as_save_IFS | |
4909 | test -z "$as_dir" && as_dir=. | |
4910 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 4911 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
4912 | ac_cv_prog_AR="${ac_tool_prefix}ar" |
4913 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
4914 | break 2 | |
4915 | fi | |
4916 | done | |
4917 | done | |
4918 | IFS=$as_save_IFS | |
4919 | ||
4920 | fi | |
4921 | fi | |
4922 | AR=$ac_cv_prog_AR | |
4923 | if test -n "$AR"; then | |
4924 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 | |
4925 | $as_echo "$AR" >&6; } | |
4926 | else | |
4927 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
4928 | $as_echo "no" >&6; } | |
4929 | fi | |
4930 | ||
4931 | ||
4932 | fi | |
4933 | if test -z "$ac_cv_prog_AR"; then | |
4934 | ac_ct_AR=$AR | |
4935 | # Extract the first word of "ar", so it can be a program name with args. | |
4936 | set dummy ar; ac_word=$2 | |
4937 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
4938 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 4939 | if ${ac_cv_prog_ac_ct_AR+:} false; then : |
6bb11ab3 L |
4940 | $as_echo_n "(cached) " >&6 |
4941 | else | |
4942 | if test -n "$ac_ct_AR"; then | |
4943 | ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. | |
4944 | else | |
4945 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
4946 | for as_dir in $PATH | |
4947 | do | |
4948 | IFS=$as_save_IFS | |
4949 | test -z "$as_dir" && as_dir=. | |
4950 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 4951 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
4952 | ac_cv_prog_ac_ct_AR="ar" |
4953 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
4954 | break 2 | |
4955 | fi | |
4956 | done | |
4957 | done | |
4958 | IFS=$as_save_IFS | |
4959 | ||
4960 | fi | |
4961 | fi | |
4962 | ac_ct_AR=$ac_cv_prog_ac_ct_AR | |
4963 | if test -n "$ac_ct_AR"; then | |
4964 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 | |
4965 | $as_echo "$ac_ct_AR" >&6; } | |
4966 | else | |
4967 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
4968 | $as_echo "no" >&6; } | |
4969 | fi | |
4970 | ||
4971 | if test "x$ac_ct_AR" = x; then | |
4972 | AR="false" | |
4973 | else | |
4974 | case $cross_compiling:$ac_tool_warned in | |
4975 | yes:) | |
4976 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
4977 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
4978 | ac_tool_warned=yes ;; | |
4979 | esac | |
4980 | AR=$ac_ct_AR | |
4981 | fi | |
4982 | else | |
4983 | AR="$ac_cv_prog_AR" | |
4984 | fi | |
4985 | ||
4986 | test -z "$AR" && AR=ar | |
68ed2854 MF |
4987 | if test -n "$plugin_option"; then |
4988 | if $AR --help 2>&1 | grep -q "\--plugin"; then | |
aa09469f MF |
4989 | touch conftest.c |
4990 | $AR $plugin_option rc conftest.a conftest.c | |
4991 | if test "$?" != 0; then | |
4992 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Failed: $AR $plugin_option rc" >&5 | |
4993 | $as_echo "$as_me: WARNING: Failed: $AR $plugin_option rc" >&2;} | |
4994 | else | |
4995 | AR="$AR $plugin_option" | |
4996 | fi | |
4997 | rm -f conftest.* | |
68ed2854 MF |
4998 | fi |
4999 | fi | |
6bb11ab3 L |
5000 | test -z "$AR_FLAGS" && AR_FLAGS=cru |
5001 | ||
5002 | ||
5003 | ||
5004 | ||
5005 | ||
5006 | ||
5007 | ||
5008 | ||
5009 | ||
5010 | ||
5011 | ||
5012 | if test -n "$ac_tool_prefix"; then | |
5013 | # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. | |
5014 | set dummy ${ac_tool_prefix}strip; ac_word=$2 | |
5015 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
5016 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 5017 | if ${ac_cv_prog_STRIP+:} false; then : |
6bb11ab3 L |
5018 | $as_echo_n "(cached) " >&6 |
5019 | else | |
5020 | if test -n "$STRIP"; then | |
5021 | ac_cv_prog_STRIP="$STRIP" # Let the user override the test. | |
5022 | else | |
5023 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
5024 | for as_dir in $PATH | |
5025 | do | |
5026 | IFS=$as_save_IFS | |
5027 | test -z "$as_dir" && as_dir=. | |
5028 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 5029 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
5030 | ac_cv_prog_STRIP="${ac_tool_prefix}strip" |
5031 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
5032 | break 2 | |
5033 | fi | |
5034 | done | |
5035 | done | |
5036 | IFS=$as_save_IFS | |
5037 | ||
5038 | fi | |
5039 | fi | |
5040 | STRIP=$ac_cv_prog_STRIP | |
5041 | if test -n "$STRIP"; then | |
5042 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 | |
5043 | $as_echo "$STRIP" >&6; } | |
5044 | else | |
5045 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
5046 | $as_echo "no" >&6; } | |
5047 | fi | |
5048 | ||
5049 | ||
5050 | fi | |
5051 | if test -z "$ac_cv_prog_STRIP"; then | |
5052 | ac_ct_STRIP=$STRIP | |
5053 | # Extract the first word of "strip", so it can be a program name with args. | |
5054 | set dummy strip; ac_word=$2 | |
5055 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
5056 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 5057 | if ${ac_cv_prog_ac_ct_STRIP+:} false; then : |
6bb11ab3 L |
5058 | $as_echo_n "(cached) " >&6 |
5059 | else | |
5060 | if test -n "$ac_ct_STRIP"; then | |
5061 | ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. | |
5062 | else | |
5063 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
5064 | for as_dir in $PATH | |
5065 | do | |
5066 | IFS=$as_save_IFS | |
5067 | test -z "$as_dir" && as_dir=. | |
5068 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 5069 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
5070 | ac_cv_prog_ac_ct_STRIP="strip" |
5071 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
5072 | break 2 | |
5073 | fi | |
5074 | done | |
5075 | done | |
5076 | IFS=$as_save_IFS | |
5077 | ||
5078 | fi | |
5079 | fi | |
5080 | ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP | |
5081 | if test -n "$ac_ct_STRIP"; then | |
5082 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 | |
5083 | $as_echo "$ac_ct_STRIP" >&6; } | |
5084 | else | |
5085 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
5086 | $as_echo "no" >&6; } | |
5087 | fi | |
5088 | ||
5089 | if test "x$ac_ct_STRIP" = x; then | |
5090 | STRIP=":" | |
5091 | else | |
5092 | case $cross_compiling:$ac_tool_warned in | |
5093 | yes:) | |
5094 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
5095 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
5096 | ac_tool_warned=yes ;; | |
5097 | esac | |
5098 | STRIP=$ac_ct_STRIP | |
5099 | fi | |
5100 | else | |
5101 | STRIP="$ac_cv_prog_STRIP" | |
5102 | fi | |
5103 | ||
5104 | test -z "$STRIP" && STRIP=: | |
5105 | ||
5106 | ||
5107 | ||
5108 | ||
5109 | ||
5110 | ||
5111 | if test -n "$ac_tool_prefix"; then | |
5112 | # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. | |
5113 | set dummy ${ac_tool_prefix}ranlib; ac_word=$2 | |
5114 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
5115 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 5116 | if ${ac_cv_prog_RANLIB+:} false; then : |
6bb11ab3 L |
5117 | $as_echo_n "(cached) " >&6 |
5118 | else | |
5119 | if test -n "$RANLIB"; then | |
5120 | ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. | |
5121 | else | |
5122 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
5123 | for as_dir in $PATH | |
5124 | do | |
5125 | IFS=$as_save_IFS | |
5126 | test -z "$as_dir" && as_dir=. | |
5127 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 5128 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
5129 | ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" |
5130 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
5131 | break 2 | |
5132 | fi | |
5133 | done | |
5134 | done | |
5135 | IFS=$as_save_IFS | |
5136 | ||
5137 | fi | |
5138 | fi | |
5139 | RANLIB=$ac_cv_prog_RANLIB | |
5140 | if test -n "$RANLIB"; then | |
5141 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 | |
5142 | $as_echo "$RANLIB" >&6; } | |
5143 | else | |
5144 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
5145 | $as_echo "no" >&6; } | |
5146 | fi | |
5147 | ||
5148 | ||
5149 | fi | |
5150 | if test -z "$ac_cv_prog_RANLIB"; then | |
5151 | ac_ct_RANLIB=$RANLIB | |
5152 | # Extract the first word of "ranlib", so it can be a program name with args. | |
5153 | set dummy ranlib; ac_word=$2 | |
5154 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
5155 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 5156 | if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : |
6bb11ab3 L |
5157 | $as_echo_n "(cached) " >&6 |
5158 | else | |
5159 | if test -n "$ac_ct_RANLIB"; then | |
5160 | ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. | |
5161 | else | |
5162 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
5163 | for as_dir in $PATH | |
5164 | do | |
5165 | IFS=$as_save_IFS | |
5166 | test -z "$as_dir" && as_dir=. | |
5167 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 5168 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
5169 | ac_cv_prog_ac_ct_RANLIB="ranlib" |
5170 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
5171 | break 2 | |
5172 | fi | |
5173 | done | |
5174 | done | |
5175 | IFS=$as_save_IFS | |
5176 | ||
5177 | fi | |
5178 | fi | |
5179 | ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB | |
5180 | if test -n "$ac_ct_RANLIB"; then | |
5181 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 | |
5182 | $as_echo "$ac_ct_RANLIB" >&6; } | |
5183 | else | |
5184 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
5185 | $as_echo "no" >&6; } | |
5186 | fi | |
5187 | ||
5188 | if test "x$ac_ct_RANLIB" = x; then | |
5189 | RANLIB=":" | |
5190 | else | |
5191 | case $cross_compiling:$ac_tool_warned in | |
5192 | yes:) | |
5193 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
5194 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
5195 | ac_tool_warned=yes ;; | |
5196 | esac | |
5197 | RANLIB=$ac_ct_RANLIB | |
5198 | fi | |
5199 | else | |
5200 | RANLIB="$ac_cv_prog_RANLIB" | |
5201 | fi | |
5202 | ||
5203 | test -z "$RANLIB" && RANLIB=: | |
68ed2854 MF |
5204 | if test -n "$plugin_option" && test "$RANLIB" != ":"; then |
5205 | if $RANLIB --help 2>&1 | grep -q "\--plugin"; then | |
5206 | RANLIB="$RANLIB $plugin_option" | |
5207 | fi | |
5208 | fi | |
6bb11ab3 L |
5209 | |
5210 | ||
5211 | ||
5212 | ||
5213 | ||
5214 | ||
5215 | # Determine commands to create old-style static archives. | |
5216 | old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' | |
5217 | old_postinstall_cmds='chmod 644 $oldlib' | |
5218 | old_postuninstall_cmds= | |
5219 | ||
5220 | if test -n "$RANLIB"; then | |
5221 | case $host_os in | |
5222 | openbsd*) | |
5223 | old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" | |
5224 | ;; | |
5225 | *) | |
5226 | old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" | |
5227 | ;; | |
5228 | esac | |
5229 | old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" | |
5230 | fi | |
5231 | ||
5232 | case $host_os in | |
5233 | darwin*) | |
5234 | lock_old_archive_extraction=yes ;; | |
5235 | *) | |
5236 | lock_old_archive_extraction=no ;; | |
5237 | esac | |
5238 | ||
5239 | ||
5240 | ||
5241 | ||
5242 | ||
5243 | ||
5244 | ||
5245 | ||
5246 | ||
5247 | ||
5248 | ||
5249 | ||
5250 | ||
5251 | ||
5252 | ||
5253 | ||
5254 | ||
5255 | ||
5256 | ||
5257 | ||
5258 | ||
5259 | for ac_prog in gawk mawk nawk awk | |
5260 | do | |
5261 | # Extract the first word of "$ac_prog", so it can be a program name with args. | |
5262 | set dummy $ac_prog; ac_word=$2 | |
5263 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
5264 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 5265 | if ${ac_cv_prog_AWK+:} false; then : |
6bb11ab3 L |
5266 | $as_echo_n "(cached) " >&6 |
5267 | else | |
5268 | if test -n "$AWK"; then | |
5269 | ac_cv_prog_AWK="$AWK" # Let the user override the test. | |
5270 | else | |
5271 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
5272 | for as_dir in $PATH | |
5273 | do | |
5274 | IFS=$as_save_IFS | |
5275 | test -z "$as_dir" && as_dir=. | |
5276 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 5277 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
5278 | ac_cv_prog_AWK="$ac_prog" |
5279 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
5280 | break 2 | |
5281 | fi | |
5282 | done | |
5283 | done | |
5284 | IFS=$as_save_IFS | |
5285 | ||
5286 | fi | |
5287 | fi | |
5288 | AWK=$ac_cv_prog_AWK | |
5289 | if test -n "$AWK"; then | |
5290 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 | |
5291 | $as_echo "$AWK" >&6; } | |
5292 | else | |
5293 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
5294 | $as_echo "no" >&6; } | |
5295 | fi | |
5296 | ||
5297 | ||
5298 | test -n "$AWK" && break | |
5299 | done | |
5300 | ||
5301 | ||
5302 | ||
5303 | ||
5304 | ||
5305 | ||
5306 | ||
5307 | ||
5308 | ||
5309 | ||
5310 | ||
5311 | ||
5312 | ||
5313 | ||
5314 | ||
5315 | ||
5316 | ||
5317 | ||
5318 | ||
5319 | # If no C compiler was specified, use CC. | |
5320 | LTCC=${LTCC-"$CC"} | |
5321 | ||
5322 | # If no C compiler flags were specified, use CFLAGS. | |
5323 | LTCFLAGS=${LTCFLAGS-"$CFLAGS"} | |
5324 | ||
5325 | # Allow CC to be a program name with arguments. | |
5326 | compiler=$CC | |
5327 | ||
5328 | ||
5329 | # Check for command to grab the raw symbol name followed by C symbol from nm. | |
5330 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 | |
5331 | $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } | |
d0ac1c44 | 5332 | if ${lt_cv_sys_global_symbol_pipe+:} false; then : |
6bb11ab3 L |
5333 | $as_echo_n "(cached) " >&6 |
5334 | else | |
5335 | ||
5336 | # These are sane defaults that work on at least a few old systems. | |
5337 | # [They come from Ultrix. What could be older than Ultrix?!! ;)] | |
5338 | ||
5339 | # Character class describing NM global symbol codes. | |
5340 | symcode='[BCDEGRST]' | |
5341 | ||
5342 | # Regexp to match symbols that can be accessed directly from C. | |
5343 | sympat='\([_A-Za-z][_A-Za-z0-9]*\)' | |
5344 | ||
5345 | # Define system-specific variables. | |
5346 | case $host_os in | |
5347 | aix*) | |
5348 | symcode='[BCDT]' | |
5349 | ;; | |
5350 | cygwin* | mingw* | pw32* | cegcc*) | |
5351 | symcode='[ABCDGISTW]' | |
5352 | ;; | |
5353 | hpux*) | |
5354 | if test "$host_cpu" = ia64; then | |
5355 | symcode='[ABCDEGRST]' | |
5356 | fi | |
5357 | ;; | |
5358 | irix* | nonstopux*) | |
5359 | symcode='[BCDEGRST]' | |
5360 | ;; | |
5361 | osf*) | |
5362 | symcode='[BCDEGQRST]' | |
5363 | ;; | |
5364 | solaris*) | |
5365 | symcode='[BDRT]' | |
5366 | ;; | |
5367 | sco3.2v5*) | |
5368 | symcode='[DT]' | |
5369 | ;; | |
5370 | sysv4.2uw2*) | |
5371 | symcode='[DT]' | |
5372 | ;; | |
5373 | sysv5* | sco5v6* | unixware* | OpenUNIX*) | |
5374 | symcode='[ABDT]' | |
5375 | ;; | |
5376 | sysv4) | |
5377 | symcode='[DFNSTU]' | |
5378 | ;; | |
5379 | esac | |
5380 | ||
5381 | # If we're using GNU nm, then use its standard symbol codes. | |
5382 | case `$NM -V 2>&1` in | |
5383 | *GNU* | *'with BFD'*) | |
5384 | symcode='[ABCDGIRSTW]' ;; | |
5385 | esac | |
5386 | ||
5387 | # Transform an extracted symbol line into a proper C declaration. | |
5388 | # Some systems (esp. on ia64) link data and code symbols differently, | |
5389 | # so use this general approach. | |
5390 | lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" | |
5391 | ||
5392 | # Transform an extracted symbol line into symbol name and symbol address | |
5393 | lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" | |
5394 | lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" | |
5395 | ||
5396 | # Handle CRLF in mingw tool chain | |
5397 | opt_cr= | |
5398 | case $build_os in | |
5399 | mingw*) | |
5400 | opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp | |
5401 | ;; | |
5402 | esac | |
5403 | ||
5404 | # Try without a prefix underscore, then with it. | |
5405 | for ac_symprfx in "" "_"; do | |
5406 | ||
5407 | # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. | |
5408 | symxfrm="\\1 $ac_symprfx\\2 \\2" | |
5409 | ||
5410 | # Write the raw and C identifiers. | |
5411 | if test "$lt_cv_nm_interface" = "MS dumpbin"; then | |
5412 | # Fake it for dumpbin and say T for any non-static function | |
5413 | # and D for any global variable. | |
5414 | # Also find C++ and __fastcall symbols from MSVC++, | |
5415 | # which start with @ or ?. | |
5416 | lt_cv_sys_global_symbol_pipe="$AWK '"\ | |
5417 | " {last_section=section; section=\$ 3};"\ | |
5418 | " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ | |
5419 | " \$ 0!~/External *\|/{next};"\ | |
5420 | " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ | |
5421 | " {if(hide[section]) next};"\ | |
5422 | " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ | |
5423 | " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ | |
5424 | " s[1]~/^[@?]/{print s[1], s[1]; next};"\ | |
5425 | " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ | |
5426 | " ' prfx=^$ac_symprfx" | |
5427 | else | |
5428 | lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" | |
5429 | fi | |
5430 | ||
5431 | # Check to see that the pipe works correctly. | |
5432 | pipe_works=no | |
5433 | ||
5434 | rm -f conftest* | |
5435 | cat > conftest.$ac_ext <<_LT_EOF | |
5436 | #ifdef __cplusplus | |
5437 | extern "C" { | |
5438 | #endif | |
5439 | char nm_test_var; | |
5440 | void nm_test_func(void); | |
5441 | void nm_test_func(void){} | |
5442 | #ifdef __cplusplus | |
5443 | } | |
5444 | #endif | |
5445 | int main(){nm_test_var='a';nm_test_func();return(0);} | |
5446 | _LT_EOF | |
5447 | ||
5448 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 | |
5449 | (eval $ac_compile) 2>&5 | |
5450 | ac_status=$? | |
5451 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
5452 | test $ac_status = 0; }; then | |
5453 | # Now try to grab the symbols. | |
5454 | nlist=conftest.nm | |
5455 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 | |
5456 | (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 | |
5457 | ac_status=$? | |
5458 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
5459 | test $ac_status = 0; } && test -s "$nlist"; then | |
5460 | # Try sorting and uniquifying the output. | |
5461 | if sort "$nlist" | uniq > "$nlist"T; then | |
5462 | mv -f "$nlist"T "$nlist" | |
5463 | else | |
5464 | rm -f "$nlist"T | |
5465 | fi | |
5466 | ||
5467 | # Make sure that we snagged all the symbols we need. | |
5468 | if $GREP ' nm_test_var$' "$nlist" >/dev/null; then | |
5469 | if $GREP ' nm_test_func$' "$nlist" >/dev/null; then | |
5470 | cat <<_LT_EOF > conftest.$ac_ext | |
5471 | #ifdef __cplusplus | |
5472 | extern "C" { | |
5473 | #endif | |
5474 | ||
5475 | _LT_EOF | |
5476 | # Now generate the symbol file. | |
5477 | eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' | |
5478 | ||
5479 | cat <<_LT_EOF >> conftest.$ac_ext | |
5480 | ||
5481 | /* The mapping between symbol names and symbols. */ | |
5482 | const struct { | |
5483 | const char *name; | |
5484 | void *address; | |
5485 | } | |
5486 | lt__PROGRAM__LTX_preloaded_symbols[] = | |
5487 | { | |
5488 | { "@PROGRAM@", (void *) 0 }, | |
5489 | _LT_EOF | |
5490 | $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext | |
5491 | cat <<\_LT_EOF >> conftest.$ac_ext | |
5492 | {0, (void *) 0} | |
5493 | }; | |
5494 | ||
5495 | /* This works around a problem in FreeBSD linker */ | |
5496 | #ifdef FREEBSD_WORKAROUND | |
5497 | static const void *lt_preloaded_setup() { | |
5498 | return lt__PROGRAM__LTX_preloaded_symbols; | |
5499 | } | |
5500 | #endif | |
5501 | ||
5502 | #ifdef __cplusplus | |
5503 | } | |
5504 | #endif | |
5505 | _LT_EOF | |
5506 | # Now try linking the two files. | |
5507 | mv conftest.$ac_objext conftstm.$ac_objext | |
5508 | lt_save_LIBS="$LIBS" | |
5509 | lt_save_CFLAGS="$CFLAGS" | |
5510 | LIBS="conftstm.$ac_objext" | |
5511 | CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" | |
5512 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 | |
5513 | (eval $ac_link) 2>&5 | |
5514 | ac_status=$? | |
5515 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
5516 | test $ac_status = 0; } && test -s conftest${ac_exeext}; then | |
5517 | pipe_works=yes | |
5518 | fi | |
5519 | LIBS="$lt_save_LIBS" | |
5520 | CFLAGS="$lt_save_CFLAGS" | |
5521 | else | |
5522 | echo "cannot find nm_test_func in $nlist" >&5 | |
5523 | fi | |
5524 | else | |
5525 | echo "cannot find nm_test_var in $nlist" >&5 | |
5526 | fi | |
5527 | else | |
5528 | echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 | |
5529 | fi | |
5530 | else | |
5531 | echo "$progname: failed program was:" >&5 | |
5532 | cat conftest.$ac_ext >&5 | |
5533 | fi | |
5534 | rm -rf conftest* conftst* | |
5535 | ||
5536 | # Do not use the global_symbol_pipe unless it works. | |
5537 | if test "$pipe_works" = yes; then | |
5538 | break | |
5539 | else | |
5540 | lt_cv_sys_global_symbol_pipe= | |
5541 | fi | |
5542 | done | |
5543 | ||
5544 | fi | |
5545 | ||
5546 | if test -z "$lt_cv_sys_global_symbol_pipe"; then | |
5547 | lt_cv_sys_global_symbol_to_cdecl= | |
5548 | fi | |
5549 | if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then | |
5550 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 | |
5551 | $as_echo "failed" >&6; } | |
5552 | else | |
5553 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 | |
5554 | $as_echo "ok" >&6; } | |
5555 | fi | |
5556 | ||
5557 | ||
5558 | ||
5559 | ||
5560 | ||
5561 | ||
5562 | ||
5563 | ||
5564 | ||
5565 | ||
5566 | ||
5567 | ||
5568 | ||
5569 | ||
5570 | ||
5571 | ||
5572 | ||
5573 | ||
5574 | ||
5575 | ||
5576 | ||
5577 | ||
5578 | # Check whether --enable-libtool-lock was given. | |
5579 | if test "${enable_libtool_lock+set}" = set; then : | |
5580 | enableval=$enable_libtool_lock; | |
5581 | fi | |
5582 | ||
5583 | test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes | |
5584 | ||
5585 | # Some flags need to be propagated to the compiler or linker for good | |
5586 | # libtool support. | |
5587 | case $host in | |
5588 | ia64-*-hpux*) | |
5589 | # Find out which ABI we are using. | |
5590 | echo 'int i;' > conftest.$ac_ext | |
5591 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 | |
5592 | (eval $ac_compile) 2>&5 | |
5593 | ac_status=$? | |
5594 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
5595 | test $ac_status = 0; }; then | |
5596 | case `/usr/bin/file conftest.$ac_objext` in | |
5597 | *ELF-32*) | |
5598 | HPUX_IA64_MODE="32" | |
5599 | ;; | |
5600 | *ELF-64*) | |
5601 | HPUX_IA64_MODE="64" | |
5602 | ;; | |
5603 | esac | |
5604 | fi | |
5605 | rm -rf conftest* | |
5606 | ;; | |
5607 | *-*-irix6*) | |
5608 | # Find out which ABI we are using. | |
5609 | echo '#line '$LINENO' "configure"' > conftest.$ac_ext | |
5610 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 | |
5611 | (eval $ac_compile) 2>&5 | |
5612 | ac_status=$? | |
5613 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
5614 | test $ac_status = 0; }; then | |
5615 | if test "$lt_cv_prog_gnu_ld" = yes; then | |
5616 | case `/usr/bin/file conftest.$ac_objext` in | |
5617 | *32-bit*) | |
5618 | LD="${LD-ld} -melf32bsmip" | |
5619 | ;; | |
5620 | *N32*) | |
5621 | LD="${LD-ld} -melf32bmipn32" | |
5622 | ;; | |
5623 | *64-bit*) | |
5624 | LD="${LD-ld} -melf64bmip" | |
5625 | ;; | |
5626 | esac | |
5627 | else | |
5628 | case `/usr/bin/file conftest.$ac_objext` in | |
5629 | *32-bit*) | |
5630 | LD="${LD-ld} -32" | |
5631 | ;; | |
5632 | *N32*) | |
5633 | LD="${LD-ld} -n32" | |
5634 | ;; | |
5635 | *64-bit*) | |
5636 | LD="${LD-ld} -64" | |
5637 | ;; | |
5638 | esac | |
5639 | fi | |
5640 | fi | |
5641 | rm -rf conftest* | |
5642 | ;; | |
5643 | ||
bf3d9781 | 5644 | x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ |
6bb11ab3 L |
5645 | s390*-*linux*|s390*-*tpf*|sparc*-*linux*) |
5646 | # Find out which ABI we are using. | |
5647 | echo 'int i;' > conftest.$ac_ext | |
5648 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 | |
5649 | (eval $ac_compile) 2>&5 | |
5650 | ac_status=$? | |
5651 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
5652 | test $ac_status = 0; }; then | |
5653 | case `/usr/bin/file conftest.o` in | |
5654 | *32-bit*) | |
5655 | case $host in | |
5656 | x86_64-*kfreebsd*-gnu) | |
5657 | LD="${LD-ld} -m elf_i386_fbsd" | |
5658 | ;; | |
5659 | x86_64-*linux*) | |
5660 | case `/usr/bin/file conftest.o` in | |
5661 | *x86-64*) | |
5662 | LD="${LD-ld} -m elf32_x86_64" | |
5663 | ;; | |
5664 | *) | |
5665 | LD="${LD-ld} -m elf_i386" | |
5666 | ;; | |
5667 | esac | |
5668 | ;; | |
bf3d9781 AM |
5669 | powerpc64le-*linux*) |
5670 | LD="${LD-ld} -m elf32lppclinux" | |
5671 | ;; | |
5672 | powerpc64-*linux*) | |
6bb11ab3 L |
5673 | LD="${LD-ld} -m elf32ppclinux" |
5674 | ;; | |
5675 | s390x-*linux*) | |
5676 | LD="${LD-ld} -m elf_s390" | |
5677 | ;; | |
5678 | sparc64-*linux*) | |
5679 | LD="${LD-ld} -m elf32_sparc" | |
5680 | ;; | |
5681 | esac | |
5682 | ;; | |
5683 | *64-bit*) | |
5684 | case $host in | |
5685 | x86_64-*kfreebsd*-gnu) | |
5686 | LD="${LD-ld} -m elf_x86_64_fbsd" | |
5687 | ;; | |
5688 | x86_64-*linux*) | |
5689 | LD="${LD-ld} -m elf_x86_64" | |
5690 | ;; | |
bf3d9781 AM |
5691 | powerpcle-*linux*) |
5692 | LD="${LD-ld} -m elf64lppc" | |
5693 | ;; | |
5694 | powerpc-*linux*) | |
6bb11ab3 L |
5695 | LD="${LD-ld} -m elf64ppc" |
5696 | ;; | |
5697 | s390*-*linux*|s390*-*tpf*) | |
5698 | LD="${LD-ld} -m elf64_s390" | |
5699 | ;; | |
5700 | sparc*-*linux*) | |
5701 | LD="${LD-ld} -m elf64_sparc" | |
5702 | ;; | |
5703 | esac | |
5704 | ;; | |
5705 | esac | |
5706 | fi | |
5707 | rm -rf conftest* | |
5708 | ;; | |
5709 | ||
5710 | *-*-sco3.2v5*) | |
5711 | # On SCO OpenServer 5, we need -belf to get full-featured binaries. | |
5712 | SAVE_CFLAGS="$CFLAGS" | |
5713 | CFLAGS="$CFLAGS -belf" | |
5714 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 | |
5715 | $as_echo_n "checking whether the C compiler needs -belf... " >&6; } | |
d0ac1c44 | 5716 | if ${lt_cv_cc_needs_belf+:} false; then : |
6bb11ab3 L |
5717 | $as_echo_n "(cached) " >&6 |
5718 | else | |
5719 | ac_ext=c | |
5720 | ac_cpp='$CPP $CPPFLAGS' | |
5721 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | |
5722 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | |
5723 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | |
5724 | ||
5725 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
5726 | /* end confdefs.h. */ | |
5727 | ||
5728 | int | |
5729 | main () | |
5730 | { | |
5731 | ||
5732 | ; | |
5733 | return 0; | |
5734 | } | |
5735 | _ACEOF | |
5736 | if ac_fn_c_try_link "$LINENO"; then : | |
5737 | lt_cv_cc_needs_belf=yes | |
5738 | else | |
5739 | lt_cv_cc_needs_belf=no | |
5740 | fi | |
5741 | rm -f core conftest.err conftest.$ac_objext \ | |
5742 | conftest$ac_exeext conftest.$ac_ext | |
5743 | ac_ext=c | |
5744 | ac_cpp='$CPP $CPPFLAGS' | |
5745 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | |
5746 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | |
5747 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | |
5748 | ||
5749 | fi | |
5750 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 | |
5751 | $as_echo "$lt_cv_cc_needs_belf" >&6; } | |
5752 | if test x"$lt_cv_cc_needs_belf" != x"yes"; then | |
5753 | # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf | |
5754 | CFLAGS="$SAVE_CFLAGS" | |
5755 | fi | |
5756 | ;; | |
5757 | sparc*-*solaris*) | |
5758 | # Find out which ABI we are using. | |
5759 | echo 'int i;' > conftest.$ac_ext | |
5760 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 | |
5761 | (eval $ac_compile) 2>&5 | |
5762 | ac_status=$? | |
5763 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
5764 | test $ac_status = 0; }; then | |
5765 | case `/usr/bin/file conftest.o` in | |
5766 | *64-bit*) | |
5767 | case $lt_cv_prog_gnu_ld in | |
5768 | yes*) LD="${LD-ld} -m elf64_sparc" ;; | |
5769 | *) | |
5770 | if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then | |
5771 | LD="${LD-ld} -64" | |
5772 | fi | |
5773 | ;; | |
5774 | esac | |
5775 | ;; | |
5776 | esac | |
5777 | fi | |
5778 | rm -rf conftest* | |
5779 | ;; | |
5780 | esac | |
5781 | ||
5782 | need_locks="$enable_libtool_lock" | |
5783 | ||
5784 | ||
5785 | case $host_os in | |
5786 | rhapsody* | darwin*) | |
5787 | if test -n "$ac_tool_prefix"; then | |
5788 | # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. | |
5789 | set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 | |
5790 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
5791 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 5792 | if ${ac_cv_prog_DSYMUTIL+:} false; then : |
6bb11ab3 L |
5793 | $as_echo_n "(cached) " >&6 |
5794 | else | |
5795 | if test -n "$DSYMUTIL"; then | |
5796 | ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. | |
5797 | else | |
5798 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
5799 | for as_dir in $PATH | |
5800 | do | |
5801 | IFS=$as_save_IFS | |
5802 | test -z "$as_dir" && as_dir=. | |
5803 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 5804 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
5805 | ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" |
5806 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
5807 | break 2 | |
5808 | fi | |
5809 | done | |
5810 | done | |
5811 | IFS=$as_save_IFS | |
5812 | ||
5813 | fi | |
5814 | fi | |
5815 | DSYMUTIL=$ac_cv_prog_DSYMUTIL | |
5816 | if test -n "$DSYMUTIL"; then | |
5817 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 | |
5818 | $as_echo "$DSYMUTIL" >&6; } | |
5819 | else | |
5820 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
5821 | $as_echo "no" >&6; } | |
5822 | fi | |
5823 | ||
5824 | ||
5825 | fi | |
5826 | if test -z "$ac_cv_prog_DSYMUTIL"; then | |
5827 | ac_ct_DSYMUTIL=$DSYMUTIL | |
5828 | # Extract the first word of "dsymutil", so it can be a program name with args. | |
5829 | set dummy dsymutil; ac_word=$2 | |
5830 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
5831 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 5832 | if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : |
6bb11ab3 L |
5833 | $as_echo_n "(cached) " >&6 |
5834 | else | |
5835 | if test -n "$ac_ct_DSYMUTIL"; then | |
5836 | ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. | |
5837 | else | |
5838 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
5839 | for as_dir in $PATH | |
5840 | do | |
5841 | IFS=$as_save_IFS | |
5842 | test -z "$as_dir" && as_dir=. | |
5843 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 5844 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
5845 | ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" |
5846 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
5847 | break 2 | |
5848 | fi | |
5849 | done | |
5850 | done | |
5851 | IFS=$as_save_IFS | |
5852 | ||
5853 | fi | |
5854 | fi | |
5855 | ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL | |
5856 | if test -n "$ac_ct_DSYMUTIL"; then | |
5857 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 | |
5858 | $as_echo "$ac_ct_DSYMUTIL" >&6; } | |
5859 | else | |
5860 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
5861 | $as_echo "no" >&6; } | |
5862 | fi | |
5863 | ||
5864 | if test "x$ac_ct_DSYMUTIL" = x; then | |
5865 | DSYMUTIL=":" | |
5866 | else | |
5867 | case $cross_compiling:$ac_tool_warned in | |
5868 | yes:) | |
5869 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
5870 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
5871 | ac_tool_warned=yes ;; | |
5872 | esac | |
5873 | DSYMUTIL=$ac_ct_DSYMUTIL | |
5874 | fi | |
5875 | else | |
5876 | DSYMUTIL="$ac_cv_prog_DSYMUTIL" | |
5877 | fi | |
5878 | ||
5879 | if test -n "$ac_tool_prefix"; then | |
5880 | # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. | |
5881 | set dummy ${ac_tool_prefix}nmedit; ac_word=$2 | |
5882 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
5883 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 5884 | if ${ac_cv_prog_NMEDIT+:} false; then : |
6bb11ab3 L |
5885 | $as_echo_n "(cached) " >&6 |
5886 | else | |
5887 | if test -n "$NMEDIT"; then | |
5888 | ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. | |
5889 | else | |
5890 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
5891 | for as_dir in $PATH | |
5892 | do | |
5893 | IFS=$as_save_IFS | |
5894 | test -z "$as_dir" && as_dir=. | |
5895 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 5896 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
5897 | ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" |
5898 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
5899 | break 2 | |
5900 | fi | |
5901 | done | |
5902 | done | |
5903 | IFS=$as_save_IFS | |
5904 | ||
5905 | fi | |
5906 | fi | |
5907 | NMEDIT=$ac_cv_prog_NMEDIT | |
5908 | if test -n "$NMEDIT"; then | |
5909 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 | |
5910 | $as_echo "$NMEDIT" >&6; } | |
5911 | else | |
5912 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
5913 | $as_echo "no" >&6; } | |
5914 | fi | |
5915 | ||
5916 | ||
5917 | fi | |
5918 | if test -z "$ac_cv_prog_NMEDIT"; then | |
5919 | ac_ct_NMEDIT=$NMEDIT | |
5920 | # Extract the first word of "nmedit", so it can be a program name with args. | |
5921 | set dummy nmedit; ac_word=$2 | |
5922 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
5923 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 5924 | if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : |
6bb11ab3 L |
5925 | $as_echo_n "(cached) " >&6 |
5926 | else | |
5927 | if test -n "$ac_ct_NMEDIT"; then | |
5928 | ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. | |
5929 | else | |
5930 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
5931 | for as_dir in $PATH | |
5932 | do | |
5933 | IFS=$as_save_IFS | |
5934 | test -z "$as_dir" && as_dir=. | |
5935 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 5936 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
5937 | ac_cv_prog_ac_ct_NMEDIT="nmedit" |
5938 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
5939 | break 2 | |
5940 | fi | |
5941 | done | |
5942 | done | |
5943 | IFS=$as_save_IFS | |
5944 | ||
5945 | fi | |
5946 | fi | |
5947 | ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT | |
5948 | if test -n "$ac_ct_NMEDIT"; then | |
5949 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 | |
5950 | $as_echo "$ac_ct_NMEDIT" >&6; } | |
5951 | else | |
5952 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
5953 | $as_echo "no" >&6; } | |
5954 | fi | |
5955 | ||
5956 | if test "x$ac_ct_NMEDIT" = x; then | |
5957 | NMEDIT=":" | |
5958 | else | |
5959 | case $cross_compiling:$ac_tool_warned in | |
5960 | yes:) | |
5961 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
5962 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
5963 | ac_tool_warned=yes ;; | |
5964 | esac | |
5965 | NMEDIT=$ac_ct_NMEDIT | |
5966 | fi | |
5967 | else | |
5968 | NMEDIT="$ac_cv_prog_NMEDIT" | |
5969 | fi | |
5970 | ||
5971 | if test -n "$ac_tool_prefix"; then | |
5972 | # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. | |
5973 | set dummy ${ac_tool_prefix}lipo; ac_word=$2 | |
5974 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
5975 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 5976 | if ${ac_cv_prog_LIPO+:} false; then : |
6bb11ab3 L |
5977 | $as_echo_n "(cached) " >&6 |
5978 | else | |
5979 | if test -n "$LIPO"; then | |
5980 | ac_cv_prog_LIPO="$LIPO" # Let the user override the test. | |
5981 | else | |
5982 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
5983 | for as_dir in $PATH | |
5984 | do | |
5985 | IFS=$as_save_IFS | |
5986 | test -z "$as_dir" && as_dir=. | |
5987 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 5988 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
5989 | ac_cv_prog_LIPO="${ac_tool_prefix}lipo" |
5990 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
5991 | break 2 | |
5992 | fi | |
5993 | done | |
5994 | done | |
5995 | IFS=$as_save_IFS | |
5996 | ||
5997 | fi | |
5998 | fi | |
5999 | LIPO=$ac_cv_prog_LIPO | |
6000 | if test -n "$LIPO"; then | |
6001 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 | |
6002 | $as_echo "$LIPO" >&6; } | |
6003 | else | |
6004 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
6005 | $as_echo "no" >&6; } | |
6006 | fi | |
6007 | ||
6008 | ||
6009 | fi | |
6010 | if test -z "$ac_cv_prog_LIPO"; then | |
6011 | ac_ct_LIPO=$LIPO | |
6012 | # Extract the first word of "lipo", so it can be a program name with args. | |
6013 | set dummy lipo; ac_word=$2 | |
6014 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
6015 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 6016 | if ${ac_cv_prog_ac_ct_LIPO+:} false; then : |
6bb11ab3 L |
6017 | $as_echo_n "(cached) " >&6 |
6018 | else | |
6019 | if test -n "$ac_ct_LIPO"; then | |
6020 | ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. | |
6021 | else | |
6022 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
6023 | for as_dir in $PATH | |
6024 | do | |
6025 | IFS=$as_save_IFS | |
6026 | test -z "$as_dir" && as_dir=. | |
6027 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 6028 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
6029 | ac_cv_prog_ac_ct_LIPO="lipo" |
6030 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
6031 | break 2 | |
6032 | fi | |
6033 | done | |
6034 | done | |
6035 | IFS=$as_save_IFS | |
6036 | ||
6037 | fi | |
6038 | fi | |
6039 | ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO | |
6040 | if test -n "$ac_ct_LIPO"; then | |
6041 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 | |
6042 | $as_echo "$ac_ct_LIPO" >&6; } | |
6043 | else | |
6044 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
6045 | $as_echo "no" >&6; } | |
6046 | fi | |
6047 | ||
6048 | if test "x$ac_ct_LIPO" = x; then | |
6049 | LIPO=":" | |
6050 | else | |
6051 | case $cross_compiling:$ac_tool_warned in | |
6052 | yes:) | |
6053 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
6054 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
6055 | ac_tool_warned=yes ;; | |
6056 | esac | |
6057 | LIPO=$ac_ct_LIPO | |
6058 | fi | |
6059 | else | |
6060 | LIPO="$ac_cv_prog_LIPO" | |
6061 | fi | |
6062 | ||
6063 | if test -n "$ac_tool_prefix"; then | |
6064 | # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. | |
6065 | set dummy ${ac_tool_prefix}otool; ac_word=$2 | |
6066 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
6067 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 6068 | if ${ac_cv_prog_OTOOL+:} false; then : |
6bb11ab3 L |
6069 | $as_echo_n "(cached) " >&6 |
6070 | else | |
6071 | if test -n "$OTOOL"; then | |
6072 | ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. | |
6073 | else | |
6074 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
6075 | for as_dir in $PATH | |
6076 | do | |
6077 | IFS=$as_save_IFS | |
6078 | test -z "$as_dir" && as_dir=. | |
6079 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 6080 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
6081 | ac_cv_prog_OTOOL="${ac_tool_prefix}otool" |
6082 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
6083 | break 2 | |
6084 | fi | |
6085 | done | |
6086 | done | |
6087 | IFS=$as_save_IFS | |
6088 | ||
6089 | fi | |
6090 | fi | |
6091 | OTOOL=$ac_cv_prog_OTOOL | |
6092 | if test -n "$OTOOL"; then | |
6093 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 | |
6094 | $as_echo "$OTOOL" >&6; } | |
6095 | else | |
6096 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
6097 | $as_echo "no" >&6; } | |
6098 | fi | |
6099 | ||
6100 | ||
6101 | fi | |
6102 | if test -z "$ac_cv_prog_OTOOL"; then | |
6103 | ac_ct_OTOOL=$OTOOL | |
6104 | # Extract the first word of "otool", so it can be a program name with args. | |
6105 | set dummy otool; ac_word=$2 | |
6106 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
6107 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 6108 | if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : |
6bb11ab3 L |
6109 | $as_echo_n "(cached) " >&6 |
6110 | else | |
6111 | if test -n "$ac_ct_OTOOL"; then | |
6112 | ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. | |
6113 | else | |
6114 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
6115 | for as_dir in $PATH | |
6116 | do | |
6117 | IFS=$as_save_IFS | |
6118 | test -z "$as_dir" && as_dir=. | |
6119 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 6120 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
6121 | ac_cv_prog_ac_ct_OTOOL="otool" |
6122 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
6123 | break 2 | |
6124 | fi | |
6125 | done | |
6126 | done | |
6127 | IFS=$as_save_IFS | |
6128 | ||
6129 | fi | |
6130 | fi | |
6131 | ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL | |
6132 | if test -n "$ac_ct_OTOOL"; then | |
6133 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 | |
6134 | $as_echo "$ac_ct_OTOOL" >&6; } | |
6135 | else | |
6136 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
6137 | $as_echo "no" >&6; } | |
6138 | fi | |
6139 | ||
6140 | if test "x$ac_ct_OTOOL" = x; then | |
6141 | OTOOL=":" | |
6142 | else | |
6143 | case $cross_compiling:$ac_tool_warned in | |
6144 | yes:) | |
6145 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
6146 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
6147 | ac_tool_warned=yes ;; | |
6148 | esac | |
6149 | OTOOL=$ac_ct_OTOOL | |
6150 | fi | |
6151 | else | |
6152 | OTOOL="$ac_cv_prog_OTOOL" | |
6153 | fi | |
6154 | ||
6155 | if test -n "$ac_tool_prefix"; then | |
6156 | # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. | |
6157 | set dummy ${ac_tool_prefix}otool64; ac_word=$2 | |
6158 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
6159 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 6160 | if ${ac_cv_prog_OTOOL64+:} false; then : |
6bb11ab3 L |
6161 | $as_echo_n "(cached) " >&6 |
6162 | else | |
6163 | if test -n "$OTOOL64"; then | |
6164 | ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. | |
6165 | else | |
6166 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
6167 | for as_dir in $PATH | |
6168 | do | |
6169 | IFS=$as_save_IFS | |
6170 | test -z "$as_dir" && as_dir=. | |
6171 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 6172 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
6173 | ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" |
6174 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
6175 | break 2 | |
6176 | fi | |
6177 | done | |
6178 | done | |
6179 | IFS=$as_save_IFS | |
6180 | ||
6181 | fi | |
6182 | fi | |
6183 | OTOOL64=$ac_cv_prog_OTOOL64 | |
6184 | if test -n "$OTOOL64"; then | |
6185 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 | |
6186 | $as_echo "$OTOOL64" >&6; } | |
6187 | else | |
6188 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
6189 | $as_echo "no" >&6; } | |
6190 | fi | |
6191 | ||
6192 | ||
6193 | fi | |
6194 | if test -z "$ac_cv_prog_OTOOL64"; then | |
6195 | ac_ct_OTOOL64=$OTOOL64 | |
6196 | # Extract the first word of "otool64", so it can be a program name with args. | |
6197 | set dummy otool64; ac_word=$2 | |
6198 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
6199 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 6200 | if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : |
6bb11ab3 L |
6201 | $as_echo_n "(cached) " >&6 |
6202 | else | |
6203 | if test -n "$ac_ct_OTOOL64"; then | |
6204 | ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. | |
6205 | else | |
6206 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
6207 | for as_dir in $PATH | |
6208 | do | |
6209 | IFS=$as_save_IFS | |
6210 | test -z "$as_dir" && as_dir=. | |
6211 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 6212 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
6213 | ac_cv_prog_ac_ct_OTOOL64="otool64" |
6214 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
6215 | break 2 | |
6216 | fi | |
6217 | done | |
6218 | done | |
6219 | IFS=$as_save_IFS | |
6220 | ||
6221 | fi | |
6222 | fi | |
6223 | ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 | |
6224 | if test -n "$ac_ct_OTOOL64"; then | |
6225 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 | |
6226 | $as_echo "$ac_ct_OTOOL64" >&6; } | |
6227 | else | |
6228 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
6229 | $as_echo "no" >&6; } | |
6230 | fi | |
6231 | ||
6232 | if test "x$ac_ct_OTOOL64" = x; then | |
6233 | OTOOL64=":" | |
6234 | else | |
6235 | case $cross_compiling:$ac_tool_warned in | |
6236 | yes:) | |
6237 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
6238 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
6239 | ac_tool_warned=yes ;; | |
6240 | esac | |
6241 | OTOOL64=$ac_ct_OTOOL64 | |
6242 | fi | |
6243 | else | |
6244 | OTOOL64="$ac_cv_prog_OTOOL64" | |
6245 | fi | |
6246 | ||
6247 | ||
6248 | ||
6249 | ||
6250 | ||
6251 | ||
6252 | ||
6253 | ||
6254 | ||
6255 | ||
6256 | ||
6257 | ||
6258 | ||
6259 | ||
6260 | ||
6261 | ||
6262 | ||
6263 | ||
6264 | ||
6265 | ||
6266 | ||
6267 | ||
6268 | ||
6269 | ||
6270 | ||
6271 | ||
6272 | ||
6273 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 | |
6274 | $as_echo_n "checking for -single_module linker flag... " >&6; } | |
d0ac1c44 | 6275 | if ${lt_cv_apple_cc_single_mod+:} false; then : |
6bb11ab3 L |
6276 | $as_echo_n "(cached) " >&6 |
6277 | else | |
6278 | lt_cv_apple_cc_single_mod=no | |
6279 | if test -z "${LT_MULTI_MODULE}"; then | |
6280 | # By default we will add the -single_module flag. You can override | |
6281 | # by either setting the environment variable LT_MULTI_MODULE | |
6282 | # non-empty at configure time, or by adding -multi_module to the | |
6283 | # link flags. | |
6284 | rm -rf libconftest.dylib* | |
6285 | echo "int foo(void){return 1;}" > conftest.c | |
6286 | echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ | |
6287 | -dynamiclib -Wl,-single_module conftest.c" >&5 | |
6288 | $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ | |
6289 | -dynamiclib -Wl,-single_module conftest.c 2>conftest.err | |
6290 | _lt_result=$? | |
6291 | if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then | |
6292 | lt_cv_apple_cc_single_mod=yes | |
6293 | else | |
6294 | cat conftest.err >&5 | |
6295 | fi | |
6296 | rm -rf libconftest.dylib* | |
6297 | rm -f conftest.* | |
6298 | fi | |
6299 | fi | |
6300 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 | |
6301 | $as_echo "$lt_cv_apple_cc_single_mod" >&6; } | |
6302 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 | |
6303 | $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } | |
d0ac1c44 | 6304 | if ${lt_cv_ld_exported_symbols_list+:} false; then : |
6bb11ab3 L |
6305 | $as_echo_n "(cached) " >&6 |
6306 | else | |
6307 | lt_cv_ld_exported_symbols_list=no | |
6308 | save_LDFLAGS=$LDFLAGS | |
6309 | echo "_main" > conftest.sym | |
6310 | LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" | |
6311 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
6312 | /* end confdefs.h. */ | |
6313 | ||
6314 | int | |
6315 | main () | |
6316 | { | |
6317 | ||
6318 | ; | |
6319 | return 0; | |
6320 | } | |
6321 | _ACEOF | |
6322 | if ac_fn_c_try_link "$LINENO"; then : | |
6323 | lt_cv_ld_exported_symbols_list=yes | |
6324 | else | |
6325 | lt_cv_ld_exported_symbols_list=no | |
6326 | fi | |
6327 | rm -f core conftest.err conftest.$ac_objext \ | |
6328 | conftest$ac_exeext conftest.$ac_ext | |
6329 | LDFLAGS="$save_LDFLAGS" | |
6330 | ||
6331 | fi | |
6332 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 | |
6333 | $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } | |
6334 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 | |
6335 | $as_echo_n "checking for -force_load linker flag... " >&6; } | |
d0ac1c44 | 6336 | if ${lt_cv_ld_force_load+:} false; then : |
6bb11ab3 L |
6337 | $as_echo_n "(cached) " >&6 |
6338 | else | |
6339 | lt_cv_ld_force_load=no | |
6340 | cat > conftest.c << _LT_EOF | |
6341 | int forced_loaded() { return 2;} | |
6342 | _LT_EOF | |
6343 | echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 | |
6344 | $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 | |
6345 | echo "$AR cru libconftest.a conftest.o" >&5 | |
6346 | $AR cru libconftest.a conftest.o 2>&5 | |
6347 | cat > conftest.c << _LT_EOF | |
6348 | int main() { return 0;} | |
6349 | _LT_EOF | |
6350 | echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 | |
6351 | $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err | |
6352 | _lt_result=$? | |
6353 | if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then | |
6354 | lt_cv_ld_force_load=yes | |
6355 | else | |
6356 | cat conftest.err >&5 | |
6357 | fi | |
6358 | rm -f conftest.err libconftest.a conftest conftest.c | |
6359 | rm -rf conftest.dSYM | |
6360 | ||
6361 | fi | |
6362 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 | |
6363 | $as_echo "$lt_cv_ld_force_load" >&6; } | |
6364 | case $host_os in | |
6365 | rhapsody* | darwin1.[012]) | |
6366 | _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; | |
6367 | darwin1.*) | |
6368 | _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; | |
6369 | darwin*) # darwin 5.x on | |
6370 | # if running on 10.5 or later, the deployment target defaults | |
6371 | # to the OS version, if on x86, and 10.4, the deployment | |
6372 | # target defaults to 10.4. Don't you love it? | |
6373 | case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in | |
6374 | 10.0,*86*-darwin8*|10.0,*-darwin[91]*) | |
6375 | _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; | |
ae7d0cac | 6376 | 10.[012][,.]*) |
6bb11ab3 L |
6377 | _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; |
6378 | 10.*) | |
6379 | _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; | |
6380 | esac | |
6381 | ;; | |
6382 | esac | |
6383 | if test "$lt_cv_apple_cc_single_mod" = "yes"; then | |
6384 | _lt_dar_single_mod='$single_module' | |
6385 | fi | |
6386 | if test "$lt_cv_ld_exported_symbols_list" = "yes"; then | |
6387 | _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' | |
6388 | else | |
6389 | _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' | |
6390 | fi | |
6391 | if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then | |
6392 | _lt_dsymutil='~$DSYMUTIL $lib || :' | |
6393 | else | |
6394 | _lt_dsymutil= | |
6395 | fi | |
6396 | ;; | |
6397 | esac | |
6398 | ||
6399 | for ac_header in dlfcn.h | |
6400 | do : | |
6401 | ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default | |
6402 | " | |
d0ac1c44 | 6403 | if test "x$ac_cv_header_dlfcn_h" = xyes; then : |
6bb11ab3 L |
6404 | cat >>confdefs.h <<_ACEOF |
6405 | #define HAVE_DLFCN_H 1 | |
6406 | _ACEOF | |
6407 | ||
6408 | fi | |
6409 | ||
6410 | done | |
6411 | ||
6412 | ||
6413 | ||
ebe9564b | 6414 | |
6bb11ab3 | 6415 | |
0cb8d851 MF |
6416 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 |
6417 | $as_echo_n "checking whether byte ordering is bigendian... " >&6; } | |
d0ac1c44 | 6418 | if ${ac_cv_c_bigendian+:} false; then : |
0cb8d851 MF |
6419 | $as_echo_n "(cached) " >&6 |
6420 | else | |
6421 | ac_cv_c_bigendian=unknown | |
6422 | # See if we're dealing with a universal compiler. | |
6423 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
6424 | /* end confdefs.h. */ | |
6425 | #ifndef __APPLE_CC__ | |
6426 | not a universal capable compiler | |
6427 | #endif | |
6428 | typedef int dummy; | |
6429 | ||
6430 | _ACEOF | |
6431 | if ac_fn_c_try_compile "$LINENO"; then : | |
6432 | ||
6433 | # Check for potential -arch flags. It is not universal unless | |
6434 | # there are at least two -arch flags with different values. | |
6435 | ac_arch= | |
6436 | ac_prev= | |
6437 | for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do | |
6438 | if test -n "$ac_prev"; then | |
6439 | case $ac_word in | |
6440 | i?86 | x86_64 | ppc | ppc64) | |
6441 | if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then | |
6442 | ac_arch=$ac_word | |
6443 | else | |
6444 | ac_cv_c_bigendian=universal | |
6445 | break | |
6446 | fi | |
6447 | ;; | |
6448 | esac | |
6449 | ac_prev= | |
6450 | elif test "x$ac_word" = "x-arch"; then | |
6451 | ac_prev=arch | |
6452 | fi | |
6453 | done | |
6454 | fi | |
6455 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
6456 | if test $ac_cv_c_bigendian = unknown; then | |
6457 | # See if sys/param.h defines the BYTE_ORDER macro. | |
6458 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
6459 | /* end confdefs.h. */ | |
6460 | #include <sys/types.h> | |
6461 | #include <sys/param.h> | |
6462 | ||
6463 | int | |
6464 | main () | |
6465 | { | |
6466 | #if ! (defined BYTE_ORDER && defined BIG_ENDIAN \ | |
6467 | && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \ | |
6468 | && LITTLE_ENDIAN) | |
6469 | bogus endian macros | |
6470 | #endif | |
6471 | ||
6472 | ; | |
6473 | return 0; | |
6474 | } | |
6475 | _ACEOF | |
6476 | if ac_fn_c_try_compile "$LINENO"; then : | |
6477 | # It does; now see whether it defined to BIG_ENDIAN or not. | |
6478 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
6479 | /* end confdefs.h. */ | |
6480 | #include <sys/types.h> | |
6481 | #include <sys/param.h> | |
6482 | ||
6483 | int | |
6484 | main () | |
6485 | { | |
6486 | #if BYTE_ORDER != BIG_ENDIAN | |
6487 | not big endian | |
6488 | #endif | |
6489 | ||
6490 | ; | |
6491 | return 0; | |
6492 | } | |
6493 | _ACEOF | |
6494 | if ac_fn_c_try_compile "$LINENO"; then : | |
6495 | ac_cv_c_bigendian=yes | |
6496 | else | |
6497 | ac_cv_c_bigendian=no | |
6498 | fi | |
6499 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
6500 | fi | |
6501 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
6502 | fi | |
6503 | if test $ac_cv_c_bigendian = unknown; then | |
6504 | # See if <limits.h> defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). | |
6505 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
6506 | /* end confdefs.h. */ | |
6507 | #include <limits.h> | |
6508 | ||
6509 | int | |
6510 | main () | |
6511 | { | |
6512 | #if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) | |
6513 | bogus endian macros | |
6514 | #endif | |
6515 | ||
6516 | ; | |
6517 | return 0; | |
6518 | } | |
6519 | _ACEOF | |
6520 | if ac_fn_c_try_compile "$LINENO"; then : | |
6521 | # It does; now see whether it defined to _BIG_ENDIAN or not. | |
6522 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
6523 | /* end confdefs.h. */ | |
6524 | #include <limits.h> | |
6525 | ||
6526 | int | |
6527 | main () | |
6528 | { | |
6529 | #ifndef _BIG_ENDIAN | |
6530 | not big endian | |
6531 | #endif | |
6532 | ||
6533 | ; | |
6534 | return 0; | |
6535 | } | |
6536 | _ACEOF | |
6537 | if ac_fn_c_try_compile "$LINENO"; then : | |
6538 | ac_cv_c_bigendian=yes | |
6539 | else | |
6540 | ac_cv_c_bigendian=no | |
6541 | fi | |
6542 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
6543 | fi | |
6544 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
6545 | fi | |
6546 | if test $ac_cv_c_bigendian = unknown; then | |
6547 | # Compile a test program. | |
6548 | if test "$cross_compiling" = yes; then : | |
6549 | # Try to guess by grepping values from an object file. | |
6550 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
6551 | /* end confdefs.h. */ | |
6552 | short int ascii_mm[] = | |
6553 | { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; | |
6554 | short int ascii_ii[] = | |
6555 | { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; | |
6556 | int use_ascii (int i) { | |
6557 | return ascii_mm[i] + ascii_ii[i]; | |
6558 | } | |
6559 | short int ebcdic_ii[] = | |
6560 | { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; | |
6561 | short int ebcdic_mm[] = | |
6562 | { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; | |
6563 | int use_ebcdic (int i) { | |
6564 | return ebcdic_mm[i] + ebcdic_ii[i]; | |
6565 | } | |
6566 | extern int foo; | |
6567 | ||
6568 | int | |
6569 | main () | |
6570 | { | |
6571 | return use_ascii (foo) == use_ebcdic (foo); | |
6572 | ; | |
6573 | return 0; | |
6574 | } | |
6575 | _ACEOF | |
6576 | if ac_fn_c_try_compile "$LINENO"; then : | |
6577 | if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then | |
6578 | ac_cv_c_bigendian=yes | |
6579 | fi | |
6580 | if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then | |
6581 | if test "$ac_cv_c_bigendian" = unknown; then | |
6582 | ac_cv_c_bigendian=no | |
6583 | else | |
6584 | # finding both strings is unlikely to happen, but who knows? | |
6585 | ac_cv_c_bigendian=unknown | |
6586 | fi | |
6587 | fi | |
6588 | fi | |
6589 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
6590 | else | |
6591 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
6592 | /* end confdefs.h. */ | |
6593 | $ac_includes_default | |
6594 | int | |
6595 | main () | |
6596 | { | |
6597 | ||
6598 | /* Are we little or big endian? From Harbison&Steele. */ | |
6599 | union | |
6600 | { | |
6601 | long int l; | |
6602 | char c[sizeof (long int)]; | |
6603 | } u; | |
6604 | u.l = 1; | |
6605 | return u.c[sizeof (long int) - 1] == 1; | |
6606 | ||
6607 | ; | |
6608 | return 0; | |
6609 | } | |
6610 | _ACEOF | |
6611 | if ac_fn_c_try_run "$LINENO"; then : | |
6612 | ac_cv_c_bigendian=no | |
6613 | else | |
6614 | ac_cv_c_bigendian=yes | |
6615 | fi | |
6616 | rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ | |
6617 | conftest.$ac_objext conftest.beam conftest.$ac_ext | |
6618 | fi | |
6619 | ||
6620 | fi | |
6621 | fi | |
6622 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5 | |
6623 | $as_echo "$ac_cv_c_bigendian" >&6; } | |
6624 | case $ac_cv_c_bigendian in #( | |
6625 | yes) | |
6626 | $as_echo "#define WORDS_BIGENDIAN 1" >>confdefs.h | |
6627 | ;; #( | |
6628 | no) | |
6629 | ;; #( | |
6630 | universal) | |
6631 | ||
6632 | $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h | |
6633 | ||
6634 | ;; #( | |
6635 | *) | |
d0ac1c44 | 6636 | as_fn_error $? "unknown endianness |
0cb8d851 MF |
6637 | presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; |
6638 | esac | |
6639 | ||
6bb11ab3 L |
6640 | |
6641 | ||
6642 | ||
c25ea03d | 6643 | if test "x$cross_compiling" = "xno"; then |
aa0fca16 | 6644 | : "${AR_FOR_BUILD:=\$(AR)}" |
c25ea03d | 6645 | : "${CC_FOR_BUILD:=\$(CC)}" |
aa0fca16 | 6646 | : "${RANLIB_FOR_BUILD:=\$(RANLIB)}" |
c25ea03d | 6647 | : "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}" |
c2783492 | 6648 | : "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}" |
c25ea03d | 6649 | else |
aa0fca16 | 6650 | : "${AR_FOR_BUILD:=ar}" |
c25ea03d | 6651 | : "${CC_FOR_BUILD:=gcc}" |
aa0fca16 | 6652 | : "${RANLIB_FOR_BUILD:=ranlib}" |
c25ea03d | 6653 | : "${CFLAGS_FOR_BUILD:=-g -O}" |
c2783492 | 6654 | : "${LDLFAGS_FOR_BUILD:=}" |
6bb11ab3 L |
6655 | fi |
6656 | ||
6657 | ||
6658 | ||
c25ea03d | 6659 | |
c2783492 | 6660 | |
aa0fca16 MF |
6661 | |
6662 | ||
a3e2cc64 MF |
6663 | if test -n "$ac_tool_prefix"; then |
6664 | # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. | |
6665 | set dummy ${ac_tool_prefix}ar; ac_word=$2 | |
6666 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
6667 | $as_echo_n "checking for $ac_word... " >&6; } | |
6668 | if ${ac_cv_prog_AR+:} false; then : | |
6669 | $as_echo_n "(cached) " >&6 | |
6670 | else | |
6671 | if test -n "$AR"; then | |
6672 | ac_cv_prog_AR="$AR" # Let the user override the test. | |
6673 | else | |
6674 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
6675 | for as_dir in $PATH | |
6676 | do | |
6677 | IFS=$as_save_IFS | |
6678 | test -z "$as_dir" && as_dir=. | |
6679 | for ac_exec_ext in '' $ac_executable_extensions; do | |
6680 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | |
6681 | ac_cv_prog_AR="${ac_tool_prefix}ar" | |
6682 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
6683 | break 2 | |
6684 | fi | |
6685 | done | |
6686 | done | |
6687 | IFS=$as_save_IFS | |
6688 | ||
6689 | fi | |
6690 | fi | |
6691 | AR=$ac_cv_prog_AR | |
6692 | if test -n "$AR"; then | |
6693 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 | |
6694 | $as_echo "$AR" >&6; } | |
6695 | else | |
6696 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
6697 | $as_echo "no" >&6; } | |
6698 | fi | |
6699 | ||
6700 | ||
6701 | fi | |
6702 | if test -z "$ac_cv_prog_AR"; then | |
6703 | ac_ct_AR=$AR | |
6704 | # Extract the first word of "ar", so it can be a program name with args. | |
6705 | set dummy ar; ac_word=$2 | |
6706 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
6707 | $as_echo_n "checking for $ac_word... " >&6; } | |
6708 | if ${ac_cv_prog_ac_ct_AR+:} false; then : | |
6709 | $as_echo_n "(cached) " >&6 | |
6710 | else | |
6711 | if test -n "$ac_ct_AR"; then | |
6712 | ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. | |
6713 | else | |
6714 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
6715 | for as_dir in $PATH | |
6716 | do | |
6717 | IFS=$as_save_IFS | |
6718 | test -z "$as_dir" && as_dir=. | |
6719 | for ac_exec_ext in '' $ac_executable_extensions; do | |
6720 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then | |
6721 | ac_cv_prog_ac_ct_AR="ar" | |
6722 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
6723 | break 2 | |
6724 | fi | |
6725 | done | |
6726 | done | |
6727 | IFS=$as_save_IFS | |
6728 | ||
6729 | fi | |
6730 | fi | |
6731 | ac_ct_AR=$ac_cv_prog_ac_ct_AR | |
6732 | if test -n "$ac_ct_AR"; then | |
6733 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 | |
6734 | $as_echo "$ac_ct_AR" >&6; } | |
6735 | else | |
6736 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
6737 | $as_echo "no" >&6; } | |
6738 | fi | |
6739 | ||
6740 | if test "x$ac_ct_AR" = x; then | |
6741 | AR="" | |
6742 | else | |
6743 | case $cross_compiling:$ac_tool_warned in | |
6744 | yes:) | |
6745 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
6746 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
6747 | ac_tool_warned=yes ;; | |
6748 | esac | |
6749 | AR=$ac_ct_AR | |
6750 | fi | |
6751 | else | |
6752 | AR="$ac_cv_prog_AR" | |
6753 | fi | |
6bb11ab3 L |
6754 | |
6755 | if test -n "$ac_tool_prefix"; then | |
6756 | # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. | |
6757 | set dummy ${ac_tool_prefix}ranlib; ac_word=$2 | |
6758 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
6759 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 6760 | if ${ac_cv_prog_RANLIB+:} false; then : |
6bb11ab3 L |
6761 | $as_echo_n "(cached) " >&6 |
6762 | else | |
6763 | if test -n "$RANLIB"; then | |
6764 | ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. | |
6765 | else | |
6766 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
6767 | for as_dir in $PATH | |
6768 | do | |
6769 | IFS=$as_save_IFS | |
6770 | test -z "$as_dir" && as_dir=. | |
6771 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 6772 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
6773 | ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" |
6774 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
6775 | break 2 | |
6776 | fi | |
6777 | done | |
6778 | done | |
6779 | IFS=$as_save_IFS | |
6780 | ||
6781 | fi | |
6782 | fi | |
6783 | RANLIB=$ac_cv_prog_RANLIB | |
6784 | if test -n "$RANLIB"; then | |
6785 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 | |
6786 | $as_echo "$RANLIB" >&6; } | |
6787 | else | |
6788 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
6789 | $as_echo "no" >&6; } | |
6790 | fi | |
6791 | ||
6792 | ||
6793 | fi | |
6794 | if test -z "$ac_cv_prog_RANLIB"; then | |
6795 | ac_ct_RANLIB=$RANLIB | |
6796 | # Extract the first word of "ranlib", so it can be a program name with args. | |
6797 | set dummy ranlib; ac_word=$2 | |
6798 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 | |
6799 | $as_echo_n "checking for $ac_word... " >&6; } | |
d0ac1c44 | 6800 | if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : |
6bb11ab3 L |
6801 | $as_echo_n "(cached) " >&6 |
6802 | else | |
6803 | if test -n "$ac_ct_RANLIB"; then | |
6804 | ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. | |
6805 | else | |
6806 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
6807 | for as_dir in $PATH | |
6808 | do | |
6809 | IFS=$as_save_IFS | |
6810 | test -z "$as_dir" && as_dir=. | |
6811 | for ac_exec_ext in '' $ac_executable_extensions; do | |
d0ac1c44 | 6812 | if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then |
6bb11ab3 L |
6813 | ac_cv_prog_ac_ct_RANLIB="ranlib" |
6814 | $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 | |
6815 | break 2 | |
6816 | fi | |
6817 | done | |
6818 | done | |
6819 | IFS=$as_save_IFS | |
6820 | ||
6821 | fi | |
6822 | fi | |
6823 | ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB | |
6824 | if test -n "$ac_ct_RANLIB"; then | |
6825 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 | |
6826 | $as_echo "$ac_ct_RANLIB" >&6; } | |
6827 | else | |
6828 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
6829 | $as_echo "no" >&6; } | |
6830 | fi | |
6831 | ||
6832 | if test "x$ac_ct_RANLIB" = x; then | |
6833 | RANLIB=":" | |
6834 | else | |
6835 | case $cross_compiling:$ac_tool_warned in | |
6836 | yes:) | |
6837 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 | |
6838 | $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} | |
6839 | ac_tool_warned=yes ;; | |
6840 | esac | |
6841 | RANLIB=$ac_ct_RANLIB | |
6842 | fi | |
6843 | else | |
6844 | RANLIB="$ac_cv_prog_RANLIB" | |
6845 | fi | |
6846 | ||
6847 | ||
46f900c0 MF |
6848 | # Require C11 or newer. Autoconf-2.70 provides ac_cv_prog_cc_c11 when using |
6849 | # AC_PROG_CC, but we're still using Autoconf-2.69, and the newest it understands | |
6850 | # is C99. So handle it ourselves. | |
6851 | : | |
6852 | C_DIALECT= | |
6853 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C11 is supported by default" >&5 | |
6854 | $as_echo_n "checking whether C11 is supported by default... " >&6; } | |
6855 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
6856 | /* end confdefs.h. */ | |
6857 | ||
6858 | #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L | |
6859 | # error "C11 support not found" | |
6860 | #endif | |
6861 | ||
6862 | _ACEOF | |
6863 | if ac_fn_c_try_compile "$LINENO"; then : | |
6864 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | |
6865 | $as_echo "yes" >&6; } | |
6866 | else | |
6867 | ||
6868 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
6869 | $as_echo "no" >&6; } | |
6870 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -std=c11 support" >&5 | |
6871 | $as_echo_n "checking for -std=c11 support... " >&6; } | |
6872 | ac_save_CC="$CC" | |
6873 | CC="$CC -std=c11" | |
6874 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
6875 | /* end confdefs.h. */ | |
6876 | ||
6877 | #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L | |
6878 | # error "C11 support not found" | |
6879 | #endif | |
6880 | ||
6881 | _ACEOF | |
6882 | if ac_fn_c_try_compile "$LINENO"; then : | |
6883 | ||
6884 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | |
6885 | $as_echo "yes" >&6; } | |
6886 | CC="$ac_save_CC" | |
6887 | C_DIALECT="-std=c11" | |
6888 | ||
6889 | else | |
6890 | as_fn_error $? "C11 is required" "$LINENO" 5 | |
6891 | fi | |
6892 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
6893 | fi | |
6894 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
6895 | ||
6896 | ||
c2783492 MF |
6897 | ac_config_headers="$ac_config_headers config.h:config.in" |
6898 | ||
6899 | ||
6bb11ab3 L |
6900 | # Some of the common include files depend on bfd.h, and bfd.h checks |
6901 | # that config.h is included first by testing that the PACKAGE macro | |
6902 | # is defined. | |
6903 | PACKAGE=sim | |
6904 | ||
6905 | cat >>confdefs.h <<_ACEOF | |
6906 | #define PACKAGE "$PACKAGE" | |
6907 | _ACEOF | |
6908 | ||
6909 | ||
6910 | ||
6911 | # Dependency checking. | |
6912 | ac_config_commands="$ac_config_commands depdir" | |
6913 | ||
6914 | ||
6915 | depcc="$CC" am_compiler_list= | |
6916 | ||
6917 | am_depcomp=$ac_aux_dir/depcomp | |
6918 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 | |
6919 | $as_echo_n "checking dependency style of $depcc... " >&6; } | |
d0ac1c44 | 6920 | if ${am_cv_CC_dependencies_compiler_type+:} false; then : |
6bb11ab3 L |
6921 | $as_echo_n "(cached) " >&6 |
6922 | else | |
6923 | if test -f "$am_depcomp"; then | |
6924 | # We make a subdir and do the tests there. Otherwise we can end up | |
6925 | # making bogus files that we don't know about and never remove. For | |
6926 | # instance it was reported that on HP-UX the gcc test will end up | |
6927 | # making a dummy file named `D' -- because `-MD' means `put the output | |
6928 | # in D'. | |
6929 | mkdir conftest.dir | |
6930 | # Copy depcomp to subdir because otherwise we won't find it if we're | |
6931 | # using a relative directory. | |
6932 | cp "$am_depcomp" conftest.dir | |
6933 | cd conftest.dir | |
6934 | # We will build objects and dependencies in a subdirectory because | |
6935 | # it helps to detect inapplicable dependency modes. For instance | |
6936 | # both Tru64's cc and ICC support -MD to output dependencies as a | |
6937 | # side effect of compilation, but ICC will put the dependencies in | |
6938 | # the current directory while Tru64 will put them in the object | |
6939 | # directory. | |
6940 | mkdir sub | |
6941 | ||
6942 | am_cv_CC_dependencies_compiler_type=none | |
6943 | if test "$am_compiler_list" = ""; then | |
6944 | am_compiler_list=`sed -n 's/^\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` | |
6945 | fi | |
6946 | for depmode in $am_compiler_list; do | |
6947 | if test $depmode = none; then break; fi | |
6948 | ||
6949 | $as_echo "$as_me:$LINENO: trying $depmode" >&5 | |
6950 | # Setup a source with many dependencies, because some compilers | |
6951 | # like to wrap large dependency lists on column 80 (with \), and | |
6952 | # we should not choose a depcomp mode which is confused by this. | |
6953 | # | |
6954 | # We need to recreate these files for each test, as the compiler may | |
6955 | # overwrite some of them when testing with obscure command lines. | |
6956 | # This happens at least with the AIX C compiler. | |
6957 | : > sub/conftest.c | |
6958 | for i in 1 2 3 4 5 6; do | |
6959 | echo '#include "conftst'$i'.h"' >> sub/conftest.c | |
6960 | # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with | |
6961 | # Solaris 8's {/usr,}/bin/sh. | |
6962 | touch sub/conftst$i.h | |
6963 | done | |
6964 | echo "include sub/conftest.Po" > confmf | |
6965 | ||
6966 | # We check with `-c' and `-o' for the sake of the "dashmstdout" | |
6967 | # mode. It turns out that the SunPro C++ compiler does not properly | |
6968 | # handle `-M -o', and we need to detect this. | |
6969 | depcmd="depmode=$depmode \ | |
6970 | source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ | |
6971 | depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ | |
6972 | $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c" | |
6973 | echo "| $depcmd" | sed -e 's/ */ /g' >&5 | |
6974 | if env $depcmd > conftest.err 2>&1 && | |
6975 | grep sub/conftst6.h sub/conftest.Po >>conftest.err 2>&1 && | |
6976 | grep sub/conftest.${OBJEXT-o} sub/conftest.Po >>conftest.err 2>&1 && | |
6977 | ${MAKE-make} -s -f confmf >>conftest.err 2>&1; then | |
6978 | # icc doesn't choke on unknown options, it will just issue warnings | |
6979 | # or remarks (even with -Werror). So we grep stderr for any message | |
6980 | # that says an option was ignored or not supported. | |
6981 | # When given -MP, icc 7.0 and 7.1 complain thusly: | |
6982 | # icc: Command line warning: ignoring option '-M'; no argument required | |
6983 | # The diagnosis changed in icc 8.0: | |
6984 | # icc: Command line remark: option '-MP' not supported | |
6985 | if (grep 'ignoring option' conftest.err || | |
6986 | grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else | |
6987 | am_cv_CC_dependencies_compiler_type=$depmode | |
6988 | $as_echo "$as_me:$LINENO: success" >&5 | |
6989 | break | |
6990 | fi | |
6991 | fi | |
6992 | $as_echo "$as_me:$LINENO: failure, diagnostics are:" >&5 | |
6993 | sed -e 's/^/| /' < conftest.err >&5 | |
6994 | done | |
6995 | ||
6996 | cd .. | |
6997 | rm -rf conftest.dir | |
6998 | else | |
6999 | am_cv_CC_dependencies_compiler_type=none | |
7000 | fi | |
7001 | ||
7002 | fi | |
7003 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 | |
7004 | $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } | |
7005 | if test x${am_cv_CC_dependencies_compiler_type-none} = xnone | |
d0ac1c44 | 7006 | then as_fn_error $? "no usable dependency style found" "$LINENO" 5 |
6bb11ab3 L |
7007 | else CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type |
7008 | ||
7009 | fi | |
7010 | ||
7011 | ||
6bb11ab3 L |
7012 | ALL_LINGUAS= |
7013 | # If we haven't got the data from the intl directory, | |
7014 | # assume NLS is disabled. | |
7015 | USE_NLS=no | |
7016 | LIBINTL= | |
7017 | LIBINTL_DEP= | |
7018 | INCINTL= | |
7019 | XGETTEXT= | |
7020 | GMSGFMT= | |
7021 | POSUB= | |
7022 | ||
7023 | if test -f ../../intl/config.intl; then | |
7024 | . ../../intl/config.intl | |
7025 | fi | |
7026 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 | |
7027 | $as_echo_n "checking whether NLS is requested... " >&6; } | |
7028 | if test x"$USE_NLS" != xyes; then | |
7029 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
7030 | $as_echo "no" >&6; } | |
7031 | else | |
7032 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | |
7033 | $as_echo "yes" >&6; } | |
7034 | ||
7035 | $as_echo "#define ENABLE_NLS 1" >>confdefs.h | |
7036 | ||
7037 | ||
7038 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5 | |
7039 | $as_echo_n "checking for catalogs to be installed... " >&6; } | |
7040 | # Look for .po and .gmo files in the source directory. | |
7041 | CATALOGS= | |
7042 | XLINGUAS= | |
7043 | for cat in $srcdir/po/*.gmo $srcdir/po/*.po; do | |
7044 | # If there aren't any .gmo files the shell will give us the | |
7045 | # literal string "../path/to/srcdir/po/*.gmo" which has to be | |
7046 | # weeded out. | |
7047 | case "$cat" in *\**) | |
7048 | continue;; | |
7049 | esac | |
7050 | # The quadruple backslash is collapsed to a double backslash | |
7051 | # by the backticks, then collapsed again by the double quotes, | |
7052 | # leaving us with one backslash in the sed expression (right | |
7053 | # before the dot that mustn't act as a wildcard). | |
7054 | cat=`echo $cat | sed -e "s!$srcdir/po/!!" -e "s!\\\\.po!.gmo!"` | |
7055 | lang=`echo $cat | sed -e "s!\\\\.gmo!!"` | |
7056 | # The user is allowed to set LINGUAS to a list of languages to | |
7057 | # install catalogs for. If it's empty that means "all of them." | |
7058 | if test "x$LINGUAS" = x; then | |
7059 | CATALOGS="$CATALOGS $cat" | |
7060 | XLINGUAS="$XLINGUAS $lang" | |
7061 | else | |
7062 | case "$LINGUAS" in *$lang*) | |
7063 | CATALOGS="$CATALOGS $cat" | |
7064 | XLINGUAS="$XLINGUAS $lang" | |
7065 | ;; | |
7066 | esac | |
7067 | fi | |
7068 | done | |
7069 | LINGUAS="$XLINGUAS" | |
7070 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5 | |
7071 | $as_echo "$LINGUAS" >&6; } | |
7072 | ||
7073 | ||
7074 | DATADIRNAME=share | |
7075 | ||
7076 | INSTOBJEXT=.mo | |
7077 | ||
7078 | GENCAT=gencat | |
7079 | ||
7080 | CATOBJEXT=.gmo | |
7081 | ||
7082 | fi | |
7083 | ||
6bb11ab3 L |
7084 | # Check for socket libraries |
7085 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bind in -lsocket" >&5 | |
7086 | $as_echo_n "checking for bind in -lsocket... " >&6; } | |
d0ac1c44 | 7087 | if ${ac_cv_lib_socket_bind+:} false; then : |
6bb11ab3 L |
7088 | $as_echo_n "(cached) " >&6 |
7089 | else | |
7090 | ac_check_lib_save_LIBS=$LIBS | |
7091 | LIBS="-lsocket $LIBS" | |
7092 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
7093 | /* end confdefs.h. */ | |
7094 | ||
7095 | /* Override any GCC internal prototype to avoid an error. | |
7096 | Use char because int might match the return type of a GCC | |
7097 | builtin and then its argument prototype would still apply. */ | |
7098 | #ifdef __cplusplus | |
7099 | extern "C" | |
7100 | #endif | |
7101 | char bind (); | |
7102 | int | |
7103 | main () | |
7104 | { | |
7105 | return bind (); | |
7106 | ; | |
7107 | return 0; | |
7108 | } | |
7109 | _ACEOF | |
7110 | if ac_fn_c_try_link "$LINENO"; then : | |
7111 | ac_cv_lib_socket_bind=yes | |
7112 | else | |
7113 | ac_cv_lib_socket_bind=no | |
7114 | fi | |
7115 | rm -f core conftest.err conftest.$ac_objext \ | |
7116 | conftest$ac_exeext conftest.$ac_ext | |
7117 | LIBS=$ac_check_lib_save_LIBS | |
7118 | fi | |
7119 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_bind" >&5 | |
7120 | $as_echo "$ac_cv_lib_socket_bind" >&6; } | |
d0ac1c44 | 7121 | if test "x$ac_cv_lib_socket_bind" = xyes; then : |
6bb11ab3 L |
7122 | cat >>confdefs.h <<_ACEOF |
7123 | #define HAVE_LIBSOCKET 1 | |
7124 | _ACEOF | |
7125 | ||
7126 | LIBS="-lsocket $LIBS" | |
7127 | ||
7128 | fi | |
7129 | ||
7130 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 | |
7131 | $as_echo_n "checking for gethostbyname in -lnsl... " >&6; } | |
d0ac1c44 | 7132 | if ${ac_cv_lib_nsl_gethostbyname+:} false; then : |
6bb11ab3 L |
7133 | $as_echo_n "(cached) " >&6 |
7134 | else | |
7135 | ac_check_lib_save_LIBS=$LIBS | |
7136 | LIBS="-lnsl $LIBS" | |
7137 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
7138 | /* end confdefs.h. */ | |
7139 | ||
7140 | /* Override any GCC internal prototype to avoid an error. | |
7141 | Use char because int might match the return type of a GCC | |
7142 | builtin and then its argument prototype would still apply. */ | |
7143 | #ifdef __cplusplus | |
7144 | extern "C" | |
7145 | #endif | |
7146 | char gethostbyname (); | |
7147 | int | |
7148 | main () | |
7149 | { | |
7150 | return gethostbyname (); | |
7151 | ; | |
7152 | return 0; | |
7153 | } | |
7154 | _ACEOF | |
7155 | if ac_fn_c_try_link "$LINENO"; then : | |
7156 | ac_cv_lib_nsl_gethostbyname=yes | |
7157 | else | |
7158 | ac_cv_lib_nsl_gethostbyname=no | |
7159 | fi | |
7160 | rm -f core conftest.err conftest.$ac_objext \ | |
7161 | conftest$ac_exeext conftest.$ac_ext | |
7162 | LIBS=$ac_check_lib_save_LIBS | |
7163 | fi | |
7164 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 | |
7165 | $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } | |
d0ac1c44 | 7166 | if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then : |
6bb11ab3 L |
7167 | cat >>confdefs.h <<_ACEOF |
7168 | #define HAVE_LIBNSL 1 | |
7169 | _ACEOF | |
7170 | ||
7171 | LIBS="-lnsl $LIBS" | |
7172 | ||
7173 | fi | |
7174 | ||
7175 | ||
7176 | # BFD conditionally uses zlib, so we must link it in if libbfd does, by | |
7177 | # using the same condition. | |
7178 | ||
aadc9410 | 7179 | # Use the system's zlib library. |
7fed4b0b L |
7180 | zlibdir="-L\$(top_builddir)/../zlib" |
7181 | zlibinc="-I\$(top_srcdir)/../zlib" | |
6bb11ab3 | 7182 | |
aadc9410 MF |
7183 | # Check whether --with-system-zlib was given. |
7184 | if test "${with_system_zlib+set}" = set; then : | |
0ceaf1ec L |
7185 | withval=$with_system_zlib; if test x$with_system_zlib = xyes ; then |
7186 | zlibdir= | |
7187 | zlibinc= | |
7188 | fi | |
6bb11ab3 L |
7189 | |
7190 | fi | |
7191 | ||
6bb11ab3 | 7192 | |
6bb11ab3 | 7193 | |
6bb11ab3 L |
7194 | |
7195 | ||
7196 | # BFD uses libdl when when plugins enabled. | |
7197 | ||
faa743bb RM |
7198 | maybe_plugins=no |
7199 | for ac_header in dlfcn.h | |
7200 | do : | |
7201 | ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default | |
7202 | " | |
d0ac1c44 | 7203 | if test "x$ac_cv_header_dlfcn_h" = xyes; then : |
faa743bb RM |
7204 | cat >>confdefs.h <<_ACEOF |
7205 | #define HAVE_DLFCN_H 1 | |
7206 | _ACEOF | |
7207 | maybe_plugins=yes | |
7208 | fi | |
7209 | ||
7210 | done | |
7211 | ||
7212 | for ac_header in windows.h | |
7213 | do : | |
7214 | ac_fn_c_check_header_compile "$LINENO" "windows.h" "ac_cv_header_windows_h" "$ac_includes_default | |
7215 | " | |
d0ac1c44 | 7216 | if test "x$ac_cv_header_windows_h" = xyes; then : |
faa743bb RM |
7217 | cat >>confdefs.h <<_ACEOF |
7218 | #define HAVE_WINDOWS_H 1 | |
7219 | _ACEOF | |
7220 | maybe_plugins=yes | |
7221 | fi | |
7222 | ||
7223 | done | |
7224 | ||
7225 | ||
7226 | # Check whether --enable-plugins was given. | |
6bb11ab3 L |
7227 | if test "${enable_plugins+set}" = set; then : |
7228 | enableval=$enable_plugins; case "${enableval}" in | |
faa743bb RM |
7229 | no) plugins=no ;; |
7230 | *) plugins=yes | |
7231 | if test "$maybe_plugins" != "yes" ; then | |
d0ac1c44 | 7232 | as_fn_error $? "Building with plugin support requires a host that supports dlopen." "$LINENO" 5 |
faa743bb RM |
7233 | fi ;; |
7234 | esac | |
6bb11ab3 | 7235 | else |
faa743bb RM |
7236 | plugins=$maybe_plugins |
7237 | ||
6bb11ab3 L |
7238 | fi |
7239 | ||
2974be62 | 7240 | if test "$plugins" = "yes"; then |
37f980dc SM |
7241 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing dlsym" >&5 |
7242 | $as_echo_n "checking for library containing dlsym... " >&6; } | |
d0ac1c44 | 7243 | if ${ac_cv_search_dlsym+:} false; then : |
2974be62 AM |
7244 | $as_echo_n "(cached) " >&6 |
7245 | else | |
7246 | ac_func_search_save_LIBS=$LIBS | |
7247 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
7248 | /* end confdefs.h. */ | |
7249 | ||
7250 | /* Override any GCC internal prototype to avoid an error. | |
7251 | Use char because int might match the return type of a GCC | |
7252 | builtin and then its argument prototype would still apply. */ | |
7253 | #ifdef __cplusplus | |
7254 | extern "C" | |
7255 | #endif | |
37f980dc | 7256 | char dlsym (); |
2974be62 AM |
7257 | int |
7258 | main () | |
7259 | { | |
37f980dc | 7260 | return dlsym (); |
2974be62 AM |
7261 | ; |
7262 | return 0; | |
7263 | } | |
7264 | _ACEOF | |
7265 | for ac_lib in '' dl; do | |
7266 | if test -z "$ac_lib"; then | |
7267 | ac_res="none required" | |
7268 | else | |
7269 | ac_res=-l$ac_lib | |
7270 | LIBS="-l$ac_lib $ac_func_search_save_LIBS" | |
7271 | fi | |
7272 | if ac_fn_c_try_link "$LINENO"; then : | |
37f980dc | 7273 | ac_cv_search_dlsym=$ac_res |
2974be62 AM |
7274 | fi |
7275 | rm -f core conftest.err conftest.$ac_objext \ | |
7276 | conftest$ac_exeext | |
d0ac1c44 | 7277 | if ${ac_cv_search_dlsym+:} false; then : |
2974be62 AM |
7278 | break |
7279 | fi | |
7280 | done | |
d0ac1c44 | 7281 | if ${ac_cv_search_dlsym+:} false; then : |
2974be62 AM |
7282 | |
7283 | else | |
37f980dc | 7284 | ac_cv_search_dlsym=no |
2974be62 AM |
7285 | fi |
7286 | rm conftest.$ac_ext | |
7287 | LIBS=$ac_func_search_save_LIBS | |
7288 | fi | |
37f980dc SM |
7289 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dlsym" >&5 |
7290 | $as_echo "$ac_cv_search_dlsym" >&6; } | |
7291 | ac_res=$ac_cv_search_dlsym | |
2974be62 AM |
7292 | if test "$ac_res" != no; then : |
7293 | test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" | |
7294 | ||
7295 | fi | |
7296 | ||
7297 | fi | |
6bb11ab3 L |
7298 | |
7299 | if test "$plugins" = yes; then | |
7300 | PLUGINS_TRUE= | |
7301 | PLUGINS_FALSE='#' | |
7302 | else | |
7303 | PLUGINS_TRUE='#' | |
7304 | PLUGINS_FALSE= | |
7305 | fi | |
7306 | ||
7307 | ||
7308 | ||
7309 | ||
7310 | ||
7311 | # Set options | |
7312 | enable_dlopen=yes | |
7313 | ||
7314 | ||
7315 | ||
7316 | ||
7317 | enable_win32_dll=no | |
7318 | ||
7319 | ||
7320 | # Check whether --enable-shared was given. | |
7321 | if test "${enable_shared+set}" = set; then : | |
7322 | enableval=$enable_shared; p=${PACKAGE-default} | |
7323 | case $enableval in | |
7324 | yes) enable_shared=yes ;; | |
7325 | no) enable_shared=no ;; | |
7326 | *) | |
7327 | enable_shared=no | |
7328 | # Look at the argument we got. We use all the common list separators. | |
7329 | lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," | |
7330 | for pkg in $enableval; do | |
7331 | IFS="$lt_save_ifs" | |
7332 | if test "X$pkg" = "X$p"; then | |
7333 | enable_shared=yes | |
7334 | fi | |
7335 | done | |
7336 | IFS="$lt_save_ifs" | |
7337 | ;; | |
7338 | esac | |
7339 | else | |
7340 | enable_shared=yes | |
7341 | fi | |
7342 | ||
7343 | ||
7344 | ||
7345 | ||
7346 | ||
7347 | ||
7348 | ||
7349 | ||
7350 | ||
7351 | # Check whether --enable-static was given. | |
7352 | if test "${enable_static+set}" = set; then : | |
7353 | enableval=$enable_static; p=${PACKAGE-default} | |
7354 | case $enableval in | |
7355 | yes) enable_static=yes ;; | |
7356 | no) enable_static=no ;; | |
7357 | *) | |
7358 | enable_static=no | |
7359 | # Look at the argument we got. We use all the common list separators. | |
7360 | lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," | |
7361 | for pkg in $enableval; do | |
7362 | IFS="$lt_save_ifs" | |
7363 | if test "X$pkg" = "X$p"; then | |
7364 | enable_static=yes | |
7365 | fi | |
7366 | done | |
7367 | IFS="$lt_save_ifs" | |
7368 | ;; | |
7369 | esac | |
7370 | else | |
7371 | enable_static=yes | |
7372 | fi | |
7373 | ||
7374 | ||
7375 | ||
7376 | ||
7377 | ||
7378 | ||
7379 | ||
7380 | ||
7381 | ||
7382 | ||
7383 | # Check whether --with-pic was given. | |
7384 | if test "${with_pic+set}" = set; then : | |
7385 | withval=$with_pic; pic_mode="$withval" | |
7386 | else | |
7387 | pic_mode=default | |
7388 | fi | |
7389 | ||
7390 | ||
7391 | test -z "$pic_mode" && pic_mode=default | |
7392 | ||
7393 | ||
7394 | ||
7395 | ||
7396 | ||
7397 | ||
7398 | ||
7399 | # Check whether --enable-fast-install was given. | |
7400 | if test "${enable_fast_install+set}" = set; then : | |
7401 | enableval=$enable_fast_install; p=${PACKAGE-default} | |
7402 | case $enableval in | |
7403 | yes) enable_fast_install=yes ;; | |
7404 | no) enable_fast_install=no ;; | |
7405 | *) | |
7406 | enable_fast_install=no | |
7407 | # Look at the argument we got. We use all the common list separators. | |
7408 | lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," | |
7409 | for pkg in $enableval; do | |
7410 | IFS="$lt_save_ifs" | |
7411 | if test "X$pkg" = "X$p"; then | |
7412 | enable_fast_install=yes | |
7413 | fi | |
7414 | done | |
7415 | IFS="$lt_save_ifs" | |
7416 | ;; | |
7417 | esac | |
7418 | else | |
7419 | enable_fast_install=yes | |
7420 | fi | |
7421 | ||
7422 | ||
7423 | ||
7424 | ||
7425 | ||
7426 | ||
7427 | ||
7428 | ||
7429 | ||
7430 | ||
7431 | ||
7432 | # This can be used to rebuild libtool when needed | |
7433 | LIBTOOL_DEPS="$ltmain" | |
7434 | ||
7435 | # Always use our own libtool. | |
7436 | LIBTOOL='$(SHELL) $(top_builddir)/libtool' | |
7437 | ||
7438 | ||
7439 | ||
7440 | ||
7441 | ||
7442 | ||
7443 | ||
7444 | ||
7445 | ||
7446 | ||
7447 | ||
7448 | ||
7449 | ||
7450 | ||
7451 | ||
7452 | ||
7453 | ||
7454 | ||
7455 | ||
7456 | ||
7457 | ||
7458 | ||
7459 | ||
7460 | ||
7461 | ||
7462 | ||
7463 | test -z "$LN_S" && LN_S="ln -s" | |
7464 | ||
7465 | ||
7466 | ||
7467 | ||
7468 | ||
7469 | ||
7470 | ||
7471 | ||
7472 | ||
7473 | ||
7474 | ||
7475 | ||
7476 | ||
7477 | ||
7478 | if test -n "${ZSH_VERSION+set}" ; then | |
7479 | setopt NO_GLOB_SUBST | |
87326c78 | 7480 | fi |
87326c78 | 7481 | |
6bb11ab3 L |
7482 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 |
7483 | $as_echo_n "checking for objdir... " >&6; } | |
d0ac1c44 | 7484 | if ${lt_cv_objdir+:} false; then : |
6bb11ab3 L |
7485 | $as_echo_n "(cached) " >&6 |
7486 | else | |
7487 | rm -f .libs 2>/dev/null | |
7488 | mkdir .libs 2>/dev/null | |
7489 | if test -d .libs; then | |
7490 | lt_cv_objdir=.libs | |
7491 | else | |
7492 | # MS-DOS does not allow filenames that begin with a dot. | |
7493 | lt_cv_objdir=_libs | |
7494 | fi | |
7495 | rmdir .libs 2>/dev/null | |
7496 | fi | |
7497 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 | |
7498 | $as_echo "$lt_cv_objdir" >&6; } | |
7499 | objdir=$lt_cv_objdir | |
7500 | ||
7501 | ||
7502 | ||
7503 | ||
7504 | ||
7505 | cat >>confdefs.h <<_ACEOF | |
7506 | #define LT_OBJDIR "$lt_cv_objdir/" | |
7507 | _ACEOF | |
7508 | ||
7509 | ||
7510 | ||
7511 | ||
7512 | case $host_os in | |
7513 | aix3*) | |
7514 | # AIX sometimes has problems with the GCC collect2 program. For some | |
7515 | # reason, if we set the COLLECT_NAMES environment variable, the problems | |
7516 | # vanish in a puff of smoke. | |
7517 | if test "X${COLLECT_NAMES+set}" != Xset; then | |
7518 | COLLECT_NAMES= | |
7519 | export COLLECT_NAMES | |
7520 | fi | |
7521 | ;; | |
87326c78 | 7522 | esac |
6bb11ab3 L |
7523 | |
7524 | # Global variables: | |
7525 | ofile=libtool | |
7526 | can_build_shared=yes | |
7527 | ||
7528 | # All known linkers require a `.a' archive for static linking (except MSVC, | |
7529 | # which needs '.lib'). | |
7530 | libext=a | |
7531 | ||
7532 | with_gnu_ld="$lt_cv_prog_gnu_ld" | |
7533 | ||
7534 | old_CC="$CC" | |
7535 | old_CFLAGS="$CFLAGS" | |
7536 | ||
7537 | # Set sane defaults for various variables | |
7538 | test -z "$CC" && CC=cc | |
7539 | test -z "$LTCC" && LTCC=$CC | |
7540 | test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS | |
7541 | test -z "$LD" && LD=ld | |
7542 | test -z "$ac_objext" && ac_objext=o | |
7543 | ||
7544 | for cc_temp in $compiler""; do | |
7545 | case $cc_temp in | |
7546 | compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; | |
7547 | distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; | |
7548 | \-*) ;; | |
7549 | *) break;; | |
7550 | esac | |
7551 | done | |
7552 | cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` | |
7553 | ||
7554 | ||
7555 | # Only perform the check for file, if the check method requires it | |
7556 | test -z "$MAGIC_CMD" && MAGIC_CMD=file | |
7557 | case $deplibs_check_method in | |
7558 | file_magic*) | |
7559 | if test "$file_magic_cmd" = '$MAGIC_CMD'; then | |
7560 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 | |
7561 | $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } | |
d0ac1c44 | 7562 | if ${lt_cv_path_MAGIC_CMD+:} false; then : |
6bb11ab3 L |
7563 | $as_echo_n "(cached) " >&6 |
7564 | else | |
7565 | case $MAGIC_CMD in | |
7566 | [\\/*] | ?:[\\/]*) | |
7567 | lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. | |
7568 | ;; | |
7569 | *) | |
7570 | lt_save_MAGIC_CMD="$MAGIC_CMD" | |
7571 | lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR | |
7572 | ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" | |
7573 | for ac_dir in $ac_dummy; do | |
7574 | IFS="$lt_save_ifs" | |
7575 | test -z "$ac_dir" && ac_dir=. | |
7576 | if test -f $ac_dir/${ac_tool_prefix}file; then | |
7577 | lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" | |
7578 | if test -n "$file_magic_test_file"; then | |
7579 | case $deplibs_check_method in | |
7580 | "file_magic "*) | |
7581 | file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` | |
7582 | MAGIC_CMD="$lt_cv_path_MAGIC_CMD" | |
7583 | if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | | |
7584 | $EGREP "$file_magic_regex" > /dev/null; then | |
7585 | : | |
7586 | else | |
7587 | cat <<_LT_EOF 1>&2 | |
7588 | ||
7589 | *** Warning: the command libtool uses to detect shared libraries, | |
7590 | *** $file_magic_cmd, produces output that libtool cannot recognize. | |
7591 | *** The result is that libtool may fail to recognize shared libraries | |
7592 | *** as such. This will affect the creation of libtool libraries that | |
7593 | *** depend on shared libraries, but programs linked with such libtool | |
7594 | *** libraries will work regardless of this problem. Nevertheless, you | |
7595 | *** may want to report the problem to your system manager and/or to | |
7596 | *** bug-libtool@gnu.org | |
7597 | ||
7598 | _LT_EOF | |
7599 | fi ;; | |
7600 | esac | |
7601 | fi | |
7602 | break | |
87326c78 | 7603 | fi |
6bb11ab3 L |
7604 | done |
7605 | IFS="$lt_save_ifs" | |
7606 | MAGIC_CMD="$lt_save_MAGIC_CMD" | |
7607 | ;; | |
7608 | esac | |
87326c78 | 7609 | fi |
87326c78 | 7610 | |
6bb11ab3 L |
7611 | MAGIC_CMD="$lt_cv_path_MAGIC_CMD" |
7612 | if test -n "$MAGIC_CMD"; then | |
7613 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 | |
7614 | $as_echo "$MAGIC_CMD" >&6; } | |
7615 | else | |
7616 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
7617 | $as_echo "no" >&6; } | |
7618 | fi | |
87326c78 | 7619 | |
6bb11ab3 L |
7620 | |
7621 | ||
7622 | ||
7623 | ||
7624 | if test -z "$lt_cv_path_MAGIC_CMD"; then | |
7625 | if test -n "$ac_tool_prefix"; then | |
7626 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 | |
7627 | $as_echo_n "checking for file... " >&6; } | |
d0ac1c44 | 7628 | if ${lt_cv_path_MAGIC_CMD+:} false; then : |
6bb11ab3 L |
7629 | $as_echo_n "(cached) " >&6 |
7630 | else | |
7631 | case $MAGIC_CMD in | |
7632 | [\\/*] | ?:[\\/]*) | |
7633 | lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. | |
7634 | ;; | |
7635 | *) | |
7636 | lt_save_MAGIC_CMD="$MAGIC_CMD" | |
7637 | lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR | |
7638 | ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" | |
7639 | for ac_dir in $ac_dummy; do | |
7640 | IFS="$lt_save_ifs" | |
7641 | test -z "$ac_dir" && ac_dir=. | |
7642 | if test -f $ac_dir/file; then | |
7643 | lt_cv_path_MAGIC_CMD="$ac_dir/file" | |
7644 | if test -n "$file_magic_test_file"; then | |
7645 | case $deplibs_check_method in | |
7646 | "file_magic "*) | |
7647 | file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` | |
7648 | MAGIC_CMD="$lt_cv_path_MAGIC_CMD" | |
7649 | if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | | |
7650 | $EGREP "$file_magic_regex" > /dev/null; then | |
7651 | : | |
7652 | else | |
7653 | cat <<_LT_EOF 1>&2 | |
7654 | ||
7655 | *** Warning: the command libtool uses to detect shared libraries, | |
7656 | *** $file_magic_cmd, produces output that libtool cannot recognize. | |
7657 | *** The result is that libtool may fail to recognize shared libraries | |
7658 | *** as such. This will affect the creation of libtool libraries that | |
7659 | *** depend on shared libraries, but programs linked with such libtool | |
7660 | *** libraries will work regardless of this problem. Nevertheless, you | |
7661 | *** may want to report the problem to your system manager and/or to | |
7662 | *** bug-libtool@gnu.org | |
7663 | ||
7664 | _LT_EOF | |
7665 | fi ;; | |
7666 | esac | |
7667 | fi | |
7668 | break | |
7669 | fi | |
7670 | done | |
7671 | IFS="$lt_save_ifs" | |
7672 | MAGIC_CMD="$lt_save_MAGIC_CMD" | |
7673 | ;; | |
87326c78 | 7674 | esac |
6bb11ab3 L |
7675 | fi |
7676 | ||
7677 | MAGIC_CMD="$lt_cv_path_MAGIC_CMD" | |
7678 | if test -n "$MAGIC_CMD"; then | |
7679 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 | |
7680 | $as_echo "$MAGIC_CMD" >&6; } | |
7681 | else | |
7682 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
7683 | $as_echo "no" >&6; } | |
7684 | fi | |
7685 | ||
7686 | ||
7687 | else | |
7688 | MAGIC_CMD=: | |
7689 | fi | |
7690 | fi | |
7691 | ||
7692 | fi | |
7693 | ;; | |
7694 | esac | |
7695 | ||
7696 | # Use C for the default configuration in the libtool script | |
7697 | ||
7698 | lt_save_CC="$CC" | |
7699 | ac_ext=c | |
7700 | ac_cpp='$CPP $CPPFLAGS' | |
7701 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | |
7702 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | |
7703 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | |
7704 | ||
7705 | ||
7706 | # Source file extension for C test sources. | |
7707 | ac_ext=c | |
7708 | ||
7709 | # Object file extension for compiled C test sources. | |
7710 | objext=o | |
7711 | objext=$objext | |
7712 | ||
7713 | # Code to be used in simple compile tests | |
7714 | lt_simple_compile_test_code="int some_variable = 0;" | |
7715 | ||
7716 | # Code to be used in simple link tests | |
7717 | lt_simple_link_test_code='int main(){return(0);}' | |
7718 | ||
7719 | ||
7720 | ||
7721 | ||
7722 | ||
7723 | ||
7724 | ||
7725 | # If no C compiler was specified, use CC. | |
7726 | LTCC=${LTCC-"$CC"} | |
7727 | ||
7728 | # If no C compiler flags were specified, use CFLAGS. | |
7729 | LTCFLAGS=${LTCFLAGS-"$CFLAGS"} | |
7730 | ||
7731 | # Allow CC to be a program name with arguments. | |
7732 | compiler=$CC | |
7733 | ||
7734 | # Save the default compiler, since it gets overwritten when the other | |
7735 | # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. | |
7736 | compiler_DEFAULT=$CC | |
7737 | ||
7738 | # save warnings/boilerplate of simple test code | |
7739 | ac_outfile=conftest.$ac_objext | |
7740 | echo "$lt_simple_compile_test_code" >conftest.$ac_ext | |
7741 | eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err | |
7742 | _lt_compiler_boilerplate=`cat conftest.err` | |
7743 | $RM conftest* | |
7744 | ||
7745 | ac_outfile=conftest.$ac_objext | |
7746 | echo "$lt_simple_link_test_code" >conftest.$ac_ext | |
7747 | eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err | |
7748 | _lt_linker_boilerplate=`cat conftest.err` | |
7749 | $RM -r conftest* | |
7750 | ||
7751 | ||
7752 | ## CAVEAT EMPTOR: | |
7753 | ## There is no encapsulation within the following macros, do not change | |
7754 | ## the running order or otherwise move them around unless you know exactly | |
7755 | ## what you are doing... | |
7756 | if test -n "$compiler"; then | |
7757 | ||
7758 | lt_prog_compiler_no_builtin_flag= | |
7759 | ||
7760 | if test "$GCC" = yes; then | |
7761 | case $cc_basename in | |
7762 | nvcc*) | |
7763 | lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; | |
7764 | *) | |
7765 | lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; | |
87326c78 | 7766 | esac |
6bb11ab3 L |
7767 | |
7768 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 | |
7769 | $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } | |
d0ac1c44 | 7770 | if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : |
6bb11ab3 | 7771 | $as_echo_n "(cached) " >&6 |
87326c78 | 7772 | else |
6bb11ab3 L |
7773 | lt_cv_prog_compiler_rtti_exceptions=no |
7774 | ac_outfile=conftest.$ac_objext | |
7775 | echo "$lt_simple_compile_test_code" > conftest.$ac_ext | |
7776 | lt_compiler_flag="-fno-rtti -fno-exceptions" | |
7777 | # Insert the option either (1) after the last *FLAGS variable, or | |
7778 | # (2) before a word containing "conftest.", or (3) at the end. | |
7779 | # Note that $ac_compile itself does not contain backslashes and begins | |
7780 | # with a dollar sign (not a hyphen), so the echo should work correctly. | |
7781 | # The option is referenced via a variable to avoid confusing sed. | |
7782 | lt_compile=`echo "$ac_compile" | $SED \ | |
7783 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ | |
7784 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | |
7785 | -e 's:$: $lt_compiler_flag:'` | |
7786 | (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) | |
7787 | (eval "$lt_compile" 2>conftest.err) | |
7788 | ac_status=$? | |
7789 | cat conftest.err >&5 | |
7790 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | |
7791 | if (exit $ac_status) && test -s "$ac_outfile"; then | |
7792 | # The compiler can only warn and ignore the option if not recognized | |
7793 | # So say no if there are warnings other than the usual output. | |
7794 | $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp | |
7795 | $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 | |
7796 | if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then | |
7797 | lt_cv_prog_compiler_rtti_exceptions=yes | |
7798 | fi | |
7799 | fi | |
7800 | $RM conftest* | |
7801 | ||
87326c78 | 7802 | fi |
6bb11ab3 L |
7803 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 |
7804 | $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } | |
7805 | ||
7806 | if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then | |
7807 | lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" | |
7808 | else | |
7809 | : | |
7810 | fi | |
7811 | ||
7812 | fi | |
7813 | ||
7814 | ||
7815 | ||
7816 | ||
7817 | ||
7818 | ||
7819 | lt_prog_compiler_wl= | |
7820 | lt_prog_compiler_pic= | |
7821 | lt_prog_compiler_static= | |
7822 | ||
7823 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 | |
7824 | $as_echo_n "checking for $compiler option to produce PIC... " >&6; } | |
7825 | ||
7826 | if test "$GCC" = yes; then | |
7827 | lt_prog_compiler_wl='-Wl,' | |
7828 | lt_prog_compiler_static='-static' | |
7829 | ||
7830 | case $host_os in | |
7831 | aix*) | |
7832 | # All AIX code is PIC. | |
7833 | if test "$host_cpu" = ia64; then | |
7834 | # AIX 5 now supports IA64 processor | |
7835 | lt_prog_compiler_static='-Bstatic' | |
7836 | fi | |
7837 | lt_prog_compiler_pic='-fPIC' | |
7838 | ;; | |
7839 | ||
7840 | amigaos*) | |
7841 | case $host_cpu in | |
7842 | powerpc) | |
7843 | # see comment about AmigaOS4 .so support | |
7844 | lt_prog_compiler_pic='-fPIC' | |
7845 | ;; | |
7846 | m68k) | |
7847 | # FIXME: we need at least 68020 code to build shared libraries, but | |
7848 | # adding the `-m68020' flag to GCC prevents building anything better, | |
7849 | # like `-m68040'. | |
7850 | lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' | |
7851 | ;; | |
7852 | esac | |
7853 | ;; | |
7854 | ||
7855 | beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) | |
7856 | # PIC is the default for these OSes. | |
7857 | ;; | |
7858 | ||
7859 | mingw* | cygwin* | pw32* | os2* | cegcc*) | |
7860 | # This hack is so that the source file can tell whether it is being | |
7861 | # built for inclusion in a dll (and should export symbols for example). | |
7862 | # Although the cygwin gcc ignores -fPIC, still need this for old-style | |
7863 | # (--disable-auto-import) libraries | |
7864 | lt_prog_compiler_pic='-DDLL_EXPORT' | |
7865 | ;; | |
7866 | ||
7867 | darwin* | rhapsody*) | |
7868 | # PIC is the default on this platform | |
7869 | # Common symbols not allowed in MH_DYLIB files | |
7870 | lt_prog_compiler_pic='-fno-common' | |
7871 | ;; | |
7872 | ||
7873 | haiku*) | |
7874 | # PIC is the default for Haiku. | |
7875 | # The "-static" flag exists, but is broken. | |
7876 | lt_prog_compiler_static= | |
7877 | ;; | |
7878 | ||
7879 | hpux*) | |
7880 | # PIC is the default for 64-bit PA HP-UX, but not for 32-bit | |
7881 | # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag | |
7882 | # sets the default TLS model and affects inlining. | |
7883 | case $host_cpu in | |
7884 | hppa*64*) | |
7885 | # +Z the default | |
7886 | ;; | |
7887 | *) | |
7888 | lt_prog_compiler_pic='-fPIC' | |
7889 | ;; | |
7890 | esac | |
7891 | ;; | |
7892 | ||
7893 | interix[3-9]*) | |
7894 | # Interix 3.x gcc -fpic/-fPIC options generate broken code. | |
7895 | # Instead, we relocate shared libraries at runtime. | |
7896 | ;; | |
7897 | ||
7898 | msdosdjgpp*) | |
7899 | # Just because we use GCC doesn't mean we suddenly get shared libraries | |
7900 | # on systems that don't support them. | |
7901 | lt_prog_compiler_can_build_shared=no | |
7902 | enable_shared=no | |
7903 | ;; | |
7904 | ||
7905 | *nto* | *qnx*) | |
7906 | # QNX uses GNU C++, but need to define -shared option too, otherwise | |
7907 | # it will coredump. | |
7908 | lt_prog_compiler_pic='-fPIC -shared' | |
7909 | ;; | |
7910 | ||
7911 | sysv4*MP*) | |
7912 | if test -d /usr/nec; then | |
7913 | lt_prog_compiler_pic=-Kconform_pic | |
7914 | fi | |
7915 | ;; | |
7916 | ||
7917 | *) | |
7918 | lt_prog_compiler_pic='-fPIC' | |
7919 | ;; | |
7920 | esac | |
7921 | ||
7922 | case $cc_basename in | |
7923 | nvcc*) # Cuda Compiler Driver 2.2 | |
7924 | lt_prog_compiler_wl='-Xlinker ' | |
7925 | lt_prog_compiler_pic='-Xcompiler -fPIC' | |
7926 | ;; | |
7927 | esac | |
7928 | else | |
7929 | # PORTME Check for flag to pass linker flags through the system compiler. | |
7930 | case $host_os in | |
7931 | aix*) | |
7932 | lt_prog_compiler_wl='-Wl,' | |
7933 | if test "$host_cpu" = ia64; then | |
7934 | # AIX 5 now supports IA64 processor | |
7935 | lt_prog_compiler_static='-Bstatic' | |
7936 | else | |
7937 | lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' | |
7938 | fi | |
7939 | ;; | |
7940 | ||
7941 | mingw* | cygwin* | pw32* | os2* | cegcc*) | |
7942 | # This hack is so that the source file can tell whether it is being | |
7943 | # built for inclusion in a dll (and should export symbols for example). | |
7944 | lt_prog_compiler_pic='-DDLL_EXPORT' | |
7945 | ;; | |
7946 | ||
7947 | hpux9* | hpux10* | hpux11*) | |
7948 | lt_prog_compiler_wl='-Wl,' | |
7949 | # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but | |
7950 | # not for PA HP-UX. | |
7951 | case $host_cpu in | |
7952 | hppa*64*|ia64*) | |
7953 | # +Z the default | |
7954 | ;; | |
7955 | *) | |
7956 | lt_prog_compiler_pic='+Z' | |
7957 | ;; | |
7958 | esac | |
7959 | # Is there a better lt_prog_compiler_static that works with the bundled CC? | |
7960 | lt_prog_compiler_static='${wl}-a ${wl}archive' | |
7961 | ;; | |
7962 | ||
7963 | irix5* | irix6* | nonstopux*) | |
7964 | lt_prog_compiler_wl='-Wl,' | |
7965 | # PIC (with -KPIC) is the default. | |
7966 | lt_prog_compiler_static='-non_shared' | |
7967 | ;; | |
7968 | ||
7969 | linux* | k*bsd*-gnu | kopensolaris*-gnu) | |
7970 | case $cc_basename in | |
7971 | # old Intel for x86_64 which still supported -KPIC. | |
7972 | ecc*) | |
7973 | lt_prog_compiler_wl='-Wl,' | |
7974 | lt_prog_compiler_pic='-KPIC' | |
7975 | lt_prog_compiler_static='-static' | |
7976 | ;; | |
7977 | # icc used to be incompatible with GCC. | |
7978 | # ICC 10 doesn't accept -KPIC any more. | |
7979 | icc* | ifort*) | |
7980 | lt_prog_compiler_wl='-Wl,' | |
7981 | lt_prog_compiler_pic='-fPIC' | |
7982 | lt_prog_compiler_static='-static' | |
7983 | ;; | |
7984 | # Lahey Fortran 8.1. | |
7985 | lf95*) | |
7986 | lt_prog_compiler_wl='-Wl,' | |
7987 | lt_prog_compiler_pic='--shared' | |
7988 | lt_prog_compiler_static='--static' | |
7989 | ;; | |
7990 | pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) | |
7991 | # Portland Group compilers (*not* the Pentium gcc compiler, | |
7992 | # which looks to be a dead project) | |
7993 | lt_prog_compiler_wl='-Wl,' | |
7994 | lt_prog_compiler_pic='-fpic' | |
7995 | lt_prog_compiler_static='-Bstatic' | |
7996 | ;; | |
7997 | ccc*) | |
7998 | lt_prog_compiler_wl='-Wl,' | |
7999 | # All Alpha code is PIC. | |
8000 | lt_prog_compiler_static='-non_shared' | |
8001 | ;; | |
8002 | xl* | bgxl* | bgf* | mpixl*) | |
8003 | # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene | |
8004 | lt_prog_compiler_wl='-Wl,' | |
8005 | lt_prog_compiler_pic='-qpic' | |
8006 | lt_prog_compiler_static='-qstaticlink' | |
8007 | ;; | |
8008 | *) | |
8009 | case `$CC -V 2>&1 | sed 5q` in | |
8010 | *Sun\ F* | *Sun*Fortran*) | |
8011 | # Sun Fortran 8.3 passes all unrecognized flags to the linker | |
8012 | lt_prog_compiler_pic='-KPIC' | |
8013 | lt_prog_compiler_static='-Bstatic' | |
8014 | lt_prog_compiler_wl='' | |
8015 | ;; | |
8016 | *Sun\ C*) | |
8017 | # Sun C 5.9 | |
8018 | lt_prog_compiler_pic='-KPIC' | |
8019 | lt_prog_compiler_static='-Bstatic' | |
8020 | lt_prog_compiler_wl='-Wl,' | |
8021 | ;; | |
8022 | esac | |
8023 | ;; | |
8024 | esac | |
8025 | ;; | |
8026 | ||
8027 | newsos6) | |
8028 | lt_prog_compiler_pic='-KPIC' | |
8029 | lt_prog_compiler_static='-Bstatic' | |
8030 | ;; | |
8031 | ||
8032 | *nto* | *qnx*) | |
8033 | # QNX uses GNU C++, but need to define -shared option too, otherwise | |
8034 | # it will coredump. | |
8035 | lt_prog_compiler_pic='-fPIC -shared' | |
8036 | ;; | |
8037 | ||
8038 | osf3* | osf4* | osf5*) | |
8039 | lt_prog_compiler_wl='-Wl,' | |
8040 | # All OSF/1 code is PIC. | |
8041 | lt_prog_compiler_static='-non_shared' | |
8042 | ;; | |
8043 | ||
8044 | rdos*) | |
8045 | lt_prog_compiler_static='-non_shared' | |
8046 | ;; | |
87326c78 | 8047 | |
6bb11ab3 L |
8048 | solaris*) |
8049 | lt_prog_compiler_pic='-KPIC' | |
8050 | lt_prog_compiler_static='-Bstatic' | |
8051 | case $cc_basename in | |
8052 | f77* | f90* | f95*) | |
8053 | lt_prog_compiler_wl='-Qoption ld ';; | |
8054 | *) | |
8055 | lt_prog_compiler_wl='-Wl,';; | |
8056 | esac | |
8057 | ;; | |
87326c78 | 8058 | |
6bb11ab3 L |
8059 | sunos4*) |
8060 | lt_prog_compiler_wl='-Qoption ld ' | |
8061 | lt_prog_compiler_pic='-PIC' | |
8062 | lt_prog_compiler_static='-Bstatic' | |
8063 | ;; | |
87326c78 | 8064 | |
6bb11ab3 L |
8065 | sysv4 | sysv4.2uw2* | sysv4.3*) |
8066 | lt_prog_compiler_wl='-Wl,' | |
8067 | lt_prog_compiler_pic='-KPIC' | |
8068 | lt_prog_compiler_static='-Bstatic' | |
8069 | ;; | |
8070 | ||
8071 | sysv4*MP*) | |
8072 | if test -d /usr/nec ;then | |
8073 | lt_prog_compiler_pic='-Kconform_pic' | |
8074 | lt_prog_compiler_static='-Bstatic' | |
8075 | fi | |
8076 | ;; | |
8077 | ||
8078 | sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) | |
8079 | lt_prog_compiler_wl='-Wl,' | |
8080 | lt_prog_compiler_pic='-KPIC' | |
8081 | lt_prog_compiler_static='-Bstatic' | |
8082 | ;; | |
8083 | ||
8084 | unicos*) | |
8085 | lt_prog_compiler_wl='-Wl,' | |
8086 | lt_prog_compiler_can_build_shared=no | |
8087 | ;; | |
8088 | ||
8089 | uts4*) | |
8090 | lt_prog_compiler_pic='-pic' | |
8091 | lt_prog_compiler_static='-Bstatic' | |
8092 | ;; | |
8093 | ||
8094 | *) | |
8095 | lt_prog_compiler_can_build_shared=no | |
8096 | ;; | |
8097 | esac | |
8098 | fi | |
8099 | ||
8100 | case $host_os in | |
8101 | # For platforms which do not support PIC, -DPIC is meaningless: | |
8102 | *djgpp*) | |
8103 | lt_prog_compiler_pic= | |
8104 | ;; | |
8105 | *) | |
8106 | lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" | |
8107 | ;; | |
87326c78 | 8108 | esac |
6bb11ab3 L |
8109 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic" >&5 |
8110 | $as_echo "$lt_prog_compiler_pic" >&6; } | |
8111 | ||
8112 | ||
8113 | ||
8114 | ||
8115 | ||
8116 | ||
8117 | # | |
8118 | # Check to make sure the PIC flag actually works. | |
8119 | # | |
8120 | if test -n "$lt_prog_compiler_pic"; then | |
8121 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 | |
8122 | $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } | |
d0ac1c44 | 8123 | if ${lt_cv_prog_compiler_pic_works+:} false; then : |
6bb11ab3 | 8124 | $as_echo_n "(cached) " >&6 |
87326c78 | 8125 | else |
6bb11ab3 L |
8126 | lt_cv_prog_compiler_pic_works=no |
8127 | ac_outfile=conftest.$ac_objext | |
8128 | echo "$lt_simple_compile_test_code" > conftest.$ac_ext | |
8129 | lt_compiler_flag="$lt_prog_compiler_pic -DPIC" | |
8130 | # Insert the option either (1) after the last *FLAGS variable, or | |
8131 | # (2) before a word containing "conftest.", or (3) at the end. | |
8132 | # Note that $ac_compile itself does not contain backslashes and begins | |
8133 | # with a dollar sign (not a hyphen), so the echo should work correctly. | |
8134 | # The option is referenced via a variable to avoid confusing sed. | |
8135 | lt_compile=`echo "$ac_compile" | $SED \ | |
8136 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ | |
8137 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | |
8138 | -e 's:$: $lt_compiler_flag:'` | |
8139 | (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) | |
8140 | (eval "$lt_compile" 2>conftest.err) | |
8141 | ac_status=$? | |
8142 | cat conftest.err >&5 | |
8143 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | |
8144 | if (exit $ac_status) && test -s "$ac_outfile"; then | |
8145 | # The compiler can only warn and ignore the option if not recognized | |
8146 | # So say no if there are warnings other than the usual output. | |
8147 | $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp | |
8148 | $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 | |
8149 | if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then | |
8150 | lt_cv_prog_compiler_pic_works=yes | |
8151 | fi | |
8152 | fi | |
8153 | $RM conftest* | |
87326c78 | 8154 | |
87326c78 | 8155 | fi |
6bb11ab3 L |
8156 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 |
8157 | $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } | |
8158 | ||
8159 | if test x"$lt_cv_prog_compiler_pic_works" = xyes; then | |
8160 | case $lt_prog_compiler_pic in | |
8161 | "" | " "*) ;; | |
8162 | *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; | |
8163 | esac | |
8164 | else | |
8165 | lt_prog_compiler_pic= | |
8166 | lt_prog_compiler_can_build_shared=no | |
87326c78 | 8167 | fi |
6bb11ab3 L |
8168 | |
8169 | fi | |
8170 | ||
8171 | ||
8172 | ||
8173 | ||
8174 | ||
8175 | ||
8176 | # | |
8177 | # Check to make sure the static flag actually works. | |
8178 | # | |
8179 | wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" | |
8180 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 | |
8181 | $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } | |
d0ac1c44 | 8182 | if ${lt_cv_prog_compiler_static_works+:} false; then : |
87326c78 DD |
8183 | $as_echo_n "(cached) " >&6 |
8184 | else | |
6bb11ab3 L |
8185 | lt_cv_prog_compiler_static_works=no |
8186 | save_LDFLAGS="$LDFLAGS" | |
8187 | LDFLAGS="$LDFLAGS $lt_tmp_static_flag" | |
8188 | echo "$lt_simple_link_test_code" > conftest.$ac_ext | |
8189 | if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then | |
8190 | # The linker can only warn and ignore the option if not recognized | |
8191 | # So say no if there are warnings | |
8192 | if test -s conftest.err; then | |
8193 | # Append any errors to the config.log. | |
8194 | cat conftest.err 1>&5 | |
8195 | $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp | |
8196 | $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 | |
8197 | if diff conftest.exp conftest.er2 >/dev/null; then | |
8198 | lt_cv_prog_compiler_static_works=yes | |
8199 | fi | |
8200 | else | |
8201 | lt_cv_prog_compiler_static_works=yes | |
8202 | fi | |
8203 | fi | |
8204 | $RM -r conftest* | |
8205 | LDFLAGS="$save_LDFLAGS" | |
87326c78 | 8206 | |
6bb11ab3 L |
8207 | fi |
8208 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 | |
8209 | $as_echo "$lt_cv_prog_compiler_static_works" >&6; } | |
87326c78 | 8210 | |
6bb11ab3 L |
8211 | if test x"$lt_cv_prog_compiler_static_works" = xyes; then |
8212 | : | |
87326c78 | 8213 | else |
6bb11ab3 | 8214 | lt_prog_compiler_static= |
87326c78 | 8215 | fi |
87326c78 | 8216 | |
6bb11ab3 L |
8217 | |
8218 | ||
8219 | ||
8220 | ||
8221 | ||
8222 | ||
8223 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 | |
8224 | $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } | |
d0ac1c44 | 8225 | if ${lt_cv_prog_compiler_c_o+:} false; then : |
6bb11ab3 | 8226 | $as_echo_n "(cached) " >&6 |
87326c78 | 8227 | else |
6bb11ab3 L |
8228 | lt_cv_prog_compiler_c_o=no |
8229 | $RM -r conftest 2>/dev/null | |
8230 | mkdir conftest | |
8231 | cd conftest | |
8232 | mkdir out | |
8233 | echo "$lt_simple_compile_test_code" > conftest.$ac_ext | |
8234 | ||
8235 | lt_compiler_flag="-o out/conftest2.$ac_objext" | |
8236 | # Insert the option either (1) after the last *FLAGS variable, or | |
8237 | # (2) before a word containing "conftest.", or (3) at the end. | |
8238 | # Note that $ac_compile itself does not contain backslashes and begins | |
8239 | # with a dollar sign (not a hyphen), so the echo should work correctly. | |
8240 | lt_compile=`echo "$ac_compile" | $SED \ | |
8241 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ | |
8242 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | |
8243 | -e 's:$: $lt_compiler_flag:'` | |
8244 | (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) | |
8245 | (eval "$lt_compile" 2>out/conftest.err) | |
8246 | ac_status=$? | |
8247 | cat out/conftest.err >&5 | |
8248 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | |
8249 | if (exit $ac_status) && test -s out/conftest2.$ac_objext | |
8250 | then | |
8251 | # The compiler can only warn and ignore the option if not recognized | |
8252 | # So say no if there are warnings | |
8253 | $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp | |
8254 | $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 | |
8255 | if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then | |
8256 | lt_cv_prog_compiler_c_o=yes | |
8257 | fi | |
8258 | fi | |
8259 | chmod u+w . 2>&5 | |
8260 | $RM conftest* | |
8261 | # SGI C++ compiler will create directory out/ii_files/ for | |
8262 | # template instantiation | |
8263 | test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files | |
8264 | $RM out/* && rmdir out | |
8265 | cd .. | |
8266 | $RM -r conftest | |
8267 | $RM conftest* | |
8268 | ||
87326c78 | 8269 | fi |
6bb11ab3 L |
8270 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 |
8271 | $as_echo "$lt_cv_prog_compiler_c_o" >&6; } | |
8272 | ||
8273 | ||
8274 | ||
8275 | ||
8276 | ||
8277 | ||
8278 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 | |
8279 | $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } | |
d0ac1c44 | 8280 | if ${lt_cv_prog_compiler_c_o+:} false; then : |
87326c78 DD |
8281 | $as_echo_n "(cached) " >&6 |
8282 | else | |
6bb11ab3 L |
8283 | lt_cv_prog_compiler_c_o=no |
8284 | $RM -r conftest 2>/dev/null | |
8285 | mkdir conftest | |
8286 | cd conftest | |
8287 | mkdir out | |
8288 | echo "$lt_simple_compile_test_code" > conftest.$ac_ext | |
8289 | ||
8290 | lt_compiler_flag="-o out/conftest2.$ac_objext" | |
8291 | # Insert the option either (1) after the last *FLAGS variable, or | |
8292 | # (2) before a word containing "conftest.", or (3) at the end. | |
8293 | # Note that $ac_compile itself does not contain backslashes and begins | |
8294 | # with a dollar sign (not a hyphen), so the echo should work correctly. | |
8295 | lt_compile=`echo "$ac_compile" | $SED \ | |
8296 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ | |
8297 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | |
8298 | -e 's:$: $lt_compiler_flag:'` | |
8299 | (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) | |
8300 | (eval "$lt_compile" 2>out/conftest.err) | |
8301 | ac_status=$? | |
8302 | cat out/conftest.err >&5 | |
8303 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | |
8304 | if (exit $ac_status) && test -s out/conftest2.$ac_objext | |
8305 | then | |
8306 | # The compiler can only warn and ignore the option if not recognized | |
8307 | # So say no if there are warnings | |
8308 | $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp | |
8309 | $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 | |
8310 | if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then | |
8311 | lt_cv_prog_compiler_c_o=yes | |
8312 | fi | |
8313 | fi | |
8314 | chmod u+w . 2>&5 | |
8315 | $RM conftest* | |
8316 | # SGI C++ compiler will create directory out/ii_files/ for | |
8317 | # template instantiation | |
8318 | test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files | |
8319 | $RM out/* && rmdir out | |
8320 | cd .. | |
8321 | $RM -r conftest | |
8322 | $RM conftest* | |
8323 | ||
8324 | fi | |
8325 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 | |
8326 | $as_echo "$lt_cv_prog_compiler_c_o" >&6; } | |
8327 | ||
8328 | ||
8329 | ||
8330 | ||
8331 | hard_links="nottested" | |
8332 | if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then | |
8333 | # do not overwrite the value of need_locks provided by the user | |
8334 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 | |
8335 | $as_echo_n "checking if we can lock with hard links... " >&6; } | |
8336 | hard_links=yes | |
8337 | $RM conftest* | |
8338 | ln conftest.a conftest.b 2>/dev/null && hard_links=no | |
8339 | touch conftest.a | |
8340 | ln conftest.a conftest.b 2>&5 || hard_links=no | |
8341 | ln conftest.a conftest.b 2>/dev/null && hard_links=no | |
8342 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 | |
8343 | $as_echo "$hard_links" >&6; } | |
8344 | if test "$hard_links" = no; then | |
8345 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 | |
8346 | $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} | |
8347 | need_locks=warn | |
8348 | fi | |
8349 | else | |
8350 | need_locks=no | |
8351 | fi | |
8352 | ||
8353 | ||
8354 | ||
8355 | ||
8356 | ||
8357 | ||
8358 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 | |
8359 | $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } | |
8360 | ||
8361 | runpath_var= | |
8362 | allow_undefined_flag= | |
8363 | always_export_symbols=no | |
8364 | archive_cmds= | |
8365 | archive_expsym_cmds= | |
8366 | compiler_needs_object=no | |
8367 | enable_shared_with_static_runtimes=no | |
8368 | export_dynamic_flag_spec= | |
8369 | export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' | |
8370 | hardcode_automatic=no | |
8371 | hardcode_direct=no | |
8372 | hardcode_direct_absolute=no | |
8373 | hardcode_libdir_flag_spec= | |
8374 | hardcode_libdir_flag_spec_ld= | |
8375 | hardcode_libdir_separator= | |
8376 | hardcode_minus_L=no | |
8377 | hardcode_shlibpath_var=unsupported | |
8378 | inherit_rpath=no | |
8379 | link_all_deplibs=unknown | |
8380 | module_cmds= | |
8381 | module_expsym_cmds= | |
8382 | old_archive_from_new_cmds= | |
8383 | old_archive_from_expsyms_cmds= | |
8384 | thread_safe_flag_spec= | |
8385 | whole_archive_flag_spec= | |
8386 | # include_expsyms should be a list of space-separated symbols to be *always* | |
8387 | # included in the symbol list | |
8388 | include_expsyms= | |
8389 | # exclude_expsyms can be an extended regexp of symbols to exclude | |
8390 | # it will be wrapped by ` (' and `)$', so one must not match beginning or | |
8391 | # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', | |
8392 | # as well as any symbol that contains `d'. | |
8393 | exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' | |
8394 | # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out | |
8395 | # platforms (ab)use it in PIC code, but their linkers get confused if | |
8396 | # the symbol is explicitly referenced. Since portable code cannot | |
8397 | # rely on this symbol name, it's probably fine to never include it in | |
8398 | # preloaded symbol tables. | |
8399 | # Exclude shared library initialization/finalization symbols. | |
8400 | extract_expsyms_cmds= | |
8401 | ||
8402 | case $host_os in | |
8403 | cygwin* | mingw* | pw32* | cegcc*) | |
8404 | # FIXME: the MSVC++ port hasn't been tested in a loooong time | |
8405 | # When not using gcc, we currently assume that we are using | |
8406 | # Microsoft Visual C++. | |
8407 | if test "$GCC" != yes; then | |
8408 | with_gnu_ld=no | |
8409 | fi | |
8410 | ;; | |
8411 | interix*) | |
8412 | # we just hope/assume this is gcc and not c89 (= MSVC++) | |
8413 | with_gnu_ld=yes | |
8414 | ;; | |
8415 | openbsd*) | |
8416 | with_gnu_ld=no | |
8417 | ;; | |
8418 | esac | |
87326c78 | 8419 | |
6bb11ab3 L |
8420 | ld_shlibs=yes |
8421 | ||
8422 | # On some targets, GNU ld is compatible enough with the native linker | |
8423 | # that we're better off using the native interface for both. | |
8424 | lt_use_gnu_ld_interface=no | |
8425 | if test "$with_gnu_ld" = yes; then | |
8426 | case $host_os in | |
8427 | aix*) | |
8428 | # The AIX port of GNU ld has always aspired to compatibility | |
8429 | # with the native linker. However, as the warning in the GNU ld | |
8430 | # block says, versions before 2.19.5* couldn't really create working | |
8431 | # shared libraries, regardless of the interface used. | |
8432 | case `$LD -v 2>&1` in | |
8433 | *\ \(GNU\ Binutils\)\ 2.19.5*) ;; | |
8434 | *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; | |
8435 | *\ \(GNU\ Binutils\)\ [3-9]*) ;; | |
8436 | *) | |
8437 | lt_use_gnu_ld_interface=yes | |
8438 | ;; | |
8439 | esac | |
8440 | ;; | |
8441 | *) | |
8442 | lt_use_gnu_ld_interface=yes | |
8443 | ;; | |
8444 | esac | |
8445 | fi | |
87326c78 | 8446 | |
6bb11ab3 L |
8447 | if test "$lt_use_gnu_ld_interface" = yes; then |
8448 | # If archive_cmds runs LD, not CC, wlarc should be empty | |
8449 | wlarc='${wl}' | |
8450 | ||
8451 | # Set some defaults for GNU ld with shared library support. These | |
8452 | # are reset later if shared libraries are not supported. Putting them | |
8453 | # here allows them to be overridden if necessary. | |
8454 | runpath_var=LD_RUN_PATH | |
8455 | hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' | |
8456 | export_dynamic_flag_spec='${wl}--export-dynamic' | |
8457 | # ancient GNU ld didn't support --whole-archive et. al. | |
8458 | if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then | |
8459 | whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' | |
8460 | else | |
8461 | whole_archive_flag_spec= | |
8462 | fi | |
8463 | supports_anon_versioning=no | |
8464 | case `$LD -v 2>&1` in | |
8465 | *GNU\ gold*) supports_anon_versioning=yes ;; | |
8466 | *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 | |
8467 | *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... | |
8468 | *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... | |
8469 | *\ 2.11.*) ;; # other 2.11 versions | |
8470 | *) supports_anon_versioning=yes ;; | |
8471 | esac | |
8472 | ||
8473 | # See if GNU ld supports shared libraries. | |
8474 | case $host_os in | |
8475 | aix[3-9]*) | |
8476 | # On AIX/PPC, the GNU linker is very broken | |
8477 | if test "$host_cpu" != ia64; then | |
8478 | ld_shlibs=no | |
8479 | cat <<_LT_EOF 1>&2 | |
8480 | ||
8481 | *** Warning: the GNU linker, at least up to release 2.19, is reported | |
8482 | *** to be unable to reliably create shared libraries on AIX. | |
8483 | *** Therefore, libtool is disabling shared libraries support. If you | |
8484 | *** really care for shared libraries, you may want to install binutils | |
8485 | *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. | |
8486 | *** You will then need to restart the configuration process. | |
8487 | ||
8488 | _LT_EOF | |
8489 | fi | |
8490 | ;; | |
8491 | ||
8492 | amigaos*) | |
8493 | case $host_cpu in | |
8494 | powerpc) | |
8495 | # see comment about AmigaOS4 .so support | |
8496 | archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' | |
8497 | archive_expsym_cmds='' | |
8498 | ;; | |
8499 | m68k) | |
8500 | archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' | |
8501 | hardcode_libdir_flag_spec='-L$libdir' | |
8502 | hardcode_minus_L=yes | |
8503 | ;; | |
8504 | esac | |
8505 | ;; | |
8506 | ||
8507 | beos*) | |
8508 | if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then | |
8509 | allow_undefined_flag=unsupported | |
8510 | # Joseph Beckenbach <jrb3@best.com> says some releases of gcc | |
8511 | # support --undefined. This deserves some investigation. FIXME | |
8512 | archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' | |
8513 | else | |
8514 | ld_shlibs=no | |
8515 | fi | |
8516 | ;; | |
8517 | ||
8518 | cygwin* | mingw* | pw32* | cegcc*) | |
8519 | # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, | |
8520 | # as there is no search path for DLLs. | |
8521 | hardcode_libdir_flag_spec='-L$libdir' | |
8522 | export_dynamic_flag_spec='${wl}--export-all-symbols' | |
8523 | allow_undefined_flag=unsupported | |
8524 | always_export_symbols=no | |
8525 | enable_shared_with_static_runtimes=yes | |
8526 | export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' | |
8527 | ||
8528 | if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then | |
8529 | archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' | |
8530 | # If the export-symbols file already is a .def file (1st line | |
8531 | # is EXPORTS), use it as is; otherwise, prepend... | |
8532 | archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then | |
8533 | cp $export_symbols $output_objdir/$soname.def; | |
8534 | else | |
8535 | echo EXPORTS > $output_objdir/$soname.def; | |
8536 | cat $export_symbols >> $output_objdir/$soname.def; | |
8537 | fi~ | |
8538 | $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' | |
8539 | else | |
8540 | ld_shlibs=no | |
8541 | fi | |
8542 | ;; | |
8543 | ||
8544 | haiku*) | |
8545 | archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' | |
8546 | link_all_deplibs=yes | |
8547 | ;; | |
8548 | ||
8549 | interix[3-9]*) | |
8550 | hardcode_direct=no | |
8551 | hardcode_shlibpath_var=no | |
8552 | hardcode_libdir_flag_spec='${wl}-rpath,$libdir' | |
8553 | export_dynamic_flag_spec='${wl}-E' | |
8554 | # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. | |
8555 | # Instead, shared libraries are loaded at an image base (0x10000000 by | |
8556 | # default) and relocated if they conflict, which is a slow very memory | |
8557 | # consuming and fragmenting process. To avoid this, we pick a random, | |
8558 | # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link | |
8559 | # time. Moving up from 0x10000000 also allows more sbrk(2) space. | |
8560 | archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' | |
8561 | archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' | |
8562 | ;; | |
8563 | ||
8564 | gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) | |
8565 | tmp_diet=no | |
8566 | if test "$host_os" = linux-dietlibc; then | |
8567 | case $cc_basename in | |
8568 | diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) | |
8569 | esac | |
8570 | fi | |
8571 | if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ | |
8572 | && test "$tmp_diet" = no | |
8573 | then | |
ae7d0cac | 8574 | tmp_addflag=' $pic_flag' |
6bb11ab3 L |
8575 | tmp_sharedflag='-shared' |
8576 | case $cc_basename,$host_cpu in | |
8577 | pgcc*) # Portland Group C compiler | |
8578 | whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' | |
8579 | tmp_addflag=' $pic_flag' | |
8580 | ;; | |
8581 | pgf77* | pgf90* | pgf95* | pgfortran*) | |
8582 | # Portland Group f77 and f90 compilers | |
8583 | whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' | |
8584 | tmp_addflag=' $pic_flag -Mnomain' ;; | |
8585 | ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 | |
8586 | tmp_addflag=' -i_dynamic' ;; | |
8587 | efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 | |
8588 | tmp_addflag=' -i_dynamic -nofor_main' ;; | |
8589 | ifc* | ifort*) # Intel Fortran compiler | |
8590 | tmp_addflag=' -nofor_main' ;; | |
8591 | lf95*) # Lahey Fortran 8.1 | |
8592 | whole_archive_flag_spec= | |
8593 | tmp_sharedflag='--shared' ;; | |
8594 | xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) | |
8595 | tmp_sharedflag='-qmkshrobj' | |
8596 | tmp_addflag= ;; | |
8597 | nvcc*) # Cuda Compiler Driver 2.2 | |
8598 | whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' | |
8599 | compiler_needs_object=yes | |
8600 | ;; | |
8601 | esac | |
8602 | case `$CC -V 2>&1 | sed 5q` in | |
8603 | *Sun\ C*) # Sun C 5.9 | |
8604 | whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' | |
8605 | compiler_needs_object=yes | |
8606 | tmp_sharedflag='-G' ;; | |
8607 | *Sun\ F*) # Sun Fortran 8.3 | |
8608 | tmp_sharedflag='-G' ;; | |
8609 | esac | |
8610 | archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' | |
8611 | ||
8612 | if test "x$supports_anon_versioning" = xyes; then | |
8613 | archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ | |
8614 | cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ | |
8615 | echo "local: *; };" >> $output_objdir/$libname.ver~ | |
8616 | $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' | |
8617 | fi | |
8618 | ||
8619 | case $cc_basename in | |
8620 | xlf* | bgf* | bgxlf* | mpixlf*) | |
8621 | # IBM XL Fortran 10.1 on PPC cannot create shared libs itself | |
8622 | whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' | |
8623 | hardcode_libdir_flag_spec= | |
8624 | hardcode_libdir_flag_spec_ld='-rpath $libdir' | |
8625 | archive_cmds='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' | |
8626 | if test "x$supports_anon_versioning" = xyes; then | |
8627 | archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ | |
8628 | cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ | |
8629 | echo "local: *; };" >> $output_objdir/$libname.ver~ | |
8630 | $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' | |
8631 | fi | |
8632 | ;; | |
8633 | esac | |
8634 | else | |
8635 | ld_shlibs=no | |
8636 | fi | |
8637 | ;; | |
8638 | ||
8639 | netbsd*) | |
8640 | if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then | |
8641 | archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' | |
8642 | wlarc= | |
8643 | else | |
8644 | archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' | |
8645 | archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' | |
8646 | fi | |
8647 | ;; | |
8648 | ||
8649 | solaris*) | |
8650 | if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then | |
8651 | ld_shlibs=no | |
8652 | cat <<_LT_EOF 1>&2 | |
8653 | ||
8654 | *** Warning: The releases 2.8.* of the GNU linker cannot reliably | |
8655 | *** create shared libraries on Solaris systems. Therefore, libtool | |
8656 | *** is disabling shared libraries support. We urge you to upgrade GNU | |
8657 | *** binutils to release 2.9.1 or newer. Another option is to modify | |
8658 | *** your PATH or compiler configuration so that the native linker is | |
8659 | *** used, and then restart. | |
8660 | ||
8661 | _LT_EOF | |
8662 | elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then | |
8663 | archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' | |
8664 | archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' | |
8665 | else | |
8666 | ld_shlibs=no | |
8667 | fi | |
8668 | ;; | |
8669 | ||
8670 | sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) | |
8671 | case `$LD -v 2>&1` in | |
8672 | *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) | |
8673 | ld_shlibs=no | |
8674 | cat <<_LT_EOF 1>&2 | |
8675 | ||
8676 | *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not | |
8677 | *** reliably create shared libraries on SCO systems. Therefore, libtool | |
8678 | *** is disabling shared libraries support. We urge you to upgrade GNU | |
8679 | *** binutils to release 2.16.91.0.3 or newer. Another option is to modify | |
8680 | *** your PATH or compiler configuration so that the native linker is | |
8681 | *** used, and then restart. | |
8682 | ||
8683 | _LT_EOF | |
8684 | ;; | |
8685 | *) | |
8686 | # For security reasons, it is highly recommended that you always | |
8687 | # use absolute paths for naming shared libraries, and exclude the | |
8688 | # DT_RUNPATH tag from executables and libraries. But doing so | |
8689 | # requires that you compile everything twice, which is a pain. | |
8690 | if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then | |
8691 | hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' | |
8692 | archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' | |
8693 | archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' | |
8694 | else | |
8695 | ld_shlibs=no | |
8696 | fi | |
8697 | ;; | |
8698 | esac | |
8699 | ;; | |
8700 | ||
8701 | sunos4*) | |
8702 | archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' | |
8703 | wlarc= | |
8704 | hardcode_direct=yes | |
8705 | hardcode_shlibpath_var=no | |
8706 | ;; | |
8707 | ||
8708 | *) | |
8709 | if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then | |
8710 | archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' | |
8711 | archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' | |
8712 | else | |
8713 | ld_shlibs=no | |
8714 | fi | |
8715 | ;; | |
8716 | esac | |
8717 | ||
8718 | if test "$ld_shlibs" = no; then | |
8719 | runpath_var= | |
8720 | hardcode_libdir_flag_spec= | |
8721 | export_dynamic_flag_spec= | |
8722 | whole_archive_flag_spec= | |
8723 | fi | |
8724 | else | |
8725 | # PORTME fill in a description of your system's linker (not GNU ld) | |
8726 | case $host_os in | |
8727 | aix3*) | |
8728 | allow_undefined_flag=unsupported | |
8729 | always_export_symbols=yes | |
8730 | archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' | |
8731 | # Note: this linker hardcodes the directories in LIBPATH if there | |
8732 | # are no directories specified by -L. | |
8733 | hardcode_minus_L=yes | |
8734 | if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then | |
8735 | # Neither direct hardcoding nor static linking is supported with a | |
8736 | # broken collect2. | |
8737 | hardcode_direct=unsupported | |
8738 | fi | |
8739 | ;; | |
8740 | ||
8741 | aix[4-9]*) | |
8742 | if test "$host_cpu" = ia64; then | |
8743 | # On IA64, the linker does run time linking by default, so we don't | |
8744 | # have to do anything special. | |
8745 | aix_use_runtimelinking=no | |
8746 | exp_sym_flag='-Bexport' | |
8747 | no_entry_flag="" | |
8748 | else | |
8749 | # If we're using GNU nm, then we don't want the "-C" option. | |
8750 | # -C means demangle to AIX nm, but means don't demangle with GNU nm | |
8751 | # Also, AIX nm treats weak defined symbols like other global | |
8752 | # defined symbols, whereas GNU nm marks them as "W". | |
8753 | if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then | |
8754 | export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' | |
8755 | else | |
5c887dd5 | 8756 | export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' |
6bb11ab3 L |
8757 | fi |
8758 | aix_use_runtimelinking=no | |
8759 | ||
8760 | # Test if we are trying to use run time linking or normal | |
8761 | # AIX style linking. If -brtl is somewhere in LDFLAGS, we | |
8762 | # need to do runtime linking. | |
8763 | case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) | |
8764 | for ld_flag in $LDFLAGS; do | |
8765 | if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then | |
8766 | aix_use_runtimelinking=yes | |
8767 | break | |
8768 | fi | |
8769 | done | |
8770 | ;; | |
8771 | esac | |
8772 | ||
8773 | exp_sym_flag='-bexport' | |
8774 | no_entry_flag='-bnoentry' | |
8775 | fi | |
8776 | ||
8777 | # When large executables or shared objects are built, AIX ld can | |
8778 | # have problems creating the table of contents. If linking a library | |
8779 | # or program results in "error TOC overflow" add -mminimal-toc to | |
8780 | # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not | |
8781 | # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. | |
8782 | ||
8783 | archive_cmds='' | |
8784 | hardcode_direct=yes | |
8785 | hardcode_direct_absolute=yes | |
8786 | hardcode_libdir_separator=':' | |
8787 | link_all_deplibs=yes | |
8788 | file_list_spec='${wl}-f,' | |
8789 | ||
8790 | if test "$GCC" = yes; then | |
8791 | case $host_os in aix4.[012]|aix4.[012].*) | |
8792 | # We only want to do this on AIX 4.2 and lower, the check | |
8793 | # below for broken collect2 doesn't work under 4.3+ | |
8794 | collect2name=`${CC} -print-prog-name=collect2` | |
8795 | if test -f "$collect2name" && | |
8796 | strings "$collect2name" | $GREP resolve_lib_name >/dev/null | |
8797 | then | |
8798 | # We have reworked collect2 | |
8799 | : | |
8800 | else | |
8801 | # We have old collect2 | |
8802 | hardcode_direct=unsupported | |
8803 | # It fails to find uninstalled libraries when the uninstalled | |
8804 | # path is not listed in the libpath. Setting hardcode_minus_L | |
8805 | # to unsupported forces relinking | |
8806 | hardcode_minus_L=yes | |
8807 | hardcode_libdir_flag_spec='-L$libdir' | |
8808 | hardcode_libdir_separator= | |
8809 | fi | |
8810 | ;; | |
8811 | esac | |
8812 | shared_flag='-shared' | |
8813 | if test "$aix_use_runtimelinking" = yes; then | |
8814 | shared_flag="$shared_flag "'${wl}-G' | |
8815 | fi | |
8816 | else | |
8817 | # not using gcc | |
8818 | if test "$host_cpu" = ia64; then | |
8819 | # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release | |
8820 | # chokes on -Wl,-G. The following line is correct: | |
8821 | shared_flag='-G' | |
8822 | else | |
8823 | if test "$aix_use_runtimelinking" = yes; then | |
8824 | shared_flag='${wl}-G' | |
8825 | else | |
8826 | shared_flag='${wl}-bM:SRE' | |
8827 | fi | |
8828 | fi | |
8829 | fi | |
8830 | ||
8831 | export_dynamic_flag_spec='${wl}-bexpall' | |
8832 | # It seems that -bexpall does not export symbols beginning with | |
8833 | # underscore (_), so it is better to generate a list of symbols to export. | |
8834 | always_export_symbols=yes | |
8835 | if test "$aix_use_runtimelinking" = yes; then | |
8836 | # Warning - without using the other runtime loading flags (-brtl), | |
8837 | # -berok will link without error, but may produce a broken library. | |
8838 | allow_undefined_flag='-berok' | |
8839 | # Determine the default libpath from the value encoded in an | |
8840 | # empty executable. | |
8841 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
87326c78 DD |
8842 | /* end confdefs.h. */ |
8843 | ||
8844 | int | |
8845 | main () | |
8846 | { | |
8847 | ||
8848 | ; | |
8849 | return 0; | |
8850 | } | |
8851 | _ACEOF | |
6bb11ab3 | 8852 | if ac_fn_c_try_link "$LINENO"; then : |
87326c78 | 8853 | |
6bb11ab3 L |
8854 | lt_aix_libpath_sed=' |
8855 | /Import File Strings/,/^$/ { | |
8856 | /^0/ { | |
8857 | s/^0 *\(.*\)$/\1/ | |
8858 | p | |
8859 | } | |
8860 | }' | |
8861 | aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` | |
8862 | # Check for a 64-bit object if we didn't find anything. | |
8863 | if test -z "$aix_libpath"; then | |
8864 | aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` | |
8865 | fi | |
8866 | fi | |
8867 | rm -f core conftest.err conftest.$ac_objext \ | |
8868 | conftest$ac_exeext conftest.$ac_ext | |
8869 | if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi | |
8870 | ||
8871 | hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" | |
8872 | archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" | |
8873 | else | |
8874 | if test "$host_cpu" = ia64; then | |
8875 | hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' | |
8876 | allow_undefined_flag="-z nodefs" | |
8877 | archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" | |
8878 | else | |
8879 | # Determine the default libpath from the value encoded in an | |
8880 | # empty executable. | |
87326c78 DD |
8881 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
8882 | /* end confdefs.h. */ | |
8883 | ||
8884 | int | |
8885 | main () | |
8886 | { | |
8887 | ||
8888 | ; | |
8889 | return 0; | |
8890 | } | |
8891 | _ACEOF | |
6bb11ab3 L |
8892 | if ac_fn_c_try_link "$LINENO"; then : |
8893 | ||
8894 | lt_aix_libpath_sed=' | |
8895 | /Import File Strings/,/^$/ { | |
8896 | /^0/ { | |
8897 | s/^0 *\(.*\)$/\1/ | |
8898 | p | |
8899 | } | |
8900 | }' | |
8901 | aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` | |
8902 | # Check for a 64-bit object if we didn't find anything. | |
8903 | if test -z "$aix_libpath"; then | |
8904 | aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` | |
87326c78 | 8905 | fi |
87326c78 | 8906 | fi |
6bb11ab3 L |
8907 | rm -f core conftest.err conftest.$ac_objext \ |
8908 | conftest$ac_exeext conftest.$ac_ext | |
8909 | if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi | |
8910 | ||
8911 | hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" | |
8912 | # Warning - without using the other run time loading flags, | |
8913 | # -berok will link without error, but may produce a broken library. | |
8914 | no_undefined_flag=' ${wl}-bernotok' | |
8915 | allow_undefined_flag=' ${wl}-berok' | |
8916 | if test "$with_gnu_ld" = yes; then | |
8917 | # We only use this code for GNU lds that support --whole-archive. | |
8918 | whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' | |
8919 | else | |
8920 | # Exported symbols can be pulled into shared objects from archives | |
8921 | whole_archive_flag_spec='$convenience' | |
8922 | fi | |
8923 | archive_cmds_need_lc=yes | |
8924 | # This is similar to how AIX traditionally builds its shared libraries. | |
8925 | archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' | |
8926 | fi | |
8927 | fi | |
8928 | ;; | |
8929 | ||
8930 | amigaos*) | |
8931 | case $host_cpu in | |
8932 | powerpc) | |
8933 | # see comment about AmigaOS4 .so support | |
8934 | archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' | |
8935 | archive_expsym_cmds='' | |
8936 | ;; | |
8937 | m68k) | |
8938 | archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' | |
8939 | hardcode_libdir_flag_spec='-L$libdir' | |
8940 | hardcode_minus_L=yes | |
8941 | ;; | |
8942 | esac | |
8943 | ;; | |
8944 | ||
8945 | bsdi[45]*) | |
8946 | export_dynamic_flag_spec=-rdynamic | |
8947 | ;; | |
8948 | ||
8949 | cygwin* | mingw* | pw32* | cegcc*) | |
8950 | # When not using gcc, we currently assume that we are using | |
8951 | # Microsoft Visual C++. | |
8952 | # hardcode_libdir_flag_spec is actually meaningless, as there is | |
8953 | # no search path for DLLs. | |
8954 | hardcode_libdir_flag_spec=' ' | |
8955 | allow_undefined_flag=unsupported | |
8956 | # Tell ltmain to make .lib files, not .a files. | |
8957 | libext=lib | |
8958 | # Tell ltmain to make .dll files, not .so files. | |
8959 | shrext_cmds=".dll" | |
8960 | # FIXME: Setting linknames here is a bad hack. | |
8961 | archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' | |
8962 | # The linker will automatically build a .lib file if we build a DLL. | |
8963 | old_archive_from_new_cmds='true' | |
8964 | # FIXME: Should let the user specify the lib program. | |
8965 | old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' | |
8966 | fix_srcfile_path='`cygpath -w "$srcfile"`' | |
8967 | enable_shared_with_static_runtimes=yes | |
8968 | ;; | |
8969 | ||
8970 | darwin* | rhapsody*) | |
8971 | ||
8972 | ||
8973 | archive_cmds_need_lc=no | |
8974 | hardcode_direct=no | |
8975 | hardcode_automatic=yes | |
8976 | hardcode_shlibpath_var=unsupported | |
8977 | if test "$lt_cv_ld_force_load" = "yes"; then | |
8978 | whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' | |
87326c78 | 8979 | else |
6bb11ab3 | 8980 | whole_archive_flag_spec='' |
87326c78 | 8981 | fi |
6bb11ab3 L |
8982 | link_all_deplibs=yes |
8983 | allow_undefined_flag="$_lt_dar_allow_undefined" | |
8984 | case $cc_basename in | |
8985 | ifort*) _lt_dar_can_shared=yes ;; | |
8986 | *) _lt_dar_can_shared=$GCC ;; | |
8987 | esac | |
8988 | if test "$_lt_dar_can_shared" = "yes"; then | |
8989 | output_verbose_link_cmd=func_echo_all | |
8990 | archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" | |
8991 | module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" | |
8992 | archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" | |
8993 | module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" | |
8994 | ||
87326c78 | 8995 | else |
6bb11ab3 | 8996 | ld_shlibs=no |
87326c78 | 8997 | fi |
6bb11ab3 L |
8998 | |
8999 | ;; | |
9000 | ||
9001 | dgux*) | |
9002 | archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | |
9003 | hardcode_libdir_flag_spec='-L$libdir' | |
9004 | hardcode_shlibpath_var=no | |
9005 | ;; | |
9006 | ||
9007 | # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor | |
9008 | # support. Future versions do this automatically, but an explicit c++rt0.o | |
9009 | # does not break anything, and helps significantly (at the cost of a little | |
9010 | # extra space). | |
9011 | freebsd2.2*) | |
9012 | archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' | |
9013 | hardcode_libdir_flag_spec='-R$libdir' | |
9014 | hardcode_direct=yes | |
9015 | hardcode_shlibpath_var=no | |
9016 | ;; | |
9017 | ||
9018 | # Unfortunately, older versions of FreeBSD 2 do not have this feature. | |
9019 | freebsd2.*) | |
9020 | archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' | |
9021 | hardcode_direct=yes | |
9022 | hardcode_minus_L=yes | |
9023 | hardcode_shlibpath_var=no | |
9024 | ;; | |
9025 | ||
9026 | # FreeBSD 3 and greater uses gcc -shared to do shared libraries. | |
9027 | freebsd* | dragonfly*) | |
9028 | archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' | |
9029 | hardcode_libdir_flag_spec='-R$libdir' | |
9030 | hardcode_direct=yes | |
9031 | hardcode_shlibpath_var=no | |
9032 | ;; | |
9033 | ||
9034 | hpux9*) | |
9035 | if test "$GCC" = yes; then | |
9036 | archive_cmds='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' | |
9037 | else | |
9038 | archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' | |
9039 | fi | |
9040 | hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' | |
9041 | hardcode_libdir_separator=: | |
9042 | hardcode_direct=yes | |
9043 | ||
9044 | # hardcode_minus_L: Not really in the search PATH, | |
9045 | # but as the default location of the library. | |
9046 | hardcode_minus_L=yes | |
9047 | export_dynamic_flag_spec='${wl}-E' | |
9048 | ;; | |
9049 | ||
9050 | hpux10*) | |
9051 | if test "$GCC" = yes && test "$with_gnu_ld" = no; then | |
9052 | archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' | |
9053 | else | |
9054 | archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' | |
9055 | fi | |
9056 | if test "$with_gnu_ld" = no; then | |
9057 | hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' | |
9058 | hardcode_libdir_flag_spec_ld='+b $libdir' | |
9059 | hardcode_libdir_separator=: | |
9060 | hardcode_direct=yes | |
9061 | hardcode_direct_absolute=yes | |
9062 | export_dynamic_flag_spec='${wl}-E' | |
9063 | # hardcode_minus_L: Not really in the search PATH, | |
9064 | # but as the default location of the library. | |
9065 | hardcode_minus_L=yes | |
9066 | fi | |
9067 | ;; | |
9068 | ||
9069 | hpux11*) | |
9070 | if test "$GCC" = yes && test "$with_gnu_ld" = no; then | |
9071 | case $host_cpu in | |
9072 | hppa*64*) | |
9073 | archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' | |
9074 | ;; | |
9075 | ia64*) | |
9076 | archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' | |
9077 | ;; | |
9078 | *) | |
9079 | archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' | |
9080 | ;; | |
9081 | esac | |
9082 | else | |
9083 | case $host_cpu in | |
9084 | hppa*64*) | |
9085 | archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' | |
9086 | ;; | |
9087 | ia64*) | |
9088 | archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' | |
9089 | ;; | |
9090 | *) | |
9091 | ||
9092 | # Older versions of the 11.00 compiler do not understand -b yet | |
9093 | # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) | |
9094 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 | |
9095 | $as_echo_n "checking if $CC understands -b... " >&6; } | |
d0ac1c44 | 9096 | if ${lt_cv_prog_compiler__b+:} false; then : |
87326c78 DD |
9097 | $as_echo_n "(cached) " >&6 |
9098 | else | |
6bb11ab3 L |
9099 | lt_cv_prog_compiler__b=no |
9100 | save_LDFLAGS="$LDFLAGS" | |
9101 | LDFLAGS="$LDFLAGS -b" | |
9102 | echo "$lt_simple_link_test_code" > conftest.$ac_ext | |
9103 | if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then | |
9104 | # The linker can only warn and ignore the option if not recognized | |
9105 | # So say no if there are warnings | |
9106 | if test -s conftest.err; then | |
9107 | # Append any errors to the config.log. | |
9108 | cat conftest.err 1>&5 | |
9109 | $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp | |
9110 | $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 | |
9111 | if diff conftest.exp conftest.er2 >/dev/null; then | |
9112 | lt_cv_prog_compiler__b=yes | |
9113 | fi | |
9114 | else | |
9115 | lt_cv_prog_compiler__b=yes | |
9116 | fi | |
9117 | fi | |
9118 | $RM -r conftest* | |
9119 | LDFLAGS="$save_LDFLAGS" | |
87326c78 | 9120 | |
6bb11ab3 L |
9121 | fi |
9122 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 | |
9123 | $as_echo "$lt_cv_prog_compiler__b" >&6; } | |
87326c78 | 9124 | |
6bb11ab3 L |
9125 | if test x"$lt_cv_prog_compiler__b" = xyes; then |
9126 | archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' | |
9127 | else | |
9128 | archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' | |
9129 | fi | |
87326c78 | 9130 | |
6bb11ab3 L |
9131 | ;; |
9132 | esac | |
9133 | fi | |
9134 | if test "$with_gnu_ld" = no; then | |
9135 | hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' | |
9136 | hardcode_libdir_separator=: | |
9137 | ||
9138 | case $host_cpu in | |
9139 | hppa*64*|ia64*) | |
9140 | hardcode_direct=no | |
9141 | hardcode_shlibpath_var=no | |
9142 | ;; | |
9143 | *) | |
9144 | hardcode_direct=yes | |
9145 | hardcode_direct_absolute=yes | |
9146 | export_dynamic_flag_spec='${wl}-E' | |
9147 | ||
9148 | # hardcode_minus_L: Not really in the search PATH, | |
9149 | # but as the default location of the library. | |
9150 | hardcode_minus_L=yes | |
9151 | ;; | |
9152 | esac | |
9153 | fi | |
9154 | ;; | |
9155 | ||
9156 | irix5* | irix6* | nonstopux*) | |
9157 | if test "$GCC" = yes; then | |
9158 | archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' | |
9159 | # Try to use the -exported_symbol ld option, if it does not | |
9160 | # work, assume that -exports_file does not work either and | |
9161 | # implicitly export all symbols. | |
9162 | save_LDFLAGS="$LDFLAGS" | |
9163 | LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" | |
9164 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
9165 | /* end confdefs.h. */ | |
9166 | int foo(void) {} | |
87326c78 | 9167 | _ACEOF |
6bb11ab3 L |
9168 | if ac_fn_c_try_link "$LINENO"; then : |
9169 | archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' | |
87326c78 DD |
9170 | |
9171 | fi | |
6bb11ab3 L |
9172 | rm -f core conftest.err conftest.$ac_objext \ |
9173 | conftest$ac_exeext conftest.$ac_ext | |
9174 | LDFLAGS="$save_LDFLAGS" | |
9175 | else | |
9176 | archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' | |
9177 | archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' | |
9178 | fi | |
9179 | archive_cmds_need_lc='no' | |
9180 | hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' | |
9181 | hardcode_libdir_separator=: | |
9182 | inherit_rpath=yes | |
9183 | link_all_deplibs=yes | |
9184 | ;; | |
9185 | ||
9186 | netbsd*) | |
9187 | if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then | |
9188 | archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out | |
9189 | else | |
9190 | archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF | |
9191 | fi | |
9192 | hardcode_libdir_flag_spec='-R$libdir' | |
9193 | hardcode_direct=yes | |
9194 | hardcode_shlibpath_var=no | |
9195 | ;; | |
9196 | ||
9197 | newsos6) | |
9198 | archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | |
9199 | hardcode_direct=yes | |
9200 | hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' | |
9201 | hardcode_libdir_separator=: | |
9202 | hardcode_shlibpath_var=no | |
9203 | ;; | |
9204 | ||
9205 | *nto* | *qnx*) | |
9206 | ;; | |
9207 | ||
9208 | openbsd*) | |
9209 | if test -f /usr/libexec/ld.so; then | |
9210 | hardcode_direct=yes | |
9211 | hardcode_shlibpath_var=no | |
9212 | hardcode_direct_absolute=yes | |
9213 | if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then | |
9214 | archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' | |
9215 | archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' | |
9216 | hardcode_libdir_flag_spec='${wl}-rpath,$libdir' | |
9217 | export_dynamic_flag_spec='${wl}-E' | |
9218 | else | |
9219 | case $host_os in | |
9220 | openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) | |
9221 | archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' | |
9222 | hardcode_libdir_flag_spec='-R$libdir' | |
9223 | ;; | |
9224 | *) | |
9225 | archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' | |
9226 | hardcode_libdir_flag_spec='${wl}-rpath,$libdir' | |
9227 | ;; | |
9228 | esac | |
9229 | fi | |
9230 | else | |
9231 | ld_shlibs=no | |
9232 | fi | |
9233 | ;; | |
9234 | ||
9235 | os2*) | |
9236 | hardcode_libdir_flag_spec='-L$libdir' | |
9237 | hardcode_minus_L=yes | |
9238 | allow_undefined_flag=unsupported | |
9239 | archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' | |
9240 | old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' | |
9241 | ;; | |
9242 | ||
9243 | osf3*) | |
9244 | if test "$GCC" = yes; then | |
9245 | allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' | |
9246 | archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' | |
9247 | else | |
9248 | allow_undefined_flag=' -expect_unresolved \*' | |
9249 | archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' | |
9250 | fi | |
9251 | archive_cmds_need_lc='no' | |
9252 | hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' | |
9253 | hardcode_libdir_separator=: | |
9254 | ;; | |
9255 | ||
9256 | osf4* | osf5*) # as osf3* with the addition of -msym flag | |
9257 | if test "$GCC" = yes; then | |
9258 | allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' | |
9259 | archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' | |
9260 | hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' | |
9261 | else | |
9262 | allow_undefined_flag=' -expect_unresolved \*' | |
9263 | archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' | |
9264 | archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ | |
9265 | $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' | |
9266 | ||
9267 | # Both c and cxx compiler support -rpath directly | |
9268 | hardcode_libdir_flag_spec='-rpath $libdir' | |
9269 | fi | |
9270 | archive_cmds_need_lc='no' | |
9271 | hardcode_libdir_separator=: | |
9272 | ;; | |
9273 | ||
9274 | solaris*) | |
9275 | no_undefined_flag=' -z defs' | |
9276 | if test "$GCC" = yes; then | |
9277 | wlarc='${wl}' | |
9278 | archive_cmds='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' | |
9279 | archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ | |
9280 | $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' | |
9281 | else | |
9282 | case `$CC -V 2>&1` in | |
9283 | *"Compilers 5.0"*) | |
9284 | wlarc='' | |
9285 | archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' | |
9286 | archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ | |
9287 | $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' | |
9288 | ;; | |
9289 | *) | |
9290 | wlarc='${wl}' | |
9291 | archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' | |
9292 | archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ | |
9293 | $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' | |
9294 | ;; | |
9295 | esac | |
9296 | fi | |
9297 | hardcode_libdir_flag_spec='-R$libdir' | |
9298 | hardcode_shlibpath_var=no | |
9299 | case $host_os in | |
9300 | solaris2.[0-5] | solaris2.[0-5].*) ;; | |
9301 | *) | |
9302 | # The compiler driver will combine and reorder linker options, | |
9303 | # but understands `-z linker_flag'. GCC discards it without `$wl', | |
9304 | # but is careful enough not to reorder. | |
9305 | # Supported since Solaris 2.6 (maybe 2.5.1?) | |
9306 | if test "$GCC" = yes; then | |
9307 | whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' | |
9308 | else | |
9309 | whole_archive_flag_spec='-z allextract$convenience -z defaultextract' | |
9310 | fi | |
9311 | ;; | |
9312 | esac | |
9313 | link_all_deplibs=yes | |
9314 | ;; | |
9315 | ||
9316 | sunos4*) | |
9317 | if test "x$host_vendor" = xsequent; then | |
9318 | # Use $CC to link under sequent, because it throws in some extra .o | |
9319 | # files that make .init and .fini sections work. | |
9320 | archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' | |
9321 | else | |
9322 | archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' | |
9323 | fi | |
9324 | hardcode_libdir_flag_spec='-L$libdir' | |
9325 | hardcode_direct=yes | |
9326 | hardcode_minus_L=yes | |
9327 | hardcode_shlibpath_var=no | |
9328 | ;; | |
9329 | ||
9330 | sysv4) | |
9331 | case $host_vendor in | |
9332 | sni) | |
9333 | archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | |
9334 | hardcode_direct=yes # is this really true??? | |
9335 | ;; | |
9336 | siemens) | |
9337 | ## LD is ld it makes a PLAMLIB | |
9338 | ## CC just makes a GrossModule. | |
9339 | archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' | |
9340 | reload_cmds='$CC -r -o $output$reload_objs' | |
9341 | hardcode_direct=no | |
9342 | ;; | |
9343 | motorola) | |
9344 | archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | |
9345 | hardcode_direct=no #Motorola manual says yes, but my tests say they lie | |
9346 | ;; | |
9347 | esac | |
9348 | runpath_var='LD_RUN_PATH' | |
9349 | hardcode_shlibpath_var=no | |
9350 | ;; | |
9351 | ||
9352 | sysv4.3*) | |
9353 | archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | |
9354 | hardcode_shlibpath_var=no | |
9355 | export_dynamic_flag_spec='-Bexport' | |
9356 | ;; | |
9357 | ||
9358 | sysv4*MP*) | |
9359 | if test -d /usr/nec; then | |
9360 | archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | |
9361 | hardcode_shlibpath_var=no | |
9362 | runpath_var=LD_RUN_PATH | |
9363 | hardcode_runpath_var=yes | |
9364 | ld_shlibs=yes | |
9365 | fi | |
9366 | ;; | |
9367 | ||
9368 | sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) | |
9369 | no_undefined_flag='${wl}-z,text' | |
9370 | archive_cmds_need_lc=no | |
9371 | hardcode_shlibpath_var=no | |
9372 | runpath_var='LD_RUN_PATH' | |
9373 | ||
9374 | if test "$GCC" = yes; then | |
9375 | archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' | |
9376 | archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' | |
9377 | else | |
9378 | archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' | |
9379 | archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' | |
9380 | fi | |
9381 | ;; | |
9382 | ||
9383 | sysv5* | sco3.2v5* | sco5v6*) | |
9384 | # Note: We can NOT use -z defs as we might desire, because we do not | |
9385 | # link with -lc, and that would cause any symbols used from libc to | |
9386 | # always be unresolved, which means just about no library would | |
9387 | # ever link correctly. If we're not using GNU ld we use -z text | |
9388 | # though, which does catch some bad symbols but isn't as heavy-handed | |
9389 | # as -z defs. | |
9390 | no_undefined_flag='${wl}-z,text' | |
9391 | allow_undefined_flag='${wl}-z,nodefs' | |
9392 | archive_cmds_need_lc=no | |
9393 | hardcode_shlibpath_var=no | |
9394 | hardcode_libdir_flag_spec='${wl}-R,$libdir' | |
9395 | hardcode_libdir_separator=':' | |
9396 | link_all_deplibs=yes | |
9397 | export_dynamic_flag_spec='${wl}-Bexport' | |
9398 | runpath_var='LD_RUN_PATH' | |
9399 | ||
9400 | if test "$GCC" = yes; then | |
9401 | archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' | |
9402 | archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' | |
9403 | else | |
9404 | archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' | |
9405 | archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' | |
9406 | fi | |
9407 | ;; | |
9408 | ||
9409 | uts4*) | |
9410 | archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | |
9411 | hardcode_libdir_flag_spec='-L$libdir' | |
9412 | hardcode_shlibpath_var=no | |
9413 | ;; | |
9414 | ||
9415 | *) | |
9416 | ld_shlibs=no | |
9417 | ;; | |
9418 | esac | |
9419 | ||
9420 | if test x$host_vendor = xsni; then | |
9421 | case $host in | |
9422 | sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) | |
9423 | export_dynamic_flag_spec='${wl}-Blargedynsym' | |
9424 | ;; | |
9425 | esac | |
9426 | fi | |
9427 | fi | |
9428 | ||
9429 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 | |
9430 | $as_echo "$ld_shlibs" >&6; } | |
9431 | test "$ld_shlibs" = no && can_build_shared=no | |
9432 | ||
9433 | with_gnu_ld=$with_gnu_ld | |
9434 | ||
9435 | ||
9436 | ||
87326c78 | 9437 | |
87326c78 | 9438 | |
87326c78 | 9439 | |
87326c78 | 9440 | |
87326c78 DD |
9441 | |
9442 | ||
87326c78 | 9443 | |
87326c78 | 9444 | |
87326c78 DD |
9445 | |
9446 | ||
6bb11ab3 L |
9447 | |
9448 | ||
9449 | # | |
9450 | # Do we need to explicitly link libc? | |
9451 | # | |
9452 | case "x$archive_cmds_need_lc" in | |
9453 | x|xyes) | |
9454 | # Assume -lc should be added | |
9455 | archive_cmds_need_lc=yes | |
9456 | ||
9457 | if test "$enable_shared" = yes && test "$GCC" = yes; then | |
9458 | case $archive_cmds in | |
9459 | *'~'*) | |
9460 | # FIXME: we may have to deal with multi-command sequences. | |
9461 | ;; | |
9462 | '$CC '*) | |
9463 | # Test whether the compiler implicitly links with -lc since on some | |
9464 | # systems, -lgcc has to come before -lc. If gcc already passes -lc | |
9465 | # to ld, don't add -lc before -lgcc. | |
9466 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 | |
9467 | $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } | |
d0ac1c44 | 9468 | if ${lt_cv_archive_cmds_need_lc+:} false; then : |
87326c78 DD |
9469 | $as_echo_n "(cached) " >&6 |
9470 | else | |
6bb11ab3 L |
9471 | $RM conftest* |
9472 | echo "$lt_simple_compile_test_code" > conftest.$ac_ext | |
9473 | ||
9474 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 | |
9475 | (eval $ac_compile) 2>&5 | |
9476 | ac_status=$? | |
9477 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
9478 | test $ac_status = 0; } 2>conftest.err; then | |
9479 | soname=conftest | |
9480 | lib=conftest | |
9481 | libobjs=conftest.$ac_objext | |
9482 | deplibs= | |
9483 | wl=$lt_prog_compiler_wl | |
9484 | pic_flag=$lt_prog_compiler_pic | |
9485 | compiler_flags=-v | |
9486 | linker_flags=-v | |
9487 | verstring= | |
9488 | output_objdir=. | |
9489 | libname=conftest | |
9490 | lt_save_allow_undefined_flag=$allow_undefined_flag | |
9491 | allow_undefined_flag= | |
9492 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 | |
9493 | (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 | |
9494 | ac_status=$? | |
9495 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
9496 | test $ac_status = 0; } | |
9497 | then | |
9498 | lt_cv_archive_cmds_need_lc=no | |
9499 | else | |
9500 | lt_cv_archive_cmds_need_lc=yes | |
9501 | fi | |
9502 | allow_undefined_flag=$lt_save_allow_undefined_flag | |
9503 | else | |
9504 | cat conftest.err 1>&5 | |
9505 | fi | |
9506 | $RM conftest* | |
87326c78 DD |
9507 | |
9508 | fi | |
6bb11ab3 L |
9509 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 |
9510 | $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } | |
9511 | archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc | |
9512 | ;; | |
9513 | esac | |
9514 | fi | |
9515 | ;; | |
87326c78 | 9516 | esac |
87326c78 DD |
9517 | |
9518 | ||
87326c78 | 9519 | |
87326c78 DD |
9520 | |
9521 | ||
87326c78 | 9522 | |
87326c78 | 9523 | |
87326c78 | 9524 | |
87326c78 | 9525 | |
87326c78 | 9526 | |
87326c78 | 9527 | |
87326c78 | 9528 | |
87326c78 | 9529 | |
87326c78 | 9530 | |
87326c78 | 9531 | |
87326c78 | 9532 | |
87326c78 DD |
9533 | |
9534 | ||
87326c78 | 9535 | |
87326c78 | 9536 | |
87326c78 DD |
9537 | |
9538 | ||
87326c78 | 9539 | |
87326c78 | 9540 | |
87326c78 DD |
9541 | |
9542 | ||
87326c78 | 9543 | |
87326c78 | 9544 | |
87326c78 | 9545 | |
87326c78 | 9546 | |
87326c78 | 9547 | |
87326c78 | 9548 | |
87326c78 | 9549 | |
87326c78 | 9550 | |
87326c78 | 9551 | |
87326c78 | 9552 | |
87326c78 | 9553 | |
87326c78 | 9554 | |
87326c78 | 9555 | |
87326c78 | 9556 | |
87326c78 | 9557 | |
87326c78 | 9558 | |
87326c78 | 9559 | |
87326c78 | 9560 | |
87326c78 | 9561 | |
87326c78 DD |
9562 | |
9563 | ||
9564 | ||
2232061b MF |
9565 | |
9566 | ||
2232061b | 9567 | |
2232061b MF |
9568 | |
9569 | ||
2232061b MF |
9570 | |
9571 | ||
2232061b | 9572 | |
2232061b MF |
9573 | |
9574 | ||
6bb11ab3 L |
9575 | |
9576 | ||
9577 | ||
9578 | ||
9579 | ||
9580 | ||
9581 | ||
9582 | ||
9583 | ||
9584 | ||
9585 | ||
9586 | ||
9587 | ||
9588 | ||
9589 | ||
9590 | ||
9591 | ||
9592 | ||
9593 | ||
9594 | ||
9595 | ||
9596 | ||
9597 | ||
9598 | ||
9599 | ||
9600 | ||
9601 | ||
9602 | ||
9603 | ||
9604 | ||
9605 | ||
9606 | ||
9607 | ||
9608 | ||
9609 | ||
9610 | ||
9611 | ||
9612 | ||
9613 | ||
9614 | ||
9615 | ||
9616 | ||
9617 | ||
9618 | ||
9619 | ||
9620 | ||
9621 | ||
9622 | ||
9623 | ||
9624 | ||
9625 | ||
9626 | ||
9627 | ||
9628 | ||
9629 | ||
9630 | ||
9631 | ||
9632 | ||
9633 | ||
9634 | ||
9635 | ||
9636 | ||
9637 | ||
9638 | ||
9639 | ||
9640 | ||
9641 | ||
9642 | ||
9643 | ||
9644 | ||
9645 | ||
9646 | ||
9647 | ||
9648 | ||
9649 | ||
9650 | ||
9651 | ||
9652 | ||
9653 | ||
9654 | ||
9655 | ||
9656 | ||
9657 | ||
9658 | ||
9659 | ||
9660 | ||
9661 | ||
9662 | ||
9663 | ||
9664 | ||
9665 | ||
9666 | ||
9667 | ||
9668 | ||
9669 | ||
9670 | ||
9671 | ||
9672 | ||
9673 | ||
9674 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 | |
9675 | $as_echo_n "checking dynamic linker characteristics... " >&6; } | |
9676 | ||
9677 | if test "$GCC" = yes; then | |
9678 | case $host_os in | |
9679 | darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; | |
9680 | *) lt_awk_arg="/^libraries:/" ;; | |
9681 | esac | |
9682 | case $host_os in | |
9683 | mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; | |
9684 | *) lt_sed_strip_eq="s,=/,/,g" ;; | |
9685 | esac | |
9686 | lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` | |
9687 | case $lt_search_path_spec in | |
9688 | *\;*) | |
9689 | # if the path contains ";" then we assume it to be the separator | |
9690 | # otherwise default to the standard path separator (i.e. ":") - it is | |
9691 | # assumed that no part of a normal pathname contains ";" but that should | |
9692 | # okay in the real world where ";" in dirpaths is itself problematic. | |
9693 | lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` | |
9694 | ;; | |
9695 | *) | |
9696 | lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` | |
9697 | ;; | |
9698 | esac | |
9699 | # Ok, now we have the path, separated by spaces, we can step through it | |
9700 | # and add multilib dir if necessary. | |
9701 | lt_tmp_lt_search_path_spec= | |
9702 | lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` | |
9703 | for lt_sys_path in $lt_search_path_spec; do | |
9704 | if test -d "$lt_sys_path/$lt_multi_os_dir"; then | |
9705 | lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" | |
9706 | else | |
9707 | test -d "$lt_sys_path" && \ | |
9708 | lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" | |
9709 | fi | |
9710 | done | |
9711 | lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' | |
9712 | BEGIN {RS=" "; FS="/|\n";} { | |
9713 | lt_foo=""; | |
9714 | lt_count=0; | |
9715 | for (lt_i = NF; lt_i > 0; lt_i--) { | |
9716 | if ($lt_i != "" && $lt_i != ".") { | |
9717 | if ($lt_i == "..") { | |
9718 | lt_count++; | |
9719 | } else { | |
9720 | if (lt_count == 0) { | |
9721 | lt_foo="/" $lt_i lt_foo; | |
9722 | } else { | |
9723 | lt_count--; | |
9724 | } | |
9725 | } | |
9726 | } | |
9727 | } | |
9728 | if (lt_foo != "") { lt_freq[lt_foo]++; } | |
9729 | if (lt_freq[lt_foo] == 1) { print lt_foo; } | |
9730 | }'` | |
9731 | # AWK program above erroneously prepends '/' to C:/dos/paths | |
9732 | # for these hosts. | |
9733 | case $host_os in | |
9734 | mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ | |
9735 | $SED 's,/\([A-Za-z]:\),\1,g'` ;; | |
9736 | esac | |
9737 | sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` | |
9738 | else | |
9739 | sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" | |
9740 | fi | |
9741 | library_names_spec= | |
9742 | libname_spec='lib$name' | |
9743 | soname_spec= | |
9744 | shrext_cmds=".so" | |
9745 | postinstall_cmds= | |
9746 | postuninstall_cmds= | |
9747 | finish_cmds= | |
9748 | finish_eval= | |
9749 | shlibpath_var= | |
9750 | shlibpath_overrides_runpath=unknown | |
9751 | version_type=none | |
9752 | dynamic_linker="$host_os ld.so" | |
9753 | sys_lib_dlsearch_path_spec="/lib /usr/lib" | |
9754 | need_lib_prefix=unknown | |
9755 | hardcode_into_libs=no | |
9756 | ||
9757 | # when you set need_version to no, make sure it does not cause -set_version | |
9758 | # flags to be left without arguments | |
9759 | need_version=unknown | |
9760 | ||
9761 | case $host_os in | |
9762 | aix3*) | |
9763 | version_type=linux | |
9764 | library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' | |
9765 | shlibpath_var=LIBPATH | |
9766 | ||
9767 | # AIX 3 has no versioning support, so we append a major version to the name. | |
9768 | soname_spec='${libname}${release}${shared_ext}$major' | |
9769 | ;; | |
9770 | ||
9771 | aix[4-9]*) | |
9772 | version_type=linux | |
9773 | need_lib_prefix=no | |
9774 | need_version=no | |
9775 | hardcode_into_libs=yes | |
9776 | if test "$host_cpu" = ia64; then | |
9777 | # AIX 5 supports IA64 | |
9778 | library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' | |
9779 | shlibpath_var=LD_LIBRARY_PATH | |
9780 | else | |
9781 | # With GCC up to 2.95.x, collect2 would create an import file | |
9782 | # for dependence libraries. The import file would start with | |
9783 | # the line `#! .'. This would cause the generated library to | |
9784 | # depend on `.', always an invalid library. This was fixed in | |
9785 | # development snapshots of GCC prior to 3.0. | |
9786 | case $host_os in | |
9787 | aix4 | aix4.[01] | aix4.[01].*) | |
9788 | if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' | |
9789 | echo ' yes ' | |
9790 | echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then | |
9791 | : | |
9792 | else | |
9793 | can_build_shared=no | |
9794 | fi | |
9795 | ;; | |
9796 | esac | |
9797 | # AIX (on Power*) has no versioning support, so currently we can not hardcode correct | |
9798 | # soname into executable. Probably we can add versioning support to | |
9799 | # collect2, so additional links can be useful in future. | |
9800 | if test "$aix_use_runtimelinking" = yes; then | |
9801 | # If using run time linking (on AIX 4.2 or later) use lib<name>.so | |
9802 | # instead of lib<name>.a to let people know that these are not | |
9803 | # typical AIX shared libraries. | |
9804 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
9805 | else | |
9806 | # We preserve .a as extension for shared libraries through AIX4.2 | |
9807 | # and later when we are not doing run time linking. | |
9808 | library_names_spec='${libname}${release}.a $libname.a' | |
9809 | soname_spec='${libname}${release}${shared_ext}$major' | |
9810 | fi | |
9811 | shlibpath_var=LIBPATH | |
9812 | fi | |
9813 | ;; | |
9814 | ||
9815 | amigaos*) | |
9816 | case $host_cpu in | |
9817 | powerpc) | |
9818 | # Since July 2007 AmigaOS4 officially supports .so libraries. | |
9819 | # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. | |
9820 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
9821 | ;; | |
9822 | m68k) | |
9823 | library_names_spec='$libname.ixlibrary $libname.a' | |
9824 | # Create ${libname}_ixlibrary.a entries in /sys/libs. | |
9825 | finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' | |
9826 | ;; | |
9827 | esac | |
9828 | ;; | |
9829 | ||
9830 | beos*) | |
9831 | library_names_spec='${libname}${shared_ext}' | |
9832 | dynamic_linker="$host_os ld.so" | |
9833 | shlibpath_var=LIBRARY_PATH | |
9834 | ;; | |
9835 | ||
9836 | bsdi[45]*) | |
9837 | version_type=linux | |
9838 | need_version=no | |
9839 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
9840 | soname_spec='${libname}${release}${shared_ext}$major' | |
9841 | finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' | |
9842 | shlibpath_var=LD_LIBRARY_PATH | |
9843 | sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" | |
9844 | sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" | |
9845 | # the default ld.so.conf also contains /usr/contrib/lib and | |
9846 | # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow | |
9847 | # libtool to hard-code these into programs | |
9848 | ;; | |
9849 | ||
9850 | cygwin* | mingw* | pw32* | cegcc*) | |
9851 | version_type=windows | |
9852 | shrext_cmds=".dll" | |
9853 | need_version=no | |
9854 | need_lib_prefix=no | |
9855 | ||
9856 | case $GCC,$host_os in | |
9857 | yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) | |
9858 | library_names_spec='$libname.dll.a' | |
9859 | # DLL is installed to $(libdir)/../bin by postinstall_cmds | |
9860 | postinstall_cmds='base_file=`basename \${file}`~ | |
9861 | dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ | |
9862 | dldir=$destdir/`dirname \$dlpath`~ | |
9863 | test -d \$dldir || mkdir -p \$dldir~ | |
9864 | $install_prog $dir/$dlname \$dldir/$dlname~ | |
9865 | chmod a+x \$dldir/$dlname~ | |
9866 | if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then | |
9867 | eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; | |
9868 | fi' | |
9869 | postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ | |
9870 | dlpath=$dir/\$dldll~ | |
9871 | $RM \$dlpath' | |
9872 | shlibpath_overrides_runpath=yes | |
9873 | ||
9874 | case $host_os in | |
9875 | cygwin*) | |
9876 | # Cygwin DLLs use 'cyg' prefix rather than 'lib' | |
9877 | soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' | |
9878 | ||
9879 | sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" | |
9880 | ;; | |
9881 | mingw* | cegcc*) | |
9882 | # MinGW DLLs use traditional 'lib' prefix | |
9883 | soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' | |
9884 | ;; | |
9885 | pw32*) | |
9886 | # pw32 DLLs use 'pw' prefix rather than 'lib' | |
9887 | library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' | |
9888 | ;; | |
9889 | esac | |
9890 | ;; | |
9891 | ||
9892 | *) | |
9893 | library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' | |
9894 | ;; | |
9895 | esac | |
9896 | dynamic_linker='Win32 ld.exe' | |
9897 | # FIXME: first we should search . and the directory the executable is in | |
9898 | shlibpath_var=PATH | |
9899 | ;; | |
9900 | ||
9901 | darwin* | rhapsody*) | |
9902 | dynamic_linker="$host_os dyld" | |
9903 | version_type=darwin | |
9904 | need_lib_prefix=no | |
9905 | need_version=no | |
9906 | library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' | |
9907 | soname_spec='${libname}${release}${major}$shared_ext' | |
9908 | shlibpath_overrides_runpath=yes | |
9909 | shlibpath_var=DYLD_LIBRARY_PATH | |
9910 | shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' | |
9911 | ||
9912 | sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" | |
9913 | sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' | |
9914 | ;; | |
9915 | ||
9916 | dgux*) | |
9917 | version_type=linux | |
9918 | need_lib_prefix=no | |
9919 | need_version=no | |
9920 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' | |
9921 | soname_spec='${libname}${release}${shared_ext}$major' | |
9922 | shlibpath_var=LD_LIBRARY_PATH | |
9923 | ;; | |
9924 | ||
9925 | freebsd* | dragonfly*) | |
9926 | # DragonFly does not have aout. When/if they implement a new | |
9927 | # versioning mechanism, adjust this. | |
9928 | if test -x /usr/bin/objformat; then | |
9929 | objformat=`/usr/bin/objformat` | |
9930 | else | |
9931 | case $host_os in | |
9932 | freebsd[23].*) objformat=aout ;; | |
9933 | *) objformat=elf ;; | |
9934 | esac | |
9935 | fi | |
9936 | version_type=freebsd-$objformat | |
9937 | case $version_type in | |
9938 | freebsd-elf*) | |
9939 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' | |
9940 | need_version=no | |
9941 | need_lib_prefix=no | |
9942 | ;; | |
9943 | freebsd-*) | |
9944 | library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' | |
9945 | need_version=yes | |
9946 | ;; | |
9947 | esac | |
9948 | shlibpath_var=LD_LIBRARY_PATH | |
9949 | case $host_os in | |
9950 | freebsd2.*) | |
9951 | shlibpath_overrides_runpath=yes | |
9952 | ;; | |
9953 | freebsd3.[01]* | freebsdelf3.[01]*) | |
9954 | shlibpath_overrides_runpath=yes | |
9955 | hardcode_into_libs=yes | |
9956 | ;; | |
9957 | freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ | |
9958 | freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) | |
9959 | shlibpath_overrides_runpath=no | |
9960 | hardcode_into_libs=yes | |
9961 | ;; | |
9962 | *) # from 4.6 on, and DragonFly | |
9963 | shlibpath_overrides_runpath=yes | |
9964 | hardcode_into_libs=yes | |
9965 | ;; | |
9966 | esac | |
9967 | ;; | |
9968 | ||
6bb11ab3 L |
9969 | haiku*) |
9970 | version_type=linux | |
9971 | need_lib_prefix=no | |
9972 | need_version=no | |
9973 | dynamic_linker="$host_os runtime_loader" | |
9974 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' | |
9975 | soname_spec='${libname}${release}${shared_ext}$major' | |
9976 | shlibpath_var=LIBRARY_PATH | |
9977 | shlibpath_overrides_runpath=yes | |
9978 | sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/beos/system/lib' | |
9979 | hardcode_into_libs=yes | |
9980 | ;; | |
9981 | ||
9982 | hpux9* | hpux10* | hpux11*) | |
9983 | # Give a soname corresponding to the major version so that dld.sl refuses to | |
9984 | # link against other versions. | |
9985 | version_type=sunos | |
9986 | need_lib_prefix=no | |
9987 | need_version=no | |
9988 | case $host_cpu in | |
9989 | ia64*) | |
9990 | shrext_cmds='.so' | |
9991 | hardcode_into_libs=yes | |
9992 | dynamic_linker="$host_os dld.so" | |
9993 | shlibpath_var=LD_LIBRARY_PATH | |
9994 | shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. | |
9995 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
9996 | soname_spec='${libname}${release}${shared_ext}$major' | |
9997 | if test "X$HPUX_IA64_MODE" = X32; then | |
9998 | sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" | |
9999 | else | |
10000 | sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" | |
10001 | fi | |
10002 | sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec | |
10003 | ;; | |
10004 | hppa*64*) | |
10005 | shrext_cmds='.sl' | |
10006 | hardcode_into_libs=yes | |
10007 | dynamic_linker="$host_os dld.sl" | |
10008 | shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH | |
10009 | shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. | |
10010 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
10011 | soname_spec='${libname}${release}${shared_ext}$major' | |
10012 | sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" | |
10013 | sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec | |
10014 | ;; | |
10015 | *) | |
10016 | shrext_cmds='.sl' | |
10017 | dynamic_linker="$host_os dld.sl" | |
10018 | shlibpath_var=SHLIB_PATH | |
10019 | shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH | |
10020 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
10021 | soname_spec='${libname}${release}${shared_ext}$major' | |
10022 | ;; | |
10023 | esac | |
10024 | # HP-UX runs *really* slowly unless shared libraries are mode 555, ... | |
10025 | postinstall_cmds='chmod 555 $lib' | |
10026 | # or fails outright, so override atomically: | |
10027 | install_override_mode=555 | |
10028 | ;; | |
10029 | ||
10030 | interix[3-9]*) | |
10031 | version_type=linux | |
10032 | need_lib_prefix=no | |
10033 | need_version=no | |
10034 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' | |
10035 | soname_spec='${libname}${release}${shared_ext}$major' | |
10036 | dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' | |
10037 | shlibpath_var=LD_LIBRARY_PATH | |
10038 | shlibpath_overrides_runpath=no | |
10039 | hardcode_into_libs=yes | |
10040 | ;; | |
10041 | ||
10042 | irix5* | irix6* | nonstopux*) | |
10043 | case $host_os in | |
10044 | nonstopux*) version_type=nonstopux ;; | |
10045 | *) | |
10046 | if test "$lt_cv_prog_gnu_ld" = yes; then | |
10047 | version_type=linux | |
10048 | else | |
10049 | version_type=irix | |
10050 | fi ;; | |
10051 | esac | |
10052 | need_lib_prefix=no | |
10053 | need_version=no | |
10054 | soname_spec='${libname}${release}${shared_ext}$major' | |
10055 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' | |
10056 | case $host_os in | |
10057 | irix5* | nonstopux*) | |
10058 | libsuff= shlibsuff= | |
10059 | ;; | |
10060 | *) | |
10061 | case $LD in # libtool.m4 will add one of these switches to LD | |
10062 | *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") | |
10063 | libsuff= shlibsuff= libmagic=32-bit;; | |
10064 | *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") | |
10065 | libsuff=32 shlibsuff=N32 libmagic=N32;; | |
10066 | *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") | |
10067 | libsuff=64 shlibsuff=64 libmagic=64-bit;; | |
10068 | *) libsuff= shlibsuff= libmagic=never-match;; | |
10069 | esac | |
10070 | ;; | |
10071 | esac | |
10072 | shlibpath_var=LD_LIBRARY${shlibsuff}_PATH | |
10073 | shlibpath_overrides_runpath=no | |
10074 | sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" | |
10075 | sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" | |
10076 | hardcode_into_libs=yes | |
10077 | ;; | |
10078 | ||
10079 | # No shared lib support for Linux oldld, aout, or coff. | |
10080 | linux*oldld* | linux*aout* | linux*coff*) | |
10081 | dynamic_linker=no | |
10082 | ;; | |
10083 | ||
10084 | # This must be Linux ELF. | |
46f900c0 | 10085 | linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) |
6bb11ab3 L |
10086 | version_type=linux |
10087 | need_lib_prefix=no | |
10088 | need_version=no | |
10089 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
10090 | soname_spec='${libname}${release}${shared_ext}$major' | |
10091 | finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' | |
10092 | shlibpath_var=LD_LIBRARY_PATH | |
10093 | shlibpath_overrides_runpath=no | |
10094 | ||
10095 | # Some binutils ld are patched to set DT_RUNPATH | |
d0ac1c44 | 10096 | if ${lt_cv_shlibpath_overrides_runpath+:} false; then : |
2232061b MF |
10097 | $as_echo_n "(cached) " >&6 |
10098 | else | |
6bb11ab3 L |
10099 | lt_cv_shlibpath_overrides_runpath=no |
10100 | save_LDFLAGS=$LDFLAGS | |
10101 | save_libdir=$libdir | |
10102 | eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ | |
10103 | LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" | |
10104 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
2232061b MF |
10105 | /* end confdefs.h. */ |
10106 | ||
2232061b MF |
10107 | int |
10108 | main () | |
10109 | { | |
10110 | ||
10111 | ; | |
10112 | return 0; | |
10113 | } | |
10114 | _ACEOF | |
6bb11ab3 L |
10115 | if ac_fn_c_try_link "$LINENO"; then : |
10116 | if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : | |
10117 | lt_cv_shlibpath_overrides_runpath=yes | |
2232061b | 10118 | fi |
2232061b | 10119 | fi |
6bb11ab3 L |
10120 | rm -f core conftest.err conftest.$ac_objext \ |
10121 | conftest$ac_exeext conftest.$ac_ext | |
10122 | LDFLAGS=$save_LDFLAGS | |
10123 | libdir=$save_libdir | |
2232061b | 10124 | |
6bb11ab3 | 10125 | fi |
2232061b | 10126 | |
6bb11ab3 | 10127 | shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath |
2232061b | 10128 | |
6bb11ab3 L |
10129 | # This implies no fast_install, which is unacceptable. |
10130 | # Some rework will be needed to allow for fast_install | |
10131 | # before this can be enabled. | |
10132 | hardcode_into_libs=yes | |
2232061b | 10133 | |
6bb11ab3 L |
10134 | # Append ld.so.conf contents to the search path |
10135 | if test -f /etc/ld.so.conf; then | |
10136 | lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` | |
10137 | sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" | |
10138 | fi | |
2232061b | 10139 | |
6bb11ab3 L |
10140 | # We used to test for /lib/ld.so.1 and disable shared libraries on |
10141 | # powerpc, because MkLinux only supported shared libraries with the | |
10142 | # GNU dynamic linker. Since this was broken with cross compilers, | |
10143 | # most powerpc-linux boxes support dynamic linking these days and | |
10144 | # people can always --disable-shared, the test was removed, and we | |
10145 | # assume the GNU/Linux dynamic linker is in use. | |
10146 | dynamic_linker='GNU/Linux ld.so' | |
10147 | ;; | |
10148 | ||
10149 | netbsd*) | |
10150 | version_type=sunos | |
10151 | need_lib_prefix=no | |
10152 | need_version=no | |
10153 | if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then | |
10154 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' | |
10155 | finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' | |
10156 | dynamic_linker='NetBSD (a.out) ld.so' | |
2232061b | 10157 | else |
6bb11ab3 L |
10158 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' |
10159 | soname_spec='${libname}${release}${shared_ext}$major' | |
10160 | dynamic_linker='NetBSD ld.elf_so' | |
10161 | fi | |
10162 | shlibpath_var=LD_LIBRARY_PATH | |
10163 | shlibpath_overrides_runpath=yes | |
10164 | hardcode_into_libs=yes | |
10165 | ;; | |
10166 | ||
10167 | newsos6) | |
10168 | version_type=linux | |
10169 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
10170 | shlibpath_var=LD_LIBRARY_PATH | |
10171 | shlibpath_overrides_runpath=yes | |
10172 | ;; | |
10173 | ||
10174 | *nto* | *qnx*) | |
10175 | version_type=qnx | |
10176 | need_lib_prefix=no | |
10177 | need_version=no | |
10178 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
10179 | soname_spec='${libname}${release}${shared_ext}$major' | |
10180 | shlibpath_var=LD_LIBRARY_PATH | |
10181 | shlibpath_overrides_runpath=no | |
10182 | hardcode_into_libs=yes | |
10183 | dynamic_linker='ldqnx.so' | |
10184 | ;; | |
10185 | ||
10186 | openbsd*) | |
10187 | version_type=sunos | |
10188 | sys_lib_dlsearch_path_spec="/usr/lib" | |
10189 | need_lib_prefix=no | |
10190 | # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. | |
10191 | case $host_os in | |
10192 | openbsd3.3 | openbsd3.3.*) need_version=yes ;; | |
10193 | *) need_version=no ;; | |
10194 | esac | |
10195 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' | |
10196 | finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' | |
10197 | shlibpath_var=LD_LIBRARY_PATH | |
10198 | if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then | |
10199 | case $host_os in | |
10200 | openbsd2.[89] | openbsd2.[89].*) | |
10201 | shlibpath_overrides_runpath=no | |
10202 | ;; | |
10203 | *) | |
10204 | shlibpath_overrides_runpath=yes | |
10205 | ;; | |
10206 | esac | |
10207 | else | |
10208 | shlibpath_overrides_runpath=yes | |
10209 | fi | |
10210 | ;; | |
10211 | ||
10212 | os2*) | |
10213 | libname_spec='$name' | |
10214 | shrext_cmds=".dll" | |
10215 | need_lib_prefix=no | |
10216 | library_names_spec='$libname${shared_ext} $libname.a' | |
10217 | dynamic_linker='OS/2 ld.exe' | |
10218 | shlibpath_var=LIBPATH | |
10219 | ;; | |
10220 | ||
10221 | osf3* | osf4* | osf5*) | |
10222 | version_type=osf | |
10223 | need_lib_prefix=no | |
10224 | need_version=no | |
10225 | soname_spec='${libname}${release}${shared_ext}$major' | |
10226 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
10227 | shlibpath_var=LD_LIBRARY_PATH | |
10228 | sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" | |
10229 | sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" | |
10230 | ;; | |
10231 | ||
10232 | rdos*) | |
10233 | dynamic_linker=no | |
10234 | ;; | |
10235 | ||
10236 | solaris*) | |
10237 | version_type=linux | |
10238 | need_lib_prefix=no | |
10239 | need_version=no | |
10240 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
10241 | soname_spec='${libname}${release}${shared_ext}$major' | |
10242 | shlibpath_var=LD_LIBRARY_PATH | |
10243 | shlibpath_overrides_runpath=yes | |
10244 | hardcode_into_libs=yes | |
10245 | # ldd complains unless libraries are executable | |
10246 | postinstall_cmds='chmod +x $lib' | |
10247 | ;; | |
10248 | ||
10249 | sunos4*) | |
10250 | version_type=sunos | |
10251 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' | |
10252 | finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' | |
10253 | shlibpath_var=LD_LIBRARY_PATH | |
10254 | shlibpath_overrides_runpath=yes | |
10255 | if test "$with_gnu_ld" = yes; then | |
10256 | need_lib_prefix=no | |
10257 | fi | |
10258 | need_version=yes | |
10259 | ;; | |
10260 | ||
10261 | sysv4 | sysv4.3*) | |
10262 | version_type=linux | |
10263 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
10264 | soname_spec='${libname}${release}${shared_ext}$major' | |
10265 | shlibpath_var=LD_LIBRARY_PATH | |
10266 | case $host_vendor in | |
10267 | sni) | |
10268 | shlibpath_overrides_runpath=no | |
10269 | need_lib_prefix=no | |
10270 | runpath_var=LD_RUN_PATH | |
10271 | ;; | |
10272 | siemens) | |
10273 | need_lib_prefix=no | |
10274 | ;; | |
10275 | motorola) | |
10276 | need_lib_prefix=no | |
10277 | need_version=no | |
10278 | shlibpath_overrides_runpath=no | |
10279 | sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' | |
10280 | ;; | |
10281 | esac | |
10282 | ;; | |
10283 | ||
10284 | sysv4*MP*) | |
10285 | if test -d /usr/nec ;then | |
10286 | version_type=linux | |
10287 | library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' | |
10288 | soname_spec='$libname${shared_ext}.$major' | |
10289 | shlibpath_var=LD_LIBRARY_PATH | |
2232061b | 10290 | fi |
6bb11ab3 L |
10291 | ;; |
10292 | ||
10293 | sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) | |
10294 | version_type=freebsd-elf | |
10295 | need_lib_prefix=no | |
10296 | need_version=no | |
10297 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' | |
10298 | soname_spec='${libname}${release}${shared_ext}$major' | |
10299 | shlibpath_var=LD_LIBRARY_PATH | |
10300 | shlibpath_overrides_runpath=yes | |
10301 | hardcode_into_libs=yes | |
10302 | if test "$with_gnu_ld" = yes; then | |
10303 | sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' | |
10304 | else | |
10305 | sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' | |
10306 | case $host_os in | |
10307 | sco3.2v5*) | |
10308 | sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" | |
10309 | ;; | |
10310 | esac | |
10311 | fi | |
10312 | sys_lib_dlsearch_path_spec='/usr/lib' | |
10313 | ;; | |
10314 | ||
10315 | tpf*) | |
10316 | # TPF is a cross-target only. Preferred cross-host = GNU/Linux. | |
10317 | version_type=linux | |
10318 | need_lib_prefix=no | |
10319 | need_version=no | |
10320 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
10321 | shlibpath_var=LD_LIBRARY_PATH | |
10322 | shlibpath_overrides_runpath=no | |
10323 | hardcode_into_libs=yes | |
10324 | ;; | |
10325 | ||
10326 | uts4*) | |
10327 | version_type=linux | |
10328 | library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | |
10329 | soname_spec='${libname}${release}${shared_ext}$major' | |
10330 | shlibpath_var=LD_LIBRARY_PATH | |
10331 | ;; | |
10332 | ||
10333 | *) | |
10334 | dynamic_linker=no | |
10335 | ;; | |
10336 | esac | |
10337 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 | |
10338 | $as_echo "$dynamic_linker" >&6; } | |
10339 | test "$dynamic_linker" = no && can_build_shared=no | |
10340 | ||
10341 | variables_saved_for_relink="PATH $shlibpath_var $runpath_var" | |
10342 | if test "$GCC" = yes; then | |
10343 | variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" | |
2232061b | 10344 | fi |
2232061b | 10345 | |
6bb11ab3 L |
10346 | if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then |
10347 | sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" | |
10348 | fi | |
10349 | if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then | |
10350 | sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" | |
10351 | fi | |
10352 | ||
10353 | ||
10354 | ||
10355 | ||
10356 | ||
10357 | ||
10358 | ||
10359 | ||
10360 | ||
10361 | ||
10362 | ||
10363 | ||
10364 | ||
10365 | ||
10366 | ||
10367 | ||
10368 | ||
10369 | ||
10370 | ||
10371 | ||
10372 | ||
10373 | ||
10374 | ||
10375 | ||
10376 | ||
10377 | ||
2232061b | 10378 | |
2232061b | 10379 | |
2232061b | 10380 | |
2232061b | 10381 | |
2232061b MF |
10382 | |
10383 | ||
87326c78 | 10384 | |
87326c78 DD |
10385 | |
10386 | ||
10387 | ||
10388 | ||
10389 | ||
2232061b | 10390 | |
87326c78 DD |
10391 | |
10392 | ||
10393 | ||
10394 | ||
87326c78 | 10395 | |
87326c78 | 10396 | |
87326c78 DD |
10397 | |
10398 | ||
87326c78 | 10399 | |
87326c78 | 10400 | |
87326c78 DD |
10401 | |
10402 | ||
5f3ef9d0 | 10403 | |
5f3ef9d0 JB |
10404 | |
10405 | ||
10406 | ||
db2e4d67 MF |
10407 | |
10408 | ||
db2e4d67 | 10409 | |
db2e4d67 | 10410 | |
db2e4d67 | 10411 | |
db2e4d67 | 10412 | |
db2e4d67 | 10413 | |
db2e4d67 | 10414 | |
db2e4d67 | 10415 | |
db2e4d67 MF |
10416 | |
10417 | ||
db2e4d67 | 10418 | |
db2e4d67 MF |
10419 | |
10420 | ||
db2e4d67 | 10421 | |
db2e4d67 MF |
10422 | |
10423 | ||
87326c78 | 10424 | |
87326c78 | 10425 | |
87326c78 DD |
10426 | |
10427 | ||
87326c78 DD |
10428 | |
10429 | ||
87326c78 | 10430 | |
87326c78 | 10431 | |
87326c78 | 10432 | |
87326c78 | 10433 | |
87326c78 | 10434 | |
87326c78 | 10435 | |
87326c78 | 10436 | |
87326c78 | 10437 | |
87326c78 | 10438 | |
87326c78 | 10439 | |
87326c78 | 10440 | |
87326c78 | 10441 | |
87326c78 | 10442 | |
87326c78 | 10443 | |
6bb11ab3 L |
10444 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 |
10445 | $as_echo_n "checking how to hardcode library paths into programs... " >&6; } | |
10446 | hardcode_action= | |
10447 | if test -n "$hardcode_libdir_flag_spec" || | |
10448 | test -n "$runpath_var" || | |
10449 | test "X$hardcode_automatic" = "Xyes" ; then | |
87326c78 | 10450 | |
6bb11ab3 L |
10451 | # We can hardcode non-existent directories. |
10452 | if test "$hardcode_direct" != no && | |
10453 | # If the only mechanism to avoid hardcoding is shlibpath_var, we | |
10454 | # have to relink, otherwise we might link with an installed library | |
10455 | # when we should be linking with a yet-to-be-installed one | |
10456 | ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && | |
10457 | test "$hardcode_minus_L" != no; then | |
10458 | # Linking always hardcodes the temporary library directory. | |
10459 | hardcode_action=relink | |
10460 | else | |
10461 | # We can link without hardcoding, and we can hardcode nonexisting dirs. | |
10462 | hardcode_action=immediate | |
10463 | fi | |
10464 | else | |
10465 | # We cannot hardcode anything, or else we can only hardcode existing | |
10466 | # directories. | |
10467 | hardcode_action=unsupported | |
87326c78 | 10468 | fi |
6bb11ab3 L |
10469 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 |
10470 | $as_echo "$hardcode_action" >&6; } | |
87326c78 | 10471 | |
6bb11ab3 L |
10472 | if test "$hardcode_action" = relink || |
10473 | test "$inherit_rpath" = yes; then | |
10474 | # Fast installation is not supported | |
10475 | enable_fast_install=no | |
10476 | elif test "$shlibpath_overrides_runpath" = yes || | |
10477 | test "$enable_shared" = no; then | |
10478 | # Fast installation is not necessary | |
10479 | enable_fast_install=needless | |
10480 | fi | |
87326c78 | 10481 | |
6bb11ab3 L |
10482 | |
10483 | ||
10484 | ||
10485 | ||
10486 | ||
10487 | if test "x$enable_dlopen" != xyes; then | |
10488 | enable_dlopen=unknown | |
10489 | enable_dlopen_self=unknown | |
10490 | enable_dlopen_self_static=unknown | |
10491 | else | |
10492 | lt_cv_dlopen=no | |
10493 | lt_cv_dlopen_libs= | |
10494 | ||
10495 | case $host_os in | |
10496 | beos*) | |
10497 | lt_cv_dlopen="load_add_on" | |
10498 | lt_cv_dlopen_libs= | |
10499 | lt_cv_dlopen_self=yes | |
10500 | ;; | |
10501 | ||
10502 | mingw* | pw32* | cegcc*) | |
10503 | lt_cv_dlopen="LoadLibrary" | |
10504 | lt_cv_dlopen_libs= | |
10505 | ;; | |
10506 | ||
10507 | cygwin*) | |
10508 | lt_cv_dlopen="dlopen" | |
10509 | lt_cv_dlopen_libs= | |
10510 | ;; | |
10511 | ||
10512 | darwin*) | |
10513 | # if libdl is installed we need to link against it | |
10514 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 | |
10515 | $as_echo_n "checking for dlopen in -ldl... " >&6; } | |
d0ac1c44 | 10516 | if ${ac_cv_lib_dl_dlopen+:} false; then : |
6bb11ab3 L |
10517 | $as_echo_n "(cached) " >&6 |
10518 | else | |
10519 | ac_check_lib_save_LIBS=$LIBS | |
10520 | LIBS="-ldl $LIBS" | |
10521 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
10522 | /* end confdefs.h. */ | |
10523 | ||
10524 | /* Override any GCC internal prototype to avoid an error. | |
10525 | Use char because int might match the return type of a GCC | |
10526 | builtin and then its argument prototype would still apply. */ | |
10527 | #ifdef __cplusplus | |
10528 | extern "C" | |
10529 | #endif | |
10530 | char dlopen (); | |
10531 | int | |
10532 | main () | |
10533 | { | |
10534 | return dlopen (); | |
10535 | ; | |
10536 | return 0; | |
10537 | } | |
87326c78 | 10538 | _ACEOF |
6bb11ab3 L |
10539 | if ac_fn_c_try_link "$LINENO"; then : |
10540 | ac_cv_lib_dl_dlopen=yes | |
10541 | else | |
10542 | ac_cv_lib_dl_dlopen=no | |
10543 | fi | |
10544 | rm -f core conftest.err conftest.$ac_objext \ | |
10545 | conftest$ac_exeext conftest.$ac_ext | |
10546 | LIBS=$ac_check_lib_save_LIBS | |
10547 | fi | |
10548 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 | |
10549 | $as_echo "$ac_cv_lib_dl_dlopen" >&6; } | |
d0ac1c44 | 10550 | if test "x$ac_cv_lib_dl_dlopen" = xyes; then : |
6bb11ab3 L |
10551 | lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" |
10552 | else | |
10553 | ||
10554 | lt_cv_dlopen="dyld" | |
10555 | lt_cv_dlopen_libs= | |
10556 | lt_cv_dlopen_self=yes | |
87326c78 DD |
10557 | |
10558 | fi | |
87326c78 | 10559 | |
6bb11ab3 | 10560 | ;; |
87326c78 | 10561 | |
6bb11ab3 L |
10562 | *) |
10563 | ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" | |
d0ac1c44 | 10564 | if test "x$ac_cv_func_shl_load" = xyes; then : |
6bb11ab3 L |
10565 | lt_cv_dlopen="shl_load" |
10566 | else | |
10567 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 | |
10568 | $as_echo_n "checking for shl_load in -ldld... " >&6; } | |
d0ac1c44 | 10569 | if ${ac_cv_lib_dld_shl_load+:} false; then : |
6bb11ab3 L |
10570 | $as_echo_n "(cached) " >&6 |
10571 | else | |
10572 | ac_check_lib_save_LIBS=$LIBS | |
10573 | LIBS="-ldld $LIBS" | |
10574 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
10575 | /* end confdefs.h. */ | |
10576 | ||
10577 | /* Override any GCC internal prototype to avoid an error. | |
10578 | Use char because int might match the return type of a GCC | |
10579 | builtin and then its argument prototype would still apply. */ | |
10580 | #ifdef __cplusplus | |
10581 | extern "C" | |
10582 | #endif | |
10583 | char shl_load (); | |
10584 | int | |
10585 | main () | |
10586 | { | |
10587 | return shl_load (); | |
10588 | ; | |
10589 | return 0; | |
10590 | } | |
10591 | _ACEOF | |
10592 | if ac_fn_c_try_link "$LINENO"; then : | |
10593 | ac_cv_lib_dld_shl_load=yes | |
10594 | else | |
10595 | ac_cv_lib_dld_shl_load=no | |
10596 | fi | |
10597 | rm -f core conftest.err conftest.$ac_objext \ | |
10598 | conftest$ac_exeext conftest.$ac_ext | |
10599 | LIBS=$ac_check_lib_save_LIBS | |
10600 | fi | |
10601 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 | |
10602 | $as_echo "$ac_cv_lib_dld_shl_load" >&6; } | |
d0ac1c44 | 10603 | if test "x$ac_cv_lib_dld_shl_load" = xyes; then : |
6bb11ab3 L |
10604 | lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" |
10605 | else | |
10606 | ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" | |
d0ac1c44 | 10607 | if test "x$ac_cv_func_dlopen" = xyes; then : |
6bb11ab3 L |
10608 | lt_cv_dlopen="dlopen" |
10609 | else | |
10610 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 | |
10611 | $as_echo_n "checking for dlopen in -ldl... " >&6; } | |
d0ac1c44 | 10612 | if ${ac_cv_lib_dl_dlopen+:} false; then : |
87326c78 DD |
10613 | $as_echo_n "(cached) " >&6 |
10614 | else | |
10615 | ac_check_lib_save_LIBS=$LIBS | |
6bb11ab3 | 10616 | LIBS="-ldl $LIBS" |
87326c78 DD |
10617 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
10618 | /* end confdefs.h. */ | |
10619 | ||
10620 | /* Override any GCC internal prototype to avoid an error. | |
10621 | Use char because int might match the return type of a GCC | |
10622 | builtin and then its argument prototype would still apply. */ | |
10623 | #ifdef __cplusplus | |
10624 | extern "C" | |
10625 | #endif | |
6bb11ab3 | 10626 | char dlopen (); |
87326c78 DD |
10627 | int |
10628 | main () | |
10629 | { | |
6bb11ab3 | 10630 | return dlopen (); |
87326c78 DD |
10631 | ; |
10632 | return 0; | |
10633 | } | |
10634 | _ACEOF | |
10635 | if ac_fn_c_try_link "$LINENO"; then : | |
6bb11ab3 | 10636 | ac_cv_lib_dl_dlopen=yes |
87326c78 | 10637 | else |
6bb11ab3 | 10638 | ac_cv_lib_dl_dlopen=no |
87326c78 DD |
10639 | fi |
10640 | rm -f core conftest.err conftest.$ac_objext \ | |
10641 | conftest$ac_exeext conftest.$ac_ext | |
10642 | LIBS=$ac_check_lib_save_LIBS | |
10643 | fi | |
6bb11ab3 L |
10644 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 |
10645 | $as_echo "$ac_cv_lib_dl_dlopen" >&6; } | |
d0ac1c44 | 10646 | if test "x$ac_cv_lib_dl_dlopen" = xyes; then : |
6bb11ab3 L |
10647 | lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" |
10648 | else | |
10649 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 | |
10650 | $as_echo_n "checking for dlopen in -lsvld... " >&6; } | |
d0ac1c44 | 10651 | if ${ac_cv_lib_svld_dlopen+:} false; then : |
87326c78 DD |
10652 | $as_echo_n "(cached) " >&6 |
10653 | else | |
10654 | ac_check_lib_save_LIBS=$LIBS | |
6bb11ab3 | 10655 | LIBS="-lsvld $LIBS" |
87326c78 DD |
10656 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
10657 | /* end confdefs.h. */ | |
10658 | ||
10659 | /* Override any GCC internal prototype to avoid an error. | |
10660 | Use char because int might match the return type of a GCC | |
10661 | builtin and then its argument prototype would still apply. */ | |
10662 | #ifdef __cplusplus | |
10663 | extern "C" | |
10664 | #endif | |
6bb11ab3 | 10665 | char dlopen (); |
87326c78 DD |
10666 | int |
10667 | main () | |
10668 | { | |
6bb11ab3 | 10669 | return dlopen (); |
87326c78 DD |
10670 | ; |
10671 | return 0; | |
10672 | } | |
10673 | _ACEOF | |
10674 | if ac_fn_c_try_link "$LINENO"; then : | |
6bb11ab3 | 10675 | ac_cv_lib_svld_dlopen=yes |
87326c78 | 10676 | else |
6bb11ab3 | 10677 | ac_cv_lib_svld_dlopen=no |
87326c78 DD |
10678 | fi |
10679 | rm -f core conftest.err conftest.$ac_objext \ | |
10680 | conftest$ac_exeext conftest.$ac_ext | |
10681 | LIBS=$ac_check_lib_save_LIBS | |
10682 | fi | |
6bb11ab3 L |
10683 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 |
10684 | $as_echo "$ac_cv_lib_svld_dlopen" >&6; } | |
d0ac1c44 | 10685 | if test "x$ac_cv_lib_svld_dlopen" = xyes; then : |
6bb11ab3 | 10686 | lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" |
87326c78 | 10687 | else |
6bb11ab3 L |
10688 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 |
10689 | $as_echo_n "checking for dld_link in -ldld... " >&6; } | |
d0ac1c44 | 10690 | if ${ac_cv_lib_dld_dld_link+:} false; then : |
87326c78 DD |
10691 | $as_echo_n "(cached) " >&6 |
10692 | else | |
6bb11ab3 L |
10693 | ac_check_lib_save_LIBS=$LIBS |
10694 | LIBS="-ldld $LIBS" | |
87326c78 DD |
10695 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
10696 | /* end confdefs.h. */ | |
10697 | ||
10698 | /* Override any GCC internal prototype to avoid an error. | |
10699 | Use char because int might match the return type of a GCC | |
10700 | builtin and then its argument prototype would still apply. */ | |
10701 | #ifdef __cplusplus | |
10702 | extern "C" | |
10703 | #endif | |
6bb11ab3 | 10704 | char dld_link (); |
87326c78 DD |
10705 | int |
10706 | main () | |
10707 | { | |
6bb11ab3 | 10708 | return dld_link (); |
87326c78 DD |
10709 | ; |
10710 | return 0; | |
10711 | } | |
10712 | _ACEOF | |
6bb11ab3 L |
10713 | if ac_fn_c_try_link "$LINENO"; then : |
10714 | ac_cv_lib_dld_dld_link=yes | |
10715 | else | |
10716 | ac_cv_lib_dld_dld_link=no | |
10717 | fi | |
10718 | rm -f core conftest.err conftest.$ac_objext \ | |
10719 | conftest$ac_exeext conftest.$ac_ext | |
10720 | LIBS=$ac_check_lib_save_LIBS | |
10721 | fi | |
10722 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 | |
10723 | $as_echo "$ac_cv_lib_dld_dld_link" >&6; } | |
d0ac1c44 | 10724 | if test "x$ac_cv_lib_dld_dld_link" = xyes; then : |
6bb11ab3 L |
10725 | lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" |
10726 | fi | |
10727 | ||
10728 | ||
10729 | fi | |
10730 | ||
10731 | ||
10732 | fi | |
10733 | ||
10734 | ||
10735 | fi | |
10736 | ||
10737 | ||
10738 | fi | |
10739 | ||
10740 | ||
10741 | fi | |
10742 | ||
10743 | ;; | |
10744 | esac | |
10745 | ||
10746 | if test "x$lt_cv_dlopen" != xno; then | |
10747 | enable_dlopen=yes | |
87326c78 | 10748 | else |
6bb11ab3 L |
10749 | enable_dlopen=no |
10750 | fi | |
10751 | ||
10752 | case $lt_cv_dlopen in | |
10753 | dlopen) | |
10754 | save_CPPFLAGS="$CPPFLAGS" | |
10755 | test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" | |
10756 | ||
10757 | save_LDFLAGS="$LDFLAGS" | |
10758 | wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" | |
10759 | ||
10760 | save_LIBS="$LIBS" | |
10761 | LIBS="$lt_cv_dlopen_libs $LIBS" | |
10762 | ||
10763 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 | |
10764 | $as_echo_n "checking whether a program can dlopen itself... " >&6; } | |
d0ac1c44 | 10765 | if ${lt_cv_dlopen_self+:} false; then : |
6bb11ab3 L |
10766 | $as_echo_n "(cached) " >&6 |
10767 | else | |
10768 | if test "$cross_compiling" = yes; then : | |
10769 | lt_cv_dlopen_self=cross | |
10770 | else | |
10771 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | |
10772 | lt_status=$lt_dlunknown | |
10773 | cat > conftest.$ac_ext <<_LT_EOF | |
5ea45474 | 10774 | #line 10774 "configure" |
6bb11ab3 L |
10775 | #include "confdefs.h" |
10776 | ||
10777 | #if HAVE_DLFCN_H | |
10778 | #include <dlfcn.h> | |
10779 | #endif | |
10780 | ||
10781 | #include <stdio.h> | |
10782 | ||
10783 | #ifdef RTLD_GLOBAL | |
10784 | # define LT_DLGLOBAL RTLD_GLOBAL | |
10785 | #else | |
10786 | # ifdef DL_GLOBAL | |
10787 | # define LT_DLGLOBAL DL_GLOBAL | |
10788 | # else | |
10789 | # define LT_DLGLOBAL 0 | |
10790 | # endif | |
10791 | #endif | |
10792 | ||
10793 | /* We may have to define LT_DLLAZY_OR_NOW in the command line if we | |
10794 | find out it does not work in some platform. */ | |
10795 | #ifndef LT_DLLAZY_OR_NOW | |
10796 | # ifdef RTLD_LAZY | |
10797 | # define LT_DLLAZY_OR_NOW RTLD_LAZY | |
10798 | # else | |
10799 | # ifdef DL_LAZY | |
10800 | # define LT_DLLAZY_OR_NOW DL_LAZY | |
10801 | # else | |
10802 | # ifdef RTLD_NOW | |
10803 | # define LT_DLLAZY_OR_NOW RTLD_NOW | |
10804 | # else | |
10805 | # ifdef DL_NOW | |
10806 | # define LT_DLLAZY_OR_NOW DL_NOW | |
10807 | # else | |
10808 | # define LT_DLLAZY_OR_NOW 0 | |
10809 | # endif | |
10810 | # endif | |
10811 | # endif | |
10812 | # endif | |
10813 | #endif | |
10814 | ||
10815 | /* When -fvisbility=hidden is used, assume the code has been annotated | |
10816 | correspondingly for the symbols needed. */ | |
10817 | #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) | |
10818 | void fnord () __attribute__((visibility("default"))); | |
10819 | #endif | |
10820 | ||
10821 | void fnord () { int i=42; } | |
10822 | int main () | |
10823 | { | |
10824 | void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); | |
10825 | int status = $lt_dlunknown; | |
10826 | ||
10827 | if (self) | |
10828 | { | |
10829 | if (dlsym (self,"fnord")) status = $lt_dlno_uscore; | |
10830 | else | |
10831 | { | |
10832 | if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; | |
10833 | else puts (dlerror ()); | |
10834 | } | |
10835 | /* dlclose (self); */ | |
10836 | } | |
10837 | else | |
10838 | puts (dlerror ()); | |
10839 | ||
10840 | return status; | |
10841 | } | |
10842 | _LT_EOF | |
10843 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 | |
10844 | (eval $ac_link) 2>&5 | |
10845 | ac_status=$? | |
10846 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
10847 | test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then | |
10848 | (./conftest; exit; ) >&5 2>/dev/null | |
10849 | lt_status=$? | |
10850 | case x$lt_status in | |
10851 | x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; | |
10852 | x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; | |
10853 | x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; | |
10854 | esac | |
10855 | else : | |
10856 | # compilation failed | |
10857 | lt_cv_dlopen_self=no | |
87326c78 | 10858 | fi |
87326c78 | 10859 | fi |
6bb11ab3 L |
10860 | rm -fr conftest* |
10861 | ||
10862 | ||
87326c78 | 10863 | fi |
6bb11ab3 L |
10864 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 |
10865 | $as_echo "$lt_cv_dlopen_self" >&6; } | |
87326c78 | 10866 | |
6bb11ab3 L |
10867 | if test "x$lt_cv_dlopen_self" = xyes; then |
10868 | wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" | |
10869 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 | |
10870 | $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } | |
d0ac1c44 | 10871 | if ${lt_cv_dlopen_self_static+:} false; then : |
6bb11ab3 | 10872 | $as_echo_n "(cached) " >&6 |
87326c78 | 10873 | else |
6bb11ab3 L |
10874 | if test "$cross_compiling" = yes; then : |
10875 | lt_cv_dlopen_self_static=cross | |
10876 | else | |
10877 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | |
10878 | lt_status=$lt_dlunknown | |
10879 | cat > conftest.$ac_ext <<_LT_EOF | |
5ea45474 | 10880 | #line 10880 "configure" |
6bb11ab3 L |
10881 | #include "confdefs.h" |
10882 | ||
10883 | #if HAVE_DLFCN_H | |
10884 | #include <dlfcn.h> | |
10885 | #endif | |
10886 | ||
10887 | #include <stdio.h> | |
10888 | ||
10889 | #ifdef RTLD_GLOBAL | |
10890 | # define LT_DLGLOBAL RTLD_GLOBAL | |
10891 | #else | |
10892 | # ifdef DL_GLOBAL | |
10893 | # define LT_DLGLOBAL DL_GLOBAL | |
10894 | # else | |
10895 | # define LT_DLGLOBAL 0 | |
10896 | # endif | |
10897 | #endif | |
10898 | ||
10899 | /* We may have to define LT_DLLAZY_OR_NOW in the command line if we | |
10900 | find out it does not work in some platform. */ | |
10901 | #ifndef LT_DLLAZY_OR_NOW | |
10902 | # ifdef RTLD_LAZY | |
10903 | # define LT_DLLAZY_OR_NOW RTLD_LAZY | |
10904 | # else | |
10905 | # ifdef DL_LAZY | |
10906 | # define LT_DLLAZY_OR_NOW DL_LAZY | |
10907 | # else | |
10908 | # ifdef RTLD_NOW | |
10909 | # define LT_DLLAZY_OR_NOW RTLD_NOW | |
10910 | # else | |
10911 | # ifdef DL_NOW | |
10912 | # define LT_DLLAZY_OR_NOW DL_NOW | |
10913 | # else | |
10914 | # define LT_DLLAZY_OR_NOW 0 | |
10915 | # endif | |
10916 | # endif | |
10917 | # endif | |
10918 | # endif | |
10919 | #endif | |
10920 | ||
10921 | /* When -fvisbility=hidden is used, assume the code has been annotated | |
10922 | correspondingly for the symbols needed. */ | |
10923 | #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) | |
10924 | void fnord () __attribute__((visibility("default"))); | |
10925 | #endif | |
10926 | ||
10927 | void fnord () { int i=42; } | |
10928 | int main () | |
10929 | { | |
10930 | void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); | |
10931 | int status = $lt_dlunknown; | |
10932 | ||
10933 | if (self) | |
10934 | { | |
10935 | if (dlsym (self,"fnord")) status = $lt_dlno_uscore; | |
10936 | else | |
10937 | { | |
10938 | if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; | |
10939 | else puts (dlerror ()); | |
10940 | } | |
10941 | /* dlclose (self); */ | |
10942 | } | |
10943 | else | |
10944 | puts (dlerror ()); | |
10945 | ||
10946 | return status; | |
10947 | } | |
10948 | _LT_EOF | |
10949 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 | |
10950 | (eval $ac_link) 2>&5 | |
10951 | ac_status=$? | |
10952 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | |
10953 | test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then | |
10954 | (./conftest; exit; ) >&5 2>/dev/null | |
10955 | lt_status=$? | |
10956 | case x$lt_status in | |
10957 | x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; | |
10958 | x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; | |
10959 | x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; | |
10960 | esac | |
10961 | else : | |
10962 | # compilation failed | |
10963 | lt_cv_dlopen_self_static=no | |
10964 | fi | |
87326c78 | 10965 | fi |
6bb11ab3 L |
10966 | rm -fr conftest* |
10967 | ||
10968 | ||
87326c78 | 10969 | fi |
6bb11ab3 L |
10970 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 |
10971 | $as_echo "$lt_cv_dlopen_self_static" >&6; } | |
10972 | fi | |
10973 | ||
10974 | CPPFLAGS="$save_CPPFLAGS" | |
10975 | LDFLAGS="$save_LDFLAGS" | |
10976 | LIBS="$save_LIBS" | |
10977 | ;; | |
10978 | esac | |
10979 | ||
10980 | case $lt_cv_dlopen_self in | |
10981 | yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; | |
10982 | *) enable_dlopen_self=unknown ;; | |
10983 | esac | |
10984 | ||
10985 | case $lt_cv_dlopen_self_static in | |
10986 | yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; | |
10987 | *) enable_dlopen_self_static=unknown ;; | |
10988 | esac | |
10989 | fi | |
10990 | ||
10991 | ||
10992 | ||
10993 | ||
10994 | ||
10995 | ||
10996 | ||
10997 | ||
10998 | ||
10999 | ||
11000 | ||
11001 | ||
11002 | ||
11003 | ||
11004 | ||
11005 | ||
11006 | ||
11007 | striplib= | |
11008 | old_striplib= | |
11009 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 | |
11010 | $as_echo_n "checking whether stripping libraries is possible... " >&6; } | |
11011 | if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then | |
11012 | test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" | |
11013 | test -z "$striplib" && striplib="$STRIP --strip-unneeded" | |
11014 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | |
11015 | $as_echo "yes" >&6; } | |
11016 | else | |
11017 | # FIXME - insert some real tests, host_os isn't really good enough | |
11018 | case $host_os in | |
11019 | darwin*) | |
11020 | if test -n "$STRIP" ; then | |
11021 | striplib="$STRIP -x" | |
11022 | old_striplib="$STRIP -S" | |
11023 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | |
11024 | $as_echo "yes" >&6; } | |
11025 | else | |
11026 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
11027 | $as_echo "no" >&6; } | |
11028 | fi | |
11029 | ;; | |
11030 | *) | |
11031 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | |
11032 | $as_echo "no" >&6; } | |
11033 | ;; | |
11034 | esac | |
11035 | fi | |
11036 | ||
11037 | ||
11038 | ||
11039 | ||
11040 | ||
11041 | ||
11042 | ||
11043 | ||
11044 | ||
11045 | ||
11046 | ||
11047 | ||
11048 | # Report which library types will actually be built | |
11049 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 | |
11050 | $as_echo_n "checking if libtool supports shared libraries... " >&6; } | |
11051 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 | |
11052 | $as_echo "$can_build_shared" >&6; } | |
11053 | ||
11054 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 | |
11055 | $as_echo_n "checking whether to build shared libraries... " >&6; } | |
11056 | test "$can_build_shared" = "no" && enable_shared=no | |
11057 | ||
11058 | # On AIX, shared libraries and static libraries use the same namespace, and | |
11059 | # are all built from PIC. | |
11060 | case $host_os in | |
11061 | aix3*) | |
11062 | test "$enable_shared" = yes && enable_static=no | |
11063 | if test -n "$RANLIB"; then | |
11064 | archive_cmds="$archive_cmds~\$RANLIB \$lib" | |
11065 | postinstall_cmds='$RANLIB $lib' | |
11066 | fi | |
11067 | ;; | |
11068 | ||
11069 | aix[4-9]*) | |
11070 | if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then | |
11071 | test "$enable_shared" = yes && enable_static=no | |
11072 | fi | |
11073 | ;; | |
11074 | esac | |
11075 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 | |
11076 | $as_echo "$enable_shared" >&6; } | |
11077 | ||
11078 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 | |
11079 | $as_echo_n "checking whether to build static libraries... " >&6; } | |
11080 | # Make sure either enable_shared or enable_static is yes. | |
11081 | test "$enable_shared" = yes || enable_static=yes | |
11082 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 | |
11083 | $as_echo "$enable_static" >&6; } | |
11084 | ||
11085 | ||
11086 | ||
11087 | ||
11088 | fi | |
11089 | ac_ext=c | |
11090 | ac_cpp='$CPP $CPPFLAGS' | |
11091 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | |
11092 | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' | |
11093 | ac_compiler_gnu=$ac_cv_c_compiler_gnu | |
11094 | ||
11095 | CC="$lt_save_CC" | |
11096 | ||
11097 | ||
11098 | ||
11099 | ||
11100 | ||
11101 | ||
11102 | ||
11103 | ||
11104 | ||
87326c78 | 11105 | |
87326c78 | 11106 | |
87326c78 | 11107 | |
87326c78 | 11108 | |
6bb11ab3 L |
11109 | ac_config_commands="$ac_config_commands libtool" |
11110 | ||
11111 | ||
11112 | ||
11113 | ||
11114 | # Only expand once: | |
11115 | ||
11116 | ||
87326c78 DD |
11117 | |
11118 | ||
87326c78 DD |
11119 | |
11120 | ||
31e6ad7d MF |
11121 | |
11122 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 | |
11123 | $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } | |
11124 | # Check whether --enable-maintainer-mode was given. | |
87326c78 | 11125 | if test "${enable_maintainer_mode+set}" = set; then : |
31e6ad7d MF |
11126 | enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval |
11127 | else | |
11128 | USE_MAINTAINER_MODE=no | |
87326c78 | 11129 | fi |
31e6ad7d MF |
11130 | |
11131 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 | |
11132 | $as_echo "$USE_MAINTAINER_MODE" >&6; } | |
11133 | if test $USE_MAINTAINER_MODE = yes; then | |
11134 | MAINTAINER_MODE_TRUE= | |
11135 | MAINTAINER_MODE_FALSE='#' | |
87326c78 | 11136 | else |
31e6ad7d MF |
11137 | MAINTAINER_MODE_TRUE='#' |
11138 | MAINTAINER_MODE_FALSE= | |
87326c78 DD |
11139 | fi |
11140 | ||
31e6ad7d MF |
11141 | MAINT=$MAINTAINER_MODE_TRUE |
11142 | ||
11143 | ||
87326c78 DD |
11144 | |
11145 | ||
ce39bd38 MF |
11146 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5 |
11147 | $as_echo_n "checking for sim debug setting... " >&6; } | |
11148 | sim_debug="0" | |
87326c78 DD |
11149 | # Check whether --enable-sim-debug was given. |
11150 | if test "${enable_sim_debug+set}" = set; then : | |
11151 | enableval=$enable_sim_debug; case "${enableval}" in | |
ce39bd38 MF |
11152 | yes) sim_debug="7";; |
11153 | no) sim_debug="0";; | |
11154 | *) sim_debug="($enableval)";; | |
87326c78 | 11155 | esac |
87326c78 | 11156 | fi |
ce39bd38 MF |
11157 | if test "$sim_debug" != "0"; then |
11158 | ||
11159 | cat >>confdefs.h <<_ACEOF | |
11160 | #define DEBUG $sim_debug | |
11161 | _ACEOF | |
11162 | ||
87326c78 DD |
11163 | fi |
11164 | ||
ce39bd38 MF |
11165 | cat >>confdefs.h <<_ACEOF |
11166 | #define WITH_DEBUG $sim_debug | |
11167 | _ACEOF | |
11168 | ||
11169 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5 | |
11170 | $as_echo "$sim_debug" >&6; } | |
87326c78 DD |
11171 | |
11172 | ||
ce39bd38 MF |
11173 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5 |
11174 | $as_echo_n "checking for sim stdio debug behavior... " >&6; } | |
11175 | sim_stdio="0" | |
87326c78 DD |
11176 | # Check whether --enable-sim-stdio was given. |
11177 | if test "${enable_sim_stdio+set}" = set; then : | |
11178 | enableval=$enable_sim_stdio; case "${enableval}" in | |
ce39bd38 MF |
11179 | yes) sim_stdio="DO_USE_STDIO";; |
11180 | no) sim_stdio="DONT_USE_STDIO";; | |
d0ac1c44 | 11181 | *) as_fn_error $? "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;; |
87326c78 | 11182 | esac |
87326c78 DD |
11183 | fi |
11184 | ||
ce39bd38 MF |
11185 | cat >>confdefs.h <<_ACEOF |
11186 | #define WITH_STDIO $sim_stdio | |
11187 | _ACEOF | |
11188 | ||
11189 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5 | |
11190 | $as_echo "$sim_stdio" >&6; } | |
87326c78 DD |
11191 | |
11192 | ||
ce39bd38 MF |
11193 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5 |
11194 | $as_echo_n "checking for sim trace settings... " >&6; } | |
11195 | sim_trace="~TRACE_debug" | |
87326c78 DD |
11196 | # Check whether --enable-sim-trace was given. |
11197 | if test "${enable_sim_trace+set}" = set; then : | |
11198 | enableval=$enable_sim_trace; case "${enableval}" in | |
ce39bd38 MF |
11199 | yes) sim_trace="-1";; |
11200 | no) sim_trace="0";; | |
87326c78 | 11201 | [-0-9]*) |
ce39bd38 | 11202 | sim_trace="'(${enableval})'";; |
2232061b | 11203 | [[:lower:]]*) |
87326c78 DD |
11204 | sim_trace="" |
11205 | for x in `echo "$enableval" | sed -e "s/,/ /g"`; do | |
11206 | if test x"$sim_trace" = x; then | |
ce39bd38 | 11207 | sim_trace="(TRACE_$x" |
87326c78 DD |
11208 | else |
11209 | sim_trace="${sim_trace}|TRACE_$x" | |
11210 | fi | |
11211 | done | |
ce39bd38 | 11212 | sim_trace="$sim_trace)" ;; |
87326c78 | 11213 | esac |
87326c78 DD |
11214 | fi |
11215 | ||
ce39bd38 MF |
11216 | cat >>confdefs.h <<_ACEOF |
11217 | #define WITH_TRACE $sim_trace | |
11218 | _ACEOF | |
11219 | ||
11220 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5 | |
11221 | $as_echo "$sim_trace" >&6; } | |
87326c78 DD |
11222 | |
11223 | ||
ce39bd38 MF |
11224 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5 |
11225 | $as_echo_n "checking for sim profile settings... " >&6; } | |
11226 | profile="1" | |
11227 | sim_profile="-1" | |
87326c78 DD |
11228 | # Check whether --enable-sim-profile was given. |
11229 | if test "${enable_sim_profile+set}" = set; then : | |
11230 | enableval=$enable_sim_profile; case "${enableval}" in | |
ce39bd38 MF |
11231 | yes) profile="1" sim_profile="-1";; |
11232 | no) profile="0" sim_profile="0";; | |
87326c78 | 11233 | [-0-9]*) |
ce39bd38 | 11234 | profile="(${enableval})" sim_profile="(${enableval})";; |
87326c78 | 11235 | [a-z]*) |
ce39bd38 | 11236 | profile="1" |
87326c78 DD |
11237 | sim_profile="" |
11238 | for x in `echo "$enableval" | sed -e "s/,/ /g"`; do | |
11239 | if test x"$sim_profile" = x; then | |
ce39bd38 | 11240 | sim_profile="(PROFILE_$x" |
87326c78 DD |
11241 | else |
11242 | sim_profile="${sim_profile}|PROFILE_$x" | |
11243 | fi | |
11244 | done | |
ce39bd38 | 11245 | sim_profile="$sim_profile)" ;; |
87326c78 | 11246 | esac |
87326c78 DD |
11247 | fi |
11248 | ||
ce39bd38 MF |
11249 | cat >>confdefs.h <<_ACEOF |
11250 | #define PROFILE $profile | |
11251 | _ACEOF | |
87326c78 DD |
11252 | |
11253 | ||
ce39bd38 MF |
11254 | cat >>confdefs.h <<_ACEOF |
11255 | #define WITH_PROFILE $sim_profile | |
11256 | _ACEOF | |
11257 | ||
11258 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5 | |
11259 | $as_echo "$sim_profile" >&6; } | |
11260 | ||
11261 | ||
11262 | ||
347fe5bb MF |
11263 | sim_inline="-DDEFAULT_INLINE=0" |
11264 | # Check whether --enable-sim-inline was given. | |
11265 | if test "${enable_sim_inline+set}" = set; then : | |
11266 | enableval=$enable_sim_inline; sim_inline="" | |
11267 | case "$enableval" in | |
11268 | no) sim_inline="-DDEFAULT_INLINE=0";; | |
11269 | 0) sim_inline="-DDEFAULT_INLINE=0";; | |
11270 | yes | 2) sim_inline="-DDEFAULT_INLINE=ALL_C_INLINE";; | |
11271 | 1) sim_inline="-DDEFAULT_INLINE=INLINE_LOCALS";; | |
11272 | *) for x in `echo "$enableval" | sed -e "s/,/ /g"`; do | |
11273 | new_flag="" | |
11274 | case "$x" in | |
11275 | *_INLINE=*) new_flag="-D$x";; | |
11276 | *=*) new_flag=`echo "$x" | sed -e "s/=/_INLINE=/" -e "s/^/-D/"`;; | |
11277 | *_INLINE) new_flag="-D$x=ALL_C_INLINE";; | |
11278 | *) new_flag="-D$x""_INLINE=ALL_C_INLINE";; | |
11279 | esac | |
11280 | if test x"$sim_inline" = x""; then | |
11281 | sim_inline="$new_flag" | |
11282 | else | |
11283 | sim_inline="$sim_inline $new_flag" | |
11284 | fi | |
11285 | done;; | |
11286 | esac | |
11287 | if test x"$silent" != x"yes" && test x"$sim_inline" != x""; then | |
11288 | echo "Setting inline flags = $sim_inline" 6>&1 | |
11289 | fi | |
11290 | fi | |
11291 | ||
11292 | ||
11293 | ||
87326c78 DD |
11294 | |
11295 | # Check whether --with-pkgversion was given. | |
11296 | if test "${with_pkgversion+set}" = set; then : | |
11297 | withval=$with_pkgversion; case "$withval" in | |
d0ac1c44 | 11298 | yes) as_fn_error $? "package version not specified" "$LINENO" 5 ;; |
87326c78 DD |
11299 | no) PKGVERSION= ;; |
11300 | *) PKGVERSION="($withval) " ;; | |
11301 | esac | |
11302 | else | |
bf12d44e | 11303 | PKGVERSION="(SIM) " |
87326c78 DD |
11304 | |
11305 | fi | |
11306 | ||
11307 | ||
11308 | ||
11309 | ||
11310 | ||
11311 | # Check whether --with-bugurl was given. | |
11312 | if test "${with_bugurl+set}" = set; then : | |
11313 | withval=$with_bugurl; case "$withval" in | |
d0ac1c44 | 11314 | yes) as_fn_error $? "bug URL not specified" "$LINENO" 5 ;; |
87326c78 DD |
11315 | no) BUGURL= |
11316 | ;; | |
11317 | *) BUGURL="$withval" | |
11318 | ;; | |
11319 | esac | |
11320 | else | |
dfb856ba | 11321 | BUGURL="https://www.gnu.org/software/gdb/bugs/" |
87326c78 DD |
11322 | |
11323 | fi | |
11324 | ||
11325 | case ${BUGURL} in | |
11326 | "") | |
11327 | REPORT_BUGS_TO= | |
11328 | REPORT_BUGS_TEXI= | |
11329 | ;; | |
11330 | *) | |
11331 | REPORT_BUGS_TO="<$BUGURL>" | |
11332 | REPORT_BUGS_TEXI=@uref{`echo "$BUGURL" | sed 's/@/@@/g'`} | |
11333 | ;; | |
11334 | esac; | |
11335 | ||
11336 | ||
11337 | ||
11338 | ||
11339 | cat >>confdefs.h <<_ACEOF | |
11340 | #define PKGVERSION "$PKGVERSION" | |
11341 | _ACEOF | |
11342 | ||
11343 | ||
11344 | cat >>confdefs.h <<_ACEOF | |
11345 | #define REPORT_BUGS_TO "$REPORT_BUGS_TO" | |
11346 | _ACEOF | |
11347 | ||
11348 | ||
87326c78 DD |
11349 | |
11350 | ||
87326c78 | 11351 | |
5318ba65 | 11352 | |
5c1008a4 MF |
11353 | # Check whether --enable-werror was given. |
11354 | if test "${enable_werror+set}" = set; then : | |
11355 | enableval=$enable_werror; case "${enableval}" in | |
11356 | yes | y) ERROR_ON_WARNING="yes" ;; | |
11357 | no | n) ERROR_ON_WARNING="no" ;; | |
11358 | *) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;; | |
11359 | esac | |
11360 | fi | |
11361 | ||
11362 | ||
11363 | # Enable -Werror by default when using gcc | |
11364 | if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then | |
11365 | ERROR_ON_WARNING=yes | |
11366 | fi | |
11367 | ||
11368 | WERROR_CFLAGS="" | |
5318ba65 MF |
11369 | if test "${ERROR_ON_WARNING}" = yes ; then |
11370 | WERROR_CFLAGS="-Werror" | |
11371 | fi | |
5c1008a4 MF |
11372 | |
11373 | build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \ | |
11374 | -Wpointer-sign \ | |
11375 | -Wno-unused -Wunused-value -Wunused-function \ | |
11376 | -Wno-switch -Wno-char-subscripts -Wmissing-prototypes | |
11377 | -Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \ | |
11378 | -Wold-style-declaration -Wold-style-definition" | |
11379 | ||
11380 | # Enable -Wno-format by default when using gcc on mingw since many | |
11381 | # GCC versions complain about %I64. | |
11382 | case "${host}" in | |
11383 | *-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;; | |
11384 | *) build_warnings="$build_warnings -Wformat-nonliteral" ;; | |
11385 | esac | |
11386 | ||
11387 | # Check whether --enable-build-warnings was given. | |
11388 | if test "${enable_build_warnings+set}" = set; then : | |
11389 | enableval=$enable_build_warnings; case "${enableval}" in | |
11390 | yes) ;; | |
11391 | no) build_warnings="-w";; | |
11392 | ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"` | |
11393 | build_warnings="${build_warnings} ${t}";; | |
11394 | *,) t=`echo "${enableval}" | sed -e "s/,/ /g"` | |
11395 | build_warnings="${t} ${build_warnings}";; | |
11396 | *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;; | |
11397 | esac | |
11398 | if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then | |
11399 | echo "Setting compiler warning flags = $build_warnings" 6>&1 | |
11400 | fi | |
11401 | fi | |
11402 | # Check whether --enable-sim-build-warnings was given. | |
11403 | if test "${enable_sim_build_warnings+set}" = set; then : | |
11404 | enableval=$enable_sim_build_warnings; case "${enableval}" in | |
11405 | yes) ;; | |
11406 | no) build_warnings="-w";; | |
11407 | ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"` | |
11408 | build_warnings="${build_warnings} ${t}";; | |
11409 | *,) t=`echo "${enableval}" | sed -e "s/,/ /g"` | |
11410 | build_warnings="${t} ${build_warnings}";; | |
11411 | *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;; | |
11412 | esac | |
11413 | if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then | |
11414 | echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1 | |
11415 | fi | |
11416 | fi | |
11417 | WARN_CFLAGS="" | |
11418 | if test "x${build_warnings}" != x -a "x$GCC" = xyes | |
11419 | then | |
11420 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5 | |
11421 | $as_echo_n "checking compiler warning flags... " >&6; } | |
11422 | # Separate out the -Werror flag as some files just cannot be | |
11423 | # compiled with it enabled. | |
11424 | for w in ${build_warnings}; do | |
11425 | case $w in | |
11426 | -Werr*) WERROR_CFLAGS=-Werror ;; | |
11427 | *) # Check that GCC accepts it | |
11428 | saved_CFLAGS="$CFLAGS" | |
1f195bc3 | 11429 | CFLAGS="$CFLAGS -Werror $w" |
5c1008a4 MF |
11430 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
11431 | /* end confdefs.h. */ | |
11432 | ||
11433 | int | |
11434 | main () | |
11435 | { | |
11436 | ||
11437 | ; | |
11438 | return 0; | |
11439 | } | |
11440 | _ACEOF | |
11441 | if ac_fn_c_try_compile "$LINENO"; then : | |
11442 | WARN_CFLAGS="${WARN_CFLAGS} $w" | |
11443 | fi | |
11444 | rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext | |
11445 | CFLAGS="$saved_CFLAGS" | |
11446 | esac | |
11447 | done | |
11448 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5 | |
11449 | $as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; } | |
11450 | fi | |
11451 | ||
11452 | ||
66d055c7 MF |
11453 | hardware="cfi core pal glue " |
11454 | sim_hw_cflags="-DWITH_HW=1" | |
11455 | sim_hw="$hardware" | |
11456 | sim_hw_objs="\$(SIM_COMMON_HW_OBJS) `echo $sim_hw | sed -e 's/\([^ ][^ ]*\)/dv-\1.o/g'`" | |
11457 | ||
11458 | # Check whether --enable-sim-hardware was given. | |
11459 | if test "${enable_sim_hardware+set}" = set; then : | |
11460 | enableval=$enable_sim_hardware; | |
11461 | else | |
11462 | enable_sim_hardware="yes" | |
11463 | fi | |
11464 | ||
11465 | case ${enable_sim_hardware} in | |
11466 | yes|no) ;; | |
11467 | ,*) hardware="${hardware} `echo ${enableval} | sed -e 's/,/ /'`";; | |
11468 | *,) hardware="`echo ${enableval} | sed -e 's/,/ /'` ${hardware}";; | |
11469 | *) hardware="`echo ${enableval} | sed -e 's/,/ /'`"'';; | |
11470 | esac | |
11471 | ||
11472 | if test "$enable_sim_hardware" = no; then | |
11473 | sim_hw_objs= | |
11474 | sim_hw_cflags="-DWITH_HW=0" | |
11475 | sim_hw= | |
11476 | else | |
11477 | sim_hw_cflags="-DWITH_HW=1" | |
11478 | # remove duplicates | |
11479 | sim_hw="" | |
11480 | sim_hw_objs="\$(SIM_COMMON_HW_OBJS)" | |
11481 | for i in $hardware ; do | |
11482 | case " $sim_hw " in | |
11483 | *" $i "*) ;; | |
11484 | *) sim_hw="$sim_hw $i" ; sim_hw_objs="$sim_hw_objs dv-$i.o";; | |
11485 | esac | |
11486 | done | |
11487 | # mingw does not support sockser | |
11488 | case ${host} in | |
11489 | *mingw*) ;; | |
11490 | *) # TODO: We don't add dv-sockser to sim_hw as it is not a "real" device | |
11491 | # that you instatiate. Instead, other code will call into it directly. | |
11492 | # At some point, we should convert it over. | |
11493 | sim_hw_objs="$sim_hw_objs dv-sockser.o" | |
11494 | ||
11495 | cat >>confdefs.h <<_ACEOF | |
11496 | #define HAVE_DV_SOCKSER 1 | |
11497 | _ACEOF | |
11498 | ||
11499 | ;; | |
11500 | esac | |
11501 | if test x"$silent" != x"yes"; then | |
11502 | echo "Setting hardware to $sim_hw_cflags, $sim_hw, $sim_hw_objs" | |
11503 | fi | |
11504 | case " $hardware " in | |
11505 | *" cfi "*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log2 in -lm" >&5 | |
11506 | $as_echo_n "checking for log2 in -lm... " >&6; } | |
11507 | if ${ac_cv_lib_m_log2+:} false; then : | |
11508 | $as_echo_n "(cached) " >&6 | |
11509 | else | |
11510 | ac_check_lib_save_LIBS=$LIBS | |
11511 | LIBS="-lm $LIBS" | |
11512 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
11513 | /* end confdefs.h. */ | |
11514 | ||
11515 | /* Override any GCC internal prototype to avoid an error. | |
11516 | Use char because int might match the return type of a GCC | |
11517 | builtin and then its argument prototype would still apply. */ | |
11518 | #ifdef __cplusplus | |
11519 | extern "C" | |
11520 | #endif | |
11521 | char log2 (); | |
11522 | int | |
11523 | main () | |
11524 | { | |
11525 | return log2 (); | |
11526 | ; | |
11527 | return 0; | |
11528 | } | |
11529 | _ACEOF | |
11530 | if ac_fn_c_try_link "$LINENO"; then : | |
11531 | ac_cv_lib_m_log2=yes | |
11532 | else | |
11533 | ac_cv_lib_m_log2=no | |
11534 | fi | |
11535 | rm -f core conftest.err conftest.$ac_objext \ | |
11536 | conftest$ac_exeext conftest.$ac_ext | |
11537 | LIBS=$ac_check_lib_save_LIBS | |
11538 | fi | |
11539 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_log2" >&5 | |
11540 | $as_echo "$ac_cv_lib_m_log2" >&6; } | |
11541 | if test "x$ac_cv_lib_m_log2" = xyes; then : | |
11542 | cat >>confdefs.h <<_ACEOF | |
11543 | #define HAVE_LIBM 1 | |
11544 | _ACEOF | |
11545 | ||
11546 | LIBS="-lm $LIBS" | |
11547 | ||
11548 | fi | |
11549 | ;; | |
11550 | esac | |
11551 | fi | |
11552 | ||
11553 | ||
87326c78 DD |
11554 | cgen_breaks="" |
11555 | if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then | |
11556 | cgen_breaks="break cgen_rtx_error"; | |
11557 | fi | |
11558 | ||
11559 | ac_config_files="$ac_config_files Makefile.sim:Makefile.in" | |
11560 | ||
11561 | ac_config_files="$ac_config_files Make-common.sim:../common/Make-common.in" | |
11562 | ||
11563 | ac_config_files="$ac_config_files .gdbinit:../common/gdbinit.in" | |
11564 | ||
11565 | ac_config_commands="$ac_config_commands Makefile" | |
11566 | ||
11567 | ac_config_commands="$ac_config_commands stamp-h" | |
11568 | ||
760b3e8b MF |
11569 | |
11570 | ||
11571 | ||
11572 | ||
11573 | ||
11574 | ||
11575 | ||
11576 | ||
11577 | ||
11578 | ||
11579 | ||
11580 | ||
87326c78 DD |
11581 | cat >confcache <<\_ACEOF |
11582 | # This file is a shell script that caches the results of configure | |
11583 | # tests run on this system so they can be shared between configure | |
11584 | # scripts and configure runs, see configure's option --config-cache. | |
11585 | # It is not useful on other systems. If it contains results you don't | |
11586 | # want to keep, you may remove or edit it. | |
11587 | # | |
11588 | # config.status only pays attention to the cache file if you give it | |
11589 | # the --recheck option to rerun configure. | |
11590 | # | |
11591 | # `ac_cv_env_foo' variables (set or unset) will be overridden when | |
11592 | # loading this file, other *unset* `ac_cv_foo' will be assigned the | |
11593 | # following values. | |
11594 | ||
11595 | _ACEOF | |
11596 | ||
11597 | # The following way of writing the cache mishandles newlines in values, | |
11598 | # but we know of no workaround that is simple, portable, and efficient. | |
11599 | # So, we kill variables containing newlines. | |
11600 | # Ultrix sh set writes to stderr and can't be redirected directly, | |
11601 | # and sets the high bit in the cache file unless we assign to the vars. | |
11602 | ( | |
11603 | for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do | |
11604 | eval ac_val=\$$ac_var | |
11605 | case $ac_val in #( | |
11606 | *${as_nl}*) | |
11607 | case $ac_var in #( | |
11608 | *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 | |
11609 | $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; | |
11610 | esac | |
11611 | case $ac_var in #( | |
11612 | _ | IFS | as_nl) ;; #( | |
11613 | BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( | |
11614 | *) { eval $ac_var=; unset $ac_var;} ;; | |
11615 | esac ;; | |
11616 | esac | |
11617 | done | |
11618 | ||
11619 | (set) 2>&1 | | |
11620 | case $as_nl`(ac_space=' '; set) 2>&1` in #( | |
11621 | *${as_nl}ac_space=\ *) | |
11622 | # `set' does not quote correctly, so add quotes: double-quote | |
11623 | # substitution turns \\\\ into \\, and sed turns \\ into \. | |
11624 | sed -n \ | |
11625 | "s/'/'\\\\''/g; | |
11626 | s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" | |
11627 | ;; #( | |
11628 | *) | |
11629 | # `set' quotes correctly as required by POSIX, so do not add quotes. | |
11630 | sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" | |
11631 | ;; | |
11632 | esac | | |
11633 | sort | |
11634 | ) | | |
11635 | sed ' | |
11636 | /^ac_cv_env_/b end | |
11637 | t clear | |
11638 | :clear | |
11639 | s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ | |
11640 | t end | |
11641 | s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ | |
11642 | :end' >>confcache | |
11643 | if diff "$cache_file" confcache >/dev/null 2>&1; then :; else | |
11644 | if test -w "$cache_file"; then | |
d0ac1c44 | 11645 | if test "x$cache_file" != "x/dev/null"; then |
87326c78 DD |
11646 | { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 |
11647 | $as_echo "$as_me: updating cache $cache_file" >&6;} | |
d0ac1c44 SM |
11648 | if test ! -f "$cache_file" || test -h "$cache_file"; then |
11649 | cat confcache >"$cache_file" | |
11650 | else | |
11651 | case $cache_file in #( | |
11652 | */* | ?:*) | |
11653 | mv -f confcache "$cache_file"$$ && | |
11654 | mv -f "$cache_file"$$ "$cache_file" ;; #( | |
11655 | *) | |
11656 | mv -f confcache "$cache_file" ;; | |
11657 | esac | |
11658 | fi | |
11659 | fi | |
87326c78 DD |
11660 | else |
11661 | { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 | |
11662 | $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} | |
11663 | fi | |
11664 | fi | |
11665 | rm -f confcache | |
11666 | ||
11667 | test "x$prefix" = xNONE && prefix=$ac_default_prefix | |
11668 | # Let make expand exec_prefix. | |
11669 | test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' | |
11670 | ||
11671 | DEFS=-DHAVE_CONFIG_H | |
11672 | ||
11673 | ac_libobjs= | |
11674 | ac_ltlibobjs= | |
d0ac1c44 | 11675 | U= |
87326c78 DD |
11676 | for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue |
11677 | # 1. Remove the extension, and $U if already installed. | |
11678 | ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' | |
11679 | ac_i=`$as_echo "$ac_i" | sed "$ac_script"` | |
11680 | # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR | |
11681 | # will be set to the directory where LIBOBJS objects are built. | |
11682 | as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" | |
11683 | as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' | |
11684 | done | |
11685 | LIBOBJS=$ac_libobjs | |
11686 | ||
11687 | LTLIBOBJS=$ac_ltlibobjs | |
11688 | ||
11689 | ||
0cb8d851 | 11690 | |
6bb11ab3 | 11691 | if test -z "${PLUGINS_TRUE}" && test -z "${PLUGINS_FALSE}"; then |
d0ac1c44 | 11692 | as_fn_error $? "conditional \"PLUGINS\" was never defined. |
6bb11ab3 L |
11693 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
11694 | fi | |
31e6ad7d | 11695 | if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then |
d0ac1c44 | 11696 | as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. |
31e6ad7d MF |
11697 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
11698 | fi | |
87326c78 | 11699 | |
d0ac1c44 | 11700 | : "${CONFIG_STATUS=./config.status}" |
87326c78 DD |
11701 | ac_write_fail=0 |
11702 | ac_clean_files_save=$ac_clean_files | |
11703 | ac_clean_files="$ac_clean_files $CONFIG_STATUS" | |
11704 | { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 | |
11705 | $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} | |
11706 | as_write_fail=0 | |
11707 | cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 | |
11708 | #! $SHELL | |
11709 | # Generated by $as_me. | |
11710 | # Run this file to recreate the current configuration. | |
11711 | # Compiler output produced by configure, useful for debugging | |
11712 | # configure, is in config.log if it exists. | |
11713 | ||
11714 | debug=false | |
11715 | ac_cs_recheck=false | |
11716 | ac_cs_silent=false | |
11717 | ||
11718 | SHELL=\${CONFIG_SHELL-$SHELL} | |
11719 | export SHELL | |
11720 | _ASEOF | |
11721 | cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 | |
11722 | ## -------------------- ## | |
11723 | ## M4sh Initialization. ## | |
11724 | ## -------------------- ## | |
11725 | ||
11726 | # Be more Bourne compatible | |
11727 | DUALCASE=1; export DUALCASE # for MKS sh | |
11728 | if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : | |
11729 | emulate sh | |
11730 | NULLCMD=: | |
11731 | # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which | |
11732 | # is contrary to our usage. Disable this feature. | |
11733 | alias -g '${1+"$@"}'='"$@"' | |
11734 | setopt NO_GLOB_SUBST | |
11735 | else | |
11736 | case `(set -o) 2>/dev/null` in #( | |
11737 | *posix*) : | |
11738 | set -o posix ;; #( | |
11739 | *) : | |
11740 | ;; | |
11741 | esac | |
11742 | fi | |
11743 | ||
11744 | ||
11745 | as_nl=' | |
11746 | ' | |
11747 | export as_nl | |
11748 | # Printing a long string crashes Solaris 7 /usr/bin/printf. | |
11749 | as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' | |
11750 | as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo | |
11751 | as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo | |
11752 | # Prefer a ksh shell builtin over an external printf program on Solaris, | |
11753 | # but without wasting forks for bash or zsh. | |
11754 | if test -z "$BASH_VERSION$ZSH_VERSION" \ | |
11755 | && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then | |
11756 | as_echo='print -r --' | |
11757 | as_echo_n='print -rn --' | |
11758 | elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then | |
11759 | as_echo='printf %s\n' | |
11760 | as_echo_n='printf %s' | |
11761 | else | |
11762 | if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then | |
11763 | as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' | |
11764 | as_echo_n='/usr/ucb/echo -n' | |
11765 | else | |
11766 | as_echo_body='eval expr "X$1" : "X\\(.*\\)"' | |
11767 | as_echo_n_body='eval | |
11768 | arg=$1; | |
11769 | case $arg in #( | |
11770 | *"$as_nl"*) | |
11771 | expr "X$arg" : "X\\(.*\\)$as_nl"; | |
11772 | arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; | |
11773 | esac; | |
11774 | expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" | |
11775 | ' | |
11776 | export as_echo_n_body | |
11777 | as_echo_n='sh -c $as_echo_n_body as_echo' | |
11778 | fi | |
11779 | export as_echo_body | |
11780 | as_echo='sh -c $as_echo_body as_echo' | |
11781 | fi | |
11782 | ||
11783 | # The user is always right. | |
11784 | if test "${PATH_SEPARATOR+set}" != set; then | |
11785 | PATH_SEPARATOR=: | |
11786 | (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { | |
11787 | (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || | |
11788 | PATH_SEPARATOR=';' | |
11789 | } | |
11790 | fi | |
11791 | ||
11792 | ||
11793 | # IFS | |
11794 | # We need space, tab and new line, in precisely that order. Quoting is | |
11795 | # there to prevent editors from complaining about space-tab. | |
11796 | # (If _AS_PATH_WALK were called with IFS unset, it would disable word | |
11797 | # splitting by setting IFS to empty value.) | |
11798 | IFS=" "" $as_nl" | |
11799 | ||
11800 | # Find who we are. Look in the path if we contain no directory separator. | |
d0ac1c44 | 11801 | as_myself= |
87326c78 DD |
11802 | case $0 in #(( |
11803 | *[\\/]* ) as_myself=$0 ;; | |
11804 | *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
11805 | for as_dir in $PATH | |
11806 | do | |
11807 | IFS=$as_save_IFS | |
11808 | test -z "$as_dir" && as_dir=. | |
11809 | test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break | |
11810 | done | |
11811 | IFS=$as_save_IFS | |
11812 | ||
11813 | ;; | |
11814 | esac | |
11815 | # We did not find ourselves, most probably we were run as `sh COMMAND' | |
11816 | # in which case we are not to be found in the path. | |
11817 | if test "x$as_myself" = x; then | |
11818 | as_myself=$0 | |
11819 | fi | |
11820 | if test ! -f "$as_myself"; then | |
11821 | $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 | |
11822 | exit 1 | |
11823 | fi | |
11824 | ||
11825 | # Unset variables that we do not need and which cause bugs (e.g. in | |
11826 | # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" | |
11827 | # suppresses any "Segmentation fault" message there. '((' could | |
11828 | # trigger a bug in pdksh 5.2.14. | |
11829 | for as_var in BASH_ENV ENV MAIL MAILPATH | |
11830 | do eval test x\${$as_var+set} = xset \ | |
11831 | && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : | |
11832 | done | |
11833 | PS1='$ ' | |
11834 | PS2='> ' | |
11835 | PS4='+ ' | |
11836 | ||
11837 | # NLS nuisances. | |
11838 | LC_ALL=C | |
11839 | export LC_ALL | |
11840 | LANGUAGE=C | |
11841 | export LANGUAGE | |
11842 | ||
11843 | # CDPATH. | |
11844 | (unset CDPATH) >/dev/null 2>&1 && unset CDPATH | |
11845 | ||
11846 | ||
d0ac1c44 SM |
11847 | # as_fn_error STATUS ERROR [LINENO LOG_FD] |
11848 | # ---------------------------------------- | |
87326c78 DD |
11849 | # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are |
11850 | # provided, also output the error to LOG_FD, referencing LINENO. Then exit the | |
d0ac1c44 | 11851 | # script with STATUS, using 1 if that was 0. |
87326c78 DD |
11852 | as_fn_error () |
11853 | { | |
d0ac1c44 SM |
11854 | as_status=$1; test $as_status -eq 0 && as_status=1 |
11855 | if test "$4"; then | |
11856 | as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | |
11857 | $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 | |
87326c78 | 11858 | fi |
d0ac1c44 | 11859 | $as_echo "$as_me: error: $2" >&2 |
87326c78 DD |
11860 | as_fn_exit $as_status |
11861 | } # as_fn_error | |
11862 | ||
11863 | ||
11864 | # as_fn_set_status STATUS | |
11865 | # ----------------------- | |
11866 | # Set $? to STATUS, without forking. | |
11867 | as_fn_set_status () | |
11868 | { | |
11869 | return $1 | |
11870 | } # as_fn_set_status | |
11871 | ||
11872 | # as_fn_exit STATUS | |
11873 | # ----------------- | |
11874 | # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. | |
11875 | as_fn_exit () | |
11876 | { | |
11877 | set +e | |
11878 | as_fn_set_status $1 | |
11879 | exit $1 | |
11880 | } # as_fn_exit | |
11881 | ||
11882 | # as_fn_unset VAR | |
11883 | # --------------- | |
11884 | # Portably unset VAR. | |
11885 | as_fn_unset () | |
11886 | { | |
11887 | { eval $1=; unset $1;} | |
11888 | } | |
11889 | as_unset=as_fn_unset | |
11890 | # as_fn_append VAR VALUE | |
11891 | # ---------------------- | |
11892 | # Append the text in VALUE to the end of the definition contained in VAR. Take | |
11893 | # advantage of any shell optimizations that allow amortized linear growth over | |
11894 | # repeated appends, instead of the typical quadratic growth present in naive | |
11895 | # implementations. | |
11896 | if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : | |
11897 | eval 'as_fn_append () | |
11898 | { | |
11899 | eval $1+=\$2 | |
11900 | }' | |
11901 | else | |
11902 | as_fn_append () | |
11903 | { | |
11904 | eval $1=\$$1\$2 | |
11905 | } | |
11906 | fi # as_fn_append | |
11907 | ||
11908 | # as_fn_arith ARG... | |
11909 | # ------------------ | |
11910 | # Perform arithmetic evaluation on the ARGs, and store the result in the | |
11911 | # global $as_val. Take advantage of shells that can avoid forks. The arguments | |
11912 | # must be portable across $(()) and expr. | |
11913 | if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : | |
11914 | eval 'as_fn_arith () | |
11915 | { | |
11916 | as_val=$(( $* )) | |
11917 | }' | |
11918 | else | |
11919 | as_fn_arith () | |
11920 | { | |
11921 | as_val=`expr "$@" || test $? -eq 1` | |
11922 | } | |
11923 | fi # as_fn_arith | |
11924 | ||
11925 | ||
11926 | if expr a : '\(a\)' >/dev/null 2>&1 && | |
11927 | test "X`expr 00001 : '.*\(...\)'`" = X001; then | |
11928 | as_expr=expr | |
11929 | else | |
11930 | as_expr=false | |
11931 | fi | |
11932 | ||
11933 | if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then | |
11934 | as_basename=basename | |
11935 | else | |
11936 | as_basename=false | |
11937 | fi | |
11938 | ||
11939 | if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then | |
11940 | as_dirname=dirname | |
11941 | else | |
11942 | as_dirname=false | |
11943 | fi | |
11944 | ||
11945 | as_me=`$as_basename -- "$0" || | |
11946 | $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ | |
11947 | X"$0" : 'X\(//\)$' \| \ | |
11948 | X"$0" : 'X\(/\)' \| . 2>/dev/null || | |
11949 | $as_echo X/"$0" | | |
11950 | sed '/^.*\/\([^/][^/]*\)\/*$/{ | |
11951 | s//\1/ | |
11952 | q | |
11953 | } | |
11954 | /^X\/\(\/\/\)$/{ | |
11955 | s//\1/ | |
11956 | q | |
11957 | } | |
11958 | /^X\/\(\/\).*/{ | |
11959 | s//\1/ | |
11960 | q | |
11961 | } | |
11962 | s/.*/./; q'` | |
11963 | ||
11964 | # Avoid depending upon Character Ranges. | |
11965 | as_cr_letters='abcdefghijklmnopqrstuvwxyz' | |
11966 | as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' | |
11967 | as_cr_Letters=$as_cr_letters$as_cr_LETTERS | |
11968 | as_cr_digits='0123456789' | |
11969 | as_cr_alnum=$as_cr_Letters$as_cr_digits | |
11970 | ||
11971 | ECHO_C= ECHO_N= ECHO_T= | |
11972 | case `echo -n x` in #((((( | |
11973 | -n*) | |
11974 | case `echo 'xy\c'` in | |
11975 | *c*) ECHO_T=' ';; # ECHO_T is single tab character. | |
11976 | xy) ECHO_C='\c';; | |
11977 | *) echo `echo ksh88 bug on AIX 6.1` > /dev/null | |
11978 | ECHO_T=' ';; | |
11979 | esac;; | |
11980 | *) | |
11981 | ECHO_N='-n';; | |
11982 | esac | |
11983 | ||
11984 | rm -f conf$$ conf$$.exe conf$$.file | |
11985 | if test -d conf$$.dir; then | |
11986 | rm -f conf$$.dir/conf$$.file | |
11987 | else | |
11988 | rm -f conf$$.dir | |
11989 | mkdir conf$$.dir 2>/dev/null | |
11990 | fi | |
11991 | if (echo >conf$$.file) 2>/dev/null; then | |
11992 | if ln -s conf$$.file conf$$ 2>/dev/null; then | |
11993 | as_ln_s='ln -s' | |
11994 | # ... but there are two gotchas: | |
11995 | # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. | |
11996 | # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. | |
d0ac1c44 | 11997 | # In both cases, we have to default to `cp -pR'. |
87326c78 | 11998 | ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || |
d0ac1c44 | 11999 | as_ln_s='cp -pR' |
87326c78 DD |
12000 | elif ln conf$$.file conf$$ 2>/dev/null; then |
12001 | as_ln_s=ln | |
12002 | else | |
d0ac1c44 | 12003 | as_ln_s='cp -pR' |
87326c78 DD |
12004 | fi |
12005 | else | |
d0ac1c44 | 12006 | as_ln_s='cp -pR' |
87326c78 DD |
12007 | fi |
12008 | rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file | |
12009 | rmdir conf$$.dir 2>/dev/null | |
12010 | ||
12011 | ||
12012 | # as_fn_mkdir_p | |
12013 | # ------------- | |
12014 | # Create "$as_dir" as a directory, including parents if necessary. | |
12015 | as_fn_mkdir_p () | |
12016 | { | |
12017 | ||
12018 | case $as_dir in #( | |
12019 | -*) as_dir=./$as_dir;; | |
12020 | esac | |
12021 | test -d "$as_dir" || eval $as_mkdir_p || { | |
12022 | as_dirs= | |
12023 | while :; do | |
12024 | case $as_dir in #( | |
12025 | *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( | |
12026 | *) as_qdir=$as_dir;; | |
12027 | esac | |
12028 | as_dirs="'$as_qdir' $as_dirs" | |
12029 | as_dir=`$as_dirname -- "$as_dir" || | |
12030 | $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | |
12031 | X"$as_dir" : 'X\(//\)[^/]' \| \ | |
12032 | X"$as_dir" : 'X\(//\)$' \| \ | |
12033 | X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || | |
12034 | $as_echo X"$as_dir" | | |
12035 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ | |
12036 | s//\1/ | |
12037 | q | |
12038 | } | |
12039 | /^X\(\/\/\)[^/].*/{ | |
12040 | s//\1/ | |
12041 | q | |
12042 | } | |
12043 | /^X\(\/\/\)$/{ | |
12044 | s//\1/ | |
12045 | q | |
12046 | } | |
12047 | /^X\(\/\).*/{ | |
12048 | s//\1/ | |
12049 | q | |
12050 | } | |
12051 | s/.*/./; q'` | |
12052 | test -d "$as_dir" && break | |
12053 | done | |
12054 | test -z "$as_dirs" || eval "mkdir $as_dirs" | |
d0ac1c44 | 12055 | } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" |
87326c78 DD |
12056 | |
12057 | ||
12058 | } # as_fn_mkdir_p | |
12059 | if mkdir -p . 2>/dev/null; then | |
12060 | as_mkdir_p='mkdir -p "$as_dir"' | |
12061 | else | |
12062 | test -d ./-p && rmdir ./-p | |
12063 | as_mkdir_p=false | |
12064 | fi | |
12065 | ||
d0ac1c44 SM |
12066 | |
12067 | # as_fn_executable_p FILE | |
12068 | # ----------------------- | |
12069 | # Test if FILE is an executable regular file. | |
12070 | as_fn_executable_p () | |
12071 | { | |
12072 | test -f "$1" && test -x "$1" | |
12073 | } # as_fn_executable_p | |
12074 | as_test_x='test -x' | |
12075 | as_executable_p=as_fn_executable_p | |
87326c78 DD |
12076 | |
12077 | # Sed expression to map a string onto a valid CPP name. | |
12078 | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" | |
12079 | ||
12080 | # Sed expression to map a string onto a valid variable name. | |
12081 | as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" | |
12082 | ||
12083 | ||
12084 | exec 6>&1 | |
12085 | ## ----------------------------------- ## | |
12086 | ## Main body of $CONFIG_STATUS script. ## | |
12087 | ## ----------------------------------- ## | |
12088 | _ASEOF | |
12089 | test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 | |
12090 | ||
12091 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
12092 | # Save the log message, to keep $0 and so on meaningful, and to | |
12093 | # report actual input values of CONFIG_FILES etc. instead of their | |
12094 | # values after options handling. | |
12095 | ac_log=" | |
12096 | This file was extended by $as_me, which was | |
d0ac1c44 | 12097 | generated by GNU Autoconf 2.69. Invocation command line was |
87326c78 DD |
12098 | |
12099 | CONFIG_FILES = $CONFIG_FILES | |
12100 | CONFIG_HEADERS = $CONFIG_HEADERS | |
12101 | CONFIG_LINKS = $CONFIG_LINKS | |
12102 | CONFIG_COMMANDS = $CONFIG_COMMANDS | |
12103 | $ $0 $@ | |
12104 | ||
12105 | on `(hostname || uname -n) 2>/dev/null | sed 1q` | |
12106 | " | |
12107 | ||
12108 | _ACEOF | |
12109 | ||
12110 | case $ac_config_files in *" | |
12111 | "*) set x $ac_config_files; shift; ac_config_files=$*;; | |
12112 | esac | |
12113 | ||
12114 | case $ac_config_headers in *" | |
12115 | "*) set x $ac_config_headers; shift; ac_config_headers=$*;; | |
12116 | esac | |
12117 | ||
12118 | ||
12119 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | |
12120 | # Files that config.status was made for. | |
12121 | config_files="$ac_config_files" | |
12122 | config_headers="$ac_config_headers" | |
87326c78 DD |
12123 | config_commands="$ac_config_commands" |
12124 | ||
12125 | _ACEOF | |
12126 | ||
12127 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
12128 | ac_cs_usage="\ | |
12129 | \`$as_me' instantiates files and other configuration actions | |
12130 | from templates according to the current configuration. Unless the files | |
12131 | and actions are specified as TAGs, all are instantiated by default. | |
12132 | ||
12133 | Usage: $0 [OPTION]... [TAG]... | |
12134 | ||
12135 | -h, --help print this help, then exit | |
12136 | -V, --version print version number and configuration settings, then exit | |
d0ac1c44 | 12137 | --config print configuration, then exit |
87326c78 DD |
12138 | -q, --quiet, --silent |
12139 | do not print progress messages | |
12140 | -d, --debug don't remove temporary files | |
12141 | --recheck update $as_me by reconfiguring in the same conditions | |
12142 | --file=FILE[:TEMPLATE] | |
12143 | instantiate the configuration file FILE | |
12144 | --header=FILE[:TEMPLATE] | |
12145 | instantiate the configuration header FILE | |
12146 | ||
12147 | Configuration files: | |
12148 | $config_files | |
12149 | ||
12150 | Configuration headers: | |
12151 | $config_headers | |
12152 | ||
87326c78 DD |
12153 | Configuration commands: |
12154 | $config_commands | |
12155 | ||
12156 | Report bugs to the package provider." | |
12157 | ||
12158 | _ACEOF | |
12159 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | |
d0ac1c44 | 12160 | ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" |
87326c78 DD |
12161 | ac_cs_version="\\ |
12162 | config.status | |
d0ac1c44 SM |
12163 | configured by $0, generated by GNU Autoconf 2.69, |
12164 | with options \\"\$ac_cs_config\\" | |
87326c78 | 12165 | |
d0ac1c44 | 12166 | Copyright (C) 2012 Free Software Foundation, Inc. |
87326c78 DD |
12167 | This config.status script is free software; the Free Software Foundation |
12168 | gives unlimited permission to copy, distribute and modify it." | |
12169 | ||
12170 | ac_pwd='$ac_pwd' | |
12171 | srcdir='$srcdir' | |
12172 | INSTALL='$INSTALL' | |
6bb11ab3 | 12173 | AWK='$AWK' |
87326c78 DD |
12174 | test -n "\$AWK" || AWK=awk |
12175 | _ACEOF | |
12176 | ||
12177 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
12178 | # The default lists apply if the user does not specify any file. | |
12179 | ac_need_defaults=: | |
12180 | while test $# != 0 | |
12181 | do | |
12182 | case $1 in | |
d0ac1c44 | 12183 | --*=?*) |
87326c78 DD |
12184 | ac_option=`expr "X$1" : 'X\([^=]*\)='` |
12185 | ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` | |
12186 | ac_shift=: | |
12187 | ;; | |
d0ac1c44 SM |
12188 | --*=) |
12189 | ac_option=`expr "X$1" : 'X\([^=]*\)='` | |
12190 | ac_optarg= | |
12191 | ac_shift=: | |
12192 | ;; | |
87326c78 DD |
12193 | *) |
12194 | ac_option=$1 | |
12195 | ac_optarg=$2 | |
12196 | ac_shift=shift | |
12197 | ;; | |
12198 | esac | |
12199 | ||
12200 | case $ac_option in | |
12201 | # Handling of the options. | |
12202 | -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) | |
12203 | ac_cs_recheck=: ;; | |
12204 | --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) | |
12205 | $as_echo "$ac_cs_version"; exit ;; | |
d0ac1c44 SM |
12206 | --config | --confi | --conf | --con | --co | --c ) |
12207 | $as_echo "$ac_cs_config"; exit ;; | |
87326c78 DD |
12208 | --debug | --debu | --deb | --de | --d | -d ) |
12209 | debug=: ;; | |
12210 | --file | --fil | --fi | --f ) | |
12211 | $ac_shift | |
12212 | case $ac_optarg in | |
12213 | *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; | |
d0ac1c44 | 12214 | '') as_fn_error $? "missing file argument" ;; |
87326c78 DD |
12215 | esac |
12216 | as_fn_append CONFIG_FILES " '$ac_optarg'" | |
12217 | ac_need_defaults=false;; | |
12218 | --header | --heade | --head | --hea ) | |
12219 | $ac_shift | |
12220 | case $ac_optarg in | |
12221 | *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; | |
12222 | esac | |
12223 | as_fn_append CONFIG_HEADERS " '$ac_optarg'" | |
12224 | ac_need_defaults=false;; | |
12225 | --he | --h) | |
12226 | # Conflict between --help and --header | |
d0ac1c44 | 12227 | as_fn_error $? "ambiguous option: \`$1' |
87326c78 DD |
12228 | Try \`$0 --help' for more information.";; |
12229 | --help | --hel | -h ) | |
12230 | $as_echo "$ac_cs_usage"; exit ;; | |
12231 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | |
12232 | | -silent | --silent | --silen | --sile | --sil | --si | --s) | |
12233 | ac_cs_silent=: ;; | |
12234 | ||
12235 | # This is an error. | |
d0ac1c44 | 12236 | -*) as_fn_error $? "unrecognized option: \`$1' |
87326c78 DD |
12237 | Try \`$0 --help' for more information." ;; |
12238 | ||
12239 | *) as_fn_append ac_config_targets " $1" | |
12240 | ac_need_defaults=false ;; | |
12241 | ||
12242 | esac | |
12243 | shift | |
12244 | done | |
12245 | ||
12246 | ac_configure_extra_args= | |
12247 | ||
12248 | if $ac_cs_silent; then | |
12249 | exec 6>/dev/null | |
12250 | ac_configure_extra_args="$ac_configure_extra_args --silent" | |
12251 | fi | |
12252 | ||
12253 | _ACEOF | |
12254 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | |
12255 | if \$ac_cs_recheck; then | |
d0ac1c44 | 12256 | set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion |
87326c78 DD |
12257 | shift |
12258 | \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 | |
12259 | CONFIG_SHELL='$SHELL' | |
12260 | export CONFIG_SHELL | |
12261 | exec "\$@" | |
12262 | fi | |
12263 | ||
12264 | _ACEOF | |
12265 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
12266 | exec 5>>config.log | |
12267 | { | |
12268 | echo | |
12269 | sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX | |
12270 | ## Running $as_me. ## | |
12271 | _ASBOX | |
12272 | $as_echo "$ac_log" | |
12273 | } >&5 | |
12274 | ||
12275 | _ACEOF | |
12276 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | |
db2e4d67 MF |
12277 | # |
12278 | # INIT-COMMANDS | |
12279 | # | |
12280 | ac_aux_dir=$ac_aux_dir DEPDIR=$DEPDIR | |
12281 | ||
6bb11ab3 L |
12282 | |
12283 | # The HP-UX ksh and POSIX shell print the target directory to stdout | |
12284 | # if CDPATH is set. | |
12285 | (unset CDPATH) >/dev/null 2>&1 && unset CDPATH | |
12286 | ||
12287 | sed_quote_subst='$sed_quote_subst' | |
12288 | double_quote_subst='$double_quote_subst' | |
12289 | delay_variable_subst='$delay_variable_subst' | |
12290 | macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' | |
12291 | macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' | |
12292 | enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' | |
12293 | enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' | |
12294 | pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' | |
12295 | enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' | |
12296 | SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' | |
12297 | ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' | |
12298 | host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' | |
12299 | host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' | |
12300 | host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' | |
12301 | build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' | |
12302 | build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' | |
12303 | build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' | |
12304 | SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' | |
12305 | Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' | |
12306 | GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' | |
12307 | EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' | |
12308 | FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' | |
12309 | LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' | |
12310 | NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' | |
12311 | LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' | |
12312 | max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' | |
12313 | ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' | |
12314 | exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' | |
12315 | lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' | |
12316 | lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' | |
12317 | lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' | |
12318 | reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' | |
12319 | reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' | |
12320 | OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' | |
12321 | deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' | |
12322 | file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' | |
12323 | AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' | |
12324 | AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' | |
12325 | STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' | |
12326 | RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' | |
12327 | old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' | |
12328 | old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' | |
12329 | old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' | |
12330 | lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' | |
12331 | CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' | |
12332 | CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' | |
12333 | compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' | |
12334 | GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' | |
12335 | lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' | |
12336 | lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' | |
12337 | lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' | |
12338 | lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' | |
12339 | objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' | |
12340 | MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' | |
12341 | lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' | |
12342 | lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' | |
12343 | lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' | |
12344 | lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' | |
12345 | lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' | |
12346 | need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' | |
12347 | DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' | |
12348 | NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' | |
12349 | LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' | |
12350 | OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' | |
12351 | OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' | |
12352 | libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' | |
12353 | shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' | |
12354 | extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' | |
12355 | archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' | |
12356 | enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' | |
12357 | export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' | |
12358 | whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' | |
12359 | compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' | |
12360 | old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' | |
12361 | old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' | |
12362 | archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' | |
12363 | archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' | |
12364 | module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' | |
12365 | module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' | |
12366 | with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' | |
12367 | allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' | |
12368 | no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' | |
12369 | hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' | |
12370 | hardcode_libdir_flag_spec_ld='`$ECHO "$hardcode_libdir_flag_spec_ld" | $SED "$delay_single_quote_subst"`' | |
12371 | hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' | |
12372 | hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' | |
12373 | hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' | |
12374 | hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' | |
12375 | hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' | |
12376 | hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' | |
12377 | inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' | |
12378 | link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' | |
12379 | fix_srcfile_path='`$ECHO "$fix_srcfile_path" | $SED "$delay_single_quote_subst"`' | |
12380 | always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' | |
12381 | export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' | |
12382 | exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' | |
12383 | include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' | |
12384 | prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' | |
12385 | file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' | |
12386 | variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' | |
12387 | need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' | |
12388 | need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' | |
12389 | version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' | |
12390 | runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' | |
12391 | shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' | |
12392 | shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' | |
12393 | libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' | |
12394 | library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' | |
12395 | soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' | |
12396 | install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' | |
12397 | postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' | |
12398 | postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' | |
12399 | finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' | |
12400 | finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' | |
12401 | hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' | |
12402 | sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' | |
12403 | sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' | |
12404 | hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' | |
12405 | enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' | |
12406 | enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' | |
12407 | enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' | |
12408 | old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' | |
12409 | striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' | |
12410 | ||
12411 | LTCC='$LTCC' | |
12412 | LTCFLAGS='$LTCFLAGS' | |
12413 | compiler='$compiler_DEFAULT' | |
12414 | ||
12415 | # A function that is used when there is no print builtin or printf. | |
12416 | func_fallback_echo () | |
12417 | { | |
12418 | eval 'cat <<_LTECHO_EOF | |
12419 | \$1 | |
12420 | _LTECHO_EOF' | |
12421 | } | |
12422 | ||
12423 | # Quote evaled strings. | |
12424 | for var in SHELL \ | |
12425 | ECHO \ | |
12426 | SED \ | |
12427 | GREP \ | |
12428 | EGREP \ | |
12429 | FGREP \ | |
12430 | LD \ | |
12431 | NM \ | |
12432 | LN_S \ | |
12433 | lt_SP2NL \ | |
12434 | lt_NL2SP \ | |
12435 | reload_flag \ | |
12436 | OBJDUMP \ | |
12437 | deplibs_check_method \ | |
12438 | file_magic_cmd \ | |
12439 | AR \ | |
12440 | AR_FLAGS \ | |
12441 | STRIP \ | |
12442 | RANLIB \ | |
12443 | CC \ | |
12444 | CFLAGS \ | |
12445 | compiler \ | |
12446 | lt_cv_sys_global_symbol_pipe \ | |
12447 | lt_cv_sys_global_symbol_to_cdecl \ | |
12448 | lt_cv_sys_global_symbol_to_c_name_address \ | |
12449 | lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ | |
12450 | lt_prog_compiler_no_builtin_flag \ | |
12451 | lt_prog_compiler_wl \ | |
12452 | lt_prog_compiler_pic \ | |
12453 | lt_prog_compiler_static \ | |
12454 | lt_cv_prog_compiler_c_o \ | |
12455 | need_locks \ | |
12456 | DSYMUTIL \ | |
12457 | NMEDIT \ | |
12458 | LIPO \ | |
12459 | OTOOL \ | |
12460 | OTOOL64 \ | |
12461 | shrext_cmds \ | |
12462 | export_dynamic_flag_spec \ | |
12463 | whole_archive_flag_spec \ | |
12464 | compiler_needs_object \ | |
12465 | with_gnu_ld \ | |
12466 | allow_undefined_flag \ | |
12467 | no_undefined_flag \ | |
12468 | hardcode_libdir_flag_spec \ | |
12469 | hardcode_libdir_flag_spec_ld \ | |
12470 | hardcode_libdir_separator \ | |
12471 | fix_srcfile_path \ | |
12472 | exclude_expsyms \ | |
12473 | include_expsyms \ | |
12474 | file_list_spec \ | |
12475 | variables_saved_for_relink \ | |
12476 | libname_spec \ | |
12477 | library_names_spec \ | |
12478 | soname_spec \ | |
12479 | install_override_mode \ | |
12480 | finish_eval \ | |
12481 | old_striplib \ | |
12482 | striplib; do | |
12483 | case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in | |
12484 | *[\\\\\\\`\\"\\\$]*) | |
12485 | eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" | |
12486 | ;; | |
12487 | *) | |
12488 | eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" | |
12489 | ;; | |
12490 | esac | |
12491 | done | |
12492 | ||
12493 | # Double-quote double-evaled strings. | |
12494 | for var in reload_cmds \ | |
12495 | old_postinstall_cmds \ | |
12496 | old_postuninstall_cmds \ | |
12497 | old_archive_cmds \ | |
12498 | extract_expsyms_cmds \ | |
12499 | old_archive_from_new_cmds \ | |
12500 | old_archive_from_expsyms_cmds \ | |
12501 | archive_cmds \ | |
12502 | archive_expsym_cmds \ | |
12503 | module_cmds \ | |
12504 | module_expsym_cmds \ | |
12505 | export_symbols_cmds \ | |
12506 | prelink_cmds \ | |
12507 | postinstall_cmds \ | |
12508 | postuninstall_cmds \ | |
12509 | finish_cmds \ | |
12510 | sys_lib_search_path_spec \ | |
12511 | sys_lib_dlsearch_path_spec; do | |
12512 | case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in | |
12513 | *[\\\\\\\`\\"\\\$]*) | |
12514 | eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" | |
12515 | ;; | |
12516 | *) | |
12517 | eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" | |
12518 | ;; | |
12519 | esac | |
12520 | done | |
12521 | ||
12522 | ac_aux_dir='$ac_aux_dir' | |
12523 | xsi_shell='$xsi_shell' | |
12524 | lt_shell_append='$lt_shell_append' | |
12525 | ||
12526 | # See if we are running on zsh, and set the options which allow our | |
12527 | # commands through without removal of \ escapes INIT. | |
12528 | if test -n "\${ZSH_VERSION+set}" ; then | |
12529 | setopt NO_GLOB_SUBST | |
12530 | fi | |
12531 | ||
12532 | ||
12533 | PACKAGE='$PACKAGE' | |
12534 | VERSION='$VERSION' | |
12535 | TIMESTAMP='$TIMESTAMP' | |
12536 | RM='$RM' | |
12537 | ofile='$ofile' | |
12538 | ||
12539 | ||
12540 | ||
12541 | ||
87326c78 DD |
12542 | _ACEOF |
12543 | ||
12544 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
12545 | ||
12546 | # Handling of arguments. | |
12547 | for ac_config_target in $ac_config_targets | |
12548 | do | |
12549 | case $ac_config_target in | |
12550 | "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;; | |
db2e4d67 | 12551 | "depdir") CONFIG_COMMANDS="$CONFIG_COMMANDS depdir" ;; |
6bb11ab3 | 12552 | "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; |
87326c78 DD |
12553 | "Makefile.sim") CONFIG_FILES="$CONFIG_FILES Makefile.sim:Makefile.in" ;; |
12554 | "Make-common.sim") CONFIG_FILES="$CONFIG_FILES Make-common.sim:../common/Make-common.in" ;; | |
12555 | ".gdbinit") CONFIG_FILES="$CONFIG_FILES .gdbinit:../common/gdbinit.in" ;; | |
12556 | "Makefile") CONFIG_COMMANDS="$CONFIG_COMMANDS Makefile" ;; | |
12557 | "stamp-h") CONFIG_COMMANDS="$CONFIG_COMMANDS stamp-h" ;; | |
12558 | ||
d0ac1c44 | 12559 | *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; |
87326c78 DD |
12560 | esac |
12561 | done | |
12562 | ||
12563 | ||
12564 | # If the user did not use the arguments to specify the items to instantiate, | |
12565 | # then the envvar interface is used. Set only those that are not. | |
12566 | # We use the long form for the default assignment because of an extremely | |
12567 | # bizarre bug on SunOS 4.1.3. | |
12568 | if $ac_need_defaults; then | |
12569 | test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files | |
12570 | test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers | |
87326c78 DD |
12571 | test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands |
12572 | fi | |
12573 | ||
12574 | # Have a temporary directory for convenience. Make it in the build tree | |
12575 | # simply because there is no reason against having it here, and in addition, | |
12576 | # creating and moving files from /tmp can sometimes cause problems. | |
12577 | # Hook for its removal unless debugging. | |
12578 | # Note that there is a small window in which the directory will not be cleaned: | |
12579 | # after its creation but before its name has been assigned to `$tmp'. | |
12580 | $debug || | |
12581 | { | |
d0ac1c44 | 12582 | tmp= ac_tmp= |
87326c78 | 12583 | trap 'exit_status=$? |
d0ac1c44 SM |
12584 | : "${ac_tmp:=$tmp}" |
12585 | { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status | |
87326c78 DD |
12586 | ' 0 |
12587 | trap 'as_fn_exit 1' 1 2 13 15 | |
12588 | } | |
12589 | # Create a (secure) tmp directory for tmp files. | |
12590 | ||
12591 | { | |
12592 | tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && | |
d0ac1c44 | 12593 | test -d "$tmp" |
87326c78 DD |
12594 | } || |
12595 | { | |
12596 | tmp=./conf$$-$RANDOM | |
12597 | (umask 077 && mkdir "$tmp") | |
d0ac1c44 SM |
12598 | } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 |
12599 | ac_tmp=$tmp | |
87326c78 DD |
12600 | |
12601 | # Set up the scripts for CONFIG_FILES section. | |
12602 | # No need to generate them if there are no CONFIG_FILES. | |
12603 | # This happens for instance with `./config.status config.h'. | |
12604 | if test -n "$CONFIG_FILES"; then | |
12605 | ||
12606 | ||
12607 | ac_cr=`echo X | tr X '\015'` | |
12608 | # On cygwin, bash can eat \r inside `` if the user requested igncr. | |
12609 | # But we know of no other shell where ac_cr would be empty at this | |
12610 | # point, so we can use a bashism as a fallback. | |
12611 | if test "x$ac_cr" = x; then | |
12612 | eval ac_cr=\$\'\\r\' | |
12613 | fi | |
12614 | ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` | |
12615 | if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then | |
d0ac1c44 | 12616 | ac_cs_awk_cr='\\r' |
87326c78 DD |
12617 | else |
12618 | ac_cs_awk_cr=$ac_cr | |
12619 | fi | |
12620 | ||
d0ac1c44 | 12621 | echo 'BEGIN {' >"$ac_tmp/subs1.awk" && |
87326c78 DD |
12622 | _ACEOF |
12623 | ||
12624 | ||
12625 | { | |
12626 | echo "cat >conf$$subs.awk <<_ACEOF" && | |
12627 | echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && | |
12628 | echo "_ACEOF" | |
12629 | } >conf$$subs.sh || | |
d0ac1c44 SM |
12630 | as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 |
12631 | ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` | |
87326c78 DD |
12632 | ac_delim='%!_!# ' |
12633 | for ac_last_try in false false false false false :; do | |
12634 | . ./conf$$subs.sh || | |
d0ac1c44 | 12635 | as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 |
87326c78 DD |
12636 | |
12637 | ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` | |
12638 | if test $ac_delim_n = $ac_delim_num; then | |
12639 | break | |
12640 | elif $ac_last_try; then | |
d0ac1c44 | 12641 | as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 |
87326c78 DD |
12642 | else |
12643 | ac_delim="$ac_delim!$ac_delim _$ac_delim!! " | |
12644 | fi | |
12645 | done | |
12646 | rm -f conf$$subs.sh | |
12647 | ||
12648 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | |
d0ac1c44 | 12649 | cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && |
87326c78 DD |
12650 | _ACEOF |
12651 | sed -n ' | |
12652 | h | |
12653 | s/^/S["/; s/!.*/"]=/ | |
12654 | p | |
12655 | g | |
12656 | s/^[^!]*!// | |
12657 | :repl | |
12658 | t repl | |
12659 | s/'"$ac_delim"'$// | |
12660 | t delim | |
12661 | :nl | |
12662 | h | |
d0ac1c44 | 12663 | s/\(.\{148\}\)..*/\1/ |
87326c78 DD |
12664 | t more1 |
12665 | s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ | |
12666 | p | |
12667 | n | |
12668 | b repl | |
12669 | :more1 | |
12670 | s/["\\]/\\&/g; s/^/"/; s/$/"\\/ | |
12671 | p | |
12672 | g | |
12673 | s/.\{148\}// | |
12674 | t nl | |
12675 | :delim | |
12676 | h | |
d0ac1c44 | 12677 | s/\(.\{148\}\)..*/\1/ |
87326c78 DD |
12678 | t more2 |
12679 | s/["\\]/\\&/g; s/^/"/; s/$/"/ | |
12680 | p | |
12681 | b | |
12682 | :more2 | |
12683 | s/["\\]/\\&/g; s/^/"/; s/$/"\\/ | |
12684 | p | |
12685 | g | |
12686 | s/.\{148\}// | |
12687 | t delim | |
12688 | ' <conf$$subs.awk | sed ' | |
12689 | /^[^""]/{ | |
12690 | N | |
12691 | s/\n// | |
12692 | } | |
12693 | ' >>$CONFIG_STATUS || ac_write_fail=1 | |
12694 | rm -f conf$$subs.awk | |
12695 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | |
12696 | _ACAWK | |
d0ac1c44 | 12697 | cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && |
87326c78 DD |
12698 | for (key in S) S_is_set[key] = 1 |
12699 | FS = "\a" | |
12700 | ||
12701 | } | |
12702 | { | |
12703 | line = $ 0 | |
12704 | nfields = split(line, field, "@") | |
12705 | substed = 0 | |
12706 | len = length(field[1]) | |
12707 | for (i = 2; i < nfields; i++) { | |
12708 | key = field[i] | |
12709 | keylen = length(key) | |
12710 | if (S_is_set[key]) { | |
12711 | value = S[key] | |
12712 | line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) | |
12713 | len += length(value) + length(field[++i]) | |
12714 | substed = 1 | |
12715 | } else | |
12716 | len += 1 + keylen | |
12717 | } | |
12718 | ||
12719 | print line | |
12720 | } | |
12721 | ||
12722 | _ACAWK | |
12723 | _ACEOF | |
12724 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
12725 | if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then | |
12726 | sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" | |
12727 | else | |
12728 | cat | |
d0ac1c44 SM |
12729 | fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ |
12730 | || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 | |
87326c78 DD |
12731 | _ACEOF |
12732 | ||
d0ac1c44 SM |
12733 | # VPATH may cause trouble with some makes, so we remove sole $(srcdir), |
12734 | # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and | |
87326c78 DD |
12735 | # trailing colons and then remove the whole line if VPATH becomes empty |
12736 | # (actually we leave an empty line to preserve line numbers). | |
12737 | if test "x$srcdir" = x.; then | |
d0ac1c44 SM |
12738 | ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ |
12739 | h | |
12740 | s/// | |
12741 | s/^/:/ | |
12742 | s/[ ]*$/:/ | |
12743 | s/:\$(srcdir):/:/g | |
12744 | s/:\${srcdir}:/:/g | |
12745 | s/:@srcdir@:/:/g | |
12746 | s/^:*// | |
87326c78 | 12747 | s/:*$// |
d0ac1c44 SM |
12748 | x |
12749 | s/\(=[ ]*\).*/\1/ | |
12750 | G | |
12751 | s/\n// | |
87326c78 DD |
12752 | s/^[^=]*=[ ]*$// |
12753 | }' | |
12754 | fi | |
12755 | ||
12756 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
12757 | fi # test -n "$CONFIG_FILES" | |
12758 | ||
12759 | # Set up the scripts for CONFIG_HEADERS section. | |
12760 | # No need to generate them if there are no CONFIG_HEADERS. | |
12761 | # This happens for instance with `./config.status Makefile'. | |
12762 | if test -n "$CONFIG_HEADERS"; then | |
d0ac1c44 | 12763 | cat >"$ac_tmp/defines.awk" <<\_ACAWK || |
87326c78 DD |
12764 | BEGIN { |
12765 | _ACEOF | |
12766 | ||
12767 | # Transform confdefs.h into an awk script `defines.awk', embedded as | |
12768 | # here-document in config.status, that substitutes the proper values into | |
12769 | # config.h.in to produce config.h. | |
12770 | ||
12771 | # Create a delimiter string that does not exist in confdefs.h, to ease | |
12772 | # handling of long lines. | |
12773 | ac_delim='%!_!# ' | |
12774 | for ac_last_try in false false :; do | |
d0ac1c44 SM |
12775 | ac_tt=`sed -n "/$ac_delim/p" confdefs.h` |
12776 | if test -z "$ac_tt"; then | |
87326c78 DD |
12777 | break |
12778 | elif $ac_last_try; then | |
d0ac1c44 | 12779 | as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 |
87326c78 DD |
12780 | else |
12781 | ac_delim="$ac_delim!$ac_delim _$ac_delim!! " | |
12782 | fi | |
12783 | done | |
12784 | ||
12785 | # For the awk script, D is an array of macro values keyed by name, | |
12786 | # likewise P contains macro parameters if any. Preserve backslash | |
12787 | # newline sequences. | |
12788 | ||
12789 | ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* | |
12790 | sed -n ' | |
12791 | s/.\{148\}/&'"$ac_delim"'/g | |
12792 | t rset | |
12793 | :rset | |
12794 | s/^[ ]*#[ ]*define[ ][ ]*/ / | |
12795 | t def | |
12796 | d | |
12797 | :def | |
12798 | s/\\$// | |
12799 | t bsnl | |
12800 | s/["\\]/\\&/g | |
12801 | s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ | |
12802 | D["\1"]=" \3"/p | |
12803 | s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p | |
12804 | d | |
12805 | :bsnl | |
12806 | s/["\\]/\\&/g | |
12807 | s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ | |
12808 | D["\1"]=" \3\\\\\\n"\\/p | |
12809 | t cont | |
12810 | s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p | |
12811 | t cont | |
12812 | d | |
12813 | :cont | |
12814 | n | |
12815 | s/.\{148\}/&'"$ac_delim"'/g | |
12816 | t clear | |
12817 | :clear | |
12818 | s/\\$// | |
12819 | t bsnlc | |
12820 | s/["\\]/\\&/g; s/^/"/; s/$/"/p | |
12821 | d | |
12822 | :bsnlc | |
12823 | s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p | |
12824 | b cont | |
12825 | ' <confdefs.h | sed ' | |
12826 | s/'"$ac_delim"'/"\\\ | |
12827 | "/g' >>$CONFIG_STATUS || ac_write_fail=1 | |
12828 | ||
12829 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | |
12830 | for (key in D) D_is_set[key] = 1 | |
12831 | FS = "\a" | |
12832 | } | |
12833 | /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { | |
12834 | line = \$ 0 | |
12835 | split(line, arg, " ") | |
12836 | if (arg[1] == "#") { | |
12837 | defundef = arg[2] | |
12838 | mac1 = arg[3] | |
12839 | } else { | |
12840 | defundef = substr(arg[1], 2) | |
12841 | mac1 = arg[2] | |
12842 | } | |
12843 | split(mac1, mac2, "(") #) | |
12844 | macro = mac2[1] | |
12845 | prefix = substr(line, 1, index(line, defundef) - 1) | |
12846 | if (D_is_set[macro]) { | |
12847 | # Preserve the white space surrounding the "#". | |
12848 | print prefix "define", macro P[macro] D[macro] | |
12849 | next | |
12850 | } else { | |
12851 | # Replace #undef with comments. This is necessary, for example, | |
12852 | # in the case of _POSIX_SOURCE, which is predefined and required | |
12853 | # on some systems where configure will not decide to define it. | |
12854 | if (defundef == "undef") { | |
12855 | print "/*", prefix defundef, macro, "*/" | |
12856 | next | |
12857 | } | |
12858 | } | |
12859 | } | |
12860 | { print } | |
12861 | _ACAWK | |
12862 | _ACEOF | |
12863 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
d0ac1c44 | 12864 | as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 |
87326c78 DD |
12865 | fi # test -n "$CONFIG_HEADERS" |
12866 | ||
12867 | ||
99d8e879 | 12868 | eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" |
87326c78 DD |
12869 | shift |
12870 | for ac_tag | |
12871 | do | |
12872 | case $ac_tag in | |
12873 | :[FHLC]) ac_mode=$ac_tag; continue;; | |
12874 | esac | |
12875 | case $ac_mode$ac_tag in | |
12876 | :[FHL]*:*);; | |
d0ac1c44 | 12877 | :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; |
87326c78 DD |
12878 | :[FH]-) ac_tag=-:-;; |
12879 | :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; | |
12880 | esac | |
12881 | ac_save_IFS=$IFS | |
12882 | IFS=: | |
12883 | set x $ac_tag | |
12884 | IFS=$ac_save_IFS | |
12885 | shift | |
12886 | ac_file=$1 | |
12887 | shift | |
12888 | ||
12889 | case $ac_mode in | |
12890 | :L) ac_source=$1;; | |
12891 | :[FH]) | |
12892 | ac_file_inputs= | |
12893 | for ac_f | |
12894 | do | |
12895 | case $ac_f in | |
d0ac1c44 | 12896 | -) ac_f="$ac_tmp/stdin";; |
87326c78 DD |
12897 | *) # Look for the file first in the build tree, then in the source tree |
12898 | # (if the path is not absolute). The absolute path cannot be DOS-style, | |
12899 | # because $ac_f cannot contain `:'. | |
12900 | test -f "$ac_f" || | |
12901 | case $ac_f in | |
12902 | [\\/$]*) false;; | |
12903 | *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; | |
12904 | esac || | |
d0ac1c44 | 12905 | as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; |
87326c78 DD |
12906 | esac |
12907 | case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac | |
12908 | as_fn_append ac_file_inputs " '$ac_f'" | |
12909 | done | |
12910 | ||
12911 | # Let's still pretend it is `configure' which instantiates (i.e., don't | |
12912 | # use $as_me), people would be surprised to read: | |
12913 | # /* config.h. Generated by config.status. */ | |
12914 | configure_input='Generated from '` | |
12915 | $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' | |
12916 | `' by configure.' | |
12917 | if test x"$ac_file" != x-; then | |
12918 | configure_input="$ac_file. $configure_input" | |
12919 | { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 | |
12920 | $as_echo "$as_me: creating $ac_file" >&6;} | |
12921 | fi | |
12922 | # Neutralize special characters interpreted by sed in replacement strings. | |
12923 | case $configure_input in #( | |
12924 | *\&* | *\|* | *\\* ) | |
12925 | ac_sed_conf_input=`$as_echo "$configure_input" | | |
12926 | sed 's/[\\\\&|]/\\\\&/g'`;; #( | |
12927 | *) ac_sed_conf_input=$configure_input;; | |
12928 | esac | |
12929 | ||
12930 | case $ac_tag in | |
d0ac1c44 SM |
12931 | *:-:* | *:-) cat >"$ac_tmp/stdin" \ |
12932 | || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; | |
87326c78 DD |
12933 | esac |
12934 | ;; | |
12935 | esac | |
12936 | ||
12937 | ac_dir=`$as_dirname -- "$ac_file" || | |
12938 | $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | |
12939 | X"$ac_file" : 'X\(//\)[^/]' \| \ | |
12940 | X"$ac_file" : 'X\(//\)$' \| \ | |
12941 | X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || | |
12942 | $as_echo X"$ac_file" | | |
12943 | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ | |
12944 | s//\1/ | |
12945 | q | |
12946 | } | |
12947 | /^X\(\/\/\)[^/].*/{ | |
12948 | s//\1/ | |
12949 | q | |
12950 | } | |
12951 | /^X\(\/\/\)$/{ | |
12952 | s//\1/ | |
12953 | q | |
12954 | } | |
12955 | /^X\(\/\).*/{ | |
12956 | s//\1/ | |
12957 | q | |
12958 | } | |
12959 | s/.*/./; q'` | |
12960 | as_dir="$ac_dir"; as_fn_mkdir_p | |
12961 | ac_builddir=. | |
12962 | ||
12963 | case "$ac_dir" in | |
12964 | .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; | |
12965 | *) | |
12966 | ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` | |
12967 | # A ".." for each directory in $ac_dir_suffix. | |
12968 | ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` | |
12969 | case $ac_top_builddir_sub in | |
12970 | "") ac_top_builddir_sub=. ac_top_build_prefix= ;; | |
12971 | *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; | |
12972 | esac ;; | |
12973 | esac | |
12974 | ac_abs_top_builddir=$ac_pwd | |
12975 | ac_abs_builddir=$ac_pwd$ac_dir_suffix | |
12976 | # for backward compatibility: | |
12977 | ac_top_builddir=$ac_top_build_prefix | |
12978 | ||
12979 | case $srcdir in | |
12980 | .) # We are building in place. | |
12981 | ac_srcdir=. | |
12982 | ac_top_srcdir=$ac_top_builddir_sub | |
12983 | ac_abs_top_srcdir=$ac_pwd ;; | |
12984 | [\\/]* | ?:[\\/]* ) # Absolute name. | |
12985 | ac_srcdir=$srcdir$ac_dir_suffix; | |
12986 | ac_top_srcdir=$srcdir | |
12987 | ac_abs_top_srcdir=$srcdir ;; | |
12988 | *) # Relative name. | |
12989 | ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix | |
12990 | ac_top_srcdir=$ac_top_build_prefix$srcdir | |
12991 | ac_abs_top_srcdir=$ac_pwd/$srcdir ;; | |
12992 | esac | |
12993 | ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix | |
12994 | ||
12995 | ||
12996 | case $ac_mode in | |
12997 | :F) | |
12998 | # | |
12999 | # CONFIG_FILE | |
13000 | # | |
13001 | ||
13002 | case $INSTALL in | |
13003 | [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; | |
13004 | *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; | |
13005 | esac | |
13006 | _ACEOF | |
13007 | ||
13008 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
13009 | # If the template does not know about datarootdir, expand it. | |
13010 | # FIXME: This hack should be removed a few years after 2.60. | |
13011 | ac_datarootdir_hack=; ac_datarootdir_seen= | |
13012 | ac_sed_dataroot=' | |
13013 | /datarootdir/ { | |
13014 | p | |
13015 | q | |
13016 | } | |
13017 | /@datadir@/p | |
13018 | /@docdir@/p | |
13019 | /@infodir@/p | |
13020 | /@localedir@/p | |
13021 | /@mandir@/p' | |
13022 | case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in | |
13023 | *datarootdir*) ac_datarootdir_seen=yes;; | |
13024 | *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) | |
13025 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 | |
13026 | $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} | |
13027 | _ACEOF | |
13028 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | |
13029 | ac_datarootdir_hack=' | |
13030 | s&@datadir@&$datadir&g | |
13031 | s&@docdir@&$docdir&g | |
13032 | s&@infodir@&$infodir&g | |
13033 | s&@localedir@&$localedir&g | |
13034 | s&@mandir@&$mandir&g | |
13035 | s&\\\${datarootdir}&$datarootdir&g' ;; | |
13036 | esac | |
13037 | _ACEOF | |
13038 | ||
13039 | # Neutralize VPATH when `$srcdir' = `.'. | |
13040 | # Shell code in configure.ac might set extrasub. | |
13041 | # FIXME: do we really want to maintain this feature? | |
13042 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | |
13043 | ac_sed_extra="$ac_vpsub | |
13044 | $extrasub | |
13045 | _ACEOF | |
13046 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
13047 | :t | |
13048 | /@[a-zA-Z_][a-zA-Z_0-9]*@/!b | |
13049 | s|@configure_input@|$ac_sed_conf_input|;t t | |
13050 | s&@top_builddir@&$ac_top_builddir_sub&;t t | |
13051 | s&@top_build_prefix@&$ac_top_build_prefix&;t t | |
13052 | s&@srcdir@&$ac_srcdir&;t t | |
13053 | s&@abs_srcdir@&$ac_abs_srcdir&;t t | |
13054 | s&@top_srcdir@&$ac_top_srcdir&;t t | |
13055 | s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t | |
13056 | s&@builddir@&$ac_builddir&;t t | |
13057 | s&@abs_builddir@&$ac_abs_builddir&;t t | |
13058 | s&@abs_top_builddir@&$ac_abs_top_builddir&;t t | |
13059 | s&@INSTALL@&$ac_INSTALL&;t t | |
13060 | $ac_datarootdir_hack | |
13061 | " | |
d0ac1c44 SM |
13062 | eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ |
13063 | >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 | |
87326c78 DD |
13064 | |
13065 | test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && | |
d0ac1c44 SM |
13066 | { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && |
13067 | { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ | |
13068 | "$ac_tmp/out"`; test -z "$ac_out"; } && | |
87326c78 | 13069 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' |
d0ac1c44 | 13070 | which seems to be undefined. Please make sure it is defined" >&5 |
87326c78 | 13071 | $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' |
d0ac1c44 | 13072 | which seems to be undefined. Please make sure it is defined" >&2;} |
87326c78 | 13073 | |
d0ac1c44 | 13074 | rm -f "$ac_tmp/stdin" |
87326c78 | 13075 | case $ac_file in |
d0ac1c44 SM |
13076 | -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; |
13077 | *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; | |
87326c78 | 13078 | esac \ |
d0ac1c44 | 13079 | || as_fn_error $? "could not create $ac_file" "$LINENO" 5 |
87326c78 DD |
13080 | ;; |
13081 | :H) | |
13082 | # | |
13083 | # CONFIG_HEADER | |
13084 | # | |
13085 | if test x"$ac_file" != x-; then | |
13086 | { | |
13087 | $as_echo "/* $configure_input */" \ | |
d0ac1c44 SM |
13088 | && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" |
13089 | } >"$ac_tmp/config.h" \ | |
13090 | || as_fn_error $? "could not create $ac_file" "$LINENO" 5 | |
13091 | if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then | |
87326c78 DD |
13092 | { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 |
13093 | $as_echo "$as_me: $ac_file is unchanged" >&6;} | |
13094 | else | |
13095 | rm -f "$ac_file" | |
d0ac1c44 SM |
13096 | mv "$ac_tmp/config.h" "$ac_file" \ |
13097 | || as_fn_error $? "could not create $ac_file" "$LINENO" 5 | |
87326c78 DD |
13098 | fi |
13099 | else | |
13100 | $as_echo "/* $configure_input */" \ | |
d0ac1c44 SM |
13101 | && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ |
13102 | || as_fn_error $? "could not create -" "$LINENO" 5 | |
87326c78 DD |
13103 | fi |
13104 | ;; | |
87326c78 | 13105 | |
87326c78 DD |
13106 | :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 |
13107 | $as_echo "$as_me: executing $ac_file commands" >&6;} | |
13108 | ;; | |
13109 | esac | |
13110 | ||
13111 | ||
13112 | case $ac_file$ac_mode in | |
db2e4d67 | 13113 | "depdir":C) $SHELL $ac_aux_dir/mkinstalldirs $DEPDIR ;; |
6bb11ab3 L |
13114 | "libtool":C) |
13115 | ||
13116 | # See if we are running on zsh, and set the options which allow our | |
13117 | # commands through without removal of \ escapes. | |
13118 | if test -n "${ZSH_VERSION+set}" ; then | |
13119 | setopt NO_GLOB_SUBST | |
13120 | fi | |
13121 | ||
13122 | cfgfile="${ofile}T" | |
13123 | trap "$RM \"$cfgfile\"; exit 1" 1 2 15 | |
13124 | $RM "$cfgfile" | |
13125 | ||
13126 | cat <<_LT_EOF >> "$cfgfile" | |
13127 | #! $SHELL | |
13128 | ||
13129 | # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. | |
13130 | # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION | |
13131 | # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: | |
13132 | # NOTE: Changes made to this file will be lost: look at ltmain.sh. | |
13133 | # | |
13134 | # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, | |
13135 | # 2006, 2007, 2008, 2009 Free Software Foundation, Inc. | |
13136 | # Written by Gordon Matzigkeit, 1996 | |
13137 | # | |
13138 | # This file is part of GNU Libtool. | |
13139 | # | |
13140 | # GNU Libtool is free software; you can redistribute it and/or | |
13141 | # modify it under the terms of the GNU General Public License as | |
13142 | # published by the Free Software Foundation; either version 2 of | |
13143 | # the License, or (at your option) any later version. | |
13144 | # | |
13145 | # As a special exception to the GNU General Public License, | |
13146 | # if you distribute this file as part of a program or library that | |
13147 | # is built using GNU Libtool, you may include this file under the | |
13148 | # same distribution terms that you use for the rest of that program. | |
13149 | # | |
13150 | # GNU Libtool is distributed in the hope that it will be useful, | |
13151 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13152 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13153 | # GNU General Public License for more details. | |
13154 | # | |
13155 | # You should have received a copy of the GNU General Public License | |
13156 | # along with GNU Libtool; see the file COPYING. If not, a copy | |
13157 | # can be downloaded from http://www.gnu.org/licenses/gpl.html, or | |
13158 | # obtained by writing to the Free Software Foundation, Inc., | |
13159 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
13160 | ||
13161 | ||
13162 | # The names of the tagged configurations supported by this script. | |
13163 | available_tags="" | |
13164 | ||
13165 | # ### BEGIN LIBTOOL CONFIG | |
13166 | ||
13167 | # Which release of libtool.m4 was used? | |
13168 | macro_version=$macro_version | |
13169 | macro_revision=$macro_revision | |
13170 | ||
13171 | # Whether or not to build shared libraries. | |
13172 | build_libtool_libs=$enable_shared | |
13173 | ||
13174 | # Whether or not to build static libraries. | |
13175 | build_old_libs=$enable_static | |
13176 | ||
13177 | # What type of objects to build. | |
13178 | pic_mode=$pic_mode | |
13179 | ||
13180 | # Whether or not to optimize for fast installation. | |
13181 | fast_install=$enable_fast_install | |
13182 | ||
13183 | # Shell to use when invoking shell scripts. | |
13184 | SHELL=$lt_SHELL | |
13185 | ||
13186 | # An echo program that protects backslashes. | |
13187 | ECHO=$lt_ECHO | |
13188 | ||
13189 | # The host system. | |
13190 | host_alias=$host_alias | |
13191 | host=$host | |
13192 | host_os=$host_os | |
13193 | ||
13194 | # The build system. | |
13195 | build_alias=$build_alias | |
13196 | build=$build | |
13197 | build_os=$build_os | |
13198 | ||
13199 | # A sed program that does not truncate output. | |
13200 | SED=$lt_SED | |
13201 | ||
13202 | # Sed that helps us avoid accidentally triggering echo(1) options like -n. | |
13203 | Xsed="\$SED -e 1s/^X//" | |
13204 | ||
13205 | # A grep program that handles long lines. | |
13206 | GREP=$lt_GREP | |
13207 | ||
13208 | # An ERE matcher. | |
13209 | EGREP=$lt_EGREP | |
13210 | ||
13211 | # A literal string matcher. | |
13212 | FGREP=$lt_FGREP | |
13213 | ||
13214 | # A BSD- or MS-compatible name lister. | |
13215 | NM=$lt_NM | |
13216 | ||
13217 | # Whether we need soft or hard links. | |
13218 | LN_S=$lt_LN_S | |
13219 | ||
13220 | # What is the maximum length of a command? | |
13221 | max_cmd_len=$max_cmd_len | |
13222 | ||
13223 | # Object file suffix (normally "o"). | |
13224 | objext=$ac_objext | |
13225 | ||
13226 | # Executable file suffix (normally ""). | |
13227 | exeext=$exeext | |
13228 | ||
13229 | # whether the shell understands "unset". | |
13230 | lt_unset=$lt_unset | |
13231 | ||
13232 | # turn spaces into newlines. | |
13233 | SP2NL=$lt_lt_SP2NL | |
13234 | ||
13235 | # turn newlines into spaces. | |
13236 | NL2SP=$lt_lt_NL2SP | |
13237 | ||
13238 | # An object symbol dumper. | |
13239 | OBJDUMP=$lt_OBJDUMP | |
13240 | ||
13241 | # Method to check whether dependent libraries are shared objects. | |
13242 | deplibs_check_method=$lt_deplibs_check_method | |
13243 | ||
13244 | # Command to use when deplibs_check_method == "file_magic". | |
13245 | file_magic_cmd=$lt_file_magic_cmd | |
13246 | ||
13247 | # The archiver. | |
13248 | AR=$lt_AR | |
13249 | AR_FLAGS=$lt_AR_FLAGS | |
13250 | ||
13251 | # A symbol stripping program. | |
13252 | STRIP=$lt_STRIP | |
13253 | ||
13254 | # Commands used to install an old-style archive. | |
13255 | RANLIB=$lt_RANLIB | |
13256 | old_postinstall_cmds=$lt_old_postinstall_cmds | |
13257 | old_postuninstall_cmds=$lt_old_postuninstall_cmds | |
13258 | ||
13259 | # Whether to use a lock for old archive extraction. | |
13260 | lock_old_archive_extraction=$lock_old_archive_extraction | |
13261 | ||
13262 | # A C compiler. | |
13263 | LTCC=$lt_CC | |
13264 | ||
13265 | # LTCC compiler flags. | |
13266 | LTCFLAGS=$lt_CFLAGS | |
13267 | ||
13268 | # Take the output of nm and produce a listing of raw symbols and C names. | |
13269 | global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe | |
13270 | ||
13271 | # Transform the output of nm in a proper C declaration. | |
13272 | global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl | |
13273 | ||
13274 | # Transform the output of nm in a C name address pair. | |
13275 | global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address | |
13276 | ||
13277 | # Transform the output of nm in a C name address pair when lib prefix is needed. | |
13278 | global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix | |
13279 | ||
13280 | # The name of the directory that contains temporary libtool files. | |
13281 | objdir=$objdir | |
13282 | ||
13283 | # Used to examine libraries when file_magic_cmd begins with "file". | |
13284 | MAGIC_CMD=$MAGIC_CMD | |
13285 | ||
13286 | # Must we lock files when doing compilation? | |
13287 | need_locks=$lt_need_locks | |
13288 | ||
13289 | # Tool to manipulate archived DWARF debug symbol files on Mac OS X. | |
13290 | DSYMUTIL=$lt_DSYMUTIL | |
13291 | ||
13292 | # Tool to change global to local symbols on Mac OS X. | |
13293 | NMEDIT=$lt_NMEDIT | |
13294 | ||
13295 | # Tool to manipulate fat objects and archives on Mac OS X. | |
13296 | LIPO=$lt_LIPO | |
13297 | ||
13298 | # ldd/readelf like tool for Mach-O binaries on Mac OS X. | |
13299 | OTOOL=$lt_OTOOL | |
13300 | ||
13301 | # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. | |
13302 | OTOOL64=$lt_OTOOL64 | |
13303 | ||
13304 | # Old archive suffix (normally "a"). | |
13305 | libext=$libext | |
13306 | ||
13307 | # Shared library suffix (normally ".so"). | |
13308 | shrext_cmds=$lt_shrext_cmds | |
13309 | ||
13310 | # The commands to extract the exported symbol list from a shared archive. | |
13311 | extract_expsyms_cmds=$lt_extract_expsyms_cmds | |
13312 | ||
13313 | # Variables whose values should be saved in libtool wrapper scripts and | |
13314 | # restored at link time. | |
13315 | variables_saved_for_relink=$lt_variables_saved_for_relink | |
13316 | ||
13317 | # Do we need the "lib" prefix for modules? | |
13318 | need_lib_prefix=$need_lib_prefix | |
13319 | ||
13320 | # Do we need a version for libraries? | |
13321 | need_version=$need_version | |
13322 | ||
13323 | # Library versioning type. | |
13324 | version_type=$version_type | |
13325 | ||
13326 | # Shared library runtime path variable. | |
13327 | runpath_var=$runpath_var | |
13328 | ||
13329 | # Shared library path variable. | |
13330 | shlibpath_var=$shlibpath_var | |
13331 | ||
13332 | # Is shlibpath searched before the hard-coded library search path? | |
13333 | shlibpath_overrides_runpath=$shlibpath_overrides_runpath | |
13334 | ||
13335 | # Format of library name prefix. | |
13336 | libname_spec=$lt_libname_spec | |
13337 | ||
13338 | # List of archive names. First name is the real one, the rest are links. | |
13339 | # The last name is the one that the linker finds with -lNAME | |
13340 | library_names_spec=$lt_library_names_spec | |
13341 | ||
13342 | # The coded name of the library, if different from the real name. | |
13343 | soname_spec=$lt_soname_spec | |
13344 | ||
13345 | # Permission mode override for installation of shared libraries. | |
13346 | install_override_mode=$lt_install_override_mode | |
13347 | ||
13348 | # Command to use after installation of a shared archive. | |
13349 | postinstall_cmds=$lt_postinstall_cmds | |
13350 | ||
13351 | # Command to use after uninstallation of a shared archive. | |
13352 | postuninstall_cmds=$lt_postuninstall_cmds | |
13353 | ||
13354 | # Commands used to finish a libtool library installation in a directory. | |
13355 | finish_cmds=$lt_finish_cmds | |
13356 | ||
13357 | # As "finish_cmds", except a single script fragment to be evaled but | |
13358 | # not shown. | |
13359 | finish_eval=$lt_finish_eval | |
13360 | ||
13361 | # Whether we should hardcode library paths into libraries. | |
13362 | hardcode_into_libs=$hardcode_into_libs | |
13363 | ||
13364 | # Compile-time system search path for libraries. | |
13365 | sys_lib_search_path_spec=$lt_sys_lib_search_path_spec | |
13366 | ||
13367 | # Run-time system search path for libraries. | |
13368 | sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec | |
13369 | ||
13370 | # Whether dlopen is supported. | |
13371 | dlopen_support=$enable_dlopen | |
13372 | ||
13373 | # Whether dlopen of programs is supported. | |
13374 | dlopen_self=$enable_dlopen_self | |
13375 | ||
13376 | # Whether dlopen of statically linked programs is supported. | |
13377 | dlopen_self_static=$enable_dlopen_self_static | |
13378 | ||
13379 | # Commands to strip libraries. | |
13380 | old_striplib=$lt_old_striplib | |
13381 | striplib=$lt_striplib | |
13382 | ||
13383 | ||
13384 | # The linker used to build libraries. | |
13385 | LD=$lt_LD | |
13386 | ||
13387 | # How to create reloadable object files. | |
13388 | reload_flag=$lt_reload_flag | |
13389 | reload_cmds=$lt_reload_cmds | |
13390 | ||
13391 | # Commands used to build an old-style archive. | |
13392 | old_archive_cmds=$lt_old_archive_cmds | |
13393 | ||
13394 | # A language specific compiler. | |
13395 | CC=$lt_compiler | |
13396 | ||
13397 | # Is the compiler the GNU compiler? | |
13398 | with_gcc=$GCC | |
13399 | ||
13400 | # Compiler flag to turn off builtin functions. | |
13401 | no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag | |
13402 | ||
13403 | # How to pass a linker flag through the compiler. | |
13404 | wl=$lt_lt_prog_compiler_wl | |
13405 | ||
13406 | # Additional compiler flags for building library objects. | |
13407 | pic_flag=$lt_lt_prog_compiler_pic | |
13408 | ||
13409 | # Compiler flag to prevent dynamic linking. | |
13410 | link_static_flag=$lt_lt_prog_compiler_static | |
13411 | ||
13412 | # Does compiler simultaneously support -c and -o options? | |
13413 | compiler_c_o=$lt_lt_cv_prog_compiler_c_o | |
13414 | ||
13415 | # Whether or not to add -lc for building shared libraries. | |
13416 | build_libtool_need_lc=$archive_cmds_need_lc | |
13417 | ||
13418 | # Whether or not to disallow shared libs when runtime libs are static. | |
13419 | allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes | |
13420 | ||
13421 | # Compiler flag to allow reflexive dlopens. | |
13422 | export_dynamic_flag_spec=$lt_export_dynamic_flag_spec | |
13423 | ||
13424 | # Compiler flag to generate shared objects directly from archives. | |
13425 | whole_archive_flag_spec=$lt_whole_archive_flag_spec | |
13426 | ||
13427 | # Whether the compiler copes with passing no objects directly. | |
13428 | compiler_needs_object=$lt_compiler_needs_object | |
13429 | ||
13430 | # Create an old-style archive from a shared archive. | |
13431 | old_archive_from_new_cmds=$lt_old_archive_from_new_cmds | |
13432 | ||
13433 | # Create a temporary old-style archive to link instead of a shared archive. | |
13434 | old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds | |
13435 | ||
13436 | # Commands used to build a shared archive. | |
13437 | archive_cmds=$lt_archive_cmds | |
13438 | archive_expsym_cmds=$lt_archive_expsym_cmds | |
13439 | ||
13440 | # Commands used to build a loadable module if different from building | |
13441 | # a shared archive. | |
13442 | module_cmds=$lt_module_cmds | |
13443 | module_expsym_cmds=$lt_module_expsym_cmds | |
13444 | ||
13445 | # Whether we are building with GNU ld or not. | |
13446 | with_gnu_ld=$lt_with_gnu_ld | |
13447 | ||
13448 | # Flag that allows shared libraries with undefined symbols to be built. | |
13449 | allow_undefined_flag=$lt_allow_undefined_flag | |
13450 | ||
13451 | # Flag that enforces no undefined symbols. | |
13452 | no_undefined_flag=$lt_no_undefined_flag | |
13453 | ||
13454 | # Flag to hardcode \$libdir into a binary during linking. | |
13455 | # This must work even if \$libdir does not exist | |
13456 | hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec | |
13457 | ||
13458 | # If ld is used when linking, flag to hardcode \$libdir into a binary | |
13459 | # during linking. This must work even if \$libdir does not exist. | |
13460 | hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld | |
13461 | ||
13462 | # Whether we need a single "-rpath" flag with a separated argument. | |
13463 | hardcode_libdir_separator=$lt_hardcode_libdir_separator | |
13464 | ||
13465 | # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes | |
13466 | # DIR into the resulting binary. | |
13467 | hardcode_direct=$hardcode_direct | |
13468 | ||
13469 | # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes | |
13470 | # DIR into the resulting binary and the resulting library dependency is | |
13471 | # "absolute",i.e impossible to change by setting \${shlibpath_var} if the | |
13472 | # library is relocated. | |
13473 | hardcode_direct_absolute=$hardcode_direct_absolute | |
13474 | ||
13475 | # Set to "yes" if using the -LDIR flag during linking hardcodes DIR | |
13476 | # into the resulting binary. | |
13477 | hardcode_minus_L=$hardcode_minus_L | |
13478 | ||
13479 | # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR | |
13480 | # into the resulting binary. | |
13481 | hardcode_shlibpath_var=$hardcode_shlibpath_var | |
13482 | ||
13483 | # Set to "yes" if building a shared library automatically hardcodes DIR | |
13484 | # into the library and all subsequent libraries and executables linked | |
13485 | # against it. | |
13486 | hardcode_automatic=$hardcode_automatic | |
13487 | ||
13488 | # Set to yes if linker adds runtime paths of dependent libraries | |
13489 | # to runtime path list. | |
13490 | inherit_rpath=$inherit_rpath | |
13491 | ||
13492 | # Whether libtool must link a program against all its dependency libraries. | |
13493 | link_all_deplibs=$link_all_deplibs | |
13494 | ||
13495 | # Fix the shell variable \$srcfile for the compiler. | |
13496 | fix_srcfile_path=$lt_fix_srcfile_path | |
13497 | ||
13498 | # Set to "yes" if exported symbols are required. | |
13499 | always_export_symbols=$always_export_symbols | |
13500 | ||
13501 | # The commands to list exported symbols. | |
13502 | export_symbols_cmds=$lt_export_symbols_cmds | |
13503 | ||
13504 | # Symbols that should not be listed in the preloaded symbols. | |
13505 | exclude_expsyms=$lt_exclude_expsyms | |
13506 | ||
13507 | # Symbols that must always be exported. | |
13508 | include_expsyms=$lt_include_expsyms | |
13509 | ||
13510 | # Commands necessary for linking programs (against libraries) with templates. | |
13511 | prelink_cmds=$lt_prelink_cmds | |
13512 | ||
13513 | # Specify filename containing input files. | |
13514 | file_list_spec=$lt_file_list_spec | |
13515 | ||
13516 | # How to hardcode a shared library path into an executable. | |
13517 | hardcode_action=$hardcode_action | |
13518 | ||
13519 | # ### END LIBTOOL CONFIG | |
13520 | ||
13521 | _LT_EOF | |
13522 | ||
13523 | case $host_os in | |
13524 | aix3*) | |
13525 | cat <<\_LT_EOF >> "$cfgfile" | |
13526 | # AIX sometimes has problems with the GCC collect2 program. For some | |
13527 | # reason, if we set the COLLECT_NAMES environment variable, the problems | |
13528 | # vanish in a puff of smoke. | |
13529 | if test "X${COLLECT_NAMES+set}" != Xset; then | |
13530 | COLLECT_NAMES= | |
13531 | export COLLECT_NAMES | |
13532 | fi | |
13533 | _LT_EOF | |
13534 | ;; | |
13535 | esac | |
13536 | ||
13537 | ||
13538 | ltmain="$ac_aux_dir/ltmain.sh" | |
13539 | ||
13540 | ||
13541 | # We use sed instead of cat because bash on DJGPP gets confused if | |
13542 | # if finds mixed CR/LF and LF-only lines. Since sed operates in | |
13543 | # text mode, it properly converts lines to CR/LF. This bash problem | |
13544 | # is reportedly fixed, but why not run on old versions too? | |
13545 | sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \ | |
13546 | || (rm -f "$cfgfile"; exit 1) | |
13547 | ||
13548 | case $xsi_shell in | |
13549 | yes) | |
13550 | cat << \_LT_EOF >> "$cfgfile" | |
13551 | ||
13552 | # func_dirname file append nondir_replacement | |
13553 | # Compute the dirname of FILE. If nonempty, add APPEND to the result, | |
13554 | # otherwise set result to NONDIR_REPLACEMENT. | |
13555 | func_dirname () | |
13556 | { | |
13557 | case ${1} in | |
13558 | */*) func_dirname_result="${1%/*}${2}" ;; | |
13559 | * ) func_dirname_result="${3}" ;; | |
13560 | esac | |
13561 | } | |
13562 | ||
13563 | # func_basename file | |
13564 | func_basename () | |
13565 | { | |
13566 | func_basename_result="${1##*/}" | |
13567 | } | |
13568 | ||
13569 | # func_dirname_and_basename file append nondir_replacement | |
13570 | # perform func_basename and func_dirname in a single function | |
13571 | # call: | |
13572 | # dirname: Compute the dirname of FILE. If nonempty, | |
13573 | # add APPEND to the result, otherwise set result | |
13574 | # to NONDIR_REPLACEMENT. | |
13575 | # value returned in "$func_dirname_result" | |
13576 | # basename: Compute filename of FILE. | |
13577 | # value retuned in "$func_basename_result" | |
13578 | # Implementation must be kept synchronized with func_dirname | |
13579 | # and func_basename. For efficiency, we do not delegate to | |
13580 | # those functions but instead duplicate the functionality here. | |
13581 | func_dirname_and_basename () | |
13582 | { | |
13583 | case ${1} in | |
13584 | */*) func_dirname_result="${1%/*}${2}" ;; | |
13585 | * ) func_dirname_result="${3}" ;; | |
13586 | esac | |
13587 | func_basename_result="${1##*/}" | |
13588 | } | |
13589 | ||
13590 | # func_stripname prefix suffix name | |
13591 | # strip PREFIX and SUFFIX off of NAME. | |
13592 | # PREFIX and SUFFIX must not contain globbing or regex special | |
13593 | # characters, hashes, percent signs, but SUFFIX may contain a leading | |
13594 | # dot (in which case that matches only a dot). | |
13595 | func_stripname () | |
13596 | { | |
13597 | # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are | |
13598 | # positional parameters, so assign one to ordinary parameter first. | |
13599 | func_stripname_result=${3} | |
13600 | func_stripname_result=${func_stripname_result#"${1}"} | |
13601 | func_stripname_result=${func_stripname_result%"${2}"} | |
13602 | } | |
13603 | ||
13604 | # func_opt_split | |
13605 | func_opt_split () | |
13606 | { | |
13607 | func_opt_split_opt=${1%%=*} | |
13608 | func_opt_split_arg=${1#*=} | |
13609 | } | |
13610 | ||
13611 | # func_lo2o object | |
13612 | func_lo2o () | |
13613 | { | |
13614 | case ${1} in | |
13615 | *.lo) func_lo2o_result=${1%.lo}.${objext} ;; | |
13616 | *) func_lo2o_result=${1} ;; | |
13617 | esac | |
13618 | } | |
13619 | ||
13620 | # func_xform libobj-or-source | |
13621 | func_xform () | |
13622 | { | |
13623 | func_xform_result=${1%.*}.lo | |
13624 | } | |
13625 | ||
13626 | # func_arith arithmetic-term... | |
13627 | func_arith () | |
13628 | { | |
13629 | func_arith_result=$(( $* )) | |
13630 | } | |
13631 | ||
13632 | # func_len string | |
13633 | # STRING may not start with a hyphen. | |
13634 | func_len () | |
13635 | { | |
13636 | func_len_result=${#1} | |
13637 | } | |
13638 | ||
13639 | _LT_EOF | |
13640 | ;; | |
13641 | *) # Bourne compatible functions. | |
13642 | cat << \_LT_EOF >> "$cfgfile" | |
13643 | ||
13644 | # func_dirname file append nondir_replacement | |
13645 | # Compute the dirname of FILE. If nonempty, add APPEND to the result, | |
13646 | # otherwise set result to NONDIR_REPLACEMENT. | |
13647 | func_dirname () | |
13648 | { | |
13649 | # Extract subdirectory from the argument. | |
13650 | func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` | |
13651 | if test "X$func_dirname_result" = "X${1}"; then | |
13652 | func_dirname_result="${3}" | |
13653 | else | |
13654 | func_dirname_result="$func_dirname_result${2}" | |
13655 | fi | |
13656 | } | |
13657 | ||
13658 | # func_basename file | |
13659 | func_basename () | |
13660 | { | |
13661 | func_basename_result=`$ECHO "${1}" | $SED "$basename"` | |
13662 | } | |
13663 | ||
13664 | ||
13665 | # func_stripname prefix suffix name | |
13666 | # strip PREFIX and SUFFIX off of NAME. | |
13667 | # PREFIX and SUFFIX must not contain globbing or regex special | |
13668 | # characters, hashes, percent signs, but SUFFIX may contain a leading | |
13669 | # dot (in which case that matches only a dot). | |
13670 | # func_strip_suffix prefix name | |
13671 | func_stripname () | |
13672 | { | |
13673 | case ${2} in | |
13674 | .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; | |
13675 | *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; | |
13676 | esac | |
13677 | } | |
13678 | ||
13679 | # sed scripts: | |
13680 | my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q' | |
13681 | my_sed_long_arg='1s/^-[^=]*=//' | |
13682 | ||
13683 | # func_opt_split | |
13684 | func_opt_split () | |
13685 | { | |
13686 | func_opt_split_opt=`$ECHO "${1}" | $SED "$my_sed_long_opt"` | |
13687 | func_opt_split_arg=`$ECHO "${1}" | $SED "$my_sed_long_arg"` | |
13688 | } | |
13689 | ||
13690 | # func_lo2o object | |
13691 | func_lo2o () | |
13692 | { | |
13693 | func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` | |
13694 | } | |
13695 | ||
13696 | # func_xform libobj-or-source | |
13697 | func_xform () | |
13698 | { | |
13699 | func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` | |
13700 | } | |
13701 | ||
13702 | # func_arith arithmetic-term... | |
13703 | func_arith () | |
13704 | { | |
13705 | func_arith_result=`expr "$@"` | |
13706 | } | |
13707 | ||
13708 | # func_len string | |
13709 | # STRING may not start with a hyphen. | |
13710 | func_len () | |
13711 | { | |
13712 | func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` | |
13713 | } | |
13714 | ||
13715 | _LT_EOF | |
13716 | esac | |
13717 | ||
13718 | case $lt_shell_append in | |
13719 | yes) | |
13720 | cat << \_LT_EOF >> "$cfgfile" | |
13721 | ||
13722 | # func_append var value | |
13723 | # Append VALUE to the end of shell variable VAR. | |
13724 | func_append () | |
13725 | { | |
13726 | eval "$1+=\$2" | |
13727 | } | |
13728 | _LT_EOF | |
13729 | ;; | |
13730 | *) | |
13731 | cat << \_LT_EOF >> "$cfgfile" | |
13732 | ||
13733 | # func_append var value | |
13734 | # Append VALUE to the end of shell variable VAR. | |
13735 | func_append () | |
13736 | { | |
13737 | eval "$1=\$$1\$2" | |
13738 | } | |
13739 | ||
13740 | _LT_EOF | |
13741 | ;; | |
13742 | esac | |
13743 | ||
13744 | ||
13745 | sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \ | |
13746 | || (rm -f "$cfgfile"; exit 1) | |
13747 | ||
13748 | mv -f "$cfgfile" "$ofile" || | |
13749 | (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") | |
13750 | chmod +x "$ofile" | |
13751 | ||
13752 | ;; | |
87326c78 DD |
13753 | "Makefile":C) echo "Merging Makefile.sim+Make-common.sim into Makefile ..." |
13754 | rm -f Makesim1.tmp Makesim2.tmp Makefile | |
13755 | sed -n -e '/^## COMMON_PRE_/,/^## End COMMON_PRE_/ p' <Make-common.sim >Makesim1.tmp | |
13756 | sed -n -e '/^## COMMON_POST_/,/^## End COMMON_POST_/ p' <Make-common.sim >Makesim2.tmp | |
13757 | sed -e '/^## COMMON_PRE_/ r Makesim1.tmp' \ | |
13758 | -e '/^## COMMON_POST_/ r Makesim2.tmp' \ | |
13759 | <Makefile.sim >Makefile | |
13760 | rm -f Makefile.sim Make-common.sim Makesim1.tmp Makesim2.tmp | |
13761 | ;; | |
13762 | "stamp-h":C) echo > stamp-h ;; | |
13763 | ||
13764 | esac | |
13765 | done # for ac_tag | |
13766 | ||
13767 | ||
13768 | as_fn_exit 0 | |
13769 | _ACEOF | |
13770 | ac_clean_files=$ac_clean_files_save | |
13771 | ||
13772 | test $ac_write_fail = 0 || | |
d0ac1c44 | 13773 | as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 |
87326c78 DD |
13774 | |
13775 | ||
13776 | # configure is writing to config.log, and then calls config.status. | |
13777 | # config.status does its own redirection, appending to config.log. | |
13778 | # Unfortunately, on DOS this fails, as config.log is still kept open | |
13779 | # by configure, so config.status won't be able to write to it; its | |
13780 | # output is simply discarded. So we exec the FD to /dev/null, | |
13781 | # effectively closing config.log, so it can be properly (re)opened and | |
13782 | # appended to by config.status. When coming back to configure, we | |
13783 | # need to make the FD available again. | |
13784 | if test "$no_create" != yes; then | |
13785 | ac_cs_success=: | |
13786 | ac_config_status_args= | |
13787 | test "$silent" = yes && | |
13788 | ac_config_status_args="$ac_config_status_args --quiet" | |
13789 | exec 5>/dev/null | |
13790 | $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false | |
13791 | exec 5>>config.log | |
13792 | # Use ||, not &&, to avoid exiting from the if with $? = 1, which | |
13793 | # would make configure fail if this is the last instruction. | |
d0ac1c44 | 13794 | $ac_cs_success || as_fn_exit 1 |
87326c78 DD |
13795 | fi |
13796 | if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then | |
13797 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 | |
13798 | $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} | |
13799 | fi | |
13800 | ||
13801 |