Changeset 2331
- Timestamp:
- Sep 27, 2008 1:16:35 PM (16 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/aconfigure
r2300 r2331 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2. 61for pjproject 1.0.3 # Generated by GNU Autoconf 2.59 for pjproject 1.0. 4 4 # 5 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 6 # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 5 # Copyright (C) 2003 Free Software Foundation, Inc. 7 6 # This configure script is free software; the Free Software Foundation 8 7 # gives unlimited permission to copy, distribute and modify it. … … 11 10 ## --------------------- ## 12 11 13 # Be more Bourne compatible 14 DUALCASE=1; export DUALCASE # for MKS sh 12 # Be Bourne compatible 15 13 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 16 14 emulate sh … … 19 17 # is contrary to our usage. Disable this feature. 20 18 alias -g '${1+"$@"}'='"$@"' 21 setopt NO_GLOB_SUBST 22 else 23 case `(set -o) 2>/dev/null` in 24 *posix*) set -o posix ;; 25 esac 26 27 fi 28 29 30 31 32 # PATH needs CR 19 elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then 20 set -o posix 21 fi 22 DUALCASE=1; export DUALCASE # for MKS sh 23 24 # Support unset when possible. 25 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then 26 as_unset=unset 27 else 28 as_unset=false 29 fi 30 31 32 # Work around bugs in pre-3.0 UWIN ksh. 33 $as_unset ENV MAIL MAILPATH 34 PS1='$ ' 35 PS2='> ' 36 PS4='+ ' 37 38 # NLS nuisances. 39 for as_var in \ 40 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 41 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 42 LC_TELEPHONE LC_TIME 43 do 44 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 45 eval $as_var=C; export $as_var 46 else 47 $as_unset $as_var 48 fi 49 done 50 51 # Required to use basename. 52 if expr a : '\(a\)' >/dev/null 2>&1; then 53 as_expr=expr 54 else 55 as_expr=false 56 fi 57 58 if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then 59 as_basename=basename 60 else 61 as_basename=false 62 fi 63 64 65 # Name of the executable. 66 as_me=`$as_basename "$0" || 67 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 68 X"$0" : 'X\(//\)$' \| \ 69 X"$0" : 'X\(/\)$' \| \ 70 . : '\(.\)' 2>/dev/null || 71 echo X/"$0" | 72 sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } 73 /^X\/\(\/\/\)$/{ s//\1/; q; } 74 /^X\/\(\/\).*/{ s//\1/; q; } 75 s/.*/./; q'` 76 77 78 # PATH needs CR, and LINENO needs CR and PATH. 33 79 # Avoid depending upon Character Ranges. 34 80 as_cr_letters='abcdefghijklmnopqrstuvwxyz' … … 51 97 fi 52 98 53 # Support unset when possible. 54 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then 55 as_unset=unset 56 else 57 as_unset=false 58 fi 59 60 61 # IFS 62 # We need space, tab and new line, in precisely that order. Quoting is 63 # there to prevent editors from complaining about space-tab. 64 # (If _AS_PATH_WALK were called with IFS unset, it would disable word 65 # splitting by setting IFS to empty value.) 66 as_nl=' 67 ' 68 IFS=" "" $as_nl" 69 70 # Find who we are. Look in the path if we contain no directory separator. 71 case $0 in 72 *[\\/]* ) as_myself=$0 ;; 73 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 99 100 as_lineno_1=$LINENO 101 as_lineno_2=$LINENO 102 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` 103 test "x$as_lineno_1" != "x$as_lineno_2" && 104 test "x$as_lineno_3" = "x$as_lineno_2" || { 105 # Find who we are. Look in the path if we contain no path at all 106 # relative or not. 107 case $0 in 108 *[\\/]* ) as_myself=$0 ;; 109 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 74 110 for as_dir in $PATH 75 111 do … … 78 114 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break 79 115 done 80 IFS=$as_save_IFS 81 82 ;; 83 esac 84 # We did not find ourselves, most probably we were run as `sh COMMAND' 85 # in which case we are not to be found in the path. 86 if test "x$as_myself" = x; then 87 as_myself=$0 88 fi 89 if test ! -f "$as_myself"; then 90 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 91 { (exit 1); exit 1; } 92 fi 93 94 # Work around bugs in pre-3.0 UWIN ksh. 95 for as_var in ENV MAIL MAILPATH 96 do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 97 done 98 PS1='$ ' 99 PS2='> ' 100 PS4='+ ' 101 102 # NLS nuisances. 103 for as_var in \ 104 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 105 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 106 LC_TELEPHONE LC_TIME 107 do 108 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 109 eval $as_var=C; export $as_var 110 else 111 ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 116 117 ;; 118 esac 119 # We did not find ourselves, most probably we were run as `sh COMMAND' 120 # in which case we are not to be found in the path. 121 if test "x$as_myself" = x; then 122 as_myself=$0 112 123 fi 113 done 114 115 # Required to use basename. 116 if expr a : '\(a\)' >/dev/null 2>&1 && 117 test "X`expr 00001 : '.*\(...\)'`" = X001; then 118 as_expr=expr 119 else 120 as_expr=false 121 fi 122 123 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then 124 as_basename=basename 125 else 126 as_basename=false 127 fi 128 129 130 # Name of the executable. 131 as_me=`$as_basename -- "$0" || 132 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 133 X"$0" : 'X\(//\)$' \| \ 134 X"$0" : 'X\(/\)' \| . 2>/dev/null || 135 echo X/"$0" | 136 sed '/^.*\/\([^/][^/]*\)\/*$/{ 137 s//\1/ 138 q 139 } 140 /^X\/\(\/\/\)$/{ 141 s//\1/ 142 q 143 } 144 /^X\/\(\/\).*/{ 145 s//\1/ 146 q 147 } 148 s/.*/./; q'` 149 150 # CDPATH. 151 $as_unset CDPATH 152 153 154 if test "x$CONFIG_SHELL" = x; then 155 if (eval ":") 2>/dev/null; then 156 as_have_required=yes 157 else 158 as_have_required=no 159 fi 160 161 if test $as_have_required = yes && (eval ": 162 (as_func_return () { 163 (exit \$1) 164 } 165 as_func_success () { 166 as_func_return 0 167 } 168 as_func_failure () { 169 as_func_return 1 170 } 171 as_func_ret_success () { 172 return 0 173 } 174 as_func_ret_failure () { 175 return 1 176 } 177 178 exitcode=0 179 if as_func_success; then 180 : 181 else 182 exitcode=1 183 echo as_func_success failed. 184 fi 185 186 if as_func_failure; then 187 exitcode=1 188 echo as_func_failure succeeded. 189 fi 190 191 if as_func_ret_success; then 192 : 193 else 194 exitcode=1 195 echo as_func_ret_success failed. 196 fi 197 198 if as_func_ret_failure; then 199 exitcode=1 200 echo as_func_ret_failure succeeded. 201 fi 202 203 if ( set x; as_func_ret_success y && test x = \"\$1\" ); then 204 : 205 else 206 exitcode=1 207 echo positional parameters were not saved. 208 fi 209 210 test \$exitcode = 0) || { (exit 1); exit 1; } 211 212 ( 213 as_lineno_1=\$LINENO 214 as_lineno_2=\$LINENO 215 test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && 216 test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } 217 ") 2> /dev/null; then 218 : 219 else 220 as_candidate_shells= 124 if test ! -f "$as_myself"; then 125 { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 126 { (exit 1); exit 1; }; } 127 fi 128 case $CONFIG_SHELL in 129 '') 221 130 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 222 131 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH … … 224 133 IFS=$as_save_IFS 225 134 test -z "$as_dir" && as_dir=. 226 case $as_dir in 135 for as_base in sh bash ksh sh5; do 136 case $as_dir in 227 137 /*) 228 for as_base in sh bash ksh sh5; do 229 as_candidate_shells="$as_candidate_shells $as_dir/$as_base" 230 done;; 231 esac 232 done 233 IFS=$as_save_IFS 234 235 236 for as_shell in $as_candidate_shells $SHELL; do 237 # Try only shells that exist, to save several forks. 238 if { test -f "$as_shell" || test -f "$as_shell.exe"; } && 239 { ("$as_shell") 2> /dev/null <<\_ASEOF 240 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 241 emulate sh 242 NULLCMD=: 243 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which 244 # is contrary to our usage. Disable this feature. 245 alias -g '${1+"$@"}'='"$@"' 246 setopt NO_GLOB_SUBST 247 else 248 case `(set -o) 2>/dev/null` in 249 *posix*) set -o posix ;; 250 esac 251 252 fi 253 254 255 : 256 _ASEOF 257 }; then 258 CONFIG_SHELL=$as_shell 259 as_have_required=yes 260 if { "$as_shell" 2> /dev/null <<\_ASEOF 261 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 262 emulate sh 263 NULLCMD=: 264 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which 265 # is contrary to our usage. Disable this feature. 266 alias -g '${1+"$@"}'='"$@"' 267 setopt NO_GLOB_SUBST 268 else 269 case `(set -o) 2>/dev/null` in 270 *posix*) set -o posix ;; 271 esac 272 273 fi 274 275 276 : 277 (as_func_return () { 278 (exit $1) 279 } 280 as_func_success () { 281 as_func_return 0 282 } 283 as_func_failure () { 284 as_func_return 1 285 } 286 as_func_ret_success () { 287 return 0 288 } 289 as_func_ret_failure () { 290 return 1 291 } 292 293 exitcode=0 294 if as_func_success; then 295 : 296 else 297 exitcode=1 298 echo as_func_success failed. 299 fi 300 301 if as_func_failure; then 302 exitcode=1 303 echo as_func_failure succeeded. 304 fi 305 306 if as_func_ret_success; then 307 : 308 else 309 exitcode=1 310 echo as_func_ret_success failed. 311 fi 312 313 if as_func_ret_failure; then 314 exitcode=1 315 echo as_func_ret_failure succeeded. 316 fi 317 318 if ( set x; as_func_ret_success y && test x = "$1" ); then 319 : 320 else 321 exitcode=1 322 echo positional parameters were not saved. 323 fi 324 325 test $exitcode = 0) || { (exit 1); exit 1; } 326 327 ( 138 if ("$as_dir/$as_base" -c ' 328 139 as_lineno_1=$LINENO 329 140 as_lineno_2=$LINENO 141 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` 330 142 test "x$as_lineno_1" != "x$as_lineno_2" && 331 test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } 332 333 _ASEOF 334 }; then 335 break 336 fi 337 338 fi 339 340 done 341 342 if test "x$CONFIG_SHELL" != x; then 343 for as_var in BASH_ENV ENV 344 do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 345 done 346 export CONFIG_SHELL 347 exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} 348 fi 349 350 351 if test $as_have_required = no; then 352 echo This script requires a shell more modern than all the 353 echo shells that I found on your system. Please install a 354 echo modern shell, or manually run the script under such a 355 echo shell if you do have one. 356 { (exit 1); exit 1; } 357 fi 358 359 360 fi 361 362 fi 363 364 365 366 (eval "as_func_return () { 367 (exit \$1) 368 } 369 as_func_success () { 370 as_func_return 0 371 } 372 as_func_failure () { 373 as_func_return 1 374 } 375 as_func_ret_success () { 376 return 0 377 } 378 as_func_ret_failure () { 379 return 1 380 } 381 382 exitcode=0 383 if as_func_success; then 384 : 385 else 386 exitcode=1 387 echo as_func_success failed. 388 fi 389 390 if as_func_failure; then 391 exitcode=1 392 echo as_func_failure succeeded. 393 fi 394 395 if as_func_ret_success; then 396 : 397 else 398 exitcode=1 399 echo as_func_ret_success failed. 400 fi 401 402 if as_func_ret_failure; then 403 exitcode=1 404 echo as_func_ret_failure succeeded. 405 fi 406 407 if ( set x; as_func_ret_success y && test x = \"\$1\" ); then 408 : 409 else 410 exitcode=1 411 echo positional parameters were not saved. 412 fi 413 414 test \$exitcode = 0") || { 415 echo No shell found that supports shell functions. 416 echo Please tell autoconf@gnu.org about your system, 417 echo including any error possibly output before this 418 echo message 419 } 420 421 422 423 as_lineno_1=$LINENO 424 as_lineno_2=$LINENO 425 test "x$as_lineno_1" != "x$as_lineno_2" && 426 test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { 143 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then 144 $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } 145 $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } 146 CONFIG_SHELL=$as_dir/$as_base 147 export CONFIG_SHELL 148 exec "$CONFIG_SHELL" "$0" ${1+"$@"} 149 fi;; 150 esac 151 done 152 done 153 ;; 154 esac 427 155 428 156 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO 429 157 # uniformly replaced by the line number. The first 'sed' inserts a 430 # line-number line after each line using $LINENO; the second 'sed' 431 # does the real work. The second script uses 'N' to pair each 432 # line-number line with the line containing $LINENO, and appends 433 # trailing '-' during substitution so that $LINENO is not a special 434 # case at line end. 158 # line-number line before each line; the second 'sed' does the real 159 # work. The second script uses 'N' to pair each line-number line 160 # with the numbered line, and appends trailing '-' during 161 # substitution so that $LINENO is not a special case at line end. 435 162 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the 436 # scripts with optimization help from Paolo Bonzini. Blame Lee 437 # E. McMahon (1931-1989) for sed's syntax. :-) 438 sed -n ' 439 p 440 /[$]LINENO/= 441 ' <$as_myself | 163 # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) 164 sed '=' <$as_myself | 442 165 sed ' 443 s/[$]LINENO.*/&-/444 t lineno445 b446 :lineno447 166 N 448 :loop 449 s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ 167 s,$,-, 168 : loop 169 s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, 450 170 t loop 451 s/-\n.*// 171 s,-$,, 172 s,^['$as_cr_digits']*\n,, 452 173 ' >$as_me.lineno && 453 chmod +x "$as_me.lineno"||174 chmod +x $as_me.lineno || 454 175 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 455 176 { (exit 1); exit 1; }; } … … 457 178 # Don't try to exec as it changes $[0], causing all sort of problems 458 179 # (the dirname of $[0] is not the place where we might find the 459 # original and so on. Autoconf is especially sensi tive to this).460 . "./$as_me.lineno"180 # original and so on. Autoconf is especially sensible to this). 181 . ./$as_me.lineno 461 182 # Exit status is that of the last command. 462 183 exit … … 464 185 465 186 466 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then 467 as_dirname=dirname 468 else 469 as_dirname=false 470 fi 471 472 ECHO_C= ECHO_N= ECHO_T= 473 case `echo -n x` in 474 -n*) 475 case `echo 'x\c'` in 476 *c*) ECHO_T=' ';; # ECHO_T is single tab character. 477 *) ECHO_C='\c';; 478 esac;; 479 *) 480 ECHO_N='-n';; 187 case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in 188 *c*,-n*) ECHO_N= ECHO_C=' 189 ' ECHO_T=' ' ;; 190 *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; 191 *) ECHO_N= ECHO_C='\c' ECHO_T= ;; 481 192 esac 482 193 483 if expr a : '\(a\)' >/dev/null 2>&1 && 484 test "X`expr 00001 : '.*\(...\)'`" = X001; then 194 if expr a : '\(a\)' >/dev/null 2>&1; then 485 195 as_expr=expr 486 196 else … … 489 199 490 200 rm -f conf$$ conf$$.exe conf$$.file 491 if test -d conf$$.dir; then492 rm -f conf$$.dir/conf$$.file493 else494 rm -f conf$$.dir495 mkdir conf$$.dir496 fi497 201 echo >conf$$.file 498 202 if ln -s conf$$.file conf$$ 2>/dev/null; then 499 as_ln_s='ln -s' 500 # ... but there are two gotchas: 501 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 502 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 503 # In both cases, we have to default to `cp -p'. 504 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 203 # We could just check for DJGPP; but this test a) works b) is more generic 204 # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). 205 if test -f conf$$.exe; then 206 # Don't use ln at all; we don't have any links 505 207 as_ln_s='cp -p' 208 else 209 as_ln_s='ln -s' 210 fi 506 211 elif ln conf$$.file conf$$ 2>/dev/null; then 507 212 as_ln_s=ln … … 509 214 as_ln_s='cp -p' 510 215 fi 511 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file 512 rmdir conf$$.dir 2>/dev/null 216 rm -f conf$$ conf$$.exe conf$$.file 513 217 514 218 if mkdir -p . 2>/dev/null; then … … 519 223 fi 520 224 521 if test -x / >/dev/null 2>&1; then 522 as_test_x='test -x' 523 else 524 if ls -dL / >/dev/null 2>&1; then 525 as_ls_L_option=L 526 else 527 as_ls_L_option= 528 fi 529 as_test_x=' 530 eval sh -c '\'' 531 if test -d "$1"; then 532 test -d "$1/."; 533 else 534 case $1 in 535 -*)set "./$1";; 536 esac; 537 case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in 538 ???[sx]*):;;*)false;;esac;fi 539 '\'' sh 540 ' 541 fi 542 as_executable_p=$as_test_x 225 as_executable_p="test -f" 543 226 544 227 # Sed expression to map a string onto a valid CPP name. … … 549 232 550 233 551 552 exec 7<&0 </dev/null 6>&1 234 # IFS 235 # We need space, tab and new line, in precisely that order. 236 as_nl=' 237 ' 238 IFS=" $as_nl" 239 240 # CDPATH. 241 $as_unset CDPATH 242 553 243 554 244 # Name of the host. … … 557 247 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` 558 248 249 exec 6>&1 250 559 251 # 560 252 # Initializations. 561 253 # 562 254 ac_default_prefix=/usr/local 563 ac_clean_files=564 255 ac_config_libobj_dir=. 565 LIBOBJS=566 256 cross_compiling=no 567 257 subdirs= … … 569 259 MAKEFLAGS= 570 260 SHELL=${CONFIG_SHELL-/bin/sh} 261 262 # Maximum number of lines to put in a shell here document. 263 # This variable seems obsolete. It should probably be removed, and 264 # only ac_max_sed_lines should be used. 265 : ${ac_max_here_lines=38} 571 266 572 267 # Identity of this package. … … 580 275 ac_includes_default="\ 581 276 #include <stdio.h> 582 #if defHAVE_SYS_TYPES_H277 #if HAVE_SYS_TYPES_H 583 278 # include <sys/types.h> 584 279 #endif 585 #if defHAVE_SYS_STAT_H280 #if HAVE_SYS_STAT_H 586 281 # include <sys/stat.h> 587 282 #endif 588 #if defSTDC_HEADERS283 #if STDC_HEADERS 589 284 # include <stdlib.h> 590 285 # include <stddef.h> 591 286 #else 592 # if defHAVE_STDLIB_H287 # if HAVE_STDLIB_H 593 288 # include <stdlib.h> 594 289 # endif 595 290 #endif 596 #if defHAVE_STRING_H597 # if ! defined STDC_HEADERS && definedHAVE_MEMORY_H291 #if HAVE_STRING_H 292 # if !STDC_HEADERS && HAVE_MEMORY_H 598 293 # include <memory.h> 599 294 # endif 600 295 # include <string.h> 601 296 #endif 602 #if defHAVE_STRINGS_H297 #if HAVE_STRINGS_H 603 298 # include <strings.h> 604 299 #endif 605 #if defHAVE_INTTYPES_H300 #if HAVE_INTTYPES_H 606 301 # include <inttypes.h> 302 #else 303 # if HAVE_STDINT_H 304 # include <stdint.h> 305 # endif 607 306 #endif 608 #ifdef HAVE_STDINT_H 609 # include <stdint.h> 610 #endif 611 #ifdef HAVE_UNISTD_H 307 #if HAVE_UNISTD_H 612 308 # include <unistd.h> 613 309 #endif" 614 310 615 ac_subst_vars='SHELL 616 PATH_SEPARATOR 617 PACKAGE_NAME 618 PACKAGE_TARNAME 619 PACKAGE_VERSION 620 PACKAGE_STRING 621 PACKAGE_BUGREPORT 622 exec_prefix 623 prefix 624 program_transform_name 625 bindir 626 sbindir 627 libexecdir 628 datarootdir 629 datadir 630 sysconfdir 631 sharedstatedir 632 localstatedir 633 includedir 634 oldincludedir 635 docdir 636 infodir 637 htmldir 638 dvidir 639 pdfdir 640 psdir 641 libdir 642 localedir 643 mandir 644 DEFS 645 ECHO_C 646 ECHO_N 647 ECHO_T 648 LIBS 649 build_alias 650 host_alias 651 target_alias 652 build 653 build_cpu 654 build_vendor 655 build_os 656 host 657 host_cpu 658 host_vendor 659 host_os 660 target 661 target_cpu 662 target_vendor 663 target_os 664 CC 665 CFLAGS 666 LDFLAGS 667 CPPFLAGS 668 ac_ct_CC 669 EXEEXT 670 OBJEXT 671 CXX 672 CXXFLAGS 673 ac_ct_CXX 674 ac_pjdir 675 ac_build_mak_vars 676 CPP 677 GREP 678 EGREP 679 ac_os_objs 680 ac_pjmedia_snd 681 ac_pa_cflags 682 ac_pa_use_alsa 683 ac_pa_use_oss 684 ac_no_small_filter 685 ac_no_large_filter 686 ac_no_speex_aec 687 ac_no_g711_codec 688 ac_no_l16_codec 689 ac_no_gsm_codec 690 ac_no_g722_codec 691 ac_no_speex_codec 692 ac_no_ilbc_codec 693 ac_no_ssl 694 openssl_h_present 695 libssl_present 696 libcrypto_present 697 ac_cross_compile 698 ac_linux_poll 699 ac_host 700 ac_main_obj 701 LIBOBJS 702 LTLIBOBJS' 311 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX ac_pjdir ac_build_mak_vars CPP EGREP ac_os_objs ac_pjmedia_snd ac_pa_cflags ac_pa_use_alsa ac_pa_use_oss ac_no_small_filter ac_no_large_filter ac_no_speex_aec ac_no_g711_codec ac_no_l16_codec ac_no_gsm_codec ac_no_g722_codec ac_no_speex_codec ac_no_ilbc_codec ac_no_ssl openssl_h_present libssl_present libcrypto_present ac_cross_compile ac_linux_poll ac_host ac_main_obj LIBOBJS LTLIBOBJS' 703 312 ac_subst_files='' 704 ac_precious_vars='build_alias705 host_alias706 target_alias707 CC708 CFLAGS709 LDFLAGS710 LIBS711 CPPFLAGS712 CXX713 CXXFLAGS714 CCC715 CPP'716 717 313 718 314 # Initialize some variables set by options. … … 741 337 # by default will actually change. 742 338 # Use braces instead of parens because sh, perl, etc. also accept them. 743 # (The list follows the same order as the GNU Coding Standards.)744 339 bindir='${exec_prefix}/bin' 745 340 sbindir='${exec_prefix}/sbin' 746 341 libexecdir='${exec_prefix}/libexec' 747 datarootdir='${prefix}/share' 748 datadir='${datarootdir}' 342 datadir='${prefix}/share' 749 343 sysconfdir='${prefix}/etc' 750 344 sharedstatedir='${prefix}/com' 751 345 localstatedir='${prefix}/var' 346 libdir='${exec_prefix}/lib' 752 347 includedir='${prefix}/include' 753 348 oldincludedir='/usr/include' 754 docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' 755 infodir='${datarootdir}/info' 756 htmldir='${docdir}' 757 dvidir='${docdir}' 758 pdfdir='${docdir}' 759 psdir='${docdir}' 760 libdir='${exec_prefix}/lib' 761 localedir='${datarootdir}/locale' 762 mandir='${datarootdir}/man' 349 infodir='${prefix}/info' 350 mandir='${prefix}/man' 763 351 764 352 ac_prev= 765 ac_dashdash=766 353 for ac_option 767 354 do 768 355 # If the previous option needs an argument, assign it. 769 356 if test -n "$ac_prev"; then 770 eval $ac_prev=\$ac_option357 eval "$ac_prev=\$ac_option" 771 358 ac_prev= 772 359 continue 773 360 fi 774 361 362 ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` 363 364 # Accept the important Cygnus configure options, so we can diagnose typos. 365 775 366 case $ac_option in 776 *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;777 *) ac_optarg=yes ;;778 esac779 780 # Accept the important Cygnus configure options, so we can diagnose typos.781 782 case $ac_dashdash$ac_option in783 --)784 ac_dashdash=yes ;;785 367 786 368 -bindir | --bindir | --bindi | --bind | --bin | --bi) … … 804 386 cache_file=config.cache ;; 805 387 806 -datadir | --datadir | --datadi | --datad )388 -datadir | --datadir | --datadi | --datad | --data | --dat | --da) 807 389 ac_prev=datadir ;; 808 -datadir=* | --datadir=* | --datadi=* | --datad=*) 390 -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ 391 | --da=*) 809 392 datadir=$ac_optarg ;; 810 811 -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \812 | --dataroo | --dataro | --datar)813 ac_prev=datarootdir ;;814 -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \815 | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)816 datarootdir=$ac_optarg ;;817 393 818 394 -disable-* | --disable-*) 819 395 ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 820 396 # Reject names that are not valid shell variable names. 821 expr "x$ac_feature" : ".*[^- ._$as_cr_alnum]" >/dev/null &&397 expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && 822 398 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 823 399 { (exit 1); exit 1; }; } 824 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 825 eval enable_$ac_feature=no ;; 826 827 -docdir | --docdir | --docdi | --doc | --do) 828 ac_prev=docdir ;; 829 -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) 830 docdir=$ac_optarg ;; 831 832 -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) 833 ac_prev=dvidir ;; 834 -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) 835 dvidir=$ac_optarg ;; 400 ac_feature=`echo $ac_feature | sed 's/-/_/g'` 401 eval "enable_$ac_feature=no" ;; 836 402 837 403 -enable-* | --enable-*) 838 404 ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 839 405 # Reject names that are not valid shell variable names. 840 expr "x$ac_feature" : ".*[^- ._$as_cr_alnum]" >/dev/null &&406 expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && 841 407 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 842 408 { (exit 1); exit 1; }; } 843 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 844 eval enable_$ac_feature=\$ac_optarg ;; 409 ac_feature=`echo $ac_feature | sed 's/-/_/g'` 410 case $ac_option in 411 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; 412 *) ac_optarg=yes ;; 413 esac 414 eval "enable_$ac_feature='$ac_optarg'" ;; 845 415 846 416 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ … … 869 439 host_alias=$ac_optarg ;; 870 440 871 -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)872 ac_prev=htmldir ;;873 -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \874 | --ht=*)875 htmldir=$ac_optarg ;;876 877 441 -includedir | --includedir | --includedi | --included | --include \ 878 442 | --includ | --inclu | --incl | --inc) … … 899 463 libexecdir=$ac_optarg ;; 900 464 901 -localedir | --localedir | --localedi | --localed | --locale)902 ac_prev=localedir ;;903 -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)904 localedir=$ac_optarg ;;905 906 465 -localstatedir | --localstatedir | --localstatedi | --localstated \ 907 | --localstate | --localstat | --localsta | --localst | --locals) 466 | --localstate | --localstat | --localsta | --localst \ 467 | --locals | --local | --loca | --loc | --lo) 908 468 ac_prev=localstatedir ;; 909 469 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ 910 | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) 470 | --localstate=* | --localstat=* | --localsta=* | --localst=* \ 471 | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) 911 472 localstatedir=$ac_optarg ;; 912 473 … … 973 534 program_transform_name=$ac_optarg ;; 974 535 975 -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)976 ac_prev=pdfdir ;;977 -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)978 pdfdir=$ac_optarg ;;979 980 -psdir | --psdir | --psdi | --psd | --ps)981 ac_prev=psdir ;;982 -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)983 psdir=$ac_optarg ;;984 985 536 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 986 537 | -silent | --silent | --silen | --sile | --sil) … … 1035 586 ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 1036 587 # Reject names that are not valid shell variable names. 1037 expr "x$ac_package" : ".*[^- ._$as_cr_alnum]" >/dev/null &&588 expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && 1038 589 { echo "$as_me: error: invalid package name: $ac_package" >&2 1039 590 { (exit 1); exit 1; }; } 1040 ac_package=`echo $ac_package | sed 's/[-.]/_/g'` 1041 eval with_$ac_package=\$ac_optarg ;; 591 ac_package=`echo $ac_package| sed 's/-/_/g'` 592 case $ac_option in 593 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; 594 *) ac_optarg=yes ;; 595 esac 596 eval "with_$ac_package='$ac_optarg'" ;; 1042 597 1043 598 -without-* | --without-*) 1044 599 ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` 1045 600 # Reject names that are not valid shell variable names. 1046 expr "x$ac_package" : ".*[^- ._$as_cr_alnum]" >/dev/null &&601 expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && 1047 602 { echo "$as_me: error: invalid package name: $ac_package" >&2 1048 603 { (exit 1); exit 1; }; } 1049 ac_package=`echo $ac_package | sed 's/ [-.]/_/g'`1050 eval with_$ac_package=no;;604 ac_package=`echo $ac_package | sed 's/-/_/g'` 605 eval "with_$ac_package=no" ;; 1051 606 1052 607 --x) … … 1079 634 { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 1080 635 { (exit 1); exit 1; }; } 1081 eval $ac_envvar=\$ac_optarg 636 ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` 637 eval "$ac_envvar='$ac_optarg'" 1082 638 export $ac_envvar ;; 1083 639 … … 1099 655 fi 1100 656 1101 # Be sure to have absolute directory names. 1102 for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ 1103 datadir sysconfdir sharedstatedir localstatedir includedir \ 1104 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ 1105 libdir localedir mandir 657 # Be sure to have absolute paths. 658 for ac_var in exec_prefix prefix 1106 659 do 1107 eval ac_val= \$$ac_var660 eval ac_val=$`echo $ac_var` 1108 661 case $ac_val in 1109 [\\/$]* | ?:[\\/]* ) continue;; 1110 NONE | '' ) case $ac_var in *prefix ) continue;; esac;; 662 [\\/$]* | ?:[\\/]* | NONE | '' ) ;; 663 *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 664 { (exit 1); exit 1; }; };; 1111 665 esac 1112 { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 1113 { (exit 1); exit 1; }; } 666 done 667 668 # Be sure to have absolute paths. 669 for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ 670 localstatedir libdir includedir oldincludedir infodir mandir 671 do 672 eval ac_val=$`echo $ac_var` 673 case $ac_val in 674 [\\/$]* | ?:[\\/]* ) ;; 675 *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 676 { (exit 1); exit 1; }; };; 677 esac 1114 678 done 1115 679 … … 1138 702 1139 703 1140 ac_pwd=`pwd` && test -n "$ac_pwd" &&1141 ac_ls_di=`ls -di .` &&1142 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||1143 { echo "$as_me: error: Working directory cannot be determined" >&21144 { (exit 1); exit 1; }; }1145 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||1146 { echo "$as_me: error: pwd does not report name of working directory" >&21147 { (exit 1); exit 1; }; }1148 1149 1150 704 # Find the source files, if location was not specified. 1151 705 if test -z "$srcdir"; then 1152 706 ac_srcdir_defaulted=yes 1153 # Try the directory containing this script, then the parent directory.1154 ac_confdir=` $as_dirname -- "$0"||707 # Try the directory containing this script, then its parent. 708 ac_confdir=`(dirname "$0") 2>/dev/null || 1155 709 $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 1156 710 X"$0" : 'X\(//\)[^/]' \| \ 1157 711 X"$0" : 'X\(//\)$' \| \ 1158 X"$0" : 'X\(/\)' \| . 2>/dev/null || 712 X"$0" : 'X\(/\)' \| \ 713 . : '\(.\)' 2>/dev/null || 1159 714 echo X"$0" | 1160 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 1161 s//\1/ 1162 q 1163 } 1164 /^X\(\/\/\)[^/].*/{ 1165 s//\1/ 1166 q 1167 } 1168 /^X\(\/\/\)$/{ 1169 s//\1/ 1170 q 1171 } 1172 /^X\(\/\).*/{ 1173 s//\1/ 1174 q 1175 } 1176 s/.*/./; q'` 715 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } 716 /^X\(\/\/\)[^/].*/{ s//\1/; q; } 717 /^X\(\/\/\)$/{ s//\1/; q; } 718 /^X\(\/\).*/{ s//\1/; q; } 719 s/.*/./; q'` 1177 720 srcdir=$ac_confdir 1178 if test ! -r "$srcdir/$ac_unique_file"; then721 if test ! -r $srcdir/$ac_unique_file; then 1179 722 srcdir=.. 1180 723 fi … … 1182 725 ac_srcdir_defaulted=no 1183 726 fi 1184 if test ! -r "$srcdir/$ac_unique_file"; then1185 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."1186 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2727 if test ! -r $srcdir/$ac_unique_file; then 728 if test "$ac_srcdir_defaulted" = yes; then 729 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 1187 730 { (exit 1); exit 1; }; } 1188 fi 1189 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" 1190 ac_abs_confdir=`( 1191 cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 731 else 732 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 1192 733 { (exit 1); exit 1; }; } 1193 pwd)` 1194 # When building in place, set srcdir=. 1195 if test "$ac_abs_confdir" = "$ac_pwd"; then 1196 srcdir=. 1197 fi 1198 # Remove unnecessary trailing slashes from srcdir. 1199 # Double slashes in file names in object file debugging info 1200 # mess up M-x gdb in Emacs. 1201 case $srcdir in 1202 */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; 1203 esac 1204 for ac_var in $ac_precious_vars; do 1205 eval ac_env_${ac_var}_set=\${${ac_var}+set} 1206 eval ac_env_${ac_var}_value=\$${ac_var} 1207 eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} 1208 eval ac_cv_env_${ac_var}_value=\$${ac_var} 1209 done 734 fi 735 fi 736 (cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || 737 { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 738 { (exit 1); exit 1; }; } 739 srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` 740 ac_env_build_alias_set=${build_alias+set} 741 ac_env_build_alias_value=$build_alias 742 ac_cv_env_build_alias_set=${build_alias+set} 743 ac_cv_env_build_alias_value=$build_alias 744 ac_env_host_alias_set=${host_alias+set} 745 ac_env_host_alias_value=$host_alias 746 ac_cv_env_host_alias_set=${host_alias+set} 747 ac_cv_env_host_alias_value=$host_alias 748 ac_env_target_alias_set=${target_alias+set} 749 ac_env_target_alias_value=$target_alias 750 ac_cv_env_target_alias_set=${target_alias+set} 751 ac_cv_env_target_alias_value=$target_alias 752 ac_env_CC_set=${CC+set} 753 ac_env_CC_value=$CC 754 ac_cv_env_CC_set=${CC+set} 755 ac_cv_env_CC_value=$CC 756 ac_env_CFLAGS_set=${CFLAGS+set} 757 ac_env_CFLAGS_value=$CFLAGS 758 ac_cv_env_CFLAGS_set=${CFLAGS+set} 759 ac_cv_env_CFLAGS_value=$CFLAGS 760 ac_env_LDFLAGS_set=${LDFLAGS+set} 761 ac_env_LDFLAGS_value=$LDFLAGS 762 ac_cv_env_LDFLAGS_set=${LDFLAGS+set} 763 ac_cv_env_LDFLAGS_value=$LDFLAGS 764 ac_env_CPPFLAGS_set=${CPPFLAGS+set} 765 ac_env_CPPFLAGS_value=$CPPFLAGS 766 ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} 767 ac_cv_env_CPPFLAGS_value=$CPPFLAGS 768 ac_env_CXX_set=${CXX+set} 769 ac_env_CXX_value=$CXX 770 ac_cv_env_CXX_set=${CXX+set} 771 ac_cv_env_CXX_value=$CXX 772 ac_env_CXXFLAGS_set=${CXXFLAGS+set} 773 ac_env_CXXFLAGS_value=$CXXFLAGS 774 ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set} 775 ac_cv_env_CXXFLAGS_value=$CXXFLAGS 776 ac_env_CPP_set=${CPP+set} 777 ac_env_CPP_value=$CPP 778 ac_cv_env_CPP_set=${CPP+set} 779 ac_cv_env_CPP_value=$CPP 1210 780 1211 781 # … … 1236 806 --srcdir=DIR find the sources in DIR [configure dir or \`..'] 1237 807 808 _ACEOF 809 810 cat <<_ACEOF 1238 811 Installation directories: 1239 812 --prefix=PREFIX install architecture-independent files in PREFIX … … 1253 826 --sbindir=DIR system admin executables [EPREFIX/sbin] 1254 827 --libexecdir=DIR program executables [EPREFIX/libexec] 828 --datadir=DIR read-only architecture-independent data [PREFIX/share] 1255 829 --sysconfdir=DIR read-only single-machine data [PREFIX/etc] 1256 830 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] … … 1259 833 --includedir=DIR C header files [PREFIX/include] 1260 834 --oldincludedir=DIR C header files for non-gcc [/usr/include] 1261 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] 1262 --datadir=DIR read-only architecture-independent data [DATAROOTDIR] 1263 --infodir=DIR info documentation [DATAROOTDIR/info] 1264 --localedir=DIR locale-dependent data [DATAROOTDIR/locale] 1265 --mandir=DIR man documentation [DATAROOTDIR/man] 1266 --docdir=DIR documentation root [DATAROOTDIR/doc/pjproject] 1267 --htmldir=DIR html documentation [DOCDIR] 1268 --dvidir=DIR dvi documentation [DOCDIR] 1269 --pdfdir=DIR pdf documentation [DOCDIR] 1270 --psdir=DIR ps documentation [DOCDIR] 835 --infodir=DIR info documentation [PREFIX/info] 836 --mandir=DIR man documentation [PREFIX/man] 1271 837 _ACEOF 1272 838 … … 1321 887 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a 1322 888 nonstandard directory <lib dir> 1323 LIBS libraries to pass to the linker, e.g. -l<library> 1324 CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I<include dir> if 1325 you have headers in a nonstandard directory <include dir> 889 CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have 890 headers in a nonstandard directory <include dir> 1326 891 CXX C++ compiler command 1327 892 CXXFLAGS C++ compiler flags … … 1332 897 1333 898 _ACEOF 1334 ac_status=$?1335 899 fi 1336 900 1337 901 if test "$ac_init_help" = "recursive"; then 1338 902 # If there are subdirs, report their specific --help. 903 ac_popdir=`pwd` 1339 904 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue 1340 test -d "$ac_dir"|| continue905 test -d $ac_dir || continue 1341 906 ac_builddir=. 1342 907 1343 case "$ac_dir" in 1344 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 908 if test "$ac_dir" != .; then 909 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` 910 # A "../" for each directory in $ac_dir_suffix. 911 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` 912 else 913 ac_dir_suffix= ac_top_builddir= 914 fi 915 916 case $srcdir in 917 .) # No --srcdir option. We are building in place. 918 ac_srcdir=. 919 if test -z "$ac_top_builddir"; then 920 ac_top_srcdir=. 921 else 922 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` 923 fi ;; 924 [\\/]* | ?:[\\/]* ) # Absolute path. 925 ac_srcdir=$srcdir$ac_dir_suffix; 926 ac_top_srcdir=$srcdir ;; 927 *) # Relative path. 928 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix 929 ac_top_srcdir=$ac_top_builddir$srcdir ;; 930 esac 931 932 # Do not use `cd foo && pwd` to compute absolute paths, because 933 # the directories may not exist. 934 case `pwd` in 935 .) ac_abs_builddir="$ac_dir";; 1345 936 *) 1346 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` 1347 # A ".." for each directory in $ac_dir_suffix. 1348 ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` 1349 case $ac_top_builddir_sub in 1350 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; 1351 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; 1352 esac ;; 937 case "$ac_dir" in 938 .) ac_abs_builddir=`pwd`;; 939 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; 940 *) ac_abs_builddir=`pwd`/"$ac_dir";; 941 esac;; 1353 942 esac 1354 ac_abs_top_builddir=$ac_pwd 1355 ac_abs_builddir=$ac_pwd$ac_dir_suffix 1356 # for backward compatibility: 1357 ac_top_builddir=$ac_top_build_prefix 1358 1359 case $srcdir in 1360 .) # We are building in place. 1361 ac_srcdir=. 1362 ac_top_srcdir=$ac_top_builddir_sub 1363 ac_abs_top_srcdir=$ac_pwd ;; 1364 [\\/]* | ?:[\\/]* ) # Absolute name. 1365 ac_srcdir=$srcdir$ac_dir_suffix; 1366 ac_top_srcdir=$srcdir 1367 ac_abs_top_srcdir=$srcdir ;; 1368 *) # Relative name. 1369 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix 1370 ac_top_srcdir=$ac_top_build_prefix$srcdir 1371 ac_abs_top_srcdir=$ac_pwd/$srcdir ;; 943 case $ac_abs_builddir in 944 .) ac_abs_top_builddir=${ac_top_builddir}.;; 945 *) 946 case ${ac_top_builddir}. in 947 .) ac_abs_top_builddir=$ac_abs_builddir;; 948 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; 949 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; 950 esac;; 1372 951 esac 1373 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix 1374 1375 cd "$ac_dir" || { ac_status=$?; continue; } 1376 # Check for guested configure. 1377 if test -f "$ac_srcdir/configure.gnu"; then 1378 echo && 1379 $SHELL "$ac_srcdir/configure.gnu" --help=recursive 1380 elif test -f "$ac_srcdir/configure"; then 1381 echo && 1382 $SHELL "$ac_srcdir/configure" --help=recursive 952 case $ac_abs_builddir in 953 .) ac_abs_srcdir=$ac_srcdir;; 954 *) 955 case $ac_srcdir in 956 .) ac_abs_srcdir=$ac_abs_builddir;; 957 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; 958 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; 959 esac;; 960 esac 961 case $ac_abs_builddir in 962 .) ac_abs_top_srcdir=$ac_top_srcdir;; 963 *) 964 case $ac_top_srcdir in 965 .) ac_abs_top_srcdir=$ac_abs_builddir;; 966 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; 967 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; 968 esac;; 969 esac 970 971 cd $ac_dir 972 # Check for guested configure; otherwise get Cygnus style configure. 973 if test -f $ac_srcdir/configure.gnu; then 974 echo 975 $SHELL $ac_srcdir/configure.gnu --help=recursive 976 elif test -f $ac_srcdir/configure; then 977 echo 978 $SHELL $ac_srcdir/configure --help=recursive 979 elif test -f $ac_srcdir/configure.ac || 980 test -f $ac_srcdir/configure.in; then 981 echo 982 $ac_configure --help 1383 983 else 1384 984 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 1385 fi || ac_status=$?1386 cd "$ac_pwd" || { ac_status=$?; break; }985 fi 986 cd $ac_popdir 1387 987 done 1388 988 fi 1389 989 1390 test -n "$ac_init_help" && exit $ac_status990 test -n "$ac_init_help" && exit 0 1391 991 if $ac_init_version; then 1392 992 cat <<\_ACEOF 1393 993 pjproject configure 1.0 1394 generated by GNU Autoconf 2.61 1395 1396 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 1397 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 994 generated by GNU Autoconf 2.59 995 996 Copyright (C) 2003 Free Software Foundation, Inc. 1398 997 This configure script is free software; the Free Software Foundation 1399 998 gives unlimited permission to copy, distribute and modify it. 1400 999 _ACEOF 1401 exit 1402 fi 1403 cat >config.log <<_ACEOF 1000 exit 0 1001 fi 1002 exec 5>config.log 1003 cat >&5 <<_ACEOF 1404 1004 This file contains any messages produced by compilers while 1405 1005 running configure, to aid debugging if configure makes a mistake. 1406 1006 1407 1007 It was created by pjproject $as_me 1.0, which was 1408 generated by GNU Autoconf 2. 61. Invocation command line was1008 generated by GNU Autoconf 2.59. Invocation command line was 1409 1009 1410 1010 $ $0 $@ 1411 1011 1412 1012 _ACEOF 1413 exec 5>>config.log1414 1013 { 1415 1014 cat <<_ASUNAME … … 1430 1029 /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` 1431 1030 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` 1432 /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null|| echo unknown`1031 hostinfo = `(hostinfo) 2>/dev/null || echo unknown` 1433 1032 /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` 1434 1033 /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` … … 1444 1043 echo "PATH: $as_dir" 1445 1044 done 1446 IFS=$as_save_IFS1447 1045 1448 1046 } >&5 … … 1466 1064 ac_configure_args0= 1467 1065 ac_configure_args1= 1066 ac_sep= 1468 1067 ac_must_keep_next=false 1469 1068 for ac_pass in 1 2 … … 1476 1075 | -silent | --silent | --silen | --sile | --sil) 1477 1076 continue ;; 1478 * \'*)1077 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) 1479 1078 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; 1480 1079 esac … … 1498 1097 esac 1499 1098 fi 1500 ac_configure_args="$ac_configure_args '$ac_arg'" 1099 ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" 1100 # Get rid of the leading space. 1101 ac_sep=" " 1501 1102 ;; 1502 1103 esac … … 1509 1110 # config.log. We remove comments because anyway the quotes in there 1510 1111 # would cause problems or look ugly. 1511 # WARNING: Use '\'' to represent an apostrophe within the trap.1512 # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.1112 # WARNING: Be sure not to use single quotes in there, as some shells, 1113 # such as our DU 5.0 friend, will then `close' the trap. 1513 1114 trap 'exit_status=$? 1514 1115 # Save into config.log some information that might help in debugging. … … 1523 1124 echo 1524 1125 # The following way of writing the cache mishandles newlines in values, 1525 ( 1526 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do 1527 eval ac_val=\$$ac_var 1528 case $ac_val in #( 1529 *${as_nl}*) 1530 case $ac_var in #( 1531 *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 1532 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; 1533 esac 1534 case $ac_var in #( 1535 _ | IFS | as_nl) ;; #( 1536 *) $as_unset $ac_var ;; 1537 esac ;; 1538 esac 1539 done 1126 { 1540 1127 (set) 2>&1 | 1541 case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(1542 * ${as_nl}ac_space=\ *)1128 case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in 1129 *ac_space=\ *) 1543 1130 sed -n \ 1544 "s/' \''/'\''\\\\'\'''\''/g;1545 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=' \''\\2'\''/p"1546 ;; #(1131 "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; 1132 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" 1133 ;; 1547 1134 *) 1548 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" 1135 sed -n \ 1136 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" 1549 1137 ;; 1550 esac | 1551 sort 1552 ) 1138 esac; 1139 } 1553 1140 echo 1554 1141 … … 1561 1148 for ac_var in $ac_subst_vars 1562 1149 do 1563 eval ac_val=\$$ac_var 1564 case $ac_val in 1565 *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 1566 esac 1567 echo "$ac_var='\''$ac_val'\''" 1150 eval ac_val=$`echo $ac_var` 1151 echo "$ac_var='"'"'$ac_val'"'"'" 1568 1152 done | sort 1569 1153 echo … … 1571 1155 if test -n "$ac_subst_files"; then 1572 1156 cat <<\_ASBOX 1573 ## ------------- ------##1574 ## File substitutions. ##1575 ## ------------- ------##1157 ## ------------- ## 1158 ## Output files. ## 1159 ## ------------- ## 1576 1160 _ASBOX 1577 1161 echo 1578 1162 for ac_var in $ac_subst_files 1579 1163 do 1580 eval ac_val=\$$ac_var 1581 case $ac_val in 1582 *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 1583 esac 1584 echo "$ac_var='\''$ac_val'\''" 1164 eval ac_val=$`echo $ac_var` 1165 echo "$ac_var='"'"'$ac_val'"'"'" 1585 1166 done | sort 1586 1167 echo … … 1594 1175 _ASBOX 1595 1176 echo 1596 cat confdefs.h1177 sed "/^$/d" confdefs.h | sort 1597 1178 echo 1598 1179 fi … … 1601 1182 echo "$as_me: exit $exit_status" 1602 1183 } >&5 1603 rm -f core *.core core.conftest.*&&1604 rm -f -rconftest* confdefs* conf$$* $ac_clean_files &&1184 rm -f core *.core && 1185 rm -rf conftest* confdefs* conf$$* $ac_clean_files && 1605 1186 exit $exit_status 1606 ' 01187 ' 0 1607 1188 for ac_signal in 1 2 13 15; do 1608 1189 trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal … … 1611 1192 1612 1193 # confdefs.h avoids OS command line length limits that DEFS can exceed. 1613 rm -f -r conftest* confdefs.h 1194 rm -rf conftest* confdefs.h 1195 # AIX cpp loses on an empty file, so make sure it contains at least a newline. 1196 echo >confdefs.h 1614 1197 1615 1198 # Predefined preprocessor variables. … … 1642 1225 # Let the site file select an alternate cache file if it wants to. 1643 1226 # Prefer explicitly selected file to automatically selected ones. 1644 if test -n "$CONFIG_SITE"; then 1645 set x "$CONFIG_SITE" 1646 elif test "x$prefix" != xNONE; then 1647 set x "$prefix/share/config.site" "$prefix/etc/config.site" 1648 else 1649 set x "$ac_default_prefix/share/config.site" \ 1650 "$ac_default_prefix/etc/config.site" 1651 fi 1652 shift 1653 for ac_site_file 1654 do 1227 if test -z "$CONFIG_SITE"; then 1228 if test "x$prefix" != xNONE; then 1229 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 1230 else 1231 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 1232 fi 1233 fi 1234 for ac_site_file in $CONFIG_SITE; do 1655 1235 if test -r "$ac_site_file"; then 1656 1236 { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 … … 1668 1248 echo "$as_me: loading cache $cache_file" >&6;} 1669 1249 case $cache_file in 1670 [\\/]* | ?:[\\/]* ) . "$cache_file";;1671 *) . "./$cache_file";;1250 [\\/]* | ?:[\\/]* ) . $cache_file;; 1251 *) . ./$cache_file;; 1672 1252 esac 1673 1253 fi … … 1681 1261 # value. 1682 1262 ac_cache_corrupted=false 1683 for ac_var in $ac_precious_vars; do 1263 for ac_var in `(set) 2>&1 | 1264 sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do 1684 1265 eval ac_old_set=\$ac_cv_env_${ac_var}_set 1685 1266 eval ac_new_set=\$ac_env_${ac_var}_set 1686 eval ac_old_val= \$ac_cv_env_${ac_var}_value1687 eval ac_new_val= \$ac_env_${ac_var}_value1267 eval ac_old_val="\$ac_cv_env_${ac_var}_value" 1268 eval ac_new_val="\$ac_env_${ac_var}_value" 1688 1269 case $ac_old_set,$ac_new_set in 1689 1270 set,) … … 1710 1291 if test "$ac_new_set" = set; then 1711 1292 case $ac_new_val in 1712 *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; 1293 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) 1294 ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; 1713 1295 *) ac_arg=$ac_var=$ac_new_val ;; 1714 1296 esac … … 1727 1309 fi 1728 1310 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1311 ac_ext=c 1754 1312 ac_cpp='$CPP $CPPFLAGS' … … 1759 1317 1760 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1761 1344 host_orig="$host" 1762 1345 1763 1346 ac_aux_dir= 1764 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do1765 if test -f "$ac_dir/install-sh"; then1347 for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do 1348 if test -f $ac_dir/install-sh; then 1766 1349 ac_aux_dir=$ac_dir 1767 1350 ac_install_sh="$ac_aux_dir/install-sh -c" 1768 1351 break 1769 elif test -f "$ac_dir/install.sh"; then1352 elif test -f $ac_dir/install.sh; then 1770 1353 ac_aux_dir=$ac_dir 1771 1354 ac_install_sh="$ac_aux_dir/install.sh -c" 1772 1355 break 1773 elif test -f "$ac_dir/shtool"; then1356 elif test -f $ac_dir/shtool; then 1774 1357 ac_aux_dir=$ac_dir 1775 1358 ac_install_sh="$ac_aux_dir/shtool install -c" … … 1778 1361 done 1779 1362 if test -z "$ac_aux_dir"; then 1780 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&51781 echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;}1363 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 1364 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} 1782 1365 { (exit 1); exit 1; }; } 1783 1366 fi 1784 1785 # These three variables are undocumented and unsupported, 1786 # and are intended to be withdrawn in a future Autoconf release. 1787 # They can cause serious problems if a builder's source tree is in a directory 1788 # whose full name contains unusual characters. 1789 ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. 1790 ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. 1791 ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. 1792 1367 ac_config_guess="$SHELL $ac_aux_dir/config.guess" 1368 ac_config_sub="$SHELL $ac_aux_dir/config.sub" 1369 ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. 1793 1370 1794 1371 # Make sure we can run config.sub. 1795 $ SHELL "$ac_aux_dir/config.sub"sun4 >/dev/null 2>&1 ||1796 { { echo "$as_me:$LINENO: error: cannot run $ SHELL $ac_aux_dir/config.sub" >&51797 echo "$as_me: error: cannot run $ SHELL $ac_aux_dir/config.sub" >&2;}1372 $ac_config_sub sun4 >/dev/null 2>&1 || 1373 { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 1374 echo "$as_me: error: cannot run $ac_config_sub" >&2;} 1798 1375 { (exit 1); exit 1; }; } 1799 1376 1800 {echo "$as_me:$LINENO: checking build system type" >&51801 echo $ECHO_N "checking build system type... $ECHO_C" >&6 ; }1377 echo "$as_me:$LINENO: checking build system type" >&5 1378 echo $ECHO_N "checking build system type... $ECHO_C" >&6 1802 1379 if test "${ac_cv_build+set}" = set; then 1803 1380 echo $ECHO_N "(cached) $ECHO_C" >&6 1804 1381 else 1805 ac_ build_alias=$build_alias1806 test "x$ac_build_alias" = x&&1807 ac_ build_alias=`$SHELL "$ac_aux_dir/config.guess"`1808 test "x$ac_build_alias" = x&&1382 ac_cv_build_alias=$build_alias 1383 test -z "$ac_cv_build_alias" && 1384 ac_cv_build_alias=`$ac_config_guess` 1385 test -z "$ac_cv_build_alias" && 1809 1386 { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 1810 1387 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} 1811 1388 { (exit 1); exit 1; }; } 1812 ac_cv_build=`$ SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||1813 { { echo "$as_me:$LINENO: error: $ SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&51814 echo "$as_me: error: $ SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}1389 ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || 1390 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5 1391 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;} 1815 1392 { (exit 1); exit 1; }; } 1816 1393 1817 1394 fi 1818 { echo "$as_me:$LINENO: result: $ac_cv_build" >&5 1819 echo "${ECHO_T}$ac_cv_build" >&6; } 1820 case $ac_cv_build in 1821 *-*-*) ;; 1822 *) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 1823 echo "$as_me: error: invalid value of canonical build" >&2;} 1824 { (exit 1); exit 1; }; };; 1825 esac 1395 echo "$as_me:$LINENO: result: $ac_cv_build" >&5 1396 echo "${ECHO_T}$ac_cv_build" >&6 1826 1397 build=$ac_cv_build 1827 ac_save_IFS=$IFS; IFS='-' 1828 set x $ac_cv_build 1829 shift 1830 build_cpu=$1 1831 build_vendor=$2 1832 shift; shift 1833 # Remember, the first character of IFS is used to create $*, 1834 # except with old shells: 1835 build_os=$* 1836 IFS=$ac_save_IFS 1837 case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac 1838 1839 1840 { echo "$as_me:$LINENO: checking host system type" >&5 1841 echo $ECHO_N "checking host system type... $ECHO_C" >&6; } 1398 build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` 1399 build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` 1400 build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` 1401 1402 1403 echo "$as_me:$LINENO: checking host system type" >&5 1404 echo $ECHO_N "checking host system type... $ECHO_C" >&6 1842 1405 if test "${ac_cv_host+set}" = set; then 1843 1406 echo $ECHO_N "(cached) $ECHO_C" >&6 1844 1407 else 1845 if test "x$host_alias" = x; then1846 ac_cv_host=$ac_cv_build 1847 else 1848 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||1849 { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&51850 echo "$as_me: error: $ SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}1408 ac_cv_host_alias=$host_alias 1409 test -z "$ac_cv_host_alias" && 1410 ac_cv_host_alias=$ac_cv_build_alias 1411 ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || 1412 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5 1413 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} 1851 1414 { (exit 1); exit 1; }; } 1852 fi 1853 1854 fi 1855 { echo "$as_me:$LINENO: result: $ac_cv_host" >&5 1856 echo "${ECHO_T}$ac_cv_host" >&6; } 1857 case $ac_cv_host in 1858 *-*-*) ;; 1859 *) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 1860 echo "$as_me: error: invalid value of canonical host" >&2;} 1861 { (exit 1); exit 1; }; };; 1862 esac 1415 1416 fi 1417 echo "$as_me:$LINENO: result: $ac_cv_host" >&5 1418 echo "${ECHO_T}$ac_cv_host" >&6 1863 1419 host=$ac_cv_host 1864 ac_save_IFS=$IFS; IFS='-' 1865 set x $ac_cv_host 1866 shift 1867 host_cpu=$1 1868 host_vendor=$2 1869 shift; shift 1870 # Remember, the first character of IFS is used to create $*, 1871 # except with old shells: 1872 host_os=$* 1873 IFS=$ac_save_IFS 1874 case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac 1875 1876 1877 { echo "$as_me:$LINENO: checking target system type" >&5 1878 echo $ECHO_N "checking target system type... $ECHO_C" >&6; } 1420 host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` 1421 host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` 1422 host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` 1423 1424 1425 echo "$as_me:$LINENO: checking target system type" >&5 1426 echo $ECHO_N "checking target system type... $ECHO_C" >&6 1879 1427 if test "${ac_cv_target+set}" = set; then 1880 1428 echo $ECHO_N "(cached) $ECHO_C" >&6 1881 1429 else 1882 if test "x$target_alias" = x; then1883 ac_cv_target=$ac_cv_host 1884 else 1885 ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||1886 { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&51887 echo "$as_me: error: $ SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;}1430 ac_cv_target_alias=$target_alias 1431 test "x$ac_cv_target_alias" = "x" && 1432 ac_cv_target_alias=$ac_cv_host_alias 1433 ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || 1434 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5 1435 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} 1888 1436 { (exit 1); exit 1; }; } 1889 fi 1890 1891 fi 1892 { echo "$as_me:$LINENO: result: $ac_cv_target" >&5 1893 echo "${ECHO_T}$ac_cv_target" >&6; } 1894 case $ac_cv_target in 1895 *-*-*) ;; 1896 *) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5 1897 echo "$as_me: error: invalid value of canonical target" >&2;} 1898 { (exit 1); exit 1; }; };; 1899 esac 1437 1438 fi 1439 echo "$as_me:$LINENO: result: $ac_cv_target" >&5 1440 echo "${ECHO_T}$ac_cv_target" >&6 1900 1441 target=$ac_cv_target 1901 ac_save_IFS=$IFS; IFS='-' 1902 set x $ac_cv_target 1903 shift 1904 target_cpu=$1 1905 target_vendor=$2 1906 shift; shift 1907 # Remember, the first character of IFS is used to create $*, 1908 # except with old shells: 1909 target_os=$* 1910 IFS=$ac_save_IFS 1911 case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac 1442 target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` 1443 target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` 1444 target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` 1912 1445 1913 1446 … … 1918 1451 NONENONEs,x,x, && 1919 1452 program_prefix=${target_alias}- 1920 ac_config_headers="$ac_config_headers pjlib/include/pj/compat/os_auto.h pjlib/include/pj/compat/m_auto.h pjmedia/include/pjmedia/config_auto.h pjmedia/include/pjmedia-codec/config_auto.h pjsip/include/pjsip/sip_autoconf.h"1921 1922 ac_config_files="$ac_config_files build.mak build/os-auto.mak pjlib/build/os-auto.mak pjlib-util/build/os-auto.mak pjmedia/build/os-auto.mak pjsip/build/os-auto.mak third_party/build/portaudio/os-auto.mak third_party/build/os-auto.mak"1453 ac_config_headers="$ac_config_headers pjlib/include/pj/compat/os_auto.h pjlib/include/pj/compat/m_auto.h pjmedia/include/pjmedia/config_auto.h pjmedia/include/pjmedia-codec/config_auto.h pjsip/include/pjsip/sip_autoconf.h" 1454 1455 ac_config_files="$ac_config_files build.mak build/os-auto.mak pjlib/build/os-auto.mak pjlib-util/build/os-auto.mak pjmedia/build/os-auto.mak pjsip/build/os-auto.mak third_party/build/portaudio/os-auto.mak third_party/build/os-auto.mak" 1923 1456 1924 1457 … … 1940 1473 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. 1941 1474 set dummy ${ac_tool_prefix}gcc; ac_word=$2 1942 {echo "$as_me:$LINENO: checking for $ac_word" >&51943 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 ; }1475 echo "$as_me:$LINENO: checking for $ac_word" >&5 1476 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1944 1477 if test "${ac_cv_prog_CC+set}" = set; then 1945 1478 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 1954 1487 test -z "$as_dir" && as_dir=. 1955 1488 for ac_exec_ext in '' $ac_executable_extensions; do 1956 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1489 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 1957 1490 ac_cv_prog_CC="${ac_tool_prefix}gcc" 1958 1491 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 … … 1961 1494 done 1962 1495 done 1963 IFS=$as_save_IFS1964 1496 1965 1497 fi … … 1967 1499 CC=$ac_cv_prog_CC 1968 1500 if test -n "$CC"; then 1969 { echo "$as_me:$LINENO: result: $CC" >&5 1970 echo "${ECHO_T}$CC" >&6; } 1971 else 1972 { echo "$as_me:$LINENO: result: no" >&5 1973 echo "${ECHO_T}no" >&6; } 1974 fi 1975 1501 echo "$as_me:$LINENO: result: $CC" >&5 1502 echo "${ECHO_T}$CC" >&6 1503 else 1504 echo "$as_me:$LINENO: result: no" >&5 1505 echo "${ECHO_T}no" >&6 1506 fi 1976 1507 1977 1508 fi … … 1980 1511 # Extract the first word of "gcc", so it can be a program name with args. 1981 1512 set dummy gcc; ac_word=$2 1982 {echo "$as_me:$LINENO: checking for $ac_word" >&51983 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 ; }1513 echo "$as_me:$LINENO: checking for $ac_word" >&5 1514 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1984 1515 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1985 1516 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 1994 1525 test -z "$as_dir" && as_dir=. 1995 1526 for ac_exec_ext in '' $ac_executable_extensions; do 1996 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1527 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 1997 1528 ac_cv_prog_ac_ct_CC="gcc" 1998 1529 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 … … 2001 1532 done 2002 1533 done 2003 IFS=$as_save_IFS2004 1534 2005 1535 fi … … 2007 1537 ac_ct_CC=$ac_cv_prog_ac_ct_CC 2008 1538 if test -n "$ac_ct_CC"; then 2009 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 2010 echo "${ECHO_T}$ac_ct_CC" >&6; } 2011 else 2012 { echo "$as_me:$LINENO: result: no" >&5 2013 echo "${ECHO_T}no" >&6; } 2014 fi 2015 2016 if test "x$ac_ct_CC" = x; then 2017 CC="" 2018 else 2019 case $cross_compiling:$ac_tool_warned in 2020 yes:) 2021 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools 2022 whose name does not start with the host triplet. If you think this 2023 configuration is useful to you, please write to autoconf@gnu.org." >&5 2024 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools 2025 whose name does not start with the host triplet. If you think this 2026 configuration is useful to you, please write to autoconf@gnu.org." >&2;} 2027 ac_tool_warned=yes ;; 2028 esac 2029 CC=$ac_ct_CC 2030 fi 1539 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 1540 echo "${ECHO_T}$ac_ct_CC" >&6 1541 else 1542 echo "$as_me:$LINENO: result: no" >&5 1543 echo "${ECHO_T}no" >&6 1544 fi 1545 1546 CC=$ac_ct_CC 2031 1547 else 2032 1548 CC="$ac_cv_prog_CC" … … 2034 1550 2035 1551 if test -z "$CC"; then 2036 2037 1552 if test -n "$ac_tool_prefix"; then 1553 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. 2038 1554 set dummy ${ac_tool_prefix}cc; ac_word=$2 2039 {echo "$as_me:$LINENO: checking for $ac_word" >&52040 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 ; }1555 echo "$as_me:$LINENO: checking for $ac_word" >&5 1556 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2041 1557 if test "${ac_cv_prog_CC+set}" = set; then 2042 1558 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 2051 1567 test -z "$as_dir" && as_dir=. 2052 1568 for ac_exec_ext in '' $ac_executable_extensions; do 2053 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1569 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2054 1570 ac_cv_prog_CC="${ac_tool_prefix}cc" 2055 1571 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 … … 2058 1574 done 2059 1575 done 2060 IFS=$as_save_IFS2061 1576 2062 1577 fi … … 2064 1579 CC=$ac_cv_prog_CC 2065 1580 if test -n "$CC"; then 2066 { echo "$as_me:$LINENO: result: $CC" >&5 2067 echo "${ECHO_T}$CC" >&6; } 2068 else 2069 { echo "$as_me:$LINENO: result: no" >&5 2070 echo "${ECHO_T}no" >&6; } 2071 fi 2072 2073 1581 echo "$as_me:$LINENO: result: $CC" >&5 1582 echo "${ECHO_T}$CC" >&6 1583 else 1584 echo "$as_me:$LINENO: result: no" >&5 1585 echo "${ECHO_T}no" >&6 1586 fi 1587 1588 fi 1589 if test -z "$ac_cv_prog_CC"; then 1590 ac_ct_CC=$CC 1591 # Extract the first word of "cc", so it can be a program name with args. 1592 set dummy cc; ac_word=$2 1593 echo "$as_me:$LINENO: checking for $ac_word" >&5 1594 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1595 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1596 echo $ECHO_N "(cached) $ECHO_C" >&6 1597 else 1598 if test -n "$ac_ct_CC"; then 1599 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. 1600 else 1601 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 1602 for as_dir in $PATH 1603 do 1604 IFS=$as_save_IFS 1605 test -z "$as_dir" && as_dir=. 1606 for ac_exec_ext in '' $ac_executable_extensions; do 1607 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 1608 ac_cv_prog_ac_ct_CC="cc" 1609 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 1610 break 2 2074 1611 fi 1612 done 1613 done 1614 1615 fi 1616 fi 1617 ac_ct_CC=$ac_cv_prog_ac_ct_CC 1618 if test -n "$ac_ct_CC"; then 1619 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 1620 echo "${ECHO_T}$ac_ct_CC" >&6 1621 else 1622 echo "$as_me:$LINENO: result: no" >&5 1623 echo "${ECHO_T}no" >&6 1624 fi 1625 1626 CC=$ac_ct_CC 1627 else 1628 CC="$ac_cv_prog_CC" 1629 fi 1630 2075 1631 fi 2076 1632 if test -z "$CC"; then 2077 1633 # Extract the first word of "cc", so it can be a program name with args. 2078 1634 set dummy cc; ac_word=$2 2079 {echo "$as_me:$LINENO: checking for $ac_word" >&52080 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 ; }1635 echo "$as_me:$LINENO: checking for $ac_word" >&5 1636 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2081 1637 if test "${ac_cv_prog_CC+set}" = set; then 2082 1638 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 2092 1648 test -z "$as_dir" && as_dir=. 2093 1649 for ac_exec_ext in '' $ac_executable_extensions; do 2094 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1650 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2095 1651 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then 2096 1652 ac_prog_rejected=yes … … 2103 1659 done 2104 1660 done 2105 IFS=$as_save_IFS2106 1661 2107 1662 if test $ac_prog_rejected = yes; then … … 2121 1676 CC=$ac_cv_prog_CC 2122 1677 if test -n "$CC"; then 2123 { echo "$as_me:$LINENO: result: $CC" >&5 2124 echo "${ECHO_T}$CC" >&6; } 2125 else 2126 { echo "$as_me:$LINENO: result: no" >&5 2127 echo "${ECHO_T}no" >&6; } 2128 fi 2129 1678 echo "$as_me:$LINENO: result: $CC" >&5 1679 echo "${ECHO_T}$CC" >&6 1680 else 1681 echo "$as_me:$LINENO: result: no" >&5 1682 echo "${ECHO_T}no" >&6 1683 fi 2130 1684 2131 1685 fi 2132 1686 if test -z "$CC"; then 2133 1687 if test -n "$ac_tool_prefix"; then 2134 for ac_prog in cl .exe1688 for ac_prog in cl 2135 1689 do 2136 1690 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 2137 1691 set dummy $ac_tool_prefix$ac_prog; ac_word=$2 2138 {echo "$as_me:$LINENO: checking for $ac_word" >&52139 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 ; }1692 echo "$as_me:$LINENO: checking for $ac_word" >&5 1693 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2140 1694 if test "${ac_cv_prog_CC+set}" = set; then 2141 1695 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 2150 1704 test -z "$as_dir" && as_dir=. 2151 1705 for ac_exec_ext in '' $ac_executable_extensions; do 2152 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1706 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2153 1707 ac_cv_prog_CC="$ac_tool_prefix$ac_prog" 2154 1708 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 … … 2157 1711 done 2158 1712 done 2159 IFS=$as_save_IFS2160 1713 2161 1714 fi … … 2163 1716 CC=$ac_cv_prog_CC 2164 1717 if test -n "$CC"; then 2165 { echo "$as_me:$LINENO: result: $CC" >&5 2166 echo "${ECHO_T}$CC" >&6; } 2167 else 2168 { echo "$as_me:$LINENO: result: no" >&5 2169 echo "${ECHO_T}no" >&6; } 2170 fi 2171 1718 echo "$as_me:$LINENO: result: $CC" >&5 1719 echo "${ECHO_T}$CC" >&6 1720 else 1721 echo "$as_me:$LINENO: result: no" >&5 1722 echo "${ECHO_T}no" >&6 1723 fi 2172 1724 2173 1725 test -n "$CC" && break … … 2176 1728 if test -z "$CC"; then 2177 1729 ac_ct_CC=$CC 2178 for ac_prog in cl .exe1730 for ac_prog in cl 2179 1731 do 2180 1732 # Extract the first word of "$ac_prog", so it can be a program name with args. 2181 1733 set dummy $ac_prog; ac_word=$2 2182 {echo "$as_me:$LINENO: checking for $ac_word" >&52183 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 ; }1734 echo "$as_me:$LINENO: checking for $ac_word" >&5 1735 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2184 1736 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 2185 1737 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 2194 1746 test -z "$as_dir" && as_dir=. 2195 1747 for ac_exec_ext in '' $ac_executable_extensions; do 2196 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1748 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2197 1749 ac_cv_prog_ac_ct_CC="$ac_prog" 2198 1750 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 … … 2201 1753 done 2202 1754 done 2203 IFS=$as_save_IFS2204 1755 2205 1756 fi … … 2207 1758 ac_ct_CC=$ac_cv_prog_ac_ct_CC 2208 1759 if test -n "$ac_ct_CC"; then 2209 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 2210 echo "${ECHO_T}$ac_ct_CC" >&6; } 2211 else 2212 { echo "$as_me:$LINENO: result: no" >&5 2213 echo "${ECHO_T}no" >&6; } 2214 fi 2215 1760 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 1761 echo "${ECHO_T}$ac_ct_CC" >&6 1762 else 1763 echo "$as_me:$LINENO: result: no" >&5 1764 echo "${ECHO_T}no" >&6 1765 fi 2216 1766 2217 1767 test -n "$ac_ct_CC" && break 2218 1768 done 2219 1769 2220 if test "x$ac_ct_CC" = x; then 2221 CC="" 2222 else 2223 case $cross_compiling:$ac_tool_warned in 2224 yes:) 2225 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools 2226 whose name does not start with the host triplet. If you think this 2227 configuration is useful to you, please write to autoconf@gnu.org." >&5 2228 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools 2229 whose name does not start with the host triplet. If you think this 2230 configuration is useful to you, please write to autoconf@gnu.org." >&2;} 2231 ac_tool_warned=yes ;; 2232 esac 2233 CC=$ac_ct_CC 2234 fi 1770 CC=$ac_ct_CC 2235 1771 fi 2236 1772 … … 2245 1781 2246 1782 # Provide some information about the compiler. 2247 echo "$as_me:$LINENO: checking for C compiler version" >&5 1783 echo "$as_me:$LINENO:" \ 1784 "checking for C compiler version" >&5 2248 1785 ac_compiler=`set X $ac_compile; echo $2` 2249 { (ac_try="$ac_compiler --version >&5" 2250 case "(($ac_try" in 2251 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2252 *) ac_try_echo=$ac_try;; 2253 esac 2254 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2255 (eval "$ac_compiler --version >&5") 2>&5 1786 { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 1787 (eval $ac_compiler --version </dev/null >&5) 2>&5 2256 1788 ac_status=$? 2257 1789 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2258 1790 (exit $ac_status); } 2259 { (ac_try="$ac_compiler -v >&5" 2260 case "(($ac_try" in 2261 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2262 *) ac_try_echo=$ac_try;; 2263 esac 2264 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2265 (eval "$ac_compiler -v >&5") 2>&5 1791 { (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5 1792 (eval $ac_compiler -v </dev/null >&5) 2>&5 2266 1793 ac_status=$? 2267 1794 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2268 1795 (exit $ac_status); } 2269 { (ac_try="$ac_compiler -V >&5" 2270 case "(($ac_try" in 2271 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2272 *) ac_try_echo=$ac_try;; 2273 esac 2274 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2275 (eval "$ac_compiler -V >&5") 2>&5 1796 { (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5 1797 (eval $ac_compiler -V </dev/null >&5) 2>&5 2276 1798 ac_status=$? 2277 1799 echo "$as_me:$LINENO: \$? = $ac_status" >&5 … … 2298 1820 # It will help us diagnose broken compilers, and finding out an intuition 2299 1821 # of exeext. 2300 {echo "$as_me:$LINENO: checking for C compiler default output file name" >&52301 echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6 ; }1822 echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 1823 echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6 2302 1824 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` 2303 # 2304 # List of possible output files, starting from the most likely. 2305 # The algorithm is not robust to junk in `.', hence go to wildcards (a.*) 2306 # only as a last resort. b.out is created by i960 compilers. 2307 ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' 2308 # 2309 # The IRIX 6 linker writes into existing files which may not be 2310 # executable, retaining their permissions. Remove them first so a 2311 # subsequent execution test works. 2312 ac_rmfiles= 2313 for ac_file in $ac_files 2314 do 2315 case $ac_file in 2316 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; 2317 * ) ac_rmfiles="$ac_rmfiles $ac_file";; 2318 esac 2319 done 2320 rm -f $ac_rmfiles 2321 2322 if { (ac_try="$ac_link_default" 2323 case "(($ac_try" in 2324 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2325 *) ac_try_echo=$ac_try;; 2326 esac 2327 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2328 (eval "$ac_link_default") 2>&5 1825 if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 1826 (eval $ac_link_default) 2>&5 2329 1827 ac_status=$? 2330 1828 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2331 1829 (exit $ac_status); }; then 2332 # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. 2333 # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' 2334 # in a Makefile. We should not override ac_cv_exeext if it was cached, 2335 # so that the user can short-circuit this test for compilers unknown to 2336 # Autoconf. 2337 for ac_file in $ac_files '' 1830 # Find the output, starting from the most likely. This scheme is 1831 # not robust to junk in `.', hence go to wildcards (a.*) only as a last 1832 # resort. 1833 1834 # Be careful to initialize this variable, since it used to be cached. 1835 # Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. 1836 ac_cv_exeext= 1837 # b.out is created by i960 compilers. 1838 for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out 2338 1839 do 2339 1840 test -f "$ac_file" || continue 2340 1841 case $ac_file in 2341 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) 1842 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) 1843 ;; 1844 conftest.$ac_ext ) 1845 # This is the source file. 2342 1846 ;; 2343 1847 [ab].out ) … … 2346 1850 break;; 2347 1851 *.* ) 2348 if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; 2349 then :; else 2350 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 2351 fi 2352 # We set ac_cv_exeext here because the later test for it is not 2353 # safe: cross compilers may not add the suffix if given an `-o' 2354 # argument, so we may need to know it at that point already. 2355 # Even if this section looks crufty: it has the advantage of 2356 # actually working. 1852 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 1853 # FIXME: I believe we export ac_cv_exeext for Libtool, 1854 # but it would be cool to find out if it's true. Does anybody 1855 # maintain Libtool? --akim. 1856 export ac_cv_exeext 2357 1857 break;; 2358 1858 * ) … … 2360 1860 esac 2361 1861 done 2362 test "$ac_cv_exeext" = no && ac_cv_exeext= 2363 2364 else 2365 ac_file='' 2366 fi 2367 2368 { echo "$as_me:$LINENO: result: $ac_file" >&5 2369 echo "${ECHO_T}$ac_file" >&6; } 2370 if test -z "$ac_file"; then 1862 else 2371 1863 echo "$as_me: failed program was:" >&5 2372 1864 sed 's/^/| /' conftest.$ac_ext >&5 … … 2380 1872 2381 1873 ac_exeext=$ac_cv_exeext 2382 2383 # Check that the compiler produces executables we can run. If not, either 1874 echo "$as_me:$LINENO: result: $ac_file" >&5 1875 echo "${ECHO_T}$ac_file" >&6 1876 1877 # Check the compiler produces executables we can run. If not, either 2384 1878 # the compiler is broken, or we cross compile. 2385 {echo "$as_me:$LINENO: checking whether the C compiler works" >&52386 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 ; }1879 echo "$as_me:$LINENO: checking whether the C compiler works" >&5 1880 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 2387 1881 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 2388 1882 # If not cross compiling, check that we can run a simple program. 2389 1883 if test "$cross_compiling" != yes; then 2390 1884 if { ac_try='./$ac_file' 2391 { (case "(($ac_try" in 2392 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2393 *) ac_try_echo=$ac_try;; 2394 esac 2395 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2396 (eval "$ac_try") 2>&5 1885 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 1886 (eval $ac_try) 2>&5 2397 1887 ac_status=$? 2398 1888 echo "$as_me:$LINENO: \$? = $ac_status" >&5 … … 2413 1903 fi 2414 1904 fi 2415 {echo "$as_me:$LINENO: result: yes" >&52416 echo "${ECHO_T}yes" >&6 ; }1905 echo "$as_me:$LINENO: result: yes" >&5 1906 echo "${ECHO_T}yes" >&6 2417 1907 2418 1908 rm -f a.out a.exe conftest$ac_cv_exeext b.out 2419 1909 ac_clean_files=$ac_clean_files_save 2420 # Check th at the compiler produces executables we can run. If not, either1910 # Check the compiler produces executables we can run. If not, either 2421 1911 # the compiler is broken, or we cross compile. 2422 { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 2423 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } 2424 { echo "$as_me:$LINENO: result: $cross_compiling" >&5 2425 echo "${ECHO_T}$cross_compiling" >&6; } 2426 2427 { echo "$as_me:$LINENO: checking for suffix of executables" >&5 2428 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } 2429 if { (ac_try="$ac_link" 2430 case "(($ac_try" in 2431 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2432 *) ac_try_echo=$ac_try;; 2433 esac 2434 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2435 (eval "$ac_link") 2>&5 1912 echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 1913 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 1914 echo "$as_me:$LINENO: result: $cross_compiling" >&5 1915 echo "${ECHO_T}$cross_compiling" >&6 1916 1917 echo "$as_me:$LINENO: checking for suffix of executables" >&5 1918 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 1919 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 1920 (eval $ac_link) 2>&5 2436 1921 ac_status=$? 2437 1922 echo "$as_me:$LINENO: \$? = $ac_status" >&5 … … 2444 1929 test -f "$ac_file" || continue 2445 1930 case $ac_file in 2446 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *. map | *.inf | *.o | *.obj ) ;;1931 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; 2447 1932 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 1933 export ac_cv_exeext 2448 1934 break;; 2449 1935 * ) break;; … … 2459 1945 2460 1946 rm -f conftest$ac_cv_exeext 2461 {echo "$as_me:$LINENO: result: $ac_cv_exeext" >&52462 echo "${ECHO_T}$ac_cv_exeext" >&6 ; }1947 echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 1948 echo "${ECHO_T}$ac_cv_exeext" >&6 2463 1949 2464 1950 rm -f conftest.$ac_ext 2465 1951 EXEEXT=$ac_cv_exeext 2466 1952 ac_exeext=$EXEEXT 2467 {echo "$as_me:$LINENO: checking for suffix of object files" >&52468 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 ; }1953 echo "$as_me:$LINENO: checking for suffix of object files" >&5 1954 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 2469 1955 if test "${ac_cv_objext+set}" = set; then 2470 1956 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 2486 1972 _ACEOF 2487 1973 rm -f conftest.o conftest.obj 2488 if { (ac_try="$ac_compile" 2489 case "(($ac_try" in 2490 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2491 *) ac_try_echo=$ac_try;; 2492 esac 2493 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2494 (eval "$ac_compile") 2>&5 1974 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 1975 (eval $ac_compile) 2>&5 2495 1976 ac_status=$? 2496 1977 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2497 1978 (exit $ac_status); }; then 2498 for ac_file in conftest.o conftest.obj conftest.*; do 2499 test -f "$ac_file" || continue; 1979 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do 2500 1980 case $ac_file in 2501 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf) ;;1981 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; 2502 1982 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` 2503 1983 break;; … … 2517 1997 rm -f conftest.$ac_cv_objext conftest.$ac_ext 2518 1998 fi 2519 {echo "$as_me:$LINENO: result: $ac_cv_objext" >&52520 echo "${ECHO_T}$ac_cv_objext" >&6 ; }1999 echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 2000 echo "${ECHO_T}$ac_cv_objext" >&6 2521 2001 OBJEXT=$ac_cv_objext 2522 2002 ac_objext=$OBJEXT 2523 {echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&52524 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 ; }2003 echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 2004 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 2525 2005 if test "${ac_cv_c_compiler_gnu+set}" = set; then 2526 2006 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 2545 2025 _ACEOF 2546 2026 rm -f conftest.$ac_objext 2547 if { (ac_try="$ac_compile" 2548 case "(($ac_try" in 2549 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2550 *) ac_try_echo=$ac_try;; 2551 esac 2552 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2553 (eval "$ac_compile") 2>conftest.er1 2027 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2028 (eval $ac_compile) 2>conftest.er1 2554 2029 ac_status=$? 2555 2030 grep -v '^ *+' conftest.er1 >conftest.err … … 2557 2032 cat conftest.err >&5 2558 2033 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2559 (exit $ac_status); } && { 2560 test -z "$ac_c_werror_flag" || 2561 test ! -s conftest.err 2562 } && test -s conftest.$ac_objext; then 2034 (exit $ac_status); } && 2035 { ac_try='test -z "$ac_c_werror_flag" 2036 || test ! -s conftest.err' 2037 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2038 (eval $ac_try) 2>&5 2039 ac_status=$? 2040 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2041 (exit $ac_status); }; } && 2042 { ac_try='test -s conftest.$ac_objext' 2043 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2044 (eval $ac_try) 2>&5 2045 ac_status=$? 2046 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2047 (exit $ac_status); }; }; then 2563 2048 ac_compiler_gnu=yes 2564 2049 else … … 2566 2051 sed 's/^/| /' conftest.$ac_ext >&5 2567 2052 2568 ac_compiler_gnu=no 2569 fi 2570 2571 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2053 ac_compiler_gnu=no 2054 fi 2055 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2572 2056 ac_cv_c_compiler_gnu=$ac_compiler_gnu 2573 2057 2574 2058 fi 2575 {echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&52576 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 ; }2059 echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 2060 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 2577 2061 GCC=`test $ac_compiler_gnu = yes && echo yes` 2578 2062 ac_test_CFLAGS=${CFLAGS+set} 2579 2063 ac_save_CFLAGS=$CFLAGS 2580 { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 2581 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } 2064 CFLAGS="-g" 2065 echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 2066 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 2582 2067 if test "${ac_cv_prog_cc_g+set}" = set; then 2583 2068 echo $ECHO_N "(cached) $ECHO_C" >&6 2584 2069 else 2585 ac_save_c_werror_flag=$ac_c_werror_flag 2586 ac_c_werror_flag=yes 2587 ac_cv_prog_cc_g=no 2588 CFLAGS="-g" 2589 cat >conftest.$ac_ext <<_ACEOF 2070 cat >conftest.$ac_ext <<_ACEOF 2590 2071 /* confdefs.h. */ 2591 2072 _ACEOF … … 2603 2084 _ACEOF 2604 2085 rm -f conftest.$ac_objext 2605 if { (ac_try="$ac_compile" 2606 case "(($ac_try" in 2607 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2608 *) ac_try_echo=$ac_try;; 2609 esac 2610 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2611 (eval "$ac_compile") 2>conftest.er1 2086 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2087 (eval $ac_compile) 2>conftest.er1 2612 2088 ac_status=$? 2613 2089 grep -v '^ *+' conftest.er1 >conftest.err … … 2615 2091 cat conftest.err >&5 2616 2092 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2617 (exit $ac_status); } && { 2618 test -z "$ac_c_werror_flag" || 2619 test ! -s conftest.err 2620 } && test -s conftest.$ac_objext; then 2093 (exit $ac_status); } && 2094 { ac_try='test -z "$ac_c_werror_flag" 2095 || test ! -s conftest.err' 2096 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2097 (eval $ac_try) 2>&5 2098 ac_status=$? 2099 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2100 (exit $ac_status); }; } && 2101 { ac_try='test -s conftest.$ac_objext' 2102 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2103 (eval $ac_try) 2>&5 2104 ac_status=$? 2105 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2106 (exit $ac_status); }; }; then 2621 2107 ac_cv_prog_cc_g=yes 2622 2108 else … … 2624 2110 sed 's/^/| /' conftest.$ac_ext >&5 2625 2111 2626 CFLAGS="" 2627 cat >conftest.$ac_ext <<_ACEOF 2628 /* confdefs.h. */ 2629 _ACEOF 2630 cat confdefs.h >>conftest.$ac_ext 2631 cat >>conftest.$ac_ext <<_ACEOF 2632 /* end confdefs.h. */ 2633 2634 int 2635 main () 2636 { 2637 2638 ; 2639 return 0; 2640 } 2641 _ACEOF 2642 rm -f conftest.$ac_objext 2643 if { (ac_try="$ac_compile" 2644 case "(($ac_try" in 2645 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2646 *) ac_try_echo=$ac_try;; 2647 esac 2648 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2649 (eval "$ac_compile") 2>conftest.er1 2650 ac_status=$? 2651 grep -v '^ *+' conftest.er1 >conftest.err 2652 rm -f conftest.er1 2653 cat conftest.err >&5 2654 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2655 (exit $ac_status); } && { 2656 test -z "$ac_c_werror_flag" || 2657 test ! -s conftest.err 2658 } && test -s conftest.$ac_objext; then 2659 : 2660 else 2661 echo "$as_me: failed program was:" >&5 2662 sed 's/^/| /' conftest.$ac_ext >&5 2663 2664 ac_c_werror_flag=$ac_save_c_werror_flag 2665 CFLAGS="-g" 2666 cat >conftest.$ac_ext <<_ACEOF 2667 /* confdefs.h. */ 2668 _ACEOF 2669 cat confdefs.h >>conftest.$ac_ext 2670 cat >>conftest.$ac_ext <<_ACEOF 2671 /* end confdefs.h. */ 2672 2673 int 2674 main () 2675 { 2676 2677 ; 2678 return 0; 2679 } 2680 _ACEOF 2681 rm -f conftest.$ac_objext 2682 if { (ac_try="$ac_compile" 2683 case "(($ac_try" in 2684 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2685 *) ac_try_echo=$ac_try;; 2686 esac 2687 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2688 (eval "$ac_compile") 2>conftest.er1 2689 ac_status=$? 2690 grep -v '^ *+' conftest.er1 >conftest.err 2691 rm -f conftest.er1 2692 cat conftest.err >&5 2693 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2694 (exit $ac_status); } && { 2695 test -z "$ac_c_werror_flag" || 2696 test ! -s conftest.err 2697 } && test -s conftest.$ac_objext; then 2698 ac_cv_prog_cc_g=yes 2699 else 2700 echo "$as_me: failed program was:" >&5 2701 sed 's/^/| /' conftest.$ac_ext >&5 2702 2703 2704 fi 2705 2706 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2707 fi 2708 2709 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2710 fi 2711 2712 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2713 ac_c_werror_flag=$ac_save_c_werror_flag 2714 fi 2715 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 2716 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } 2112 ac_cv_prog_cc_g=no 2113 fi 2114 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2115 fi 2116 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 2117 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 2717 2118 if test "$ac_test_CFLAGS" = set; then 2718 2119 CFLAGS=$ac_save_CFLAGS … … 2730 2131 fi 2731 2132 fi 2732 { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&52733 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }2734 if test "${ac_cv_prog_cc_ c89+set}" = set; then2133 echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 2134 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 2135 if test "${ac_cv_prog_cc_stdc+set}" = set; then 2735 2136 echo $ECHO_N "(cached) $ECHO_C" >&6 2736 2137 else 2737 ac_cv_prog_cc_ c89=no2138 ac_cv_prog_cc_stdc=no 2738 2139 ac_save_CC=$CC 2739 2140 cat >conftest.$ac_ext <<_ACEOF … … 2769 2170 function prototypes and stuff, but not '\xHH' hex character constants. 2770 2171 These don't provoke an error unfortunately, instead are silently treated 2771 as 'x'. The following induces an error, until -std is added to get2172 as 'x'. The following induces an error, until -std1 is added to get 2772 2173 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an 2773 2174 array size at least. It's necessary to write '\x00'==0 to get something 2774 that's true only with -std . */2175 that's true only with -std1. */ 2775 2176 int osf4_cc_array ['\x00' == 0 ? 1 : -1]; 2776 2777 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters2778 inside strings and character constants. */2779 #define FOO(x) 'x'2780 int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];2781 2177 2782 2178 int test (int i, double x); … … 2794 2190 } 2795 2191 _ACEOF 2796 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ 2797 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" 2192 # Don't try gcc -ansi; that turns off useful extensions and 2193 # breaks some systems' header files. 2194 # AIX -qlanglvl=ansi 2195 # Ultrix and OSF/1 -std1 2196 # HP-UX 10.20 and later -Ae 2197 # HP-UX older versions -Aa -D_HPUX_SOURCE 2198 # SVR4 -Xc -D__EXTENSIONS__ 2199 for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" 2798 2200 do 2799 2201 CC="$ac_save_CC $ac_arg" 2800 2202 rm -f conftest.$ac_objext 2801 if { (ac_try="$ac_compile" 2802 case "(($ac_try" in 2803 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2804 *) ac_try_echo=$ac_try;; 2805 esac 2806 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2807 (eval "$ac_compile") 2>conftest.er1 2203 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2204 (eval $ac_compile) 2>conftest.er1 2808 2205 ac_status=$? 2809 2206 grep -v '^ *+' conftest.er1 >conftest.err … … 2811 2208 cat conftest.err >&5 2812 2209 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2813 (exit $ac_status); } && { 2814 test -z "$ac_c_werror_flag" || 2815 test ! -s conftest.err 2816 } && test -s conftest.$ac_objext; then 2817 ac_cv_prog_cc_c89=$ac_arg 2210 (exit $ac_status); } && 2211 { ac_try='test -z "$ac_c_werror_flag" 2212 || test ! -s conftest.err' 2213 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2214 (eval $ac_try) 2>&5 2215 ac_status=$? 2216 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2217 (exit $ac_status); }; } && 2218 { ac_try='test -s conftest.$ac_objext' 2219 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2220 (eval $ac_try) 2>&5 2221 ac_status=$? 2222 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2223 (exit $ac_status); }; }; then 2224 ac_cv_prog_cc_stdc=$ac_arg 2225 break 2818 2226 else 2819 2227 echo "$as_me: failed program was:" >&5 2820 2228 sed 's/^/| /' conftest.$ac_ext >&5 2821 2229 2822 2823 fi 2824 2825 rm -f core conftest.err conftest.$ac_objext 2826 test "x$ac_cv_prog_cc_c89" != "xno" && break 2230 fi 2231 rm -f conftest.err conftest.$ac_objext 2827 2232 done 2828 rm -f conftest.$ac_ext 2233 rm -f conftest.$ac_ext conftest.$ac_objext 2829 2234 CC=$ac_save_CC 2830 2235 2831 2236 fi 2832 # AC_CACHE_VAL 2833 case "x$ac_cv_prog_cc_c89" in 2834 x) 2835 { echo "$as_me:$LINENO: result: none needed" >&5 2836 echo "${ECHO_T}none needed" >&6; } ;; 2837 xno) 2838 { echo "$as_me:$LINENO: result: unsupported" >&5 2839 echo "${ECHO_T}unsupported" >&6; } ;; 2237 2238 case "x$ac_cv_prog_cc_stdc" in 2239 x|xno) 2240 echo "$as_me:$LINENO: result: none needed" >&5 2241 echo "${ECHO_T}none needed" >&6 ;; 2840 2242 *) 2841 CC="$CC $ac_cv_prog_cc_c89"2842 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 2843 echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; };;2243 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 2244 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 2245 CC="$CC $ac_cv_prog_cc_stdc" ;; 2844 2246 esac 2845 2247 2846 2248 # Some people use a C++ compiler to compile C. Since we use `exit', 2249 # in C++ we need to declare it. In case someone uses the same compiler 2250 # for both compiling C and C++ we need to have the C++ compiler decide 2251 # the declaration of exit, since it's the most demanding environment. 2252 cat >conftest.$ac_ext <<_ACEOF 2253 #ifndef __cplusplus 2254 choke me 2255 #endif 2256 _ACEOF 2257 rm -f conftest.$ac_objext 2258 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2259 (eval $ac_compile) 2>conftest.er1 2260 ac_status=$? 2261 grep -v '^ *+' conftest.er1 >conftest.err 2262 rm -f conftest.er1 2263 cat conftest.err >&5 2264 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2265 (exit $ac_status); } && 2266 { ac_try='test -z "$ac_c_werror_flag" 2267 || test ! -s conftest.err' 2268 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2269 (eval $ac_try) 2>&5 2270 ac_status=$? 2271 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2272 (exit $ac_status); }; } && 2273 { ac_try='test -s conftest.$ac_objext' 2274 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2275 (eval $ac_try) 2>&5 2276 ac_status=$? 2277 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2278 (exit $ac_status); }; }; then 2279 for ac_declaration in \ 2280 '' \ 2281 'extern "C" void std::exit (int) throw (); using std::exit;' \ 2282 'extern "C" void std::exit (int); using std::exit;' \ 2283 'extern "C" void exit (int) throw ();' \ 2284 'extern "C" void exit (int);' \ 2285 'void exit (int);' 2286 do 2287 cat >conftest.$ac_ext <<_ACEOF 2288 /* confdefs.h. */ 2289 _ACEOF 2290 cat confdefs.h >>conftest.$ac_ext 2291 cat >>conftest.$ac_ext <<_ACEOF 2292 /* end confdefs.h. */ 2293 $ac_declaration 2294 #include <stdlib.h> 2295 int 2296 main () 2297 { 2298 exit (42); 2299 ; 2300 return 0; 2301 } 2302 _ACEOF 2303 rm -f conftest.$ac_objext 2304 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2305 (eval $ac_compile) 2>conftest.er1 2306 ac_status=$? 2307 grep -v '^ *+' conftest.er1 >conftest.err 2308 rm -f conftest.er1 2309 cat conftest.err >&5 2310 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2311 (exit $ac_status); } && 2312 { ac_try='test -z "$ac_c_werror_flag" 2313 || test ! -s conftest.err' 2314 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2315 (eval $ac_try) 2>&5 2316 ac_status=$? 2317 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2318 (exit $ac_status); }; } && 2319 { ac_try='test -s conftest.$ac_objext' 2320 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2321 (eval $ac_try) 2>&5 2322 ac_status=$? 2323 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2324 (exit $ac_status); }; }; then 2325 : 2326 else 2327 echo "$as_me: failed program was:" >&5 2328 sed 's/^/| /' conftest.$ac_ext >&5 2329 2330 continue 2331 fi 2332 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2333 cat >conftest.$ac_ext <<_ACEOF 2334 /* confdefs.h. */ 2335 _ACEOF 2336 cat confdefs.h >>conftest.$ac_ext 2337 cat >>conftest.$ac_ext <<_ACEOF 2338 /* end confdefs.h. */ 2339 $ac_declaration 2340 int 2341 main () 2342 { 2343 exit (42); 2344 ; 2345 return 0; 2346 } 2347 _ACEOF 2348 rm -f conftest.$ac_objext 2349 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2350 (eval $ac_compile) 2>conftest.er1 2351 ac_status=$? 2352 grep -v '^ *+' conftest.er1 >conftest.err 2353 rm -f conftest.er1 2354 cat conftest.err >&5 2355 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2356 (exit $ac_status); } && 2357 { ac_try='test -z "$ac_c_werror_flag" 2358 || test ! -s conftest.err' 2359 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2360 (eval $ac_try) 2>&5 2361 ac_status=$? 2362 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2363 (exit $ac_status); }; } && 2364 { ac_try='test -s conftest.$ac_objext' 2365 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2366 (eval $ac_try) 2>&5 2367 ac_status=$? 2368 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2369 (exit $ac_status); }; }; then 2370 break 2371 else 2372 echo "$as_me: failed program was:" >&5 2373 sed 's/^/| /' conftest.$ac_ext >&5 2374 2375 fi 2376 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2377 done 2378 rm -f conftest* 2379 if test -n "$ac_declaration"; then 2380 echo '#ifdef __cplusplus' >>confdefs.h 2381 echo $ac_declaration >>confdefs.h 2382 echo '#endif' >>confdefs.h 2383 fi 2384 2385 else 2386 echo "$as_me: failed program was:" >&5 2387 sed 's/^/| /' conftest.$ac_ext >&5 2388 2389 fi 2390 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2847 2391 ac_ext=c 2848 2392 ac_cpp='$CPP $CPPFLAGS' … … 2851 2395 ac_compiler_gnu=$ac_cv_c_compiler_gnu 2852 2396 2853 ac_ext=c pp2397 ac_ext=cc 2854 2398 ac_cpp='$CXXCPP $CPPFLAGS' 2855 2399 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' 2856 2400 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 2857 2401 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 2858 if test -z "$CXX"; then 2859 if test -n "$CCC"; then 2860 CXX=$CCC 2861 else 2862 if test -n "$ac_tool_prefix"; then 2863 for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC 2402 if test -n "$ac_tool_prefix"; then 2403 for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC 2864 2404 do 2865 2405 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 2866 2406 set dummy $ac_tool_prefix$ac_prog; ac_word=$2 2867 {echo "$as_me:$LINENO: checking for $ac_word" >&52868 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 ; }2407 echo "$as_me:$LINENO: checking for $ac_word" >&5 2408 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2869 2409 if test "${ac_cv_prog_CXX+set}" = set; then 2870 2410 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 2879 2419 test -z "$as_dir" && as_dir=. 2880 2420 for ac_exec_ext in '' $ac_executable_extensions; do 2881 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then2421 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2882 2422 ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" 2883 2423 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 … … 2886 2426 done 2887 2427 done 2888 IFS=$as_save_IFS2889 2428 2890 2429 fi … … 2892 2431 CXX=$ac_cv_prog_CXX 2893 2432 if test -n "$CXX"; then 2894 { echo "$as_me:$LINENO: result: $CXX" >&5 2895 echo "${ECHO_T}$CXX" >&6; } 2896 else 2897 { echo "$as_me:$LINENO: result: no" >&5 2898 echo "${ECHO_T}no" >&6; } 2899 fi 2900 2433 echo "$as_me:$LINENO: result: $CXX" >&5 2434 echo "${ECHO_T}$CXX" >&6 2435 else 2436 echo "$as_me:$LINENO: result: no" >&5 2437 echo "${ECHO_T}no" >&6 2438 fi 2901 2439 2902 2440 test -n "$CXX" && break … … 2905 2443 if test -z "$CXX"; then 2906 2444 ac_ct_CXX=$CXX 2907 for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exeFCC KCC RCC xlC_r xlC2445 for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC 2908 2446 do 2909 2447 # Extract the first word of "$ac_prog", so it can be a program name with args. 2910 2448 set dummy $ac_prog; ac_word=$2 2911 {echo "$as_me:$LINENO: checking for $ac_word" >&52912 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 ; }2449 echo "$as_me:$LINENO: checking for $ac_word" >&5 2450 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2913 2451 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then 2914 2452 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 2923 2461 test -z "$as_dir" && as_dir=. 2924 2462 for ac_exec_ext in '' $ac_executable_extensions; do 2925 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then2463 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2926 2464 ac_cv_prog_ac_ct_CXX="$ac_prog" 2927 2465 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 … … 2930 2468 done 2931 2469 done 2932 IFS=$as_save_IFS2933 2470 2934 2471 fi … … 2936 2473 ac_ct_CXX=$ac_cv_prog_ac_ct_CXX 2937 2474 if test -n "$ac_ct_CXX"; then 2938 { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 2939 echo "${ECHO_T}$ac_ct_CXX" >&6; } 2940 else 2941 { echo "$as_me:$LINENO: result: no" >&5 2942 echo "${ECHO_T}no" >&6; } 2943 fi 2944 2475 echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 2476 echo "${ECHO_T}$ac_ct_CXX" >&6 2477 else 2478 echo "$as_me:$LINENO: result: no" >&5 2479 echo "${ECHO_T}no" >&6 2480 fi 2945 2481 2946 2482 test -n "$ac_ct_CXX" && break 2947 2483 done 2948 2949 if test "x$ac_ct_CXX" = x; then 2950 CXX="g++" 2951 else 2952 case $cross_compiling:$ac_tool_warned in 2953 yes:) 2954 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools 2955 whose name does not start with the host triplet. If you think this 2956 configuration is useful to you, please write to autoconf@gnu.org." >&5 2957 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools 2958 whose name does not start with the host triplet. If you think this 2959 configuration is useful to you, please write to autoconf@gnu.org." >&2;} 2960 ac_tool_warned=yes ;; 2961 esac 2962 CXX=$ac_ct_CXX 2963 fi 2964 fi 2965 2966 fi 2967 fi 2484 test -n "$ac_ct_CXX" || ac_ct_CXX="g++" 2485 2486 CXX=$ac_ct_CXX 2487 fi 2488 2489 2968 2490 # Provide some information about the compiler. 2969 echo "$as_me:$LINENO: checking for C++ compiler version" >&5 2491 echo "$as_me:$LINENO:" \ 2492 "checking for C++ compiler version" >&5 2970 2493 ac_compiler=`set X $ac_compile; echo $2` 2971 { (ac_try="$ac_compiler --version >&5" 2972 case "(($ac_try" in 2973 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2974 *) ac_try_echo=$ac_try;; 2975 esac 2976 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2977 (eval "$ac_compiler --version >&5") 2>&5 2494 { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 2495 (eval $ac_compiler --version </dev/null >&5) 2>&5 2978 2496 ac_status=$? 2979 2497 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2980 2498 (exit $ac_status); } 2981 { (ac_try="$ac_compiler -v >&5" 2982 case "(($ac_try" in 2983 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2984 *) ac_try_echo=$ac_try;; 2985 esac 2986 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2987 (eval "$ac_compiler -v >&5") 2>&5 2499 { (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5 2500 (eval $ac_compiler -v </dev/null >&5) 2>&5 2988 2501 ac_status=$? 2989 2502 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2990 2503 (exit $ac_status); } 2991 { (ac_try="$ac_compiler -V >&5" 2992 case "(($ac_try" in 2993 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2994 *) ac_try_echo=$ac_try;; 2995 esac 2996 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2997 (eval "$ac_compiler -V >&5") 2>&5 2504 { (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5 2505 (eval $ac_compiler -V </dev/null >&5) 2>&5 2998 2506 ac_status=$? 2999 2507 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3000 2508 (exit $ac_status); } 3001 2509 3002 {echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&53003 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 ; }2510 echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 2511 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 3004 2512 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then 3005 2513 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 3024 2532 _ACEOF 3025 2533 rm -f conftest.$ac_objext 3026 if { (ac_try="$ac_compile" 3027 case "(($ac_try" in 3028 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3029 *) ac_try_echo=$ac_try;; 3030 esac 3031 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3032 (eval "$ac_compile") 2>conftest.er1 2534 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2535 (eval $ac_compile) 2>conftest.er1 3033 2536 ac_status=$? 3034 2537 grep -v '^ *+' conftest.er1 >conftest.err … … 3036 2539 cat conftest.err >&5 3037 2540 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3038 (exit $ac_status); } && { 3039 test -z "$ac_cxx_werror_flag" || 3040 test ! -s conftest.err 3041 } && test -s conftest.$ac_objext; then 2541 (exit $ac_status); } && 2542 { ac_try='test -z "$ac_cxx_werror_flag" 2543 || test ! -s conftest.err' 2544 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2545 (eval $ac_try) 2>&5 2546 ac_status=$? 2547 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2548 (exit $ac_status); }; } && 2549 { ac_try='test -s conftest.$ac_objext' 2550 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2551 (eval $ac_try) 2>&5 2552 ac_status=$? 2553 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2554 (exit $ac_status); }; }; then 3042 2555 ac_compiler_gnu=yes 3043 2556 else … … 3045 2558 sed 's/^/| /' conftest.$ac_ext >&5 3046 2559 3047 ac_compiler_gnu=no 3048 fi 3049 3050 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2560 ac_compiler_gnu=no 2561 fi 2562 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 3051 2563 ac_cv_cxx_compiler_gnu=$ac_compiler_gnu 3052 2564 3053 2565 fi 3054 {echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&53055 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 ; }2566 echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 2567 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 3056 2568 GXX=`test $ac_compiler_gnu = yes && echo yes` 3057 2569 ac_test_CXXFLAGS=${CXXFLAGS+set} 3058 2570 ac_save_CXXFLAGS=$CXXFLAGS 3059 { echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 3060 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } 2571 CXXFLAGS="-g" 2572 echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 2573 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 3061 2574 if test "${ac_cv_prog_cxx_g+set}" = set; then 3062 2575 echo $ECHO_N "(cached) $ECHO_C" >&6 3063 2576 else 3064 ac_save_cxx_werror_flag=$ac_cxx_werror_flag 3065 ac_cxx_werror_flag=yes 3066 ac_cv_prog_cxx_g=no 3067 CXXFLAGS="-g" 3068 cat >conftest.$ac_ext <<_ACEOF 2577 cat >conftest.$ac_ext <<_ACEOF 3069 2578 /* confdefs.h. */ 3070 2579 _ACEOF … … 3082 2591 _ACEOF 3083 2592 rm -f conftest.$ac_objext 3084 if { (ac_try="$ac_compile" 3085 case "(($ac_try" in 3086 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3087 *) ac_try_echo=$ac_try;; 3088 esac 3089 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3090 (eval "$ac_compile") 2>conftest.er1 2593 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2594 (eval $ac_compile) 2>conftest.er1 3091 2595 ac_status=$? 3092 2596 grep -v '^ *+' conftest.er1 >conftest.err … … 3094 2598 cat conftest.err >&5 3095 2599 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3096 (exit $ac_status); } && { 3097 test -z "$ac_cxx_werror_flag" || 3098 test ! -s conftest.err 3099 } && test -s conftest.$ac_objext; then 2600 (exit $ac_status); } && 2601 { ac_try='test -z "$ac_cxx_werror_flag" 2602 || test ! -s conftest.err' 2603 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2604 (eval $ac_try) 2>&5 2605 ac_status=$? 2606 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2607 (exit $ac_status); }; } && 2608 { ac_try='test -s conftest.$ac_objext' 2609 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2610 (eval $ac_try) 2>&5 2611 ac_status=$? 2612 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2613 (exit $ac_status); }; }; then 3100 2614 ac_cv_prog_cxx_g=yes 3101 2615 else … … 3103 2617 sed 's/^/| /' conftest.$ac_ext >&5 3104 2618 3105 CXXFLAGS="" 3106 cat >conftest.$ac_ext <<_ACEOF 3107 /* confdefs.h. */ 3108 _ACEOF 3109 cat confdefs.h >>conftest.$ac_ext 3110 cat >>conftest.$ac_ext <<_ACEOF 3111 /* end confdefs.h. */ 3112 3113 int 3114 main () 3115 { 3116 3117 ; 3118 return 0; 3119 } 3120 _ACEOF 3121 rm -f conftest.$ac_objext 3122 if { (ac_try="$ac_compile" 3123 case "(($ac_try" in 3124 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3125 *) ac_try_echo=$ac_try;; 3126 esac 3127 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3128 (eval "$ac_compile") 2>conftest.er1 3129 ac_status=$? 3130 grep -v '^ *+' conftest.er1 >conftest.err 3131 rm -f conftest.er1 3132 cat conftest.err >&5 3133 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3134 (exit $ac_status); } && { 3135 test -z "$ac_cxx_werror_flag" || 3136 test ! -s conftest.err 3137 } && test -s conftest.$ac_objext; then 3138 : 3139 else 3140 echo "$as_me: failed program was:" >&5 3141 sed 's/^/| /' conftest.$ac_ext >&5 3142 3143 ac_cxx_werror_flag=$ac_save_cxx_werror_flag 3144 CXXFLAGS="-g" 3145 cat >conftest.$ac_ext <<_ACEOF 3146 /* confdefs.h. */ 3147 _ACEOF 3148 cat confdefs.h >>conftest.$ac_ext 3149 cat >>conftest.$ac_ext <<_ACEOF 3150 /* end confdefs.h. */ 3151 3152 int 3153 main () 3154 { 3155 3156 ; 3157 return 0; 3158 } 3159 _ACEOF 3160 rm -f conftest.$ac_objext 3161 if { (ac_try="$ac_compile" 3162 case "(($ac_try" in 3163 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3164 *) ac_try_echo=$ac_try;; 3165 esac 3166 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3167 (eval "$ac_compile") 2>conftest.er1 3168 ac_status=$? 3169 grep -v '^ *+' conftest.er1 >conftest.err 3170 rm -f conftest.er1 3171 cat conftest.err >&5 3172 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3173 (exit $ac_status); } && { 3174 test -z "$ac_cxx_werror_flag" || 3175 test ! -s conftest.err 3176 } && test -s conftest.$ac_objext; then 3177 ac_cv_prog_cxx_g=yes 3178 else 3179 echo "$as_me: failed program was:" >&5 3180 sed 's/^/| /' conftest.$ac_ext >&5 3181 3182 3183 fi 3184 3185 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 3186 fi 3187 3188 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 3189 fi 3190 3191 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 3192 ac_cxx_werror_flag=$ac_save_cxx_werror_flag 3193 fi 3194 { echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 3195 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } 2619 ac_cv_prog_cxx_g=no 2620 fi 2621 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2622 fi 2623 echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 2624 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 3196 2625 if test "$ac_test_CXXFLAGS" = set; then 3197 2626 CXXFLAGS=$ac_save_CXXFLAGS … … 3209 2638 fi 3210 2639 fi 2640 for ac_declaration in \ 2641 '' \ 2642 'extern "C" void std::exit (int) throw (); using std::exit;' \ 2643 'extern "C" void std::exit (int); using std::exit;' \ 2644 'extern "C" void exit (int) throw ();' \ 2645 'extern "C" void exit (int);' \ 2646 'void exit (int);' 2647 do 2648 cat >conftest.$ac_ext <<_ACEOF 2649 /* confdefs.h. */ 2650 _ACEOF 2651 cat confdefs.h >>conftest.$ac_ext 2652 cat >>conftest.$ac_ext <<_ACEOF 2653 /* end confdefs.h. */ 2654 $ac_declaration 2655 #include <stdlib.h> 2656 int 2657 main () 2658 { 2659 exit (42); 2660 ; 2661 return 0; 2662 } 2663 _ACEOF 2664 rm -f conftest.$ac_objext 2665 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2666 (eval $ac_compile) 2>conftest.er1 2667 ac_status=$? 2668 grep -v '^ *+' conftest.er1 >conftest.err 2669 rm -f conftest.er1 2670 cat conftest.err >&5 2671 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2672 (exit $ac_status); } && 2673 { ac_try='test -z "$ac_cxx_werror_flag" 2674 || test ! -s conftest.err' 2675 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2676 (eval $ac_try) 2>&5 2677 ac_status=$? 2678 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2679 (exit $ac_status); }; } && 2680 { ac_try='test -s conftest.$ac_objext' 2681 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2682 (eval $ac_try) 2>&5 2683 ac_status=$? 2684 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2685 (exit $ac_status); }; }; then 2686 : 2687 else 2688 echo "$as_me: failed program was:" >&5 2689 sed 's/^/| /' conftest.$ac_ext >&5 2690 2691 continue 2692 fi 2693 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2694 cat >conftest.$ac_ext <<_ACEOF 2695 /* confdefs.h. */ 2696 _ACEOF 2697 cat confdefs.h >>conftest.$ac_ext 2698 cat >>conftest.$ac_ext <<_ACEOF 2699 /* end confdefs.h. */ 2700 $ac_declaration 2701 int 2702 main () 2703 { 2704 exit (42); 2705 ; 2706 return 0; 2707 } 2708 _ACEOF 2709 rm -f conftest.$ac_objext 2710 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2711 (eval $ac_compile) 2>conftest.er1 2712 ac_status=$? 2713 grep -v '^ *+' conftest.er1 >conftest.err 2714 rm -f conftest.er1 2715 cat conftest.err >&5 2716 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2717 (exit $ac_status); } && 2718 { ac_try='test -z "$ac_cxx_werror_flag" 2719 || test ! -s conftest.err' 2720 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2721 (eval $ac_try) 2>&5 2722 ac_status=$? 2723 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2724 (exit $ac_status); }; } && 2725 { ac_try='test -s conftest.$ac_objext' 2726 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2727 (eval $ac_try) 2>&5 2728 ac_status=$? 2729 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2730 (exit $ac_status); }; }; then 2731 break 2732 else 2733 echo "$as_me: failed program was:" >&5 2734 sed 's/^/| /' conftest.$ac_ext >&5 2735 2736 fi 2737 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2738 done 2739 rm -f conftest* 2740 if test -n "$ac_declaration"; then 2741 echo '#ifdef __cplusplus' >>confdefs.h 2742 echo $ac_declaration >>confdefs.h 2743 echo '#endif' >>confdefs.h 2744 fi 2745 3211 2746 ac_ext=c 3212 2747 ac_cpp='$CPP $CPPFLAGS' … … 3235 2770 3236 2771 3237 {echo "$as_me:$LINENO: checking for pthread_create in -lpthread" >&53238 echo $ECHO_N "checking for pthread_create in -lpthread... $ECHO_C" >&6 ; }2772 echo "$as_me:$LINENO: checking for pthread_create in -lpthread" >&5 2773 echo $ECHO_N "checking for pthread_create in -lpthread... $ECHO_C" >&6 3239 2774 if test "${ac_cv_lib_pthread_pthread_create+set}" = set; then 3240 2775 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 3249 2784 /* end confdefs.h. */ 3250 2785 3251 /* Override any GCC internal prototype to avoid an error. 3252 Use char because int might match the return type of a GCC 3253 builtin and then its argument prototype would still apply. */ 2786 /* Override any gcc2 internal prototype to avoid an error. */ 3254 2787 #ifdef __cplusplus 3255 2788 extern "C" 3256 2789 #endif 2790 /* We use char because int might match the return type of a gcc2 2791 builtin and then its argument prototype would still apply. */ 3257 2792 char pthread_create (); 3258 2793 int 3259 2794 main () 3260 2795 { 3261 returnpthread_create ();2796 pthread_create (); 3262 2797 ; 3263 2798 return 0; … … 3265 2800 _ACEOF 3266 2801 rm -f conftest.$ac_objext conftest$ac_exeext 3267 if { (ac_try="$ac_link" 3268 case "(($ac_try" in 3269 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3270 *) ac_try_echo=$ac_try;; 3271 esac 3272 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3273 (eval "$ac_link") 2>conftest.er1 2802 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 2803 (eval $ac_link) 2>conftest.er1 3274 2804 ac_status=$? 3275 2805 grep -v '^ *+' conftest.er1 >conftest.err … … 3277 2807 cat conftest.err >&5 3278 2808 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3279 (exit $ac_status); } && { 3280 test -z "$ac_c_werror_flag" || 3281 test ! -s conftest.err 3282 } && test -s conftest$ac_exeext && 3283 $as_test_x conftest$ac_exeext; then 2809 (exit $ac_status); } && 2810 { ac_try='test -z "$ac_c_werror_flag" 2811 || test ! -s conftest.err' 2812 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2813 (eval $ac_try) 2>&5 2814 ac_status=$? 2815 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2816 (exit $ac_status); }; } && 2817 { ac_try='test -s conftest$ac_exeext' 2818 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2819 (eval $ac_try) 2>&5 2820 ac_status=$? 2821 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2822 (exit $ac_status); }; }; then 3284 2823 ac_cv_lib_pthread_pthread_create=yes 3285 2824 else … … 3287 2826 sed 's/^/| /' conftest.$ac_ext >&5 3288 2827 3289 ac_cv_lib_pthread_pthread_create=no 3290 fi 3291 3292 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 2828 ac_cv_lib_pthread_pthread_create=no 2829 fi 2830 rm -f conftest.err conftest.$ac_objext \ 3293 2831 conftest$ac_exeext conftest.$ac_ext 3294 2832 LIBS=$ac_check_lib_save_LIBS 3295 2833 fi 3296 {echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_create" >&53297 echo "${ECHO_T}$ac_cv_lib_pthread_pthread_create" >&6 ; }2834 echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_create" >&5 2835 echo "${ECHO_T}$ac_cv_lib_pthread_pthread_create" >&6 3298 2836 if test $ac_cv_lib_pthread_pthread_create = yes; then 3299 2837 cat >>confdefs.h <<_ACEOF … … 3306 2844 3307 2845 3308 {echo "$as_me:$LINENO: checking for puts in -lwsock32" >&53309 echo $ECHO_N "checking for puts in -lwsock32... $ECHO_C" >&6 ; }2846 echo "$as_me:$LINENO: checking for puts in -lwsock32" >&5 2847 echo $ECHO_N "checking for puts in -lwsock32... $ECHO_C" >&6 3310 2848 if test "${ac_cv_lib_wsock32_puts+set}" = set; then 3311 2849 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 3320 2858 /* end confdefs.h. */ 3321 2859 3322 /* Override any GCC internal prototype to avoid an error. 3323 Use char because int might match the return type of a GCC 3324 builtin and then its argument prototype would still apply. */ 2860 /* Override any gcc2 internal prototype to avoid an error. */ 3325 2861 #ifdef __cplusplus 3326 2862 extern "C" 3327 2863 #endif 2864 /* We use char because int might match the return type of a gcc2 2865 builtin and then its argument prototype would still apply. */ 3328 2866 char puts (); 3329 2867 int 3330 2868 main () 3331 2869 { 3332 returnputs ();2870 puts (); 3333 2871 ; 3334 2872 return 0; … … 3336 2874 _ACEOF 3337 2875 rm -f conftest.$ac_objext conftest$ac_exeext 3338 if { (ac_try="$ac_link" 3339 case "(($ac_try" in 3340 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3341 *) ac_try_echo=$ac_try;; 3342 esac 3343 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3344 (eval "$ac_link") 2>conftest.er1 2876 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 2877 (eval $ac_link) 2>conftest.er1 3345 2878 ac_status=$? 3346 2879 grep -v '^ *+' conftest.er1 >conftest.err … … 3348 2881 cat conftest.err >&5 3349 2882 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3350 (exit $ac_status); } && { 3351 test -z "$ac_c_werror_flag" || 3352 test ! -s conftest.err 3353 } && test -s conftest$ac_exeext && 3354 $as_test_x conftest$ac_exeext; then 2883 (exit $ac_status); } && 2884 { ac_try='test -z "$ac_c_werror_flag" 2885 || test ! -s conftest.err' 2886 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2887 (eval $ac_try) 2>&5 2888 ac_status=$? 2889 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2890 (exit $ac_status); }; } && 2891 { ac_try='test -s conftest$ac_exeext' 2892 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2893 (eval $ac_try) 2>&5 2894 ac_status=$? 2895 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2896 (exit $ac_status); }; }; then 3355 2897 ac_cv_lib_wsock32_puts=yes 3356 2898 else … … 3358 2900 sed 's/^/| /' conftest.$ac_ext >&5 3359 2901 3360 ac_cv_lib_wsock32_puts=no 3361 fi 3362 3363 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 2902 ac_cv_lib_wsock32_puts=no 2903 fi 2904 rm -f conftest.err conftest.$ac_objext \ 3364 2905 conftest$ac_exeext conftest.$ac_ext 3365 2906 LIBS=$ac_check_lib_save_LIBS 3366 2907 fi 3367 {echo "$as_me:$LINENO: result: $ac_cv_lib_wsock32_puts" >&53368 echo "${ECHO_T}$ac_cv_lib_wsock32_puts" >&6 ; }2908 echo "$as_me:$LINENO: result: $ac_cv_lib_wsock32_puts" >&5 2909 echo "${ECHO_T}$ac_cv_lib_wsock32_puts" >&6 3369 2910 if test $ac_cv_lib_wsock32_puts = yes; then 3370 2911 cat >>confdefs.h <<_ACEOF … … 3377 2918 3378 2919 3379 {echo "$as_me:$LINENO: checking for puts in -lws2_32" >&53380 echo $ECHO_N "checking for puts in -lws2_32... $ECHO_C" >&6 ; }2920 echo "$as_me:$LINENO: checking for puts in -lws2_32" >&5 2921 echo $ECHO_N "checking for puts in -lws2_32... $ECHO_C" >&6 3381 2922 if test "${ac_cv_lib_ws2_32_puts+set}" = set; then 3382 2923 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 3391 2932 /* end confdefs.h. */ 3392 2933 3393 /* Override any GCC internal prototype to avoid an error. 3394 Use char because int might match the return type of a GCC 3395 builtin and then its argument prototype would still apply. */ 2934 /* Override any gcc2 internal prototype to avoid an error. */ 3396 2935 #ifdef __cplusplus 3397 2936 extern "C" 3398 2937 #endif 2938 /* We use char because int might match the return type of a gcc2 2939 builtin and then its argument prototype would still apply. */ 3399 2940 char puts (); 3400 2941 int 3401 2942 main () 3402 2943 { 3403 returnputs ();2944 puts (); 3404 2945 ; 3405 2946 return 0; … … 3407 2948 _ACEOF 3408 2949 rm -f conftest.$ac_objext conftest$ac_exeext 3409 if { (ac_try="$ac_link" 3410 case "(($ac_try" in 3411 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3412 *) ac_try_echo=$ac_try;; 3413 esac 3414 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3415 (eval "$ac_link") 2>conftest.er1 2950 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 2951 (eval $ac_link) 2>conftest.er1 3416 2952 ac_status=$? 3417 2953 grep -v '^ *+' conftest.er1 >conftest.err … … 3419 2955 cat conftest.err >&5 3420 2956 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3421 (exit $ac_status); } && { 3422 test -z "$ac_c_werror_flag" || 3423 test ! -s conftest.err 3424 } && test -s conftest$ac_exeext && 3425 $as_test_x conftest$ac_exeext; then 2957 (exit $ac_status); } && 2958 { ac_try='test -z "$ac_c_werror_flag" 2959 || test ! -s conftest.err' 2960 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2961 (eval $ac_try) 2>&5 2962 ac_status=$? 2963 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2964 (exit $ac_status); }; } && 2965 { ac_try='test -s conftest$ac_exeext' 2966 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2967 (eval $ac_try) 2>&5 2968 ac_status=$? 2969 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2970 (exit $ac_status); }; }; then 3426 2971 ac_cv_lib_ws2_32_puts=yes 3427 2972 else … … 3429 2974 sed 's/^/| /' conftest.$ac_ext >&5 3430 2975 3431 ac_cv_lib_ws2_32_puts=no 3432 fi 3433 3434 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 2976 ac_cv_lib_ws2_32_puts=no 2977 fi 2978 rm -f conftest.err conftest.$ac_objext \ 3435 2979 conftest$ac_exeext conftest.$ac_ext 3436 2980 LIBS=$ac_check_lib_save_LIBS 3437 2981 fi 3438 {echo "$as_me:$LINENO: result: $ac_cv_lib_ws2_32_puts" >&53439 echo "${ECHO_T}$ac_cv_lib_ws2_32_puts" >&6 ; }2982 echo "$as_me:$LINENO: result: $ac_cv_lib_ws2_32_puts" >&5 2983 echo "${ECHO_T}$ac_cv_lib_ws2_32_puts" >&6 3440 2984 if test $ac_cv_lib_ws2_32_puts = yes; then 3441 2985 cat >>confdefs.h <<_ACEOF … … 3448 2992 3449 2993 3450 {echo "$as_me:$LINENO: checking for puts in -lole32" >&53451 echo $ECHO_N "checking for puts in -lole32... $ECHO_C" >&6 ; }2994 echo "$as_me:$LINENO: checking for puts in -lole32" >&5 2995 echo $ECHO_N "checking for puts in -lole32... $ECHO_C" >&6 3452 2996 if test "${ac_cv_lib_ole32_puts+set}" = set; then 3453 2997 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 3462 3006 /* end confdefs.h. */ 3463 3007 3464 /* Override any GCC internal prototype to avoid an error. 3465 Use char because int might match the return type of a GCC 3466 builtin and then its argument prototype would still apply. */ 3008 /* Override any gcc2 internal prototype to avoid an error. */ 3467 3009 #ifdef __cplusplus 3468 3010 extern "C" 3469 3011 #endif 3012 /* We use char because int might match the return type of a gcc2 3013 builtin and then its argument prototype would still apply. */ 3470 3014 char puts (); 3471 3015 int 3472 3016 main () 3473 3017 { 3474 returnputs ();3018 puts (); 3475 3019 ; 3476 3020 return 0; … … 3478 3022 _ACEOF 3479 3023 rm -f conftest.$ac_objext conftest$ac_exeext 3480 if { (ac_try="$ac_link" 3481 case "(($ac_try" in 3482 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3483 *) ac_try_echo=$ac_try;; 3484 esac 3485 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3486 (eval "$ac_link") 2>conftest.er1 3024 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 3025 (eval $ac_link) 2>conftest.er1 3487 3026 ac_status=$? 3488 3027 grep -v '^ *+' conftest.er1 >conftest.err … … 3490 3029 cat conftest.err >&5 3491 3030 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3492 (exit $ac_status); } && { 3493 test -z "$ac_c_werror_flag" || 3494 test ! -s conftest.err 3495 } && test -s conftest$ac_exeext && 3496 $as_test_x conftest$ac_exeext; then 3031 (exit $ac_status); } && 3032 { ac_try='test -z "$ac_c_werror_flag" 3033 || test ! -s conftest.err' 3034 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3035 (eval $ac_try) 2>&5 3036 ac_status=$? 3037 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3038 (exit $ac_status); }; } && 3039 { ac_try='test -s conftest$ac_exeext' 3040 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3041 (eval $ac_try) 2>&5 3042 ac_status=$? 3043 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3044 (exit $ac_status); }; }; then 3497 3045 ac_cv_lib_ole32_puts=yes 3498 3046 else … … 3500 3048 sed 's/^/| /' conftest.$ac_ext >&5 3501 3049 3502 ac_cv_lib_ole32_puts=no 3503 fi 3504 3505 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3050 ac_cv_lib_ole32_puts=no 3051 fi 3052 rm -f conftest.err conftest.$ac_objext \ 3506 3053 conftest$ac_exeext conftest.$ac_ext 3507 3054 LIBS=$ac_check_lib_save_LIBS 3508 3055 fi 3509 {echo "$as_me:$LINENO: result: $ac_cv_lib_ole32_puts" >&53510 echo "${ECHO_T}$ac_cv_lib_ole32_puts" >&6 ; }3056 echo "$as_me:$LINENO: result: $ac_cv_lib_ole32_puts" >&5 3057 echo "${ECHO_T}$ac_cv_lib_ole32_puts" >&6 3511 3058 if test $ac_cv_lib_ole32_puts = yes; then 3512 3059 cat >>confdefs.h <<_ACEOF … … 3519 3066 3520 3067 3521 {echo "$as_me:$LINENO: checking for puts in -lwinmm" >&53522 echo $ECHO_N "checking for puts in -lwinmm... $ECHO_C" >&6 ; }3068 echo "$as_me:$LINENO: checking for puts in -lwinmm" >&5 3069 echo $ECHO_N "checking for puts in -lwinmm... $ECHO_C" >&6 3523 3070 if test "${ac_cv_lib_winmm_puts+set}" = set; then 3524 3071 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 3533 3080 /* end confdefs.h. */ 3534 3081 3535 /* Override any GCC internal prototype to avoid an error. 3536 Use char because int might match the return type of a GCC 3537 builtin and then its argument prototype would still apply. */ 3082 /* Override any gcc2 internal prototype to avoid an error. */ 3538 3083 #ifdef __cplusplus 3539 3084 extern "C" 3540 3085 #endif 3086 /* We use char because int might match the return type of a gcc2 3087 builtin and then its argument prototype would still apply. */ 3541 3088 char puts (); 3542 3089 int 3543 3090 main () 3544 3091 { 3545 returnputs ();3092 puts (); 3546 3093 ; 3547 3094 return 0; … … 3549 3096 _ACEOF 3550 3097 rm -f conftest.$ac_objext conftest$ac_exeext 3551 if { (ac_try="$ac_link" 3552 case "(($ac_try" in 3553 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3554 *) ac_try_echo=$ac_try;; 3555 esac 3556 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3557 (eval "$ac_link") 2>conftest.er1 3098 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 3099 (eval $ac_link) 2>conftest.er1 3558 3100 ac_status=$? 3559 3101 grep -v '^ *+' conftest.er1 >conftest.err … … 3561 3103 cat conftest.err >&5 3562 3104 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3563 (exit $ac_status); } && { 3564 test -z "$ac_c_werror_flag" || 3565 test ! -s conftest.err 3566 } && test -s conftest$ac_exeext && 3567 $as_test_x conftest$ac_exeext; then 3105 (exit $ac_status); } && 3106 { ac_try='test -z "$ac_c_werror_flag" 3107 || test ! -s conftest.err' 3108 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3109 (eval $ac_try) 2>&5 3110 ac_status=$? 3111 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3112 (exit $ac_status); }; } && 3113 { ac_try='test -s conftest$ac_exeext' 3114 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3115 (eval $ac_try) 2>&5 3116 ac_status=$? 3117 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3118 (exit $ac_status); }; }; then 3568 3119 ac_cv_lib_winmm_puts=yes 3569 3120 else … … 3571 3122 sed 's/^/| /' conftest.$ac_ext >&5 3572 3123 3573 ac_cv_lib_winmm_puts=no 3574 fi 3575 3576 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3124 ac_cv_lib_winmm_puts=no 3125 fi 3126 rm -f conftest.err conftest.$ac_objext \ 3577 3127 conftest$ac_exeext conftest.$ac_ext 3578 3128 LIBS=$ac_check_lib_save_LIBS 3579 3129 fi 3580 {echo "$as_me:$LINENO: result: $ac_cv_lib_winmm_puts" >&53581 echo "${ECHO_T}$ac_cv_lib_winmm_puts" >&6 ; }3130 echo "$as_me:$LINENO: result: $ac_cv_lib_winmm_puts" >&5 3131 echo "${ECHO_T}$ac_cv_lib_winmm_puts" >&6 3582 3132 if test $ac_cv_lib_winmm_puts = yes; then 3583 3133 cat >>confdefs.h <<_ACEOF … … 3590 3140 3591 3141 3592 {echo "$as_me:$LINENO: checking for puts in -lsocket" >&53593 echo $ECHO_N "checking for puts in -lsocket... $ECHO_C" >&6 ; }3142 echo "$as_me:$LINENO: checking for puts in -lsocket" >&5 3143 echo $ECHO_N "checking for puts in -lsocket... $ECHO_C" >&6 3594 3144 if test "${ac_cv_lib_socket_puts+set}" = set; then 3595 3145 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 3604 3154 /* end confdefs.h. */ 3605 3155 3606 /* Override any GCC internal prototype to avoid an error. 3607 Use char because int might match the return type of a GCC 3608 builtin and then its argument prototype would still apply. */ 3156 /* Override any gcc2 internal prototype to avoid an error. */ 3609 3157 #ifdef __cplusplus 3610 3158 extern "C" 3611 3159 #endif 3160 /* We use char because int might match the return type of a gcc2 3161 builtin and then its argument prototype would still apply. */ 3612 3162 char puts (); 3613 3163 int 3614 3164 main () 3615 3165 { 3616 returnputs ();3166 puts (); 3617 3167 ; 3618 3168 return 0; … … 3620 3170 _ACEOF 3621 3171 rm -f conftest.$ac_objext conftest$ac_exeext 3622 if { (ac_try="$ac_link" 3623 case "(($ac_try" in 3624 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3625 *) ac_try_echo=$ac_try;; 3626 esac 3627 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3628 (eval "$ac_link") 2>conftest.er1 3172 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 3173 (eval $ac_link) 2>conftest.er1 3629 3174 ac_status=$? 3630 3175 grep -v '^ *+' conftest.er1 >conftest.err … … 3632 3177 cat conftest.err >&5 3633 3178 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3634 (exit $ac_status); } && { 3635 test -z "$ac_c_werror_flag" || 3636 test ! -s conftest.err 3637 } && test -s conftest$ac_exeext && 3638 $as_test_x conftest$ac_exeext; then 3179 (exit $ac_status); } && 3180 { ac_try='test -z "$ac_c_werror_flag" 3181 || test ! -s conftest.err' 3182 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3183 (eval $ac_try) 2>&5 3184 ac_status=$? 3185 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3186 (exit $ac_status); }; } && 3187 { ac_try='test -s conftest$ac_exeext' 3188 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3189 (eval $ac_try) 2>&5 3190 ac_status=$? 3191 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3192 (exit $ac_status); }; }; then 3639 3193 ac_cv_lib_socket_puts=yes 3640 3194 else … … 3642 3196 sed 's/^/| /' conftest.$ac_ext >&5 3643 3197 3644 ac_cv_lib_socket_puts=no 3645 fi 3646 3647 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3198 ac_cv_lib_socket_puts=no 3199 fi 3200 rm -f conftest.err conftest.$ac_objext \ 3648 3201 conftest$ac_exeext conftest.$ac_ext 3649 3202 LIBS=$ac_check_lib_save_LIBS 3650 3203 fi 3651 {echo "$as_me:$LINENO: result: $ac_cv_lib_socket_puts" >&53652 echo "${ECHO_T}$ac_cv_lib_socket_puts" >&6 ; }3204 echo "$as_me:$LINENO: result: $ac_cv_lib_socket_puts" >&5 3205 echo "${ECHO_T}$ac_cv_lib_socket_puts" >&6 3653 3206 if test $ac_cv_lib_socket_puts = yes; then 3654 3207 cat >>confdefs.h <<_ACEOF … … 3661 3214 3662 3215 3663 {echo "$as_me:$LINENO: checking for puts in -lrt" >&53664 echo $ECHO_N "checking for puts in -lrt... $ECHO_C" >&6 ; }3216 echo "$as_me:$LINENO: checking for puts in -lrt" >&5 3217 echo $ECHO_N "checking for puts in -lrt... $ECHO_C" >&6 3665 3218 if test "${ac_cv_lib_rt_puts+set}" = set; then 3666 3219 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 3675 3228 /* end confdefs.h. */ 3676 3229 3677 /* Override any GCC internal prototype to avoid an error. 3678 Use char because int might match the return type of a GCC 3679 builtin and then its argument prototype would still apply. */ 3230 /* Override any gcc2 internal prototype to avoid an error. */ 3680 3231 #ifdef __cplusplus 3681 3232 extern "C" 3682 3233 #endif 3234 /* We use char because int might match the return type of a gcc2 3235 builtin and then its argument prototype would still apply. */ 3683 3236 char puts (); 3684 3237 int 3685 3238 main () 3686 3239 { 3687 returnputs ();3240 puts (); 3688 3241 ; 3689 3242 return 0; … … 3691 3244 _ACEOF 3692 3245 rm -f conftest.$ac_objext conftest$ac_exeext 3693 if { (ac_try="$ac_link" 3694 case "(($ac_try" in 3695 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3696 *) ac_try_echo=$ac_try;; 3697 esac 3698 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3699 (eval "$ac_link") 2>conftest.er1 3246 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 3247 (eval $ac_link) 2>conftest.er1 3700 3248 ac_status=$? 3701 3249 grep -v '^ *+' conftest.er1 >conftest.err … … 3703 3251 cat conftest.err >&5 3704 3252 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3705 (exit $ac_status); } && { 3706 test -z "$ac_c_werror_flag" || 3707 test ! -s conftest.err 3708 } && test -s conftest$ac_exeext && 3709 $as_test_x conftest$ac_exeext; then 3253 (exit $ac_status); } && 3254 { ac_try='test -z "$ac_c_werror_flag" 3255 || test ! -s conftest.err' 3256 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3257 (eval $ac_try) 2>&5 3258 ac_status=$? 3259 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3260 (exit $ac_status); }; } && 3261 { ac_try='test -s conftest$ac_exeext' 3262 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3263 (eval $ac_try) 2>&5 3264 ac_status=$? 3265 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3266 (exit $ac_status); }; }; then 3710 3267 ac_cv_lib_rt_puts=yes 3711 3268 else … … 3713 3270 sed 's/^/| /' conftest.$ac_ext >&5 3714 3271 3715 ac_cv_lib_rt_puts=no 3716 fi 3717 3718 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3272 ac_cv_lib_rt_puts=no 3273 fi 3274 rm -f conftest.err conftest.$ac_objext \ 3719 3275 conftest$ac_exeext conftest.$ac_ext 3720 3276 LIBS=$ac_check_lib_save_LIBS 3721 3277 fi 3722 {echo "$as_me:$LINENO: result: $ac_cv_lib_rt_puts" >&53723 echo "${ECHO_T}$ac_cv_lib_rt_puts" >&6 ; }3278 echo "$as_me:$LINENO: result: $ac_cv_lib_rt_puts" >&5 3279 echo "${ECHO_T}$ac_cv_lib_rt_puts" >&6 3724 3280 if test $ac_cv_lib_rt_puts = yes; then 3725 3281 cat >>confdefs.h <<_ACEOF … … 3732 3288 3733 3289 3734 {echo "$as_me:$LINENO: checking for puts in -lnsl" >&53735 echo $ECHO_N "checking for puts in -lnsl... $ECHO_C" >&6 ; }3290 echo "$as_me:$LINENO: checking for puts in -lnsl" >&5 3291 echo $ECHO_N "checking for puts in -lnsl... $ECHO_C" >&6 3736 3292 if test "${ac_cv_lib_nsl_puts+set}" = set; then 3737 3293 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 3746 3302 /* end confdefs.h. */ 3747 3303 3748 /* Override any GCC internal prototype to avoid an error. 3749 Use char because int might match the return type of a GCC 3750 builtin and then its argument prototype would still apply. */ 3304 /* Override any gcc2 internal prototype to avoid an error. */ 3751 3305 #ifdef __cplusplus 3752 3306 extern "C" 3753 3307 #endif 3308 /* We use char because int might match the return type of a gcc2 3309 builtin and then its argument prototype would still apply. */ 3754 3310 char puts (); 3755 3311 int 3756 3312 main () 3757 3313 { 3758 returnputs ();3314 puts (); 3759 3315 ; 3760 3316 return 0; … … 3762 3318 _ACEOF 3763 3319 rm -f conftest.$ac_objext conftest$ac_exeext 3764 if { (ac_try="$ac_link" 3765 case "(($ac_try" in 3766 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3767 *) ac_try_echo=$ac_try;; 3768 esac 3769 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3770 (eval "$ac_link") 2>conftest.er1 3320 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 3321 (eval $ac_link) 2>conftest.er1 3771 3322 ac_status=$? 3772 3323 grep -v '^ *+' conftest.er1 >conftest.err … … 3774 3325 cat conftest.err >&5 3775 3326 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3776 (exit $ac_status); } && { 3777 test -z "$ac_c_werror_flag" || 3778 test ! -s conftest.err 3779 } && test -s conftest$ac_exeext && 3780 $as_test_x conftest$ac_exeext; then 3327 (exit $ac_status); } && 3328 { ac_try='test -z "$ac_c_werror_flag" 3329 || test ! -s conftest.err' 3330 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3331 (eval $ac_try) 2>&5 3332 ac_status=$? 3333 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3334 (exit $ac_status); }; } && 3335 { ac_try='test -s conftest$ac_exeext' 3336 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3337 (eval $ac_try) 2>&5 3338 ac_status=$? 3339 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3340 (exit $ac_status); }; }; then 3781 3341 ac_cv_lib_nsl_puts=yes 3782 3342 else … … 3784 3344 sed 's/^/| /' conftest.$ac_ext >&5 3785 3345 3786 ac_cv_lib_nsl_puts=no 3787 fi 3788 3789 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3346 ac_cv_lib_nsl_puts=no 3347 fi 3348 rm -f conftest.err conftest.$ac_objext \ 3790 3349 conftest$ac_exeext conftest.$ac_ext 3791 3350 LIBS=$ac_check_lib_save_LIBS 3792 3351 fi 3793 {echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_puts" >&53794 echo "${ECHO_T}$ac_cv_lib_nsl_puts" >&6 ; }3352 echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_puts" >&5 3353 echo "${ECHO_T}$ac_cv_lib_nsl_puts" >&6 3795 3354 if test $ac_cv_lib_nsl_puts = yes; then 3796 3355 cat >>confdefs.h <<_ACEOF … … 3803 3362 3804 3363 3805 {echo "$as_me:$LINENO: checking for uuid_generate in -luuid" >&53806 echo $ECHO_N "checking for uuid_generate in -luuid... $ECHO_C" >&6 ; }3364 echo "$as_me:$LINENO: checking for uuid_generate in -luuid" >&5 3365 echo $ECHO_N "checking for uuid_generate in -luuid... $ECHO_C" >&6 3807 3366 if test "${ac_cv_lib_uuid_uuid_generate+set}" = set; then 3808 3367 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 3817 3376 /* end confdefs.h. */ 3818 3377 3819 /* Override any GCC internal prototype to avoid an error. 3820 Use char because int might match the return type of a GCC 3821 builtin and then its argument prototype would still apply. */ 3378 /* Override any gcc2 internal prototype to avoid an error. */ 3822 3379 #ifdef __cplusplus 3823 3380 extern "C" 3824 3381 #endif 3382 /* We use char because int might match the return type of a gcc2 3383 builtin and then its argument prototype would still apply. */ 3825 3384 char uuid_generate (); 3826 3385 int 3827 3386 main () 3828 3387 { 3829 returnuuid_generate ();3388 uuid_generate (); 3830 3389 ; 3831 3390 return 0; … … 3833 3392 _ACEOF 3834 3393 rm -f conftest.$ac_objext conftest$ac_exeext 3835 if { (ac_try="$ac_link" 3836 case "(($ac_try" in 3837 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3838 *) ac_try_echo=$ac_try;; 3839 esac 3840 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3841 (eval "$ac_link") 2>conftest.er1 3394 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 3395 (eval $ac_link) 2>conftest.er1 3842 3396 ac_status=$? 3843 3397 grep -v '^ *+' conftest.er1 >conftest.err … … 3845 3399 cat conftest.err >&5 3846 3400 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3847 (exit $ac_status); } && { 3848 test -z "$ac_c_werror_flag" || 3849 test ! -s conftest.err 3850 } && test -s conftest$ac_exeext && 3851 $as_test_x conftest$ac_exeext; then 3401 (exit $ac_status); } && 3402 { ac_try='test -z "$ac_c_werror_flag" 3403 || test ! -s conftest.err' 3404 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3405 (eval $ac_try) 2>&5 3406 ac_status=$? 3407 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3408 (exit $ac_status); }; } && 3409 { ac_try='test -s conftest$ac_exeext' 3410 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3411 (eval $ac_try) 2>&5 3412 ac_status=$? 3413 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3414 (exit $ac_status); }; }; then 3852 3415 ac_cv_lib_uuid_uuid_generate=yes 3853 3416 else … … 3855 3418 sed 's/^/| /' conftest.$ac_ext >&5 3856 3419 3857 ac_cv_lib_uuid_uuid_generate=no 3858 fi 3859 3860 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3420 ac_cv_lib_uuid_uuid_generate=no 3421 fi 3422 rm -f conftest.err conftest.$ac_objext \ 3861 3423 conftest$ac_exeext conftest.$ac_ext 3862 3424 LIBS=$ac_check_lib_save_LIBS 3863 3425 fi 3864 {echo "$as_me:$LINENO: result: $ac_cv_lib_uuid_uuid_generate" >&53865 echo "${ECHO_T}$ac_cv_lib_uuid_uuid_generate" >&6 ; }3426 echo "$as_me:$LINENO: result: $ac_cv_lib_uuid_uuid_generate" >&5 3427 echo "${ECHO_T}$ac_cv_lib_uuid_uuid_generate" >&6 3866 3428 if test $ac_cv_lib_uuid_uuid_generate = yes; then 3867 3429 cat >>confdefs.h <<_ACEOF … … 3873 3435 fi 3874 3436 3875 {echo "$as_me:$LINENO: checking for uuid_generate in -luuid" >&53876 echo $ECHO_N "checking for uuid_generate in -luuid... $ECHO_C" >&6 ; }3437 echo "$as_me:$LINENO: checking for uuid_generate in -luuid" >&5 3438 echo $ECHO_N "checking for uuid_generate in -luuid... $ECHO_C" >&6 3877 3439 if test "${ac_cv_lib_uuid_uuid_generate+set}" = set; then 3878 3440 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 3887 3449 /* end confdefs.h. */ 3888 3450 3889 /* Override any GCC internal prototype to avoid an error. 3890 Use char because int might match the return type of a GCC 3891 builtin and then its argument prototype would still apply. */ 3451 /* Override any gcc2 internal prototype to avoid an error. */ 3892 3452 #ifdef __cplusplus 3893 3453 extern "C" 3894 3454 #endif 3455 /* We use char because int might match the return type of a gcc2 3456 builtin and then its argument prototype would still apply. */ 3895 3457 char uuid_generate (); 3896 3458 int 3897 3459 main () 3898 3460 { 3899 returnuuid_generate ();3461 uuid_generate (); 3900 3462 ; 3901 3463 return 0; … … 3903 3465 _ACEOF 3904 3466 rm -f conftest.$ac_objext conftest$ac_exeext 3905 if { (ac_try="$ac_link" 3906 case "(($ac_try" in 3907 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3908 *) ac_try_echo=$ac_try;; 3909 esac 3910 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3911 (eval "$ac_link") 2>conftest.er1 3467 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 3468 (eval $ac_link) 2>conftest.er1 3912 3469 ac_status=$? 3913 3470 grep -v '^ *+' conftest.er1 >conftest.err … … 3915 3472 cat conftest.err >&5 3916 3473 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3917 (exit $ac_status); } && { 3918 test -z "$ac_c_werror_flag" || 3919 test ! -s conftest.err 3920 } && test -s conftest$ac_exeext && 3921 $as_test_x conftest$ac_exeext; then 3474 (exit $ac_status); } && 3475 { ac_try='test -z "$ac_c_werror_flag" 3476 || test ! -s conftest.err' 3477 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3478 (eval $ac_try) 2>&5 3479 ac_status=$? 3480 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3481 (exit $ac_status); }; } && 3482 { ac_try='test -s conftest$ac_exeext' 3483 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3484 (eval $ac_try) 2>&5 3485 ac_status=$? 3486 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3487 (exit $ac_status); }; }; then 3922 3488 ac_cv_lib_uuid_uuid_generate=yes 3923 3489 else … … 3925 3491 sed 's/^/| /' conftest.$ac_ext >&5 3926 3492 3927 ac_cv_lib_uuid_uuid_generate=no 3928 fi 3929 3930 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3493 ac_cv_lib_uuid_uuid_generate=no 3494 fi 3495 rm -f conftest.err conftest.$ac_objext \ 3931 3496 conftest$ac_exeext conftest.$ac_ext 3932 3497 LIBS=$ac_check_lib_save_LIBS 3933 3498 fi 3934 {echo "$as_me:$LINENO: result: $ac_cv_lib_uuid_uuid_generate" >&53935 echo "${ECHO_T}$ac_cv_lib_uuid_uuid_generate" >&6 ; }3499 echo "$as_me:$LINENO: result: $ac_cv_lib_uuid_uuid_generate" >&5 3500 echo "${ECHO_T}$ac_cv_lib_uuid_uuid_generate" >&6 3936 3501 if test $ac_cv_lib_uuid_uuid_generate = yes; then 3937 3502 ac_has_uuid_lib=1 … … 3939 3504 3940 3505 3941 {echo "$as_me:$LINENO: result: Setting PJ_M_NAME to $target_cpu" >&53942 echo "${ECHO_T}Setting PJ_M_NAME to $target_cpu" >&6 ; }3506 echo "$as_me:$LINENO: result: Setting PJ_M_NAME to $target_cpu" >&5 3507 echo "${ECHO_T}Setting PJ_M_NAME to $target_cpu" >&6 3943 3508 cat >>confdefs.h <<_ACEOF 3944 3509 #define PJ_M_NAME "$target_cpu" … … 3946 3511 3947 3512 3948 {echo "$as_me:$LINENO: checking memory alignment" >&53949 echo $ECHO_N "checking memory alignment... $ECHO_C" >&6 ; }3513 echo "$as_me:$LINENO: checking memory alignment" >&5 3514 echo $ECHO_N "checking memory alignment... $ECHO_C" >&6 3950 3515 case $target in 3951 3516 ia64-* | x86_64-* ) … … 3954 3519 _ACEOF 3955 3520 3956 {echo "$as_me:$LINENO: result: 8 bytes" >&53957 echo "${ECHO_T}8 bytes" >&6 ; }3521 echo "$as_me:$LINENO: result: 8 bytes" >&5 3522 echo "${ECHO_T}8 bytes" >&6 3958 3523 ;; 3959 3524 * ) … … 3962 3527 _ACEOF 3963 3528 3964 {echo "$as_me:$LINENO: result: 4 bytes (default)" >&53965 echo "${ECHO_T}4 bytes (default)" >&6 ; }3529 echo "$as_me:$LINENO: result: 4 bytes (default)" >&5 3530 echo "${ECHO_T}4 bytes (default)" >&6 3966 3531 ;; 3967 3532 esac 3533 3534 3535 echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5 3536 echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6 3537 if test "${ac_cv_c_bigendian+set}" = set; then 3538 echo $ECHO_N "(cached) $ECHO_C" >&6 3539 else 3540 # See if sys/param.h defines the BYTE_ORDER macro. 3541 cat >conftest.$ac_ext <<_ACEOF 3542 /* confdefs.h. */ 3543 _ACEOF 3544 cat confdefs.h >>conftest.$ac_ext 3545 cat >>conftest.$ac_ext <<_ACEOF 3546 /* end confdefs.h. */ 3547 #include <sys/types.h> 3548 #include <sys/param.h> 3549 3550 int 3551 main () 3552 { 3553 #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN 3554 bogus endian macros 3555 #endif 3556 3557 ; 3558 return 0; 3559 } 3560 _ACEOF 3561 rm -f conftest.$ac_objext 3562 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 3563 (eval $ac_compile) 2>conftest.er1 3564 ac_status=$? 3565 grep -v '^ *+' conftest.er1 >conftest.err 3566 rm -f conftest.er1 3567 cat conftest.err >&5 3568 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3569 (exit $ac_status); } && 3570 { ac_try='test -z "$ac_c_werror_flag" 3571 || test ! -s conftest.err' 3572 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3573 (eval $ac_try) 2>&5 3574 ac_status=$? 3575 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3576 (exit $ac_status); }; } && 3577 { ac_try='test -s conftest.$ac_objext' 3578 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3579 (eval $ac_try) 2>&5 3580 ac_status=$? 3581 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3582 (exit $ac_status); }; }; then 3583 # It does; now see whether it defined to BIG_ENDIAN or not. 3584 cat >conftest.$ac_ext <<_ACEOF 3585 /* confdefs.h. */ 3586 _ACEOF 3587 cat confdefs.h >>conftest.$ac_ext 3588 cat >>conftest.$ac_ext <<_ACEOF 3589 /* end confdefs.h. */ 3590 #include <sys/types.h> 3591 #include <sys/param.h> 3592 3593 int 3594 main () 3595 { 3596 #if BYTE_ORDER != BIG_ENDIAN 3597 not big endian 3598 #endif 3599 3600 ; 3601 return 0; 3602 } 3603 _ACEOF 3604 rm -f conftest.$ac_objext 3605 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 3606 (eval $ac_compile) 2>conftest.er1 3607 ac_status=$? 3608 grep -v '^ *+' conftest.er1 >conftest.err 3609 rm -f conftest.er1 3610 cat conftest.err >&5 3611 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3612 (exit $ac_status); } && 3613 { ac_try='test -z "$ac_c_werror_flag" 3614 || test ! -s conftest.err' 3615 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3616 (eval $ac_try) 2>&5 3617 ac_status=$? 3618 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3619 (exit $ac_status); }; } && 3620 { ac_try='test -s conftest.$ac_objext' 3621 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3622 (eval $ac_try) 2>&5 3623 ac_status=$? 3624 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3625 (exit $ac_status); }; }; then 3626 ac_cv_c_bigendian=yes 3627 else 3628 echo "$as_me: failed program was:" >&5 3629 sed 's/^/| /' conftest.$ac_ext >&5 3630 3631 ac_cv_c_bigendian=no 3632 fi 3633 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 3634 else 3635 echo "$as_me: failed program was:" >&5 3636 sed 's/^/| /' conftest.$ac_ext >&5 3637 3638 # It does not; compile a test program. 3639 if test "$cross_compiling" = yes; then 3640 # try to guess the endianness by grepping values into an object file 3641 ac_cv_c_bigendian=unknown 3642 cat >conftest.$ac_ext <<_ACEOF 3643 /* confdefs.h. */ 3644 _ACEOF 3645 cat confdefs.h >>conftest.$ac_ext 3646 cat >>conftest.$ac_ext <<_ACEOF 3647 /* end confdefs.h. */ 3648 short ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; 3649 short ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; 3650 void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; } 3651 short ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; 3652 short ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; 3653 void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; } 3654 int 3655 main () 3656 { 3657 _ascii (); _ebcdic (); 3658 ; 3659 return 0; 3660 } 3661 _ACEOF 3662 rm -f conftest.$ac_objext 3663 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 3664 (eval $ac_compile) 2>conftest.er1 3665 ac_status=$? 3666 grep -v '^ *+' conftest.er1 >conftest.err 3667 rm -f conftest.er1 3668 cat conftest.err >&5 3669 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3670 (exit $ac_status); } && 3671 { ac_try='test -z "$ac_c_werror_flag" 3672 || test ! -s conftest.err' 3673 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3674 (eval $ac_try) 2>&5 3675 ac_status=$? 3676 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3677 (exit $ac_status); }; } && 3678 { ac_try='test -s conftest.$ac_objext' 3679 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3680 (eval $ac_try) 2>&5 3681 ac_status=$? 3682 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3683 (exit $ac_status); }; }; then 3684 if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then 3685 ac_cv_c_bigendian=yes 3686 fi 3687 if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then 3688 if test "$ac_cv_c_bigendian" = unknown; then 3689 ac_cv_c_bigendian=no 3690 else 3691 # finding both strings is unlikely to happen, but who knows? 3692 ac_cv_c_bigendian=unknown 3693 fi 3694 fi 3695 else 3696 echo "$as_me: failed program was:" >&5 3697 sed 's/^/| /' conftest.$ac_ext >&5 3698 3699 fi 3700 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 3701 else 3702 cat >conftest.$ac_ext <<_ACEOF 3703 /* confdefs.h. */ 3704 _ACEOF 3705 cat confdefs.h >>conftest.$ac_ext 3706 cat >>conftest.$ac_ext <<_ACEOF 3707 /* end confdefs.h. */ 3708 int 3709 main () 3710 { 3711 /* Are we little or big endian? From Harbison&Steele. */ 3712 union 3713 { 3714 long l; 3715 char c[sizeof (long)]; 3716 } u; 3717 u.l = 1; 3718 exit (u.c[sizeof (long) - 1] == 1); 3719 } 3720 _ACEOF 3721 rm -f conftest$ac_exeext 3722 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 3723 (eval $ac_link) 2>&5 3724 ac_status=$? 3725 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3726 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 3727 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3728 (eval $ac_try) 2>&5 3729 ac_status=$? 3730 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3731 (exit $ac_status); }; }; then 3732 ac_cv_c_bigendian=no 3733 else 3734 echo "$as_me: program exited with status $ac_status" >&5 3735 echo "$as_me: failed program was:" >&5 3736 sed 's/^/| /' conftest.$ac_ext >&5 3737 3738 ( exit $ac_status ) 3739 ac_cv_c_bigendian=yes 3740 fi 3741 rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 3742 fi 3743 fi 3744 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 3745 fi 3746 echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5 3747 echo "${ECHO_T}$ac_cv_c_bigendian" >&6 3748 case $ac_cv_c_bigendian in 3749 yes) 3750 3751 cat >>confdefs.h <<\_ACEOF 3752 #define WORDS_BIGENDIAN 1 3753 _ACEOF 3754 ;; 3755 no) 3756 ;; 3757 *) 3758 { { echo "$as_me:$LINENO: error: unknown endianness 3759 presetting ac_cv_c_bigendian=no (or yes) will help" >&5 3760 echo "$as_me: error: unknown endianness 3761 presetting ac_cv_c_bigendian=no (or yes) will help" >&2;} 3762 { (exit 1); exit 1; }; } ;; 3763 esac 3764 3765 3766 case $target in 3767 *mingw* | *cygw* | *win32* | *w32* ) 3768 cat >>confdefs.h <<\_ACEOF 3769 #define PJ_WIN32 1 3770 _ACEOF 3771 3772 cat >>confdefs.h <<\_ACEOF 3773 #define PJ_WIN32_WINNT 0x0400 3774 _ACEOF 3775 3776 cat >>confdefs.h <<\_ACEOF 3777 #define WIN32_LEAN_AND_MEAN 1 3778 _ACEOF 3779 3780 ;; 3781 *darwin*) 3782 cat >>confdefs.h <<\_ACEOF 3783 #define PJ_DARWINOS 1 3784 _ACEOF 3785 3786 ;; 3787 *linux*) 3788 cat >>confdefs.h <<\_ACEOF 3789 #define PJ_LINUX 1 3790 _ACEOF 3791 3792 ;; 3793 *rtems*) 3794 cat >>confdefs.h <<\_ACEOF 3795 #define PJ_RTEMS 1 3796 _ACEOF 3797 3798 ;; 3799 *sunos* | *solaris* ) 3800 cat >>confdefs.h <<\_ACEOF 3801 #define PJ_SUNOS 1 3802 _ACEOF 3803 3804 ;; 3805 *) 3806 ;; 3807 esac 3808 3809 3810 3811 3812 # Check whether --enable-floating-point or --disable-floating-point was given. 3813 if test "${enable_floating_point+set}" = set; then 3814 enableval="$enable_floating_point" 3815 if test "$enable_floating_point" = "no"; then 3816 cat >>confdefs.h <<\_ACEOF 3817 #define PJ_HAS_FLOATING_POINT 0 3818 _ACEOF 3819 3820 echo "$as_me:$LINENO: result: Checking if floating point is disabled... yes" >&5 3821 echo "${ECHO_T}Checking if floating point is disabled... yes" >&6 3822 fi 3823 else 3824 3825 cat >>confdefs.h <<\_ACEOF 3826 #define PJ_HAS_FLOATING_POINT 1 3827 _ACEOF 3828 3829 echo "$as_me:$LINENO: result: Checking if floating point is disabled... no" >&5 3830 echo "${ECHO_T}Checking if floating point is disabled... no" >&6 3831 3832 echo "$as_me:$LINENO: checking for fmod in -lm" >&5 3833 echo $ECHO_N "checking for fmod in -lm... $ECHO_C" >&6 3834 if test "${ac_cv_lib_m_fmod+set}" = set; then 3835 echo $ECHO_N "(cached) $ECHO_C" >&6 3836 else 3837 ac_check_lib_save_LIBS=$LIBS 3838 LIBS="-lm $LIBS" 3839 cat >conftest.$ac_ext <<_ACEOF 3840 /* confdefs.h. */ 3841 _ACEOF 3842 cat confdefs.h >>conftest.$ac_ext 3843 cat >>conftest.$ac_ext <<_ACEOF 3844 /* end confdefs.h. */ 3845 3846 /* Override any gcc2 internal prototype to avoid an error. */ 3847 #ifdef __cplusplus 3848 extern "C" 3849 #endif 3850 /* We use char because int might match the return type of a gcc2 3851 builtin and then its argument prototype would still apply. */ 3852 char fmod (); 3853 int 3854 main () 3855 { 3856 fmod (); 3857 ; 3858 return 0; 3859 } 3860 _ACEOF 3861 rm -f conftest.$ac_objext conftest$ac_exeext 3862 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 3863 (eval $ac_link) 2>conftest.er1 3864 ac_status=$? 3865 grep -v '^ *+' conftest.er1 >conftest.err 3866 rm -f conftest.er1 3867 cat conftest.err >&5 3868 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3869 (exit $ac_status); } && 3870 { ac_try='test -z "$ac_c_werror_flag" 3871 || test ! -s conftest.err' 3872 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3873 (eval $ac_try) 2>&5 3874 ac_status=$? 3875 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3876 (exit $ac_status); }; } && 3877 { ac_try='test -s conftest$ac_exeext' 3878 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3879 (eval $ac_try) 2>&5 3880 ac_status=$? 3881 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3882 (exit $ac_status); }; }; then 3883 ac_cv_lib_m_fmod=yes 3884 else 3885 echo "$as_me: failed program was:" >&5 3886 sed 's/^/| /' conftest.$ac_ext >&5 3887 3888 ac_cv_lib_m_fmod=no 3889 fi 3890 rm -f conftest.err conftest.$ac_objext \ 3891 conftest$ac_exeext conftest.$ac_ext 3892 LIBS=$ac_check_lib_save_LIBS 3893 fi 3894 echo "$as_me:$LINENO: result: $ac_cv_lib_m_fmod" >&5 3895 echo "${ECHO_T}$ac_cv_lib_m_fmod" >&6 3896 if test $ac_cv_lib_m_fmod = yes; then 3897 cat >>confdefs.h <<_ACEOF 3898 #define HAVE_LIBM 1 3899 _ACEOF 3900 3901 LIBS="-lm $LIBS" 3902 3903 fi 3904 3905 3906 fi; 3968 3907 3969 3908 … … 3973 3912 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 3974 3913 ac_compiler_gnu=$ac_cv_c_compiler_gnu 3975 {echo "$as_me:$LINENO: checking how to run the C preprocessor" >&53976 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 ; }3914 echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 3915 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 3977 3916 # On Suns, sometimes $CPP names a directory. 3978 3917 if test -n "$CPP" && test -d "$CPP"; then … … 4008 3947 Syntax error 4009 3948 _ACEOF 4010 if { (ac_try="$ac_cpp conftest.$ac_ext" 4011 case "(($ac_try" in 4012 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4013 *) ac_try_echo=$ac_try;; 4014 esac 4015 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4016 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 3949 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 3950 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 4017 3951 ac_status=$? 4018 3952 grep -v '^ *+' conftest.er1 >conftest.err … … 4020 3954 cat conftest.err >&5 4021 3955 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4022 (exit $ac_status); } >/dev/null && { 4023 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 4024 test ! -s conftest.err 4025 }; then 3956 (exit $ac_status); } >/dev/null; then 3957 if test -s conftest.err; then 3958 ac_cpp_err=$ac_c_preproc_warn_flag 3959 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 3960 else 3961 ac_cpp_err= 3962 fi 3963 else 3964 ac_cpp_err=yes 3965 fi 3966 if test -z "$ac_cpp_err"; then 4026 3967 : 4027 3968 else … … 4032 3973 continue 4033 3974 fi 4034 4035 3975 rm -f conftest.err conftest.$ac_ext 4036 3976 4037 # OK, works on sane cases. Now check whether non existent headers3977 # OK, works on sane cases. Now check whether non-existent headers 4038 3978 # can be detected and how. 4039 3979 cat >conftest.$ac_ext <<_ACEOF … … 4045 3985 #include <ac_nonexistent.h> 4046 3986 _ACEOF 4047 if { (ac_try="$ac_cpp conftest.$ac_ext" 4048 case "(($ac_try" in 4049 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4050 *) ac_try_echo=$ac_try;; 4051 esac 4052 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4053 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 3987 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 3988 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 4054 3989 ac_status=$? 4055 3990 grep -v '^ *+' conftest.er1 >conftest.err … … 4057 3992 cat conftest.err >&5 4058 3993 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4059 (exit $ac_status); } >/dev/null && { 4060 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 4061 test ! -s conftest.err 4062 }; then 3994 (exit $ac_status); } >/dev/null; then 3995 if test -s conftest.err; then 3996 ac_cpp_err=$ac_c_preproc_warn_flag 3997 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 3998 else 3999 ac_cpp_err= 4000 fi 4001 else 4002 ac_cpp_err=yes 4003 fi 4004 if test -z "$ac_cpp_err"; then 4063 4005 # Broken: success on invalid input. 4064 4006 continue … … 4071 4013 break 4072 4014 fi 4073 4074 4015 rm -f conftest.err conftest.$ac_ext 4075 4016 … … 4089 4030 ac_cv_prog_CPP=$CPP 4090 4031 fi 4091 {echo "$as_me:$LINENO: result: $CPP" >&54092 echo "${ECHO_T}$CPP" >&6 ; }4032 echo "$as_me:$LINENO: result: $CPP" >&5 4033 echo "${ECHO_T}$CPP" >&6 4093 4034 ac_preproc_ok=false 4094 4035 for ac_c_preproc_warn_flag in '' yes … … 4113 4054 Syntax error 4114 4055 _ACEOF 4115 if { (ac_try="$ac_cpp conftest.$ac_ext" 4116 case "(($ac_try" in 4117 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4118 *) ac_try_echo=$ac_try;; 4119 esac 4120 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4121 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 4056 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 4057 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 4122 4058 ac_status=$? 4123 4059 grep -v '^ *+' conftest.er1 >conftest.err … … 4125 4061 cat conftest.err >&5 4126 4062 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4127 (exit $ac_status); } >/dev/null && { 4128 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 4129 test ! -s conftest.err 4130 }; then 4063 (exit $ac_status); } >/dev/null; then 4064 if test -s conftest.err; then 4065 ac_cpp_err=$ac_c_preproc_warn_flag 4066 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 4067 else 4068 ac_cpp_err= 4069 fi 4070 else 4071 ac_cpp_err=yes 4072 fi 4073 if test -z "$ac_cpp_err"; then 4131 4074 : 4132 4075 else … … 4137 4080 continue 4138 4081 fi 4139 4140 4082 rm -f conftest.err conftest.$ac_ext 4141 4083 4142 # OK, works on sane cases. Now check whether non existent headers4084 # OK, works on sane cases. Now check whether non-existent headers 4143 4085 # can be detected and how. 4144 4086 cat >conftest.$ac_ext <<_ACEOF … … 4150 4092 #include <ac_nonexistent.h> 4151 4093 _ACEOF 4152 if { (ac_try="$ac_cpp conftest.$ac_ext" 4153 case "(($ac_try" in 4154 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4155 *) ac_try_echo=$ac_try;; 4156 esac 4157 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4158 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 4094 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 4095 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 4159 4096 ac_status=$? 4160 4097 grep -v '^ *+' conftest.er1 >conftest.err … … 4162 4099 cat conftest.err >&5 4163 4100 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4164 (exit $ac_status); } >/dev/null && { 4165 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 4166 test ! -s conftest.err 4167 }; then 4101 (exit $ac_status); } >/dev/null; then 4102 if test -s conftest.err; then 4103 ac_cpp_err=$ac_c_preproc_warn_flag 4104 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 4105 else 4106 ac_cpp_err= 4107 fi 4108 else 4109 ac_cpp_err=yes 4110 fi 4111 if test -z "$ac_cpp_err"; then 4168 4112 # Broken: success on invalid input. 4169 4113 continue … … 4176 4120 break 4177 4121 fi 4178 4179 4122 rm -f conftest.err conftest.$ac_ext 4180 4123 … … 4199 4142 4200 4143 4201 { echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&54202 echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }4203 if test "${ac_cv_p ath_GREP+set}" = set; then4144 echo "$as_me:$LINENO: checking for egrep" >&5 4145 echo $ECHO_N "checking for egrep... $ECHO_C" >&6 4146 if test "${ac_cv_prog_egrep+set}" = set; then 4204 4147 echo $ECHO_N "(cached) $ECHO_C" >&6 4205 4148 else 4206 # Extract the first word of "grep ggrep" to use in msg output 4207 if test -z "$GREP"; then 4208 set dummy grep ggrep; ac_prog_name=$2 4209 if test "${ac_cv_path_GREP+set}" = set; then 4210 echo $ECHO_N "(cached) $ECHO_C" >&6 4211 else 4212 ac_path_GREP_found=false 4213 # Loop through the user's path and test for each of PROGNAME-LIST 4214 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 4215 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin 4216 do 4217 IFS=$as_save_IFS 4218 test -z "$as_dir" && as_dir=. 4219 for ac_prog in grep ggrep; do 4220 for ac_exec_ext in '' $ac_executable_extensions; do 4221 ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" 4222 { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue 4223 # Check for GNU ac_path_GREP and select it if it is found. 4224 # Check for GNU $ac_path_GREP 4225 case `"$ac_path_GREP" --version 2>&1` in 4226 *GNU*) 4227 ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; 4228 *) 4229 ac_count=0 4230 echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" 4231 while : 4232 do 4233 cat "conftest.in" "conftest.in" >"conftest.tmp" 4234 mv "conftest.tmp" "conftest.in" 4235 cp "conftest.in" "conftest.nl" 4236 echo 'GREP' >> "conftest.nl" 4237 "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break 4238 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break 4239 ac_count=`expr $ac_count + 1` 4240 if test $ac_count -gt ${ac_path_GREP_max-0}; then 4241 # Best one so far, save it but keep looking for a better one 4242 ac_cv_path_GREP="$ac_path_GREP" 4243 ac_path_GREP_max=$ac_count 4149 if echo a | (grep -E '(a|b)') >/dev/null 2>&1 4150 then ac_cv_prog_egrep='grep -E' 4151 else ac_cv_prog_egrep='egrep' 4244 4152 fi 4245 # 10*(2^10) chars as input seems more than enough 4246 test $ac_count -gt 10 && break 4247 done 4248 rm -f conftest.in conftest.tmp conftest.nl conftest.out;; 4249 esac 4250 4251 4252 $ac_path_GREP_found && break 3 4253 done 4254 done 4255 4256 done 4257 IFS=$as_save_IFS 4258 4259 4260 fi 4261 4262 GREP="$ac_cv_path_GREP" 4263 if test -z "$GREP"; then 4264 { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 4265 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} 4266 { (exit 1); exit 1; }; } 4267 fi 4268 4269 else 4270 ac_cv_path_GREP=$GREP 4271 fi 4272 4273 4274 fi 4275 { echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 4276 echo "${ECHO_T}$ac_cv_path_GREP" >&6; } 4277 GREP="$ac_cv_path_GREP" 4278 4279 4280 { echo "$as_me:$LINENO: checking for egrep" >&5 4281 echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } 4282 if test "${ac_cv_path_EGREP+set}" = set; then 4283 echo $ECHO_N "(cached) $ECHO_C" >&6 4284 else 4285 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 4286 then ac_cv_path_EGREP="$GREP -E" 4287 else 4288 # Extract the first word of "egrep" to use in msg output 4289 if test -z "$EGREP"; then 4290 set dummy egrep; ac_prog_name=$2 4291 if test "${ac_cv_path_EGREP+set}" = set; then 4292 echo $ECHO_N "(cached) $ECHO_C" >&6 4293 else 4294 ac_path_EGREP_found=false 4295 # Loop through the user's path and test for each of PROGNAME-LIST 4296 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 4297 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin 4298 do 4299 IFS=$as_save_IFS 4300 test -z "$as_dir" && as_dir=. 4301 for ac_prog in egrep; do 4302 for ac_exec_ext in '' $ac_executable_extensions; do 4303 ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" 4304 { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue 4305 # Check for GNU ac_path_EGREP and select it if it is found. 4306 # Check for GNU $ac_path_EGREP 4307 case `"$ac_path_EGREP" --version 2>&1` in 4308 *GNU*) 4309 ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; 4310 *) 4311 ac_count=0 4312 echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" 4313 while : 4314 do 4315 cat "conftest.in" "conftest.in" >"conftest.tmp" 4316 mv "conftest.tmp" "conftest.in" 4317 cp "conftest.in" "conftest.nl" 4318 echo 'EGREP' >> "conftest.nl" 4319 "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break 4320 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break 4321 ac_count=`expr $ac_count + 1` 4322 if test $ac_count -gt ${ac_path_EGREP_max-0}; then 4323 # Best one so far, save it but keep looking for a better one 4324 ac_cv_path_EGREP="$ac_path_EGREP" 4325 ac_path_EGREP_max=$ac_count 4326 fi 4327 # 10*(2^10) chars as input seems more than enough 4328 test $ac_count -gt 10 && break 4329 done 4330 rm -f conftest.in conftest.tmp conftest.nl conftest.out;; 4331 esac 4332 4333 4334 $ac_path_EGREP_found && break 3 4335 done 4336 done 4337 4338 done 4339 IFS=$as_save_IFS 4340 4341 4342 fi 4343 4344 EGREP="$ac_cv_path_EGREP" 4345 if test -z "$EGREP"; then 4346 { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 4347 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} 4348 { (exit 1); exit 1; }; } 4349 fi 4350 4351 else 4352 ac_cv_path_EGREP=$EGREP 4353 fi 4354 4355 4356 fi 4357 fi 4358 { echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 4359 echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } 4360 EGREP="$ac_cv_path_EGREP" 4361 4362 4363 { echo "$as_me:$LINENO: checking for ANSI C header files" >&5 4364 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } 4153 fi 4154 echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 4155 echo "${ECHO_T}$ac_cv_prog_egrep" >&6 4156 EGREP=$ac_cv_prog_egrep 4157 4158 4159 echo "$as_me:$LINENO: checking for ANSI C header files" >&5 4160 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 4365 4161 if test "${ac_cv_header_stdc+set}" = set; then 4366 4162 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 4386 4182 _ACEOF 4387 4183 rm -f conftest.$ac_objext 4388 if { (ac_try="$ac_compile" 4389 case "(($ac_try" in 4390 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4391 *) ac_try_echo=$ac_try;; 4392 esac 4393 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4394 (eval "$ac_compile") 2>conftest.er1 4184 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4185 (eval $ac_compile) 2>conftest.er1 4395 4186 ac_status=$? 4396 4187 grep -v '^ *+' conftest.er1 >conftest.err … … 4398 4189 cat conftest.err >&5 4399 4190 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4400 (exit $ac_status); } && { 4401 test -z "$ac_c_werror_flag" || 4402 test ! -s conftest.err 4403 } && test -s conftest.$ac_objext; then 4191 (exit $ac_status); } && 4192 { ac_try='test -z "$ac_c_werror_flag" 4193 || test ! -s conftest.err' 4194 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4195 (eval $ac_try) 2>&5 4196 ac_status=$? 4197 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4198 (exit $ac_status); }; } && 4199 { ac_try='test -s conftest.$ac_objext' 4200 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4201 (eval $ac_try) 2>&5 4202 ac_status=$? 4203 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4204 (exit $ac_status); }; }; then 4404 4205 ac_cv_header_stdc=yes 4405 4206 else … … 4407 4208 sed 's/^/| /' conftest.$ac_ext >&5 4408 4209 4409 ac_cv_header_stdc=no 4410 fi 4411 4412 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4210 ac_cv_header_stdc=no 4211 fi 4212 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 4413 4213 4414 4214 if test $ac_cv_header_stdc = yes; then … … 4466 4266 /* end confdefs.h. */ 4467 4267 #include <ctype.h> 4468 #include <stdlib.h>4469 4268 #if ((' ' & 0x0FF) == 0x020) 4470 4269 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') … … 4486 4285 if (XOR (islower (i), ISLOWER (i)) 4487 4286 || toupper (i) != TOUPPER (i)) 4488 return 2;4489 return 0;4287 exit(2); 4288 exit (0); 4490 4289 } 4491 4290 _ACEOF 4492 4291 rm -f conftest$ac_exeext 4493 if { (ac_try="$ac_link" 4494 case "(($ac_try" in 4495 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4496 *) ac_try_echo=$ac_try;; 4497 esac 4498 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4499 (eval "$ac_link") 2>&5 4292 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 4293 (eval $ac_link) 2>&5 4500 4294 ac_status=$? 4501 4295 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4502 4296 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 4503 { (case "(($ac_try" in 4504 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4505 *) ac_try_echo=$ac_try;; 4506 esac 4507 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4508 (eval "$ac_try") 2>&5 4297 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4298 (eval $ac_try) 2>&5 4509 4299 ac_status=$? 4510 4300 echo "$as_me:$LINENO: \$? = $ac_status" >&5 … … 4519 4309 ac_cv_header_stdc=no 4520 4310 fi 4521 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 4522 fi 4523 4524 4525 fi 4526 fi 4527 { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 4528 echo "${ECHO_T}$ac_cv_header_stdc" >&6; } 4311 rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 4312 fi 4313 fi 4314 fi 4315 echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 4316 echo "${ECHO_T}$ac_cv_header_stdc" >&6 4529 4317 if test $ac_cv_header_stdc = yes; then 4530 4318 … … 4549 4337 do 4550 4338 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 4551 {echo "$as_me:$LINENO: checking for $ac_header" >&54552 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 ; }4553 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then4339 echo "$as_me:$LINENO: checking for $ac_header" >&5 4340 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 4341 if eval "test \"\${$as_ac_Header+set}\" = set"; then 4554 4342 echo $ECHO_N "(cached) $ECHO_C" >&6 4555 4343 else … … 4565 4353 _ACEOF 4566 4354 rm -f conftest.$ac_objext 4567 if { (ac_try="$ac_compile" 4568 case "(($ac_try" in 4569 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4570 *) ac_try_echo=$ac_try;; 4571 esac 4572 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4573 (eval "$ac_compile") 2>conftest.er1 4355 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4356 (eval $ac_compile) 2>conftest.er1 4574 4357 ac_status=$? 4575 4358 grep -v '^ *+' conftest.er1 >conftest.err … … 4577 4360 cat conftest.err >&5 4578 4361 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4579 (exit $ac_status); } && { 4580 test -z "$ac_c_werror_flag" || 4581 test ! -s conftest.err 4582 } && test -s conftest.$ac_objext; then 4362 (exit $ac_status); } && 4363 { ac_try='test -z "$ac_c_werror_flag" 4364 || test ! -s conftest.err' 4365 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4366 (eval $ac_try) 2>&5 4367 ac_status=$? 4368 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4369 (exit $ac_status); }; } && 4370 { ac_try='test -s conftest.$ac_objext' 4371 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4372 (eval $ac_try) 2>&5 4373 ac_status=$? 4374 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4375 (exit $ac_status); }; }; then 4583 4376 eval "$as_ac_Header=yes" 4584 4377 else … … 4586 4379 sed 's/^/| /' conftest.$ac_ext >&5 4587 4380 4588 eval "$as_ac_Header=no" 4589 fi 4590 4591 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4592 fi 4593 ac_res=`eval echo '${'$as_ac_Header'}'` 4594 { echo "$as_me:$LINENO: result: $ac_res" >&5 4595 echo "${ECHO_T}$ac_res" >&6; } 4381 eval "$as_ac_Header=no" 4382 fi 4383 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 4384 fi 4385 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 4386 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 4596 4387 if test `eval echo '${'$as_ac_Header'}'` = yes; then 4597 4388 cat >>confdefs.h <<_ACEOF … … 4604 4395 4605 4396 4606 { echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&54607 echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6; }4608 if test "${ac_cv_c_bigendian+set}" = set; then4609 echo $ECHO_N "(cached) $ECHO_C" >&64610 else4611 # See if sys/param.h defines the BYTE_ORDER macro.4612 cat >conftest.$ac_ext <<_ACEOF4613 /* confdefs.h. */4614 _ACEOF4615 cat confdefs.h >>conftest.$ac_ext4616 cat >>conftest.$ac_ext <<_ACEOF4617 /* end confdefs.h. */4618 #include <sys/types.h>4619 #include <sys/param.h>4620 4621 int4622 main ()4623 {4624 #if ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN \4625 && BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN)4626 bogus endian macros4627 #endif4628 4629 ;4630 return 0;4631 }4632 _ACEOF4633 rm -f conftest.$ac_objext4634 if { (ac_try="$ac_compile"4635 case "(($ac_try" in4636 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;4637 *) ac_try_echo=$ac_try;;4638 esac4639 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&54640 (eval "$ac_compile") 2>conftest.er14641 ac_status=$?4642 grep -v '^ *+' conftest.er1 >conftest.err4643 rm -f conftest.er14644 cat conftest.err >&54645 echo "$as_me:$LINENO: \$? = $ac_status" >&54646 (exit $ac_status); } && {4647 test -z "$ac_c_werror_flag" ||4648 test ! -s conftest.err4649 } && test -s conftest.$ac_objext; then4650 # It does; now see whether it defined to BIG_ENDIAN or not.4651 cat >conftest.$ac_ext <<_ACEOF4652 /* confdefs.h. */4653 _ACEOF4654 cat confdefs.h >>conftest.$ac_ext4655 cat >>conftest.$ac_ext <<_ACEOF4656 /* end confdefs.h. */4657 #include <sys/types.h>4658 #include <sys/param.h>4659 4660 int4661 main ()4662 {4663 #if BYTE_ORDER != BIG_ENDIAN4664 not big endian4665 #endif4666 4667 ;4668 return 0;4669 }4670 _ACEOF4671 rm -f conftest.$ac_objext4672 if { (ac_try="$ac_compile"4673 case "(($ac_try" in4674 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;4675 *) ac_try_echo=$ac_try;;4676 esac4677 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&54678 (eval "$ac_compile") 2>conftest.er14679 ac_status=$?4680 grep -v '^ *+' conftest.er1 >conftest.err4681 rm -f conftest.er14682 cat conftest.err >&54683 echo "$as_me:$LINENO: \$? = $ac_status" >&54684 (exit $ac_status); } && {4685 test -z "$ac_c_werror_flag" ||4686 test ! -s conftest.err4687 } && test -s conftest.$ac_objext; then4688 ac_cv_c_bigendian=yes4689 else4690 echo "$as_me: failed program was:" >&54691 sed 's/^/| /' conftest.$ac_ext >&54692 4693 ac_cv_c_bigendian=no4694 fi4695 4696 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext4697 else4698 echo "$as_me: failed program was:" >&54699 sed 's/^/| /' conftest.$ac_ext >&54700 4701 # It does not; compile a test program.4702 if test "$cross_compiling" = yes; then4703 # try to guess the endianness by grepping values into an object file4704 ac_cv_c_bigendian=unknown4705 cat >conftest.$ac_ext <<_ACEOF4706 /* confdefs.h. */4707 _ACEOF4708 cat confdefs.h >>conftest.$ac_ext4709 cat >>conftest.$ac_ext <<_ACEOF4710 /* end confdefs.h. */4711 short int ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };4712 short int ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };4713 void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; }4714 short int ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };4715 short int ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };4716 void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; }4717 int4718 main ()4719 {4720 _ascii (); _ebcdic ();4721 ;4722 return 0;4723 }4724 _ACEOF4725 rm -f conftest.$ac_objext4726 if { (ac_try="$ac_compile"4727 case "(($ac_try" in4728 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;4729 *) ac_try_echo=$ac_try;;4730 esac4731 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&54732 (eval "$ac_compile") 2>conftest.er14733 ac_status=$?4734 grep -v '^ *+' conftest.er1 >conftest.err4735 rm -f conftest.er14736 cat conftest.err >&54737 echo "$as_me:$LINENO: \$? = $ac_status" >&54738 (exit $ac_status); } && {4739 test -z "$ac_c_werror_flag" ||4740 test ! -s conftest.err4741 } && test -s conftest.$ac_objext; then4742 if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then4743 ac_cv_c_bigendian=yes4744 fi4745 if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then4746 if test "$ac_cv_c_bigendian" = unknown; then4747 ac_cv_c_bigendian=no4748 else4749 # finding both strings is unlikely to happen, but who knows?4750 ac_cv_c_bigendian=unknown4751 fi4752 fi4753 else4754 echo "$as_me: failed program was:" >&54755 sed 's/^/| /' conftest.$ac_ext >&54756 4757 4758 fi4759 4760 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext4761 else4762 cat >conftest.$ac_ext <<_ACEOF4763 /* confdefs.h. */4764 _ACEOF4765 cat confdefs.h >>conftest.$ac_ext4766 cat >>conftest.$ac_ext <<_ACEOF4767 /* end confdefs.h. */4768 $ac_includes_default4769 int4770 main ()4771 {4772 4773 /* Are we little or big endian? From Harbison&Steele. */4774 union4775 {4776 long int l;4777 char c[sizeof (long int)];4778 } u;4779 u.l = 1;4780 return u.c[sizeof (long int) - 1] == 1;4781 4782 ;4783 return 0;4784 }4785 _ACEOF4786 rm -f conftest$ac_exeext4787 if { (ac_try="$ac_link"4788 case "(($ac_try" in4789 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;4790 *) ac_try_echo=$ac_try;;4791 esac4792 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&54793 (eval "$ac_link") 2>&54794 ac_status=$?4795 echo "$as_me:$LINENO: \$? = $ac_status" >&54796 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'4797 { (case "(($ac_try" in4798 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;4799 *) ac_try_echo=$ac_try;;4800 esac4801 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&54802 (eval "$ac_try") 2>&54803 ac_status=$?4804 echo "$as_me:$LINENO: \$? = $ac_status" >&54805 (exit $ac_status); }; }; then4806 ac_cv_c_bigendian=no4807 else4808 echo "$as_me: program exited with status $ac_status" >&54809 echo "$as_me: failed program was:" >&54810 sed 's/^/| /' conftest.$ac_ext >&54811 4812 ( exit $ac_status )4813 ac_cv_c_bigendian=yes4814 fi4815 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext4816 fi4817 4818 4819 fi4820 4821 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext4822 fi4823 { echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&54824 echo "${ECHO_T}$ac_cv_c_bigendian" >&6; }4825 case $ac_cv_c_bigendian in4826 yes)4827 4828 cat >>confdefs.h <<\_ACEOF4829 #define WORDS_BIGENDIAN 14830 _ACEOF4831 ;;4832 no)4833 ;;4834 *)4835 { { echo "$as_me:$LINENO: error: unknown endianness4836 presetting ac_cv_c_bigendian=no (or yes) will help" >&54837 echo "$as_me: error: unknown endianness4838 presetting ac_cv_c_bigendian=no (or yes) will help" >&2;}4839 { (exit 1); exit 1; }; } ;;4840 esac4841 4842 4843 case $target in4844 *mingw* | *cygw* | *win32* | *w32* )4845 cat >>confdefs.h <<\_ACEOF4846 #define PJ_WIN32 14847 _ACEOF4848 4849 cat >>confdefs.h <<\_ACEOF4850 #define PJ_WIN32_WINNT 0x04004851 _ACEOF4852 4853 cat >>confdefs.h <<\_ACEOF4854 #define WIN32_LEAN_AND_MEAN 14855 _ACEOF4856 4857 ;;4858 *darwin*)4859 cat >>confdefs.h <<\_ACEOF4860 #define PJ_DARWINOS 14861 _ACEOF4862 4863 ;;4864 *linux*)4865 cat >>confdefs.h <<\_ACEOF4866 #define PJ_LINUX 14867 _ACEOF4868 4869 ;;4870 *rtems*)4871 cat >>confdefs.h <<\_ACEOF4872 #define PJ_RTEMS 14873 _ACEOF4874 4875 ;;4876 *sunos* | *solaris* )4877 cat >>confdefs.h <<\_ACEOF4878 #define PJ_SUNOS 14879 _ACEOF4880 4881 ;;4882 *)4883 ;;4884 esac4885 4886 4887 4888 4889 # Check whether --enable-floating-point was given.4890 if test "${enable_floating_point+set}" = set; then4891 enableval=$enable_floating_point; if test "$enable_floating_point" = "no"; then4892 cat >>confdefs.h <<\_ACEOF4893 #define PJ_HAS_FLOATING_POINT 04894 _ACEOF4895 4896 { echo "$as_me:$LINENO: result: Checking if floating point is disabled... yes" >&54897 echo "${ECHO_T}Checking if floating point is disabled... yes" >&6; }4898 fi4899 else4900 4901 cat >>confdefs.h <<\_ACEOF4902 #define PJ_HAS_FLOATING_POINT 14903 _ACEOF4904 4905 { echo "$as_me:$LINENO: result: Checking if floating point is disabled... no" >&54906 echo "${ECHO_T}Checking if floating point is disabled... no" >&6; }4907 4908 { echo "$as_me:$LINENO: checking for fmod in -lm" >&54909 echo $ECHO_N "checking for fmod in -lm... $ECHO_C" >&6; }4910 if test "${ac_cv_lib_m_fmod+set}" = set; then4911 echo $ECHO_N "(cached) $ECHO_C" >&64912 else4913 ac_check_lib_save_LIBS=$LIBS4914 LIBS="-lm $LIBS"4915 cat >conftest.$ac_ext <<_ACEOF4916 /* confdefs.h. */4917 _ACEOF4918 cat confdefs.h >>conftest.$ac_ext4919 cat >>conftest.$ac_ext <<_ACEOF4920 /* end confdefs.h. */4921 4922 /* Override any GCC internal prototype to avoid an error.4923 Use char because int might match the return type of a GCC4924 builtin and then its argument prototype would still apply. */4925 #ifdef __cplusplus4926 extern "C"4927 #endif4928 char fmod ();4929 int4930 main ()4931 {4932 return fmod ();4933 ;4934 return 0;4935 }4936 _ACEOF4937 rm -f conftest.$ac_objext conftest$ac_exeext4938 if { (ac_try="$ac_link"4939 case "(($ac_try" in4940 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;4941 *) ac_try_echo=$ac_try;;4942 esac4943 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&54944 (eval "$ac_link") 2>conftest.er14945 ac_status=$?4946 grep -v '^ *+' conftest.er1 >conftest.err4947 rm -f conftest.er14948 cat conftest.err >&54949 echo "$as_me:$LINENO: \$? = $ac_status" >&54950 (exit $ac_status); } && {4951 test -z "$ac_c_werror_flag" ||4952 test ! -s conftest.err4953 } && test -s conftest$ac_exeext &&4954 $as_test_x conftest$ac_exeext; then4955 ac_cv_lib_m_fmod=yes4956 else4957 echo "$as_me: failed program was:" >&54958 sed 's/^/| /' conftest.$ac_ext >&54959 4960 ac_cv_lib_m_fmod=no4961 fi4962 4963 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \4964 conftest$ac_exeext conftest.$ac_ext4965 LIBS=$ac_check_lib_save_LIBS4966 fi4967 { echo "$as_me:$LINENO: result: $ac_cv_lib_m_fmod" >&54968 echo "${ECHO_T}$ac_cv_lib_m_fmod" >&6; }4969 if test $ac_cv_lib_m_fmod = yes; then4970 cat >>confdefs.h <<_ACEOF4971 #define HAVE_LIBM 14972 _ACEOF4973 4974 LIBS="-lm $LIBS"4975 4976 fi4977 4978 4979 fi4980 4981 4982 4983 4397 if test "${ac_cv_header_arpa_inet_h+set}" = set; then 4984 {echo "$as_me:$LINENO: checking for arpa/inet.h" >&54985 echo $ECHO_N "checking for arpa/inet.h... $ECHO_C" >&6 ; }4398 echo "$as_me:$LINENO: checking for arpa/inet.h" >&5 4399 echo $ECHO_N "checking for arpa/inet.h... $ECHO_C" >&6 4986 4400 if test "${ac_cv_header_arpa_inet_h+set}" = set; then 4987 4401 echo $ECHO_N "(cached) $ECHO_C" >&6 4988 4402 fi 4989 {echo "$as_me:$LINENO: result: $ac_cv_header_arpa_inet_h" >&54990 echo "${ECHO_T}$ac_cv_header_arpa_inet_h" >&6 ; }4403 echo "$as_me:$LINENO: result: $ac_cv_header_arpa_inet_h" >&5 4404 echo "${ECHO_T}$ac_cv_header_arpa_inet_h" >&6 4991 4405 else 4992 4406 # Is the header compilable? 4993 {echo "$as_me:$LINENO: checking arpa/inet.h usability" >&54994 echo $ECHO_N "checking arpa/inet.h usability... $ECHO_C" >&6 ; }4407 echo "$as_me:$LINENO: checking arpa/inet.h usability" >&5 4408 echo $ECHO_N "checking arpa/inet.h usability... $ECHO_C" >&6 4995 4409 cat >conftest.$ac_ext <<_ACEOF 4996 4410 /* confdefs.h. */ … … 5003 4417 _ACEOF 5004 4418 rm -f conftest.$ac_objext 5005 if { (ac_try="$ac_compile" 5006 case "(($ac_try" in 5007 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5008 *) ac_try_echo=$ac_try;; 5009 esac 5010 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5011 (eval "$ac_compile") 2>conftest.er1 4419 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4420 (eval $ac_compile) 2>conftest.er1 5012 4421 ac_status=$? 5013 4422 grep -v '^ *+' conftest.er1 >conftest.err … … 5015 4424 cat conftest.err >&5 5016 4425 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5017 (exit $ac_status); } && { 5018 test -z "$ac_c_werror_flag" || 5019 test ! -s conftest.err 5020 } && test -s conftest.$ac_objext; then 4426 (exit $ac_status); } && 4427 { ac_try='test -z "$ac_c_werror_flag" 4428 || test ! -s conftest.err' 4429 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4430 (eval $ac_try) 2>&5 4431 ac_status=$? 4432 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4433 (exit $ac_status); }; } && 4434 { ac_try='test -s conftest.$ac_objext' 4435 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4436 (eval $ac_try) 2>&5 4437 ac_status=$? 4438 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4439 (exit $ac_status); }; }; then 5021 4440 ac_header_compiler=yes 5022 4441 else … … 5024 4443 sed 's/^/| /' conftest.$ac_ext >&5 5025 4444 5026 ac_header_compiler=no 5027 fi 5028 5029 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 5030 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5031 echo "${ECHO_T}$ac_header_compiler" >&6; } 4445 ac_header_compiler=no 4446 fi 4447 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 4448 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 4449 echo "${ECHO_T}$ac_header_compiler" >&6 5032 4450 5033 4451 # Is the header present? 5034 {echo "$as_me:$LINENO: checking arpa/inet.h presence" >&55035 echo $ECHO_N "checking arpa/inet.h presence... $ECHO_C" >&6 ; }4452 echo "$as_me:$LINENO: checking arpa/inet.h presence" >&5 4453 echo $ECHO_N "checking arpa/inet.h presence... $ECHO_C" >&6 5036 4454 cat >conftest.$ac_ext <<_ACEOF 5037 4455 /* confdefs.h. */ … … 5042 4460 #include <arpa/inet.h> 5043 4461 _ACEOF 5044 if { (ac_try="$ac_cpp conftest.$ac_ext" 5045 case "(($ac_try" in 5046 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5047 *) ac_try_echo=$ac_try;; 5048 esac 5049 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5050 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 4462 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 4463 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 5051 4464 ac_status=$? 5052 4465 grep -v '^ *+' conftest.er1 >conftest.err … … 5054 4467 cat conftest.err >&5 5055 4468 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5056 (exit $ac_status); } >/dev/null && { 5057 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 5058 test ! -s conftest.err 5059 }; then 4469 (exit $ac_status); } >/dev/null; then 4470 if test -s conftest.err; then 4471 ac_cpp_err=$ac_c_preproc_warn_flag 4472 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 4473 else 4474 ac_cpp_err= 4475 fi 4476 else 4477 ac_cpp_err=yes 4478 fi 4479 if test -z "$ac_cpp_err"; then 5060 4480 ac_header_preproc=yes 5061 4481 else … … 5065 4485 ac_header_preproc=no 5066 4486 fi 5067 5068 4487 rm -f conftest.err conftest.$ac_ext 5069 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&55070 echo "${ECHO_T}$ac_header_preproc" >&6 ; }4488 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 4489 echo "${ECHO_T}$ac_header_preproc" >&6 5071 4490 5072 4491 # So? What about this header? … … 5092 4511 { echo "$as_me:$LINENO: WARNING: arpa/inet.h: in the future, the compiler will take precedence" >&5 5093 4512 echo "$as_me: WARNING: arpa/inet.h: in the future, the compiler will take precedence" >&2;} 5094 4513 ( 4514 cat <<\_ASBOX 4515 ## ------------------------------------ ## 4516 ## Report this to the pjproject lists. ## 4517 ## ------------------------------------ ## 4518 _ASBOX 4519 ) | 4520 sed "s/^/$as_me: WARNING: /" >&2 5095 4521 ;; 5096 4522 esac 5097 {echo "$as_me:$LINENO: checking for arpa/inet.h" >&55098 echo $ECHO_N "checking for arpa/inet.h... $ECHO_C" >&6 ; }4523 echo "$as_me:$LINENO: checking for arpa/inet.h" >&5 4524 echo $ECHO_N "checking for arpa/inet.h... $ECHO_C" >&6 5099 4525 if test "${ac_cv_header_arpa_inet_h+set}" = set; then 5100 4526 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 5102 4528 ac_cv_header_arpa_inet_h=$ac_header_preproc 5103 4529 fi 5104 {echo "$as_me:$LINENO: result: $ac_cv_header_arpa_inet_h" >&55105 echo "${ECHO_T}$ac_cv_header_arpa_inet_h" >&6 ; }4530 echo "$as_me:$LINENO: result: $ac_cv_header_arpa_inet_h" >&5 4531 echo "${ECHO_T}$ac_cv_header_arpa_inet_h" >&6 5106 4532 5107 4533 fi … … 5115 4541 5116 4542 if test "${ac_cv_header_assert_h+set}" = set; then 5117 {echo "$as_me:$LINENO: checking for assert.h" >&55118 echo $ECHO_N "checking for assert.h... $ECHO_C" >&6 ; }4543 echo "$as_me:$LINENO: checking for assert.h" >&5 4544 echo $ECHO_N "checking for assert.h... $ECHO_C" >&6 5119 4545 if test "${ac_cv_header_assert_h+set}" = set; then 5120 4546 echo $ECHO_N "(cached) $ECHO_C" >&6 5121 4547 fi 5122 {echo "$as_me:$LINENO: result: $ac_cv_header_assert_h" >&55123 echo "${ECHO_T}$ac_cv_header_assert_h" >&6 ; }4548 echo "$as_me:$LINENO: result: $ac_cv_header_assert_h" >&5 4549 echo "${ECHO_T}$ac_cv_header_assert_h" >&6 5124 4550 else 5125 4551 # Is the header compilable? 5126 {echo "$as_me:$LINENO: checking assert.h usability" >&55127 echo $ECHO_N "checking assert.h usability... $ECHO_C" >&6 ; }4552 echo "$as_me:$LINENO: checking assert.h usability" >&5 4553 echo $ECHO_N "checking assert.h usability... $ECHO_C" >&6 5128 4554 cat >conftest.$ac_ext <<_ACEOF 5129 4555 /* confdefs.h. */ … … 5136 4562 _ACEOF 5137 4563 rm -f conftest.$ac_objext 5138 if { (ac_try="$ac_compile" 5139 case "(($ac_try" in 5140 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5141 *) ac_try_echo=$ac_try;; 5142 esac 5143 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5144 (eval "$ac_compile") 2>conftest.er1 4564 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4565 (eval $ac_compile) 2>conftest.er1 5145 4566 ac_status=$? 5146 4567 grep -v '^ *+' conftest.er1 >conftest.err … … 5148 4569 cat conftest.err >&5 5149 4570 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5150 (exit $ac_status); } && { 5151 test -z "$ac_c_werror_flag" || 5152 test ! -s conftest.err 5153 } && test -s conftest.$ac_objext; then 4571 (exit $ac_status); } && 4572 { ac_try='test -z "$ac_c_werror_flag" 4573 || test ! -s conftest.err' 4574 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4575 (eval $ac_try) 2>&5 4576 ac_status=$? 4577 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4578 (exit $ac_status); }; } && 4579 { ac_try='test -s conftest.$ac_objext' 4580 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4581 (eval $ac_try) 2>&5 4582 ac_status=$? 4583 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4584 (exit $ac_status); }; }; then 5154 4585 ac_header_compiler=yes 5155 4586 else … … 5157 4588 sed 's/^/| /' conftest.$ac_ext >&5 5158 4589 5159 ac_header_compiler=no 5160 fi 5161 5162 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 5163 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5164 echo "${ECHO_T}$ac_header_compiler" >&6; } 4590 ac_header_compiler=no 4591 fi 4592 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 4593 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 4594 echo "${ECHO_T}$ac_header_compiler" >&6 5165 4595 5166 4596 # Is the header present? 5167 {echo "$as_me:$LINENO: checking assert.h presence" >&55168 echo $ECHO_N "checking assert.h presence... $ECHO_C" >&6 ; }4597 echo "$as_me:$LINENO: checking assert.h presence" >&5 4598 echo $ECHO_N "checking assert.h presence... $ECHO_C" >&6 5169 4599 cat >conftest.$ac_ext <<_ACEOF 5170 4600 /* confdefs.h. */ … … 5175 4605 #include <assert.h> 5176 4606 _ACEOF 5177 if { (ac_try="$ac_cpp conftest.$ac_ext" 5178 case "(($ac_try" in 5179 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5180 *) ac_try_echo=$ac_try;; 5181 esac 5182 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5183 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 4607 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 4608 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 5184 4609 ac_status=$? 5185 4610 grep -v '^ *+' conftest.er1 >conftest.err … … 5187 4612 cat conftest.err >&5 5188 4613 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5189 (exit $ac_status); } >/dev/null && { 5190 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 5191 test ! -s conftest.err 5192 }; then 4614 (exit $ac_status); } >/dev/null; then 4615 if test -s conftest.err; then 4616 ac_cpp_err=$ac_c_preproc_warn_flag 4617 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 4618 else 4619 ac_cpp_err= 4620 fi 4621 else 4622 ac_cpp_err=yes 4623 fi 4624 if test -z "$ac_cpp_err"; then 5193 4625 ac_header_preproc=yes 5194 4626 else … … 5198 4630 ac_header_preproc=no 5199 4631 fi 5200 5201 4632 rm -f conftest.err conftest.$ac_ext 5202 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&55203 echo "${ECHO_T}$ac_header_preproc" >&6 ; }4633 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 4634 echo "${ECHO_T}$ac_header_preproc" >&6 5204 4635 5205 4636 # So? What about this header? … … 5225 4656 { echo "$as_me:$LINENO: WARNING: assert.h: in the future, the compiler will take precedence" >&5 5226 4657 echo "$as_me: WARNING: assert.h: in the future, the compiler will take precedence" >&2;} 5227 4658 ( 4659 cat <<\_ASBOX 4660 ## ------------------------------------ ## 4661 ## Report this to the pjproject lists. ## 4662 ## ------------------------------------ ## 4663 _ASBOX 4664 ) | 4665 sed "s/^/$as_me: WARNING: /" >&2 5228 4666 ;; 5229 4667 esac 5230 {echo "$as_me:$LINENO: checking for assert.h" >&55231 echo $ECHO_N "checking for assert.h... $ECHO_C" >&6 ; }4668 echo "$as_me:$LINENO: checking for assert.h" >&5 4669 echo $ECHO_N "checking for assert.h... $ECHO_C" >&6 5232 4670 if test "${ac_cv_header_assert_h+set}" = set; then 5233 4671 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 5235 4673 ac_cv_header_assert_h=$ac_header_preproc 5236 4674 fi 5237 {echo "$as_me:$LINENO: result: $ac_cv_header_assert_h" >&55238 echo "${ECHO_T}$ac_cv_header_assert_h" >&6 ; }4675 echo "$as_me:$LINENO: result: $ac_cv_header_assert_h" >&5 4676 echo "${ECHO_T}$ac_cv_header_assert_h" >&6 5239 4677 5240 4678 fi … … 5248 4686 5249 4687 if test "${ac_cv_header_ctype_h+set}" = set; then 5250 {echo "$as_me:$LINENO: checking for ctype.h" >&55251 echo $ECHO_N "checking for ctype.h... $ECHO_C" >&6 ; }4688 echo "$as_me:$LINENO: checking for ctype.h" >&5 4689 echo $ECHO_N "checking for ctype.h... $ECHO_C" >&6 5252 4690 if test "${ac_cv_header_ctype_h+set}" = set; then 5253 4691 echo $ECHO_N "(cached) $ECHO_C" >&6 5254 4692 fi 5255 {echo "$as_me:$LINENO: result: $ac_cv_header_ctype_h" >&55256 echo "${ECHO_T}$ac_cv_header_ctype_h" >&6 ; }4693 echo "$as_me:$LINENO: result: $ac_cv_header_ctype_h" >&5 4694 echo "${ECHO_T}$ac_cv_header_ctype_h" >&6 5257 4695 else 5258 4696 # Is the header compilable? 5259 {echo "$as_me:$LINENO: checking ctype.h usability" >&55260 echo $ECHO_N "checking ctype.h usability... $ECHO_C" >&6 ; }4697 echo "$as_me:$LINENO: checking ctype.h usability" >&5 4698 echo $ECHO_N "checking ctype.h usability... $ECHO_C" >&6 5261 4699 cat >conftest.$ac_ext <<_ACEOF 5262 4700 /* confdefs.h. */ … … 5269 4707 _ACEOF 5270 4708 rm -f conftest.$ac_objext 5271 if { (ac_try="$ac_compile" 5272 case "(($ac_try" in 5273 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5274 *) ac_try_echo=$ac_try;; 5275 esac 5276 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5277 (eval "$ac_compile") 2>conftest.er1 4709 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4710 (eval $ac_compile) 2>conftest.er1 5278 4711 ac_status=$? 5279 4712 grep -v '^ *+' conftest.er1 >conftest.err … … 5281 4714 cat conftest.err >&5 5282 4715 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5283 (exit $ac_status); } && { 5284 test -z "$ac_c_werror_flag" || 5285 test ! -s conftest.err 5286 } && test -s conftest.$ac_objext; then 4716 (exit $ac_status); } && 4717 { ac_try='test -z "$ac_c_werror_flag" 4718 || test ! -s conftest.err' 4719 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4720 (eval $ac_try) 2>&5 4721 ac_status=$? 4722 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4723 (exit $ac_status); }; } && 4724 { ac_try='test -s conftest.$ac_objext' 4725 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4726 (eval $ac_try) 2>&5 4727 ac_status=$? 4728 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4729 (exit $ac_status); }; }; then 5287 4730 ac_header_compiler=yes 5288 4731 else … … 5290 4733 sed 's/^/| /' conftest.$ac_ext >&5 5291 4734 5292 ac_header_compiler=no 5293 fi 5294 5295 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 5296 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5297 echo "${ECHO_T}$ac_header_compiler" >&6; } 4735 ac_header_compiler=no 4736 fi 4737 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 4738 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 4739 echo "${ECHO_T}$ac_header_compiler" >&6 5298 4740 5299 4741 # Is the header present? 5300 {echo "$as_me:$LINENO: checking ctype.h presence" >&55301 echo $ECHO_N "checking ctype.h presence... $ECHO_C" >&6 ; }4742 echo "$as_me:$LINENO: checking ctype.h presence" >&5 4743 echo $ECHO_N "checking ctype.h presence... $ECHO_C" >&6 5302 4744 cat >conftest.$ac_ext <<_ACEOF 5303 4745 /* confdefs.h. */ … … 5308 4750 #include <ctype.h> 5309 4751 _ACEOF 5310 if { (ac_try="$ac_cpp conftest.$ac_ext" 5311 case "(($ac_try" in 5312 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5313 *) ac_try_echo=$ac_try;; 5314 esac 5315 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5316 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 4752 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 4753 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 5317 4754 ac_status=$? 5318 4755 grep -v '^ *+' conftest.er1 >conftest.err … … 5320 4757 cat conftest.err >&5 5321 4758 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5322 (exit $ac_status); } >/dev/null && { 5323 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 5324 test ! -s conftest.err 5325 }; then 4759 (exit $ac_status); } >/dev/null; then 4760 if test -s conftest.err; then 4761 ac_cpp_err=$ac_c_preproc_warn_flag 4762 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 4763 else 4764 ac_cpp_err= 4765 fi 4766 else 4767 ac_cpp_err=yes 4768 fi 4769 if test -z "$ac_cpp_err"; then 5326 4770 ac_header_preproc=yes 5327 4771 else … … 5331 4775 ac_header_preproc=no 5332 4776 fi 5333 5334 4777 rm -f conftest.err conftest.$ac_ext 5335 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&55336 echo "${ECHO_T}$ac_header_preproc" >&6 ; }4778 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 4779 echo "${ECHO_T}$ac_header_preproc" >&6 5337 4780 5338 4781 # So? What about this header? … … 5358 4801 { echo "$as_me:$LINENO: WARNING: ctype.h: in the future, the compiler will take precedence" >&5 5359 4802 echo "$as_me: WARNING: ctype.h: in the future, the compiler will take precedence" >&2;} 5360 4803 ( 4804 cat <<\_ASBOX 4805 ## ------------------------------------ ## 4806 ## Report this to the pjproject lists. ## 4807 ## ------------------------------------ ## 4808 _ASBOX 4809 ) | 4810 sed "s/^/$as_me: WARNING: /" >&2 5361 4811 ;; 5362 4812 esac 5363 {echo "$as_me:$LINENO: checking for ctype.h" >&55364 echo $ECHO_N "checking for ctype.h... $ECHO_C" >&6 ; }4813 echo "$as_me:$LINENO: checking for ctype.h" >&5 4814 echo $ECHO_N "checking for ctype.h... $ECHO_C" >&6 5365 4815 if test "${ac_cv_header_ctype_h+set}" = set; then 5366 4816 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 5368 4818 ac_cv_header_ctype_h=$ac_header_preproc 5369 4819 fi 5370 {echo "$as_me:$LINENO: result: $ac_cv_header_ctype_h" >&55371 echo "${ECHO_T}$ac_cv_header_ctype_h" >&6 ; }4820 echo "$as_me:$LINENO: result: $ac_cv_header_ctype_h" >&5 4821 echo "${ECHO_T}$ac_cv_header_ctype_h" >&6 5372 4822 5373 4823 fi … … 5390 4840 *) 5391 4841 if test "${ac_cv_header_errno_h+set}" = set; then 5392 {echo "$as_me:$LINENO: checking for errno.h" >&55393 echo $ECHO_N "checking for errno.h... $ECHO_C" >&6 ; }4842 echo "$as_me:$LINENO: checking for errno.h" >&5 4843 echo $ECHO_N "checking for errno.h... $ECHO_C" >&6 5394 4844 if test "${ac_cv_header_errno_h+set}" = set; then 5395 4845 echo $ECHO_N "(cached) $ECHO_C" >&6 5396 4846 fi 5397 {echo "$as_me:$LINENO: result: $ac_cv_header_errno_h" >&55398 echo "${ECHO_T}$ac_cv_header_errno_h" >&6 ; }4847 echo "$as_me:$LINENO: result: $ac_cv_header_errno_h" >&5 4848 echo "${ECHO_T}$ac_cv_header_errno_h" >&6 5399 4849 else 5400 4850 # Is the header compilable? 5401 {echo "$as_me:$LINENO: checking errno.h usability" >&55402 echo $ECHO_N "checking errno.h usability... $ECHO_C" >&6 ; }4851 echo "$as_me:$LINENO: checking errno.h usability" >&5 4852 echo $ECHO_N "checking errno.h usability... $ECHO_C" >&6 5403 4853 cat >conftest.$ac_ext <<_ACEOF 5404 4854 /* confdefs.h. */ … … 5411 4861 _ACEOF 5412 4862 rm -f conftest.$ac_objext 5413 if { (ac_try="$ac_compile" 5414 case "(($ac_try" in 5415 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5416 *) ac_try_echo=$ac_try;; 5417 esac 5418 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5419 (eval "$ac_compile") 2>conftest.er1 4863 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4864 (eval $ac_compile) 2>conftest.er1 5420 4865 ac_status=$? 5421 4866 grep -v '^ *+' conftest.er1 >conftest.err … … 5423 4868 cat conftest.err >&5 5424 4869 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5425 (exit $ac_status); } && { 5426 test -z "$ac_c_werror_flag" || 5427 test ! -s conftest.err 5428 } && test -s conftest.$ac_objext; then 4870 (exit $ac_status); } && 4871 { ac_try='test -z "$ac_c_werror_flag" 4872 || test ! -s conftest.err' 4873 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4874 (eval $ac_try) 2>&5 4875 ac_status=$? 4876 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4877 (exit $ac_status); }; } && 4878 { ac_try='test -s conftest.$ac_objext' 4879 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4880 (eval $ac_try) 2>&5 4881 ac_status=$? 4882 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4883 (exit $ac_status); }; }; then 5429 4884 ac_header_compiler=yes 5430 4885 else … … 5432 4887 sed 's/^/| /' conftest.$ac_ext >&5 5433 4888 5434 ac_header_compiler=no 5435 fi 5436 5437 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 5438 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5439 echo "${ECHO_T}$ac_header_compiler" >&6; } 4889 ac_header_compiler=no 4890 fi 4891 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 4892 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 4893 echo "${ECHO_T}$ac_header_compiler" >&6 5440 4894 5441 4895 # Is the header present? 5442 {echo "$as_me:$LINENO: checking errno.h presence" >&55443 echo $ECHO_N "checking errno.h presence... $ECHO_C" >&6 ; }4896 echo "$as_me:$LINENO: checking errno.h presence" >&5 4897 echo $ECHO_N "checking errno.h presence... $ECHO_C" >&6 5444 4898 cat >conftest.$ac_ext <<_ACEOF 5445 4899 /* confdefs.h. */ … … 5450 4904 #include <errno.h> 5451 4905 _ACEOF 5452 if { (ac_try="$ac_cpp conftest.$ac_ext" 5453 case "(($ac_try" in 5454 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5455 *) ac_try_echo=$ac_try;; 5456 esac 5457 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5458 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 4906 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 4907 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 5459 4908 ac_status=$? 5460 4909 grep -v '^ *+' conftest.er1 >conftest.err … … 5462 4911 cat conftest.err >&5 5463 4912 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5464 (exit $ac_status); } >/dev/null && { 5465 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 5466 test ! -s conftest.err 5467 }; then 4913 (exit $ac_status); } >/dev/null; then 4914 if test -s conftest.err; then 4915 ac_cpp_err=$ac_c_preproc_warn_flag 4916 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 4917 else 4918 ac_cpp_err= 4919 fi 4920 else 4921 ac_cpp_err=yes 4922 fi 4923 if test -z "$ac_cpp_err"; then 5468 4924 ac_header_preproc=yes 5469 4925 else … … 5473 4929 ac_header_preproc=no 5474 4930 fi 5475 5476 4931 rm -f conftest.err conftest.$ac_ext 5477 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&55478 echo "${ECHO_T}$ac_header_preproc" >&6 ; }4932 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 4933 echo "${ECHO_T}$ac_header_preproc" >&6 5479 4934 5480 4935 # So? What about this header? … … 5500 4955 { echo "$as_me:$LINENO: WARNING: errno.h: in the future, the compiler will take precedence" >&5 5501 4956 echo "$as_me: WARNING: errno.h: in the future, the compiler will take precedence" >&2;} 5502 4957 ( 4958 cat <<\_ASBOX 4959 ## ------------------------------------ ## 4960 ## Report this to the pjproject lists. ## 4961 ## ------------------------------------ ## 4962 _ASBOX 4963 ) | 4964 sed "s/^/$as_me: WARNING: /" >&2 5503 4965 ;; 5504 4966 esac 5505 {echo "$as_me:$LINENO: checking for errno.h" >&55506 echo $ECHO_N "checking for errno.h... $ECHO_C" >&6 ; }4967 echo "$as_me:$LINENO: checking for errno.h" >&5 4968 echo $ECHO_N "checking for errno.h... $ECHO_C" >&6 5507 4969 if test "${ac_cv_header_errno_h+set}" = set; then 5508 4970 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 5510 4972 ac_cv_header_errno_h=$ac_header_preproc 5511 4973 fi 5512 {echo "$as_me:$LINENO: result: $ac_cv_header_errno_h" >&55513 echo "${ECHO_T}$ac_cv_header_errno_h" >&6 ; }4974 echo "$as_me:$LINENO: result: $ac_cv_header_errno_h" >&5 4975 echo "${ECHO_T}$ac_cv_header_errno_h" >&6 5514 4976 5515 4977 fi … … 5526 4988 5527 4989 if test "${ac_cv_header_fcntl_h+set}" = set; then 5528 {echo "$as_me:$LINENO: checking for fcntl.h" >&55529 echo $ECHO_N "checking for fcntl.h... $ECHO_C" >&6 ; }4990 echo "$as_me:$LINENO: checking for fcntl.h" >&5 4991 echo $ECHO_N "checking for fcntl.h... $ECHO_C" >&6 5530 4992 if test "${ac_cv_header_fcntl_h+set}" = set; then 5531 4993 echo $ECHO_N "(cached) $ECHO_C" >&6 5532 4994 fi 5533 {echo "$as_me:$LINENO: result: $ac_cv_header_fcntl_h" >&55534 echo "${ECHO_T}$ac_cv_header_fcntl_h" >&6 ; }4995 echo "$as_me:$LINENO: result: $ac_cv_header_fcntl_h" >&5 4996 echo "${ECHO_T}$ac_cv_header_fcntl_h" >&6 5535 4997 else 5536 4998 # Is the header compilable? 5537 {echo "$as_me:$LINENO: checking fcntl.h usability" >&55538 echo $ECHO_N "checking fcntl.h usability... $ECHO_C" >&6 ; }4999 echo "$as_me:$LINENO: checking fcntl.h usability" >&5 5000 echo $ECHO_N "checking fcntl.h usability... $ECHO_C" >&6 5539 5001 cat >conftest.$ac_ext <<_ACEOF 5540 5002 /* confdefs.h. */ … … 5547 5009 _ACEOF 5548 5010 rm -f conftest.$ac_objext 5549 if { (ac_try="$ac_compile" 5550 case "(($ac_try" in 5551 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5552 *) ac_try_echo=$ac_try;; 5553 esac 5554 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5555 (eval "$ac_compile") 2>conftest.er1 5011 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5012 (eval $ac_compile) 2>conftest.er1 5556 5013 ac_status=$? 5557 5014 grep -v '^ *+' conftest.er1 >conftest.err … … 5559 5016 cat conftest.err >&5 5560 5017 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5561 (exit $ac_status); } && { 5562 test -z "$ac_c_werror_flag" || 5563 test ! -s conftest.err 5564 } && test -s conftest.$ac_objext; then 5018 (exit $ac_status); } && 5019 { ac_try='test -z "$ac_c_werror_flag" 5020 || test ! -s conftest.err' 5021 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5022 (eval $ac_try) 2>&5 5023 ac_status=$? 5024 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5025 (exit $ac_status); }; } && 5026 { ac_try='test -s conftest.$ac_objext' 5027 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5028 (eval $ac_try) 2>&5 5029 ac_status=$? 5030 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5031 (exit $ac_status); }; }; then 5565 5032 ac_header_compiler=yes 5566 5033 else … … 5568 5035 sed 's/^/| /' conftest.$ac_ext >&5 5569 5036 5570 ac_header_compiler=no 5571 fi 5572 5573 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 5574 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5575 echo "${ECHO_T}$ac_header_compiler" >&6; } 5037 ac_header_compiler=no 5038 fi 5039 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 5040 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5041 echo "${ECHO_T}$ac_header_compiler" >&6 5576 5042 5577 5043 # Is the header present? 5578 {echo "$as_me:$LINENO: checking fcntl.h presence" >&55579 echo $ECHO_N "checking fcntl.h presence... $ECHO_C" >&6 ; }5044 echo "$as_me:$LINENO: checking fcntl.h presence" >&5 5045 echo $ECHO_N "checking fcntl.h presence... $ECHO_C" >&6 5580 5046 cat >conftest.$ac_ext <<_ACEOF 5581 5047 /* confdefs.h. */ … … 5586 5052 #include <fcntl.h> 5587 5053 _ACEOF 5588 if { (ac_try="$ac_cpp conftest.$ac_ext" 5589 case "(($ac_try" in 5590 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5591 *) ac_try_echo=$ac_try;; 5592 esac 5593 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5594 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 5054 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 5055 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 5595 5056 ac_status=$? 5596 5057 grep -v '^ *+' conftest.er1 >conftest.err … … 5598 5059 cat conftest.err >&5 5599 5060 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5600 (exit $ac_status); } >/dev/null && { 5601 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 5602 test ! -s conftest.err 5603 }; then 5061 (exit $ac_status); } >/dev/null; then 5062 if test -s conftest.err; then 5063 ac_cpp_err=$ac_c_preproc_warn_flag 5064 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 5065 else 5066 ac_cpp_err= 5067 fi 5068 else 5069 ac_cpp_err=yes 5070 fi 5071 if test -z "$ac_cpp_err"; then 5604 5072 ac_header_preproc=yes 5605 5073 else … … 5609 5077 ac_header_preproc=no 5610 5078 fi 5611 5612 5079 rm -f conftest.err conftest.$ac_ext 5613 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&55614 echo "${ECHO_T}$ac_header_preproc" >&6 ; }5080 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 5081 echo "${ECHO_T}$ac_header_preproc" >&6 5615 5082 5616 5083 # So? What about this header? … … 5636 5103 { echo "$as_me:$LINENO: WARNING: fcntl.h: in the future, the compiler will take precedence" >&5 5637 5104 echo "$as_me: WARNING: fcntl.h: in the future, the compiler will take precedence" >&2;} 5638 5105 ( 5106 cat <<\_ASBOX 5107 ## ------------------------------------ ## 5108 ## Report this to the pjproject lists. ## 5109 ## ------------------------------------ ## 5110 _ASBOX 5111 ) | 5112 sed "s/^/$as_me: WARNING: /" >&2 5639 5113 ;; 5640 5114 esac 5641 {echo "$as_me:$LINENO: checking for fcntl.h" >&55642 echo $ECHO_N "checking for fcntl.h... $ECHO_C" >&6 ; }5115 echo "$as_me:$LINENO: checking for fcntl.h" >&5 5116 echo $ECHO_N "checking for fcntl.h... $ECHO_C" >&6 5643 5117 if test "${ac_cv_header_fcntl_h+set}" = set; then 5644 5118 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 5646 5120 ac_cv_header_fcntl_h=$ac_header_preproc 5647 5121 fi 5648 {echo "$as_me:$LINENO: result: $ac_cv_header_fcntl_h" >&55649 echo "${ECHO_T}$ac_cv_header_fcntl_h" >&6 ; }5122 echo "$as_me:$LINENO: result: $ac_cv_header_fcntl_h" >&5 5123 echo "${ECHO_T}$ac_cv_header_fcntl_h" >&6 5650 5124 5651 5125 fi … … 5659 5133 5660 5134 if test "${ac_cv_header_linux_socket_h+set}" = set; then 5661 {echo "$as_me:$LINENO: checking for linux/socket.h" >&55662 echo $ECHO_N "checking for linux/socket.h... $ECHO_C" >&6 ; }5135 echo "$as_me:$LINENO: checking for linux/socket.h" >&5 5136 echo $ECHO_N "checking for linux/socket.h... $ECHO_C" >&6 5663 5137 if test "${ac_cv_header_linux_socket_h+set}" = set; then 5664 5138 echo $ECHO_N "(cached) $ECHO_C" >&6 5665 5139 fi 5666 {echo "$as_me:$LINENO: result: $ac_cv_header_linux_socket_h" >&55667 echo "${ECHO_T}$ac_cv_header_linux_socket_h" >&6 ; }5140 echo "$as_me:$LINENO: result: $ac_cv_header_linux_socket_h" >&5 5141 echo "${ECHO_T}$ac_cv_header_linux_socket_h" >&6 5668 5142 else 5669 5143 # Is the header compilable? 5670 {echo "$as_me:$LINENO: checking linux/socket.h usability" >&55671 echo $ECHO_N "checking linux/socket.h usability... $ECHO_C" >&6 ; }5144 echo "$as_me:$LINENO: checking linux/socket.h usability" >&5 5145 echo $ECHO_N "checking linux/socket.h usability... $ECHO_C" >&6 5672 5146 cat >conftest.$ac_ext <<_ACEOF 5673 5147 /* confdefs.h. */ … … 5680 5154 _ACEOF 5681 5155 rm -f conftest.$ac_objext 5682 if { (ac_try="$ac_compile" 5683 case "(($ac_try" in 5684 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5685 *) ac_try_echo=$ac_try;; 5686 esac 5687 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5688 (eval "$ac_compile") 2>conftest.er1 5156 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5157 (eval $ac_compile) 2>conftest.er1 5689 5158 ac_status=$? 5690 5159 grep -v '^ *+' conftest.er1 >conftest.err … … 5692 5161 cat conftest.err >&5 5693 5162 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5694 (exit $ac_status); } && { 5695 test -z "$ac_c_werror_flag" || 5696 test ! -s conftest.err 5697 } && test -s conftest.$ac_objext; then 5163 (exit $ac_status); } && 5164 { ac_try='test -z "$ac_c_werror_flag" 5165 || test ! -s conftest.err' 5166 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5167 (eval $ac_try) 2>&5 5168 ac_status=$? 5169 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5170 (exit $ac_status); }; } && 5171 { ac_try='test -s conftest.$ac_objext' 5172 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5173 (eval $ac_try) 2>&5 5174 ac_status=$? 5175 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5176 (exit $ac_status); }; }; then 5698 5177 ac_header_compiler=yes 5699 5178 else … … 5701 5180 sed 's/^/| /' conftest.$ac_ext >&5 5702 5181 5703 ac_header_compiler=no 5704 fi 5705 5706 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 5707 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5708 echo "${ECHO_T}$ac_header_compiler" >&6; } 5182 ac_header_compiler=no 5183 fi 5184 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 5185 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5186 echo "${ECHO_T}$ac_header_compiler" >&6 5709 5187 5710 5188 # Is the header present? 5711 {echo "$as_me:$LINENO: checking linux/socket.h presence" >&55712 echo $ECHO_N "checking linux/socket.h presence... $ECHO_C" >&6 ; }5189 echo "$as_me:$LINENO: checking linux/socket.h presence" >&5 5190 echo $ECHO_N "checking linux/socket.h presence... $ECHO_C" >&6 5713 5191 cat >conftest.$ac_ext <<_ACEOF 5714 5192 /* confdefs.h. */ … … 5719 5197 #include <linux/socket.h> 5720 5198 _ACEOF 5721 if { (ac_try="$ac_cpp conftest.$ac_ext" 5722 case "(($ac_try" in 5723 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5724 *) ac_try_echo=$ac_try;; 5725 esac 5726 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5727 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 5199 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 5200 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 5728 5201 ac_status=$? 5729 5202 grep -v '^ *+' conftest.er1 >conftest.err … … 5731 5204 cat conftest.err >&5 5732 5205 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5733 (exit $ac_status); } >/dev/null && { 5734 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 5735 test ! -s conftest.err 5736 }; then 5206 (exit $ac_status); } >/dev/null; then 5207 if test -s conftest.err; then 5208 ac_cpp_err=$ac_c_preproc_warn_flag 5209 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 5210 else 5211 ac_cpp_err= 5212 fi 5213 else 5214 ac_cpp_err=yes 5215 fi 5216 if test -z "$ac_cpp_err"; then 5737 5217 ac_header_preproc=yes 5738 5218 else … … 5742 5222 ac_header_preproc=no 5743 5223 fi 5744 5745 5224 rm -f conftest.err conftest.$ac_ext 5746 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&55747 echo "${ECHO_T}$ac_header_preproc" >&6 ; }5225 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 5226 echo "${ECHO_T}$ac_header_preproc" >&6 5748 5227 5749 5228 # So? What about this header? … … 5769 5248 { echo "$as_me:$LINENO: WARNING: linux/socket.h: in the future, the compiler will take precedence" >&5 5770 5249 echo "$as_me: WARNING: linux/socket.h: in the future, the compiler will take precedence" >&2;} 5771 5250 ( 5251 cat <<\_ASBOX 5252 ## ------------------------------------ ## 5253 ## Report this to the pjproject lists. ## 5254 ## ------------------------------------ ## 5255 _ASBOX 5256 ) | 5257 sed "s/^/$as_me: WARNING: /" >&2 5772 5258 ;; 5773 5259 esac 5774 {echo "$as_me:$LINENO: checking for linux/socket.h" >&55775 echo $ECHO_N "checking for linux/socket.h... $ECHO_C" >&6 ; }5260 echo "$as_me:$LINENO: checking for linux/socket.h" >&5 5261 echo $ECHO_N "checking for linux/socket.h... $ECHO_C" >&6 5776 5262 if test "${ac_cv_header_linux_socket_h+set}" = set; then 5777 5263 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 5779 5265 ac_cv_header_linux_socket_h=$ac_header_preproc 5780 5266 fi 5781 {echo "$as_me:$LINENO: result: $ac_cv_header_linux_socket_h" >&55782 echo "${ECHO_T}$ac_cv_header_linux_socket_h" >&6 ; }5267 echo "$as_me:$LINENO: result: $ac_cv_header_linux_socket_h" >&5 5268 echo "${ECHO_T}$ac_cv_header_linux_socket_h" >&6 5783 5269 5784 5270 fi … … 5792 5278 5793 5279 if test "${ac_cv_header_malloc_h+set}" = set; then 5794 {echo "$as_me:$LINENO: checking for malloc.h" >&55795 echo $ECHO_N "checking for malloc.h... $ECHO_C" >&6 ; }5280 echo "$as_me:$LINENO: checking for malloc.h" >&5 5281 echo $ECHO_N "checking for malloc.h... $ECHO_C" >&6 5796 5282 if test "${ac_cv_header_malloc_h+set}" = set; then 5797 5283 echo $ECHO_N "(cached) $ECHO_C" >&6 5798 5284 fi 5799 {echo "$as_me:$LINENO: result: $ac_cv_header_malloc_h" >&55800 echo "${ECHO_T}$ac_cv_header_malloc_h" >&6 ; }5285 echo "$as_me:$LINENO: result: $ac_cv_header_malloc_h" >&5 5286 echo "${ECHO_T}$ac_cv_header_malloc_h" >&6 5801 5287 else 5802 5288 # Is the header compilable? 5803 {echo "$as_me:$LINENO: checking malloc.h usability" >&55804 echo $ECHO_N "checking malloc.h usability... $ECHO_C" >&6 ; }5289 echo "$as_me:$LINENO: checking malloc.h usability" >&5 5290 echo $ECHO_N "checking malloc.h usability... $ECHO_C" >&6 5805 5291 cat >conftest.$ac_ext <<_ACEOF 5806 5292 /* confdefs.h. */ … … 5813 5299 _ACEOF 5814 5300 rm -f conftest.$ac_objext 5815 if { (ac_try="$ac_compile" 5816 case "(($ac_try" in 5817 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5818 *) ac_try_echo=$ac_try;; 5819 esac 5820 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5821 (eval "$ac_compile") 2>conftest.er1 5301 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5302 (eval $ac_compile) 2>conftest.er1 5822 5303 ac_status=$? 5823 5304 grep -v '^ *+' conftest.er1 >conftest.err … … 5825 5306 cat conftest.err >&5 5826 5307 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5827 (exit $ac_status); } && { 5828 test -z "$ac_c_werror_flag" || 5829 test ! -s conftest.err 5830 } && test -s conftest.$ac_objext; then 5308 (exit $ac_status); } && 5309 { ac_try='test -z "$ac_c_werror_flag" 5310 || test ! -s conftest.err' 5311 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5312 (eval $ac_try) 2>&5 5313 ac_status=$? 5314 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5315 (exit $ac_status); }; } && 5316 { ac_try='test -s conftest.$ac_objext' 5317 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5318 (eval $ac_try) 2>&5 5319 ac_status=$? 5320 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5321 (exit $ac_status); }; }; then 5831 5322 ac_header_compiler=yes 5832 5323 else … … 5834 5325 sed 's/^/| /' conftest.$ac_ext >&5 5835 5326 5836 ac_header_compiler=no 5837 fi 5838 5839 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 5840 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5841 echo "${ECHO_T}$ac_header_compiler" >&6; } 5327 ac_header_compiler=no 5328 fi 5329 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 5330 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5331 echo "${ECHO_T}$ac_header_compiler" >&6 5842 5332 5843 5333 # Is the header present? 5844 {echo "$as_me:$LINENO: checking malloc.h presence" >&55845 echo $ECHO_N "checking malloc.h presence... $ECHO_C" >&6 ; }5334 echo "$as_me:$LINENO: checking malloc.h presence" >&5 5335 echo $ECHO_N "checking malloc.h presence... $ECHO_C" >&6 5846 5336 cat >conftest.$ac_ext <<_ACEOF 5847 5337 /* confdefs.h. */ … … 5852 5342 #include <malloc.h> 5853 5343 _ACEOF 5854 if { (ac_try="$ac_cpp conftest.$ac_ext" 5855 case "(($ac_try" in 5856 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5857 *) ac_try_echo=$ac_try;; 5858 esac 5859 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5860 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 5344 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 5345 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 5861 5346 ac_status=$? 5862 5347 grep -v '^ *+' conftest.er1 >conftest.err … … 5864 5349 cat conftest.err >&5 5865 5350 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5866 (exit $ac_status); } >/dev/null && { 5867 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 5868 test ! -s conftest.err 5869 }; then 5351 (exit $ac_status); } >/dev/null; then 5352 if test -s conftest.err; then 5353 ac_cpp_err=$ac_c_preproc_warn_flag 5354 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 5355 else 5356 ac_cpp_err= 5357 fi 5358 else 5359 ac_cpp_err=yes 5360 fi 5361 if test -z "$ac_cpp_err"; then 5870 5362 ac_header_preproc=yes 5871 5363 else … … 5875 5367 ac_header_preproc=no 5876 5368 fi 5877 5878 5369 rm -f conftest.err conftest.$ac_ext 5879 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&55880 echo "${ECHO_T}$ac_header_preproc" >&6 ; }5370 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 5371 echo "${ECHO_T}$ac_header_preproc" >&6 5881 5372 5882 5373 # So? What about this header? … … 5902 5393 { echo "$as_me:$LINENO: WARNING: malloc.h: in the future, the compiler will take precedence" >&5 5903 5394 echo "$as_me: WARNING: malloc.h: in the future, the compiler will take precedence" >&2;} 5904 5395 ( 5396 cat <<\_ASBOX 5397 ## ------------------------------------ ## 5398 ## Report this to the pjproject lists. ## 5399 ## ------------------------------------ ## 5400 _ASBOX 5401 ) | 5402 sed "s/^/$as_me: WARNING: /" >&2 5905 5403 ;; 5906 5404 esac 5907 {echo "$as_me:$LINENO: checking for malloc.h" >&55908 echo $ECHO_N "checking for malloc.h... $ECHO_C" >&6 ; }5405 echo "$as_me:$LINENO: checking for malloc.h" >&5 5406 echo $ECHO_N "checking for malloc.h... $ECHO_C" >&6 5909 5407 if test "${ac_cv_header_malloc_h+set}" = set; then 5910 5408 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 5912 5410 ac_cv_header_malloc_h=$ac_header_preproc 5913 5411 fi 5914 {echo "$as_me:$LINENO: result: $ac_cv_header_malloc_h" >&55915 echo "${ECHO_T}$ac_cv_header_malloc_h" >&6 ; }5412 echo "$as_me:$LINENO: result: $ac_cv_header_malloc_h" >&5 5413 echo "${ECHO_T}$ac_cv_header_malloc_h" >&6 5916 5414 5917 5415 fi … … 5925 5423 5926 5424 if test "${ac_cv_header_netdb_h+set}" = set; then 5927 {echo "$as_me:$LINENO: checking for netdb.h" >&55928 echo $ECHO_N "checking for netdb.h... $ECHO_C" >&6 ; }5425 echo "$as_me:$LINENO: checking for netdb.h" >&5 5426 echo $ECHO_N "checking for netdb.h... $ECHO_C" >&6 5929 5427 if test "${ac_cv_header_netdb_h+set}" = set; then 5930 5428 echo $ECHO_N "(cached) $ECHO_C" >&6 5931 5429 fi 5932 {echo "$as_me:$LINENO: result: $ac_cv_header_netdb_h" >&55933 echo "${ECHO_T}$ac_cv_header_netdb_h" >&6 ; }5430 echo "$as_me:$LINENO: result: $ac_cv_header_netdb_h" >&5 5431 echo "${ECHO_T}$ac_cv_header_netdb_h" >&6 5934 5432 else 5935 5433 # Is the header compilable? 5936 {echo "$as_me:$LINENO: checking netdb.h usability" >&55937 echo $ECHO_N "checking netdb.h usability... $ECHO_C" >&6 ; }5434 echo "$as_me:$LINENO: checking netdb.h usability" >&5 5435 echo $ECHO_N "checking netdb.h usability... $ECHO_C" >&6 5938 5436 cat >conftest.$ac_ext <<_ACEOF 5939 5437 /* confdefs.h. */ … … 5946 5444 _ACEOF 5947 5445 rm -f conftest.$ac_objext 5948 if { (ac_try="$ac_compile" 5949 case "(($ac_try" in 5950 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5951 *) ac_try_echo=$ac_try;; 5952 esac 5953 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5954 (eval "$ac_compile") 2>conftest.er1 5446 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5447 (eval $ac_compile) 2>conftest.er1 5955 5448 ac_status=$? 5956 5449 grep -v '^ *+' conftest.er1 >conftest.err … … 5958 5451 cat conftest.err >&5 5959 5452 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5960 (exit $ac_status); } && { 5961 test -z "$ac_c_werror_flag" || 5962 test ! -s conftest.err 5963 } && test -s conftest.$ac_objext; then 5453 (exit $ac_status); } && 5454 { ac_try='test -z "$ac_c_werror_flag" 5455 || test ! -s conftest.err' 5456 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5457 (eval $ac_try) 2>&5 5458 ac_status=$? 5459 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5460 (exit $ac_status); }; } && 5461 { ac_try='test -s conftest.$ac_objext' 5462 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5463 (eval $ac_try) 2>&5 5464 ac_status=$? 5465 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5466 (exit $ac_status); }; }; then 5964 5467 ac_header_compiler=yes 5965 5468 else … … 5967 5470 sed 's/^/| /' conftest.$ac_ext >&5 5968 5471 5969 ac_header_compiler=no 5970 fi 5971 5972 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 5973 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5974 echo "${ECHO_T}$ac_header_compiler" >&6; } 5472 ac_header_compiler=no 5473 fi 5474 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 5475 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5476 echo "${ECHO_T}$ac_header_compiler" >&6 5975 5477 5976 5478 # Is the header present? 5977 {echo "$as_me:$LINENO: checking netdb.h presence" >&55978 echo $ECHO_N "checking netdb.h presence... $ECHO_C" >&6 ; }5479 echo "$as_me:$LINENO: checking netdb.h presence" >&5 5480 echo $ECHO_N "checking netdb.h presence... $ECHO_C" >&6 5979 5481 cat >conftest.$ac_ext <<_ACEOF 5980 5482 /* confdefs.h. */ … … 5985 5487 #include <netdb.h> 5986 5488 _ACEOF 5987 if { (ac_try="$ac_cpp conftest.$ac_ext" 5988 case "(($ac_try" in 5989 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 5990 *) ac_try_echo=$ac_try;; 5991 esac 5992 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5993 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 5489 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 5490 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 5994 5491 ac_status=$? 5995 5492 grep -v '^ *+' conftest.er1 >conftest.err … … 5997 5494 cat conftest.err >&5 5998 5495 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5999 (exit $ac_status); } >/dev/null && { 6000 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 6001 test ! -s conftest.err 6002 }; then 5496 (exit $ac_status); } >/dev/null; then 5497 if test -s conftest.err; then 5498 ac_cpp_err=$ac_c_preproc_warn_flag 5499 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 5500 else 5501 ac_cpp_err= 5502 fi 5503 else 5504 ac_cpp_err=yes 5505 fi 5506 if test -z "$ac_cpp_err"; then 6003 5507 ac_header_preproc=yes 6004 5508 else … … 6008 5512 ac_header_preproc=no 6009 5513 fi 6010 6011 5514 rm -f conftest.err conftest.$ac_ext 6012 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&56013 echo "${ECHO_T}$ac_header_preproc" >&6 ; }5515 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 5516 echo "${ECHO_T}$ac_header_preproc" >&6 6014 5517 6015 5518 # So? What about this header? … … 6035 5538 { echo "$as_me:$LINENO: WARNING: netdb.h: in the future, the compiler will take precedence" >&5 6036 5539 echo "$as_me: WARNING: netdb.h: in the future, the compiler will take precedence" >&2;} 6037 5540 ( 5541 cat <<\_ASBOX 5542 ## ------------------------------------ ## 5543 ## Report this to the pjproject lists. ## 5544 ## ------------------------------------ ## 5545 _ASBOX 5546 ) | 5547 sed "s/^/$as_me: WARNING: /" >&2 6038 5548 ;; 6039 5549 esac 6040 {echo "$as_me:$LINENO: checking for netdb.h" >&56041 echo $ECHO_N "checking for netdb.h... $ECHO_C" >&6 ; }5550 echo "$as_me:$LINENO: checking for netdb.h" >&5 5551 echo $ECHO_N "checking for netdb.h... $ECHO_C" >&6 6042 5552 if test "${ac_cv_header_netdb_h+set}" = set; then 6043 5553 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 6045 5555 ac_cv_header_netdb_h=$ac_header_preproc 6046 5556 fi 6047 {echo "$as_me:$LINENO: result: $ac_cv_header_netdb_h" >&56048 echo "${ECHO_T}$ac_cv_header_netdb_h" >&6 ; }5557 echo "$as_me:$LINENO: result: $ac_cv_header_netdb_h" >&5 5558 echo "${ECHO_T}$ac_cv_header_netdb_h" >&6 6049 5559 6050 5560 fi … … 6058 5568 6059 5569 if test "${ac_cv_header_netinet_in_systm_h+set}" = set; then 6060 {echo "$as_me:$LINENO: checking for netinet/in_systm.h" >&56061 echo $ECHO_N "checking for netinet/in_systm.h... $ECHO_C" >&6 ; }5570 echo "$as_me:$LINENO: checking for netinet/in_systm.h" >&5 5571 echo $ECHO_N "checking for netinet/in_systm.h... $ECHO_C" >&6 6062 5572 if test "${ac_cv_header_netinet_in_systm_h+set}" = set; then 6063 5573 echo $ECHO_N "(cached) $ECHO_C" >&6 6064 5574 fi 6065 {echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_systm_h" >&56066 echo "${ECHO_T}$ac_cv_header_netinet_in_systm_h" >&6 ; }5575 echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_systm_h" >&5 5576 echo "${ECHO_T}$ac_cv_header_netinet_in_systm_h" >&6 6067 5577 else 6068 5578 # Is the header compilable? 6069 {echo "$as_me:$LINENO: checking netinet/in_systm.h usability" >&56070 echo $ECHO_N "checking netinet/in_systm.h usability... $ECHO_C" >&6 ; }5579 echo "$as_me:$LINENO: checking netinet/in_systm.h usability" >&5 5580 echo $ECHO_N "checking netinet/in_systm.h usability... $ECHO_C" >&6 6071 5581 cat >conftest.$ac_ext <<_ACEOF 6072 5582 /* confdefs.h. */ … … 6079 5589 _ACEOF 6080 5590 rm -f conftest.$ac_objext 6081 if { (ac_try="$ac_compile" 6082 case "(($ac_try" in 6083 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6084 *) ac_try_echo=$ac_try;; 6085 esac 6086 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6087 (eval "$ac_compile") 2>conftest.er1 5591 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5592 (eval $ac_compile) 2>conftest.er1 6088 5593 ac_status=$? 6089 5594 grep -v '^ *+' conftest.er1 >conftest.err … … 6091 5596 cat conftest.err >&5 6092 5597 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6093 (exit $ac_status); } && { 6094 test -z "$ac_c_werror_flag" || 6095 test ! -s conftest.err 6096 } && test -s conftest.$ac_objext; then 5598 (exit $ac_status); } && 5599 { ac_try='test -z "$ac_c_werror_flag" 5600 || test ! -s conftest.err' 5601 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5602 (eval $ac_try) 2>&5 5603 ac_status=$? 5604 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5605 (exit $ac_status); }; } && 5606 { ac_try='test -s conftest.$ac_objext' 5607 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5608 (eval $ac_try) 2>&5 5609 ac_status=$? 5610 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5611 (exit $ac_status); }; }; then 6097 5612 ac_header_compiler=yes 6098 5613 else … … 6100 5615 sed 's/^/| /' conftest.$ac_ext >&5 6101 5616 6102 ac_header_compiler=no 6103 fi 6104 6105 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 6106 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6107 echo "${ECHO_T}$ac_header_compiler" >&6; } 5617 ac_header_compiler=no 5618 fi 5619 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 5620 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5621 echo "${ECHO_T}$ac_header_compiler" >&6 6108 5622 6109 5623 # Is the header present? 6110 {echo "$as_me:$LINENO: checking netinet/in_systm.h presence" >&56111 echo $ECHO_N "checking netinet/in_systm.h presence... $ECHO_C" >&6 ; }5624 echo "$as_me:$LINENO: checking netinet/in_systm.h presence" >&5 5625 echo $ECHO_N "checking netinet/in_systm.h presence... $ECHO_C" >&6 6112 5626 cat >conftest.$ac_ext <<_ACEOF 6113 5627 /* confdefs.h. */ … … 6118 5632 #include <netinet/in_systm.h> 6119 5633 _ACEOF 6120 if { (ac_try="$ac_cpp conftest.$ac_ext" 6121 case "(($ac_try" in 6122 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6123 *) ac_try_echo=$ac_try;; 6124 esac 6125 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6126 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 5634 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 5635 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 6127 5636 ac_status=$? 6128 5637 grep -v '^ *+' conftest.er1 >conftest.err … … 6130 5639 cat conftest.err >&5 6131 5640 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6132 (exit $ac_status); } >/dev/null && { 6133 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 6134 test ! -s conftest.err 6135 }; then 5641 (exit $ac_status); } >/dev/null; then 5642 if test -s conftest.err; then 5643 ac_cpp_err=$ac_c_preproc_warn_flag 5644 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 5645 else 5646 ac_cpp_err= 5647 fi 5648 else 5649 ac_cpp_err=yes 5650 fi 5651 if test -z "$ac_cpp_err"; then 6136 5652 ac_header_preproc=yes 6137 5653 else … … 6141 5657 ac_header_preproc=no 6142 5658 fi 6143 6144 5659 rm -f conftest.err conftest.$ac_ext 6145 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&56146 echo "${ECHO_T}$ac_header_preproc" >&6 ; }5660 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 5661 echo "${ECHO_T}$ac_header_preproc" >&6 6147 5662 6148 5663 # So? What about this header? … … 6168 5683 { echo "$as_me:$LINENO: WARNING: netinet/in_systm.h: in the future, the compiler will take precedence" >&5 6169 5684 echo "$as_me: WARNING: netinet/in_systm.h: in the future, the compiler will take precedence" >&2;} 6170 5685 ( 5686 cat <<\_ASBOX 5687 ## ------------------------------------ ## 5688 ## Report this to the pjproject lists. ## 5689 ## ------------------------------------ ## 5690 _ASBOX 5691 ) | 5692 sed "s/^/$as_me: WARNING: /" >&2 6171 5693 ;; 6172 5694 esac 6173 {echo "$as_me:$LINENO: checking for netinet/in_systm.h" >&56174 echo $ECHO_N "checking for netinet/in_systm.h... $ECHO_C" >&6 ; }5695 echo "$as_me:$LINENO: checking for netinet/in_systm.h" >&5 5696 echo $ECHO_N "checking for netinet/in_systm.h... $ECHO_C" >&6 6175 5697 if test "${ac_cv_header_netinet_in_systm_h+set}" = set; then 6176 5698 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 6178 5700 ac_cv_header_netinet_in_systm_h=$ac_header_preproc 6179 5701 fi 6180 {echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_systm_h" >&56181 echo "${ECHO_T}$ac_cv_header_netinet_in_systm_h" >&6 ; }5702 echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_systm_h" >&5 5703 echo "${ECHO_T}$ac_cv_header_netinet_in_systm_h" >&6 6182 5704 6183 5705 fi … … 6191 5713 6192 5714 if test "${ac_cv_header_netinet_in_h+set}" = set; then 6193 {echo "$as_me:$LINENO: checking for netinet/in.h" >&56194 echo $ECHO_N "checking for netinet/in.h... $ECHO_C" >&6 ; }5715 echo "$as_me:$LINENO: checking for netinet/in.h" >&5 5716 echo $ECHO_N "checking for netinet/in.h... $ECHO_C" >&6 6195 5717 if test "${ac_cv_header_netinet_in_h+set}" = set; then 6196 5718 echo $ECHO_N "(cached) $ECHO_C" >&6 6197 5719 fi 6198 {echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_h" >&56199 echo "${ECHO_T}$ac_cv_header_netinet_in_h" >&6 ; }5720 echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_h" >&5 5721 echo "${ECHO_T}$ac_cv_header_netinet_in_h" >&6 6200 5722 else 6201 5723 # Is the header compilable? 6202 {echo "$as_me:$LINENO: checking netinet/in.h usability" >&56203 echo $ECHO_N "checking netinet/in.h usability... $ECHO_C" >&6 ; }5724 echo "$as_me:$LINENO: checking netinet/in.h usability" >&5 5725 echo $ECHO_N "checking netinet/in.h usability... $ECHO_C" >&6 6204 5726 cat >conftest.$ac_ext <<_ACEOF 6205 5727 /* confdefs.h. */ … … 6212 5734 _ACEOF 6213 5735 rm -f conftest.$ac_objext 6214 if { (ac_try="$ac_compile" 6215 case "(($ac_try" in 6216 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6217 *) ac_try_echo=$ac_try;; 6218 esac 6219 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6220 (eval "$ac_compile") 2>conftest.er1 5736 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5737 (eval $ac_compile) 2>conftest.er1 6221 5738 ac_status=$? 6222 5739 grep -v '^ *+' conftest.er1 >conftest.err … … 6224 5741 cat conftest.err >&5 6225 5742 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6226 (exit $ac_status); } && { 6227 test -z "$ac_c_werror_flag" || 6228 test ! -s conftest.err 6229 } && test -s conftest.$ac_objext; then 5743 (exit $ac_status); } && 5744 { ac_try='test -z "$ac_c_werror_flag" 5745 || test ! -s conftest.err' 5746 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5747 (eval $ac_try) 2>&5 5748 ac_status=$? 5749 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5750 (exit $ac_status); }; } && 5751 { ac_try='test -s conftest.$ac_objext' 5752 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5753 (eval $ac_try) 2>&5 5754 ac_status=$? 5755 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5756 (exit $ac_status); }; }; then 6230 5757 ac_header_compiler=yes 6231 5758 else … … 6233 5760 sed 's/^/| /' conftest.$ac_ext >&5 6234 5761 6235 ac_header_compiler=no 6236 fi 6237 6238 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 6239 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6240 echo "${ECHO_T}$ac_header_compiler" >&6; } 5762 ac_header_compiler=no 5763 fi 5764 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 5765 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5766 echo "${ECHO_T}$ac_header_compiler" >&6 6241 5767 6242 5768 # Is the header present? 6243 {echo "$as_me:$LINENO: checking netinet/in.h presence" >&56244 echo $ECHO_N "checking netinet/in.h presence... $ECHO_C" >&6 ; }5769 echo "$as_me:$LINENO: checking netinet/in.h presence" >&5 5770 echo $ECHO_N "checking netinet/in.h presence... $ECHO_C" >&6 6245 5771 cat >conftest.$ac_ext <<_ACEOF 6246 5772 /* confdefs.h. */ … … 6251 5777 #include <netinet/in.h> 6252 5778 _ACEOF 6253 if { (ac_try="$ac_cpp conftest.$ac_ext" 6254 case "(($ac_try" in 6255 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6256 *) ac_try_echo=$ac_try;; 6257 esac 6258 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6259 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 5779 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 5780 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 6260 5781 ac_status=$? 6261 5782 grep -v '^ *+' conftest.er1 >conftest.err … … 6263 5784 cat conftest.err >&5 6264 5785 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6265 (exit $ac_status); } >/dev/null && { 6266 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 6267 test ! -s conftest.err 6268 }; then 5786 (exit $ac_status); } >/dev/null; then 5787 if test -s conftest.err; then 5788 ac_cpp_err=$ac_c_preproc_warn_flag 5789 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 5790 else 5791 ac_cpp_err= 5792 fi 5793 else 5794 ac_cpp_err=yes 5795 fi 5796 if test -z "$ac_cpp_err"; then 6269 5797 ac_header_preproc=yes 6270 5798 else … … 6274 5802 ac_header_preproc=no 6275 5803 fi 6276 6277 5804 rm -f conftest.err conftest.$ac_ext 6278 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&56279 echo "${ECHO_T}$ac_header_preproc" >&6 ; }5805 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 5806 echo "${ECHO_T}$ac_header_preproc" >&6 6280 5807 6281 5808 # So? What about this header? … … 6301 5828 { echo "$as_me:$LINENO: WARNING: netinet/in.h: in the future, the compiler will take precedence" >&5 6302 5829 echo "$as_me: WARNING: netinet/in.h: in the future, the compiler will take precedence" >&2;} 6303 5830 ( 5831 cat <<\_ASBOX 5832 ## ------------------------------------ ## 5833 ## Report this to the pjproject lists. ## 5834 ## ------------------------------------ ## 5835 _ASBOX 5836 ) | 5837 sed "s/^/$as_me: WARNING: /" >&2 6304 5838 ;; 6305 5839 esac 6306 {echo "$as_me:$LINENO: checking for netinet/in.h" >&56307 echo $ECHO_N "checking for netinet/in.h... $ECHO_C" >&6 ; }5840 echo "$as_me:$LINENO: checking for netinet/in.h" >&5 5841 echo $ECHO_N "checking for netinet/in.h... $ECHO_C" >&6 6308 5842 if test "${ac_cv_header_netinet_in_h+set}" = set; then 6309 5843 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 6311 5845 ac_cv_header_netinet_in_h=$ac_header_preproc 6312 5846 fi 6313 {echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_h" >&56314 echo "${ECHO_T}$ac_cv_header_netinet_in_h" >&6 ; }5847 echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_h" >&5 5848 echo "${ECHO_T}$ac_cv_header_netinet_in_h" >&6 6315 5849 6316 5850 fi … … 6323 5857 6324 5858 6325 {echo "$as_me:$LINENO: checking for netinet/ip.h" >&56326 echo $ECHO_N "checking for netinet/ip.h... $ECHO_C" >&6 ; }5859 echo "$as_me:$LINENO: checking for netinet/ip.h" >&5 5860 echo $ECHO_N "checking for netinet/ip.h... $ECHO_C" >&6 6327 5861 if test "${ac_cv_header_netinet_ip_h+set}" = set; then 6328 5862 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 6342 5876 _ACEOF 6343 5877 rm -f conftest.$ac_objext 6344 if { (ac_try="$ac_compile" 6345 case "(($ac_try" in 6346 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6347 *) ac_try_echo=$ac_try;; 6348 esac 6349 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6350 (eval "$ac_compile") 2>conftest.er1 5878 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5879 (eval $ac_compile) 2>conftest.er1 6351 5880 ac_status=$? 6352 5881 grep -v '^ *+' conftest.er1 >conftest.err … … 6354 5883 cat conftest.err >&5 6355 5884 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6356 (exit $ac_status); } && { 6357 test -z "$ac_c_werror_flag" || 6358 test ! -s conftest.err 6359 } && test -s conftest.$ac_objext; then 5885 (exit $ac_status); } && 5886 { ac_try='test -z "$ac_c_werror_flag" 5887 || test ! -s conftest.err' 5888 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5889 (eval $ac_try) 2>&5 5890 ac_status=$? 5891 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5892 (exit $ac_status); }; } && 5893 { ac_try='test -s conftest.$ac_objext' 5894 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5895 (eval $ac_try) 2>&5 5896 ac_status=$? 5897 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5898 (exit $ac_status); }; }; then 6360 5899 ac_cv_header_netinet_ip_h=yes 6361 5900 else … … 6363 5902 sed 's/^/| /' conftest.$ac_ext >&5 6364 5903 6365 ac_cv_header_netinet_ip_h=no 6366 fi 6367 6368 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 6369 fi 6370 { echo "$as_me:$LINENO: result: $ac_cv_header_netinet_ip_h" >&5 6371 echo "${ECHO_T}$ac_cv_header_netinet_ip_h" >&6; } 5904 ac_cv_header_netinet_ip_h=no 5905 fi 5906 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 5907 fi 5908 echo "$as_me:$LINENO: result: $ac_cv_header_netinet_ip_h" >&5 5909 echo "${ECHO_T}$ac_cv_header_netinet_ip_h" >&6 6372 5910 if test $ac_cv_header_netinet_ip_h = yes; then 6373 5911 cat >>confdefs.h <<\_ACEOF … … 6379 5917 6380 5918 if test "${ac_cv_header_ifaddrs_h+set}" = set; then 6381 {echo "$as_me:$LINENO: checking for ifaddrs.h" >&56382 echo $ECHO_N "checking for ifaddrs.h... $ECHO_C" >&6 ; }5919 echo "$as_me:$LINENO: checking for ifaddrs.h" >&5 5920 echo $ECHO_N "checking for ifaddrs.h... $ECHO_C" >&6 6383 5921 if test "${ac_cv_header_ifaddrs_h+set}" = set; then 6384 5922 echo $ECHO_N "(cached) $ECHO_C" >&6 6385 5923 fi 6386 {echo "$as_me:$LINENO: result: $ac_cv_header_ifaddrs_h" >&56387 echo "${ECHO_T}$ac_cv_header_ifaddrs_h" >&6 ; }5924 echo "$as_me:$LINENO: result: $ac_cv_header_ifaddrs_h" >&5 5925 echo "${ECHO_T}$ac_cv_header_ifaddrs_h" >&6 6388 5926 else 6389 5927 # Is the header compilable? 6390 {echo "$as_me:$LINENO: checking ifaddrs.h usability" >&56391 echo $ECHO_N "checking ifaddrs.h usability... $ECHO_C" >&6 ; }5928 echo "$as_me:$LINENO: checking ifaddrs.h usability" >&5 5929 echo $ECHO_N "checking ifaddrs.h usability... $ECHO_C" >&6 6392 5930 cat >conftest.$ac_ext <<_ACEOF 6393 5931 /* confdefs.h. */ … … 6400 5938 _ACEOF 6401 5939 rm -f conftest.$ac_objext 6402 if { (ac_try="$ac_compile" 6403 case "(($ac_try" in 6404 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6405 *) ac_try_echo=$ac_try;; 6406 esac 6407 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6408 (eval "$ac_compile") 2>conftest.er1 5940 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5941 (eval $ac_compile) 2>conftest.er1 6409 5942 ac_status=$? 6410 5943 grep -v '^ *+' conftest.er1 >conftest.err … … 6412 5945 cat conftest.err >&5 6413 5946 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6414 (exit $ac_status); } && { 6415 test -z "$ac_c_werror_flag" || 6416 test ! -s conftest.err 6417 } && test -s conftest.$ac_objext; then 5947 (exit $ac_status); } && 5948 { ac_try='test -z "$ac_c_werror_flag" 5949 || test ! -s conftest.err' 5950 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5951 (eval $ac_try) 2>&5 5952 ac_status=$? 5953 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5954 (exit $ac_status); }; } && 5955 { ac_try='test -s conftest.$ac_objext' 5956 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 5957 (eval $ac_try) 2>&5 5958 ac_status=$? 5959 echo "$as_me:$LINENO: \$? = $ac_status" >&5 5960 (exit $ac_status); }; }; then 6418 5961 ac_header_compiler=yes 6419 5962 else … … 6421 5964 sed 's/^/| /' conftest.$ac_ext >&5 6422 5965 6423 ac_header_compiler=no 6424 fi 6425 6426 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 6427 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6428 echo "${ECHO_T}$ac_header_compiler" >&6; } 5966 ac_header_compiler=no 5967 fi 5968 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 5969 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 5970 echo "${ECHO_T}$ac_header_compiler" >&6 6429 5971 6430 5972 # Is the header present? 6431 {echo "$as_me:$LINENO: checking ifaddrs.h presence" >&56432 echo $ECHO_N "checking ifaddrs.h presence... $ECHO_C" >&6 ; }5973 echo "$as_me:$LINENO: checking ifaddrs.h presence" >&5 5974 echo $ECHO_N "checking ifaddrs.h presence... $ECHO_C" >&6 6433 5975 cat >conftest.$ac_ext <<_ACEOF 6434 5976 /* confdefs.h. */ … … 6439 5981 #include <ifaddrs.h> 6440 5982 _ACEOF 6441 if { (ac_try="$ac_cpp conftest.$ac_ext" 6442 case "(($ac_try" in 6443 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6444 *) ac_try_echo=$ac_try;; 6445 esac 6446 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6447 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 5983 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 5984 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 6448 5985 ac_status=$? 6449 5986 grep -v '^ *+' conftest.er1 >conftest.err … … 6451 5988 cat conftest.err >&5 6452 5989 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6453 (exit $ac_status); } >/dev/null && { 6454 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 6455 test ! -s conftest.err 6456 }; then 5990 (exit $ac_status); } >/dev/null; then 5991 if test -s conftest.err; then 5992 ac_cpp_err=$ac_c_preproc_warn_flag 5993 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 5994 else 5995 ac_cpp_err= 5996 fi 5997 else 5998 ac_cpp_err=yes 5999 fi 6000 if test -z "$ac_cpp_err"; then 6457 6001 ac_header_preproc=yes 6458 6002 else … … 6462 6006 ac_header_preproc=no 6463 6007 fi 6464 6465 6008 rm -f conftest.err conftest.$ac_ext 6466 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&56467 echo "${ECHO_T}$ac_header_preproc" >&6 ; }6009 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 6010 echo "${ECHO_T}$ac_header_preproc" >&6 6468 6011 6469 6012 # So? What about this header? … … 6489 6032 { echo "$as_me:$LINENO: WARNING: ifaddrs.h: in the future, the compiler will take precedence" >&5 6490 6033 echo "$as_me: WARNING: ifaddrs.h: in the future, the compiler will take precedence" >&2;} 6491 6034 ( 6035 cat <<\_ASBOX 6036 ## ------------------------------------ ## 6037 ## Report this to the pjproject lists. ## 6038 ## ------------------------------------ ## 6039 _ASBOX 6040 ) | 6041 sed "s/^/$as_me: WARNING: /" >&2 6492 6042 ;; 6493 6043 esac 6494 {echo "$as_me:$LINENO: checking for ifaddrs.h" >&56495 echo $ECHO_N "checking for ifaddrs.h... $ECHO_C" >&6 ; }6044 echo "$as_me:$LINENO: checking for ifaddrs.h" >&5 6045 echo $ECHO_N "checking for ifaddrs.h... $ECHO_C" >&6 6496 6046 if test "${ac_cv_header_ifaddrs_h+set}" = set; then 6497 6047 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 6499 6049 ac_cv_header_ifaddrs_h=$ac_header_preproc 6500 6050 fi 6501 {echo "$as_me:$LINENO: result: $ac_cv_header_ifaddrs_h" >&56502 echo "${ECHO_T}$ac_cv_header_ifaddrs_h" >&6 ; }6051 echo "$as_me:$LINENO: result: $ac_cv_header_ifaddrs_h" >&5 6052 echo "${ECHO_T}$ac_cv_header_ifaddrs_h" >&6 6503 6053 6504 6054 fi … … 6512 6062 6513 6063 if test "${ac_cv_header_semaphore_h+set}" = set; then 6514 {echo "$as_me:$LINENO: checking for semaphore.h" >&56515 echo $ECHO_N "checking for semaphore.h... $ECHO_C" >&6 ; }6064 echo "$as_me:$LINENO: checking for semaphore.h" >&5 6065 echo $ECHO_N "checking for semaphore.h... $ECHO_C" >&6 6516 6066 if test "${ac_cv_header_semaphore_h+set}" = set; then 6517 6067 echo $ECHO_N "(cached) $ECHO_C" >&6 6518 6068 fi 6519 {echo "$as_me:$LINENO: result: $ac_cv_header_semaphore_h" >&56520 echo "${ECHO_T}$ac_cv_header_semaphore_h" >&6 ; }6069 echo "$as_me:$LINENO: result: $ac_cv_header_semaphore_h" >&5 6070 echo "${ECHO_T}$ac_cv_header_semaphore_h" >&6 6521 6071 else 6522 6072 # Is the header compilable? 6523 {echo "$as_me:$LINENO: checking semaphore.h usability" >&56524 echo $ECHO_N "checking semaphore.h usability... $ECHO_C" >&6 ; }6073 echo "$as_me:$LINENO: checking semaphore.h usability" >&5 6074 echo $ECHO_N "checking semaphore.h usability... $ECHO_C" >&6 6525 6075 cat >conftest.$ac_ext <<_ACEOF 6526 6076 /* confdefs.h. */ … … 6533 6083 _ACEOF 6534 6084 rm -f conftest.$ac_objext 6535 if { (ac_try="$ac_compile" 6536 case "(($ac_try" in 6537 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6538 *) ac_try_echo=$ac_try;; 6539 esac 6540 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6541 (eval "$ac_compile") 2>conftest.er1 6085 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6086 (eval $ac_compile) 2>conftest.er1 6542 6087 ac_status=$? 6543 6088 grep -v '^ *+' conftest.er1 >conftest.err … … 6545 6090 cat conftest.err >&5 6546 6091 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6547 (exit $ac_status); } && { 6548 test -z "$ac_c_werror_flag" || 6549 test ! -s conftest.err 6550 } && test -s conftest.$ac_objext; then 6092 (exit $ac_status); } && 6093 { ac_try='test -z "$ac_c_werror_flag" 6094 || test ! -s conftest.err' 6095 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6096 (eval $ac_try) 2>&5 6097 ac_status=$? 6098 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6099 (exit $ac_status); }; } && 6100 { ac_try='test -s conftest.$ac_objext' 6101 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6102 (eval $ac_try) 2>&5 6103 ac_status=$? 6104 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6105 (exit $ac_status); }; }; then 6551 6106 ac_header_compiler=yes 6552 6107 else … … 6554 6109 sed 's/^/| /' conftest.$ac_ext >&5 6555 6110 6556 ac_header_compiler=no 6557 fi 6558 6559 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 6560 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6561 echo "${ECHO_T}$ac_header_compiler" >&6; } 6111 ac_header_compiler=no 6112 fi 6113 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 6114 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6115 echo "${ECHO_T}$ac_header_compiler" >&6 6562 6116 6563 6117 # Is the header present? 6564 {echo "$as_me:$LINENO: checking semaphore.h presence" >&56565 echo $ECHO_N "checking semaphore.h presence... $ECHO_C" >&6 ; }6118 echo "$as_me:$LINENO: checking semaphore.h presence" >&5 6119 echo $ECHO_N "checking semaphore.h presence... $ECHO_C" >&6 6566 6120 cat >conftest.$ac_ext <<_ACEOF 6567 6121 /* confdefs.h. */ … … 6572 6126 #include <semaphore.h> 6573 6127 _ACEOF 6574 if { (ac_try="$ac_cpp conftest.$ac_ext" 6575 case "(($ac_try" in 6576 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6577 *) ac_try_echo=$ac_try;; 6578 esac 6579 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6580 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 6128 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 6129 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 6581 6130 ac_status=$? 6582 6131 grep -v '^ *+' conftest.er1 >conftest.err … … 6584 6133 cat conftest.err >&5 6585 6134 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6586 (exit $ac_status); } >/dev/null && { 6587 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 6588 test ! -s conftest.err 6589 }; then 6135 (exit $ac_status); } >/dev/null; then 6136 if test -s conftest.err; then 6137 ac_cpp_err=$ac_c_preproc_warn_flag 6138 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 6139 else 6140 ac_cpp_err= 6141 fi 6142 else 6143 ac_cpp_err=yes 6144 fi 6145 if test -z "$ac_cpp_err"; then 6590 6146 ac_header_preproc=yes 6591 6147 else … … 6595 6151 ac_header_preproc=no 6596 6152 fi 6597 6598 6153 rm -f conftest.err conftest.$ac_ext 6599 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&56600 echo "${ECHO_T}$ac_header_preproc" >&6 ; }6154 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 6155 echo "${ECHO_T}$ac_header_preproc" >&6 6601 6156 6602 6157 # So? What about this header? … … 6622 6177 { echo "$as_me:$LINENO: WARNING: semaphore.h: in the future, the compiler will take precedence" >&5 6623 6178 echo "$as_me: WARNING: semaphore.h: in the future, the compiler will take precedence" >&2;} 6624 6179 ( 6180 cat <<\_ASBOX 6181 ## ------------------------------------ ## 6182 ## Report this to the pjproject lists. ## 6183 ## ------------------------------------ ## 6184 _ASBOX 6185 ) | 6186 sed "s/^/$as_me: WARNING: /" >&2 6625 6187 ;; 6626 6188 esac 6627 {echo "$as_me:$LINENO: checking for semaphore.h" >&56628 echo $ECHO_N "checking for semaphore.h... $ECHO_C" >&6 ; }6189 echo "$as_me:$LINENO: checking for semaphore.h" >&5 6190 echo $ECHO_N "checking for semaphore.h... $ECHO_C" >&6 6629 6191 if test "${ac_cv_header_semaphore_h+set}" = set; then 6630 6192 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 6632 6194 ac_cv_header_semaphore_h=$ac_header_preproc 6633 6195 fi 6634 {echo "$as_me:$LINENO: result: $ac_cv_header_semaphore_h" >&56635 echo "${ECHO_T}$ac_cv_header_semaphore_h" >&6 ; }6196 echo "$as_me:$LINENO: result: $ac_cv_header_semaphore_h" >&5 6197 echo "${ECHO_T}$ac_cv_header_semaphore_h" >&6 6636 6198 6637 6199 fi … … 6645 6207 6646 6208 if test "${ac_cv_header_setjmp_h+set}" = set; then 6647 {echo "$as_me:$LINENO: checking for setjmp.h" >&56648 echo $ECHO_N "checking for setjmp.h... $ECHO_C" >&6 ; }6209 echo "$as_me:$LINENO: checking for setjmp.h" >&5 6210 echo $ECHO_N "checking for setjmp.h... $ECHO_C" >&6 6649 6211 if test "${ac_cv_header_setjmp_h+set}" = set; then 6650 6212 echo $ECHO_N "(cached) $ECHO_C" >&6 6651 6213 fi 6652 {echo "$as_me:$LINENO: result: $ac_cv_header_setjmp_h" >&56653 echo "${ECHO_T}$ac_cv_header_setjmp_h" >&6 ; }6214 echo "$as_me:$LINENO: result: $ac_cv_header_setjmp_h" >&5 6215 echo "${ECHO_T}$ac_cv_header_setjmp_h" >&6 6654 6216 else 6655 6217 # Is the header compilable? 6656 {echo "$as_me:$LINENO: checking setjmp.h usability" >&56657 echo $ECHO_N "checking setjmp.h usability... $ECHO_C" >&6 ; }6218 echo "$as_me:$LINENO: checking setjmp.h usability" >&5 6219 echo $ECHO_N "checking setjmp.h usability... $ECHO_C" >&6 6658 6220 cat >conftest.$ac_ext <<_ACEOF 6659 6221 /* confdefs.h. */ … … 6666 6228 _ACEOF 6667 6229 rm -f conftest.$ac_objext 6668 if { (ac_try="$ac_compile" 6669 case "(($ac_try" in 6670 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6671 *) ac_try_echo=$ac_try;; 6672 esac 6673 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6674 (eval "$ac_compile") 2>conftest.er1 6230 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6231 (eval $ac_compile) 2>conftest.er1 6675 6232 ac_status=$? 6676 6233 grep -v '^ *+' conftest.er1 >conftest.err … … 6678 6235 cat conftest.err >&5 6679 6236 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6680 (exit $ac_status); } && { 6681 test -z "$ac_c_werror_flag" || 6682 test ! -s conftest.err 6683 } && test -s conftest.$ac_objext; then 6237 (exit $ac_status); } && 6238 { ac_try='test -z "$ac_c_werror_flag" 6239 || test ! -s conftest.err' 6240 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6241 (eval $ac_try) 2>&5 6242 ac_status=$? 6243 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6244 (exit $ac_status); }; } && 6245 { ac_try='test -s conftest.$ac_objext' 6246 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6247 (eval $ac_try) 2>&5 6248 ac_status=$? 6249 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6250 (exit $ac_status); }; }; then 6684 6251 ac_header_compiler=yes 6685 6252 else … … 6687 6254 sed 's/^/| /' conftest.$ac_ext >&5 6688 6255 6689 ac_header_compiler=no 6690 fi 6691 6692 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 6693 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6694 echo "${ECHO_T}$ac_header_compiler" >&6; } 6256 ac_header_compiler=no 6257 fi 6258 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 6259 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6260 echo "${ECHO_T}$ac_header_compiler" >&6 6695 6261 6696 6262 # Is the header present? 6697 {echo "$as_me:$LINENO: checking setjmp.h presence" >&56698 echo $ECHO_N "checking setjmp.h presence... $ECHO_C" >&6 ; }6263 echo "$as_me:$LINENO: checking setjmp.h presence" >&5 6264 echo $ECHO_N "checking setjmp.h presence... $ECHO_C" >&6 6699 6265 cat >conftest.$ac_ext <<_ACEOF 6700 6266 /* confdefs.h. */ … … 6705 6271 #include <setjmp.h> 6706 6272 _ACEOF 6707 if { (ac_try="$ac_cpp conftest.$ac_ext" 6708 case "(($ac_try" in 6709 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6710 *) ac_try_echo=$ac_try;; 6711 esac 6712 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6713 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 6273 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 6274 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 6714 6275 ac_status=$? 6715 6276 grep -v '^ *+' conftest.er1 >conftest.err … … 6717 6278 cat conftest.err >&5 6718 6279 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6719 (exit $ac_status); } >/dev/null && { 6720 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 6721 test ! -s conftest.err 6722 }; then 6280 (exit $ac_status); } >/dev/null; then 6281 if test -s conftest.err; then 6282 ac_cpp_err=$ac_c_preproc_warn_flag 6283 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 6284 else 6285 ac_cpp_err= 6286 fi 6287 else 6288 ac_cpp_err=yes 6289 fi 6290 if test -z "$ac_cpp_err"; then 6723 6291 ac_header_preproc=yes 6724 6292 else … … 6728 6296 ac_header_preproc=no 6729 6297 fi 6730 6731 6298 rm -f conftest.err conftest.$ac_ext 6732 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&56733 echo "${ECHO_T}$ac_header_preproc" >&6 ; }6299 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 6300 echo "${ECHO_T}$ac_header_preproc" >&6 6734 6301 6735 6302 # So? What about this header? … … 6755 6322 { echo "$as_me:$LINENO: WARNING: setjmp.h: in the future, the compiler will take precedence" >&5 6756 6323 echo "$as_me: WARNING: setjmp.h: in the future, the compiler will take precedence" >&2;} 6757 6324 ( 6325 cat <<\_ASBOX 6326 ## ------------------------------------ ## 6327 ## Report this to the pjproject lists. ## 6328 ## ------------------------------------ ## 6329 _ASBOX 6330 ) | 6331 sed "s/^/$as_me: WARNING: /" >&2 6758 6332 ;; 6759 6333 esac 6760 {echo "$as_me:$LINENO: checking for setjmp.h" >&56761 echo $ECHO_N "checking for setjmp.h... $ECHO_C" >&6 ; }6334 echo "$as_me:$LINENO: checking for setjmp.h" >&5 6335 echo $ECHO_N "checking for setjmp.h... $ECHO_C" >&6 6762 6336 if test "${ac_cv_header_setjmp_h+set}" = set; then 6763 6337 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 6765 6339 ac_cv_header_setjmp_h=$ac_header_preproc 6766 6340 fi 6767 {echo "$as_me:$LINENO: result: $ac_cv_header_setjmp_h" >&56768 echo "${ECHO_T}$ac_cv_header_setjmp_h" >&6 ; }6341 echo "$as_me:$LINENO: result: $ac_cv_header_setjmp_h" >&5 6342 echo "${ECHO_T}$ac_cv_header_setjmp_h" >&6 6769 6343 6770 6344 fi … … 6778 6352 6779 6353 if test "${ac_cv_header_stdarg_h+set}" = set; then 6780 {echo "$as_me:$LINENO: checking for stdarg.h" >&56781 echo $ECHO_N "checking for stdarg.h... $ECHO_C" >&6 ; }6354 echo "$as_me:$LINENO: checking for stdarg.h" >&5 6355 echo $ECHO_N "checking for stdarg.h... $ECHO_C" >&6 6782 6356 if test "${ac_cv_header_stdarg_h+set}" = set; then 6783 6357 echo $ECHO_N "(cached) $ECHO_C" >&6 6784 6358 fi 6785 {echo "$as_me:$LINENO: result: $ac_cv_header_stdarg_h" >&56786 echo "${ECHO_T}$ac_cv_header_stdarg_h" >&6 ; }6359 echo "$as_me:$LINENO: result: $ac_cv_header_stdarg_h" >&5 6360 echo "${ECHO_T}$ac_cv_header_stdarg_h" >&6 6787 6361 else 6788 6362 # Is the header compilable? 6789 {echo "$as_me:$LINENO: checking stdarg.h usability" >&56790 echo $ECHO_N "checking stdarg.h usability... $ECHO_C" >&6 ; }6363 echo "$as_me:$LINENO: checking stdarg.h usability" >&5 6364 echo $ECHO_N "checking stdarg.h usability... $ECHO_C" >&6 6791 6365 cat >conftest.$ac_ext <<_ACEOF 6792 6366 /* confdefs.h. */ … … 6799 6373 _ACEOF 6800 6374 rm -f conftest.$ac_objext 6801 if { (ac_try="$ac_compile" 6802 case "(($ac_try" in 6803 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6804 *) ac_try_echo=$ac_try;; 6805 esac 6806 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6807 (eval "$ac_compile") 2>conftest.er1 6375 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6376 (eval $ac_compile) 2>conftest.er1 6808 6377 ac_status=$? 6809 6378 grep -v '^ *+' conftest.er1 >conftest.err … … 6811 6380 cat conftest.err >&5 6812 6381 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6813 (exit $ac_status); } && { 6814 test -z "$ac_c_werror_flag" || 6815 test ! -s conftest.err 6816 } && test -s conftest.$ac_objext; then 6382 (exit $ac_status); } && 6383 { ac_try='test -z "$ac_c_werror_flag" 6384 || test ! -s conftest.err' 6385 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6386 (eval $ac_try) 2>&5 6387 ac_status=$? 6388 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6389 (exit $ac_status); }; } && 6390 { ac_try='test -s conftest.$ac_objext' 6391 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6392 (eval $ac_try) 2>&5 6393 ac_status=$? 6394 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6395 (exit $ac_status); }; }; then 6817 6396 ac_header_compiler=yes 6818 6397 else … … 6820 6399 sed 's/^/| /' conftest.$ac_ext >&5 6821 6400 6822 ac_header_compiler=no 6823 fi 6824 6825 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 6826 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6827 echo "${ECHO_T}$ac_header_compiler" >&6; } 6401 ac_header_compiler=no 6402 fi 6403 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 6404 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6405 echo "${ECHO_T}$ac_header_compiler" >&6 6828 6406 6829 6407 # Is the header present? 6830 {echo "$as_me:$LINENO: checking stdarg.h presence" >&56831 echo $ECHO_N "checking stdarg.h presence... $ECHO_C" >&6 ; }6408 echo "$as_me:$LINENO: checking stdarg.h presence" >&5 6409 echo $ECHO_N "checking stdarg.h presence... $ECHO_C" >&6 6832 6410 cat >conftest.$ac_ext <<_ACEOF 6833 6411 /* confdefs.h. */ … … 6838 6416 #include <stdarg.h> 6839 6417 _ACEOF 6840 if { (ac_try="$ac_cpp conftest.$ac_ext" 6841 case "(($ac_try" in 6842 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6843 *) ac_try_echo=$ac_try;; 6844 esac 6845 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6846 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 6418 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 6419 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 6847 6420 ac_status=$? 6848 6421 grep -v '^ *+' conftest.er1 >conftest.err … … 6850 6423 cat conftest.err >&5 6851 6424 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6852 (exit $ac_status); } >/dev/null && { 6853 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 6854 test ! -s conftest.err 6855 }; then 6425 (exit $ac_status); } >/dev/null; then 6426 if test -s conftest.err; then 6427 ac_cpp_err=$ac_c_preproc_warn_flag 6428 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 6429 else 6430 ac_cpp_err= 6431 fi 6432 else 6433 ac_cpp_err=yes 6434 fi 6435 if test -z "$ac_cpp_err"; then 6856 6436 ac_header_preproc=yes 6857 6437 else … … 6861 6441 ac_header_preproc=no 6862 6442 fi 6863 6864 6443 rm -f conftest.err conftest.$ac_ext 6865 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&56866 echo "${ECHO_T}$ac_header_preproc" >&6 ; }6444 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 6445 echo "${ECHO_T}$ac_header_preproc" >&6 6867 6446 6868 6447 # So? What about this header? … … 6888 6467 { echo "$as_me:$LINENO: WARNING: stdarg.h: in the future, the compiler will take precedence" >&5 6889 6468 echo "$as_me: WARNING: stdarg.h: in the future, the compiler will take precedence" >&2;} 6890 6469 ( 6470 cat <<\_ASBOX 6471 ## ------------------------------------ ## 6472 ## Report this to the pjproject lists. ## 6473 ## ------------------------------------ ## 6474 _ASBOX 6475 ) | 6476 sed "s/^/$as_me: WARNING: /" >&2 6891 6477 ;; 6892 6478 esac 6893 {echo "$as_me:$LINENO: checking for stdarg.h" >&56894 echo $ECHO_N "checking for stdarg.h... $ECHO_C" >&6 ; }6479 echo "$as_me:$LINENO: checking for stdarg.h" >&5 6480 echo $ECHO_N "checking for stdarg.h... $ECHO_C" >&6 6895 6481 if test "${ac_cv_header_stdarg_h+set}" = set; then 6896 6482 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 6898 6484 ac_cv_header_stdarg_h=$ac_header_preproc 6899 6485 fi 6900 {echo "$as_me:$LINENO: result: $ac_cv_header_stdarg_h" >&56901 echo "${ECHO_T}$ac_cv_header_stdarg_h" >&6 ; }6486 echo "$as_me:$LINENO: result: $ac_cv_header_stdarg_h" >&5 6487 echo "${ECHO_T}$ac_cv_header_stdarg_h" >&6 6902 6488 6903 6489 fi … … 6911 6497 6912 6498 if test "${ac_cv_header_stddef_h+set}" = set; then 6913 {echo "$as_me:$LINENO: checking for stddef.h" >&56914 echo $ECHO_N "checking for stddef.h... $ECHO_C" >&6 ; }6499 echo "$as_me:$LINENO: checking for stddef.h" >&5 6500 echo $ECHO_N "checking for stddef.h... $ECHO_C" >&6 6915 6501 if test "${ac_cv_header_stddef_h+set}" = set; then 6916 6502 echo $ECHO_N "(cached) $ECHO_C" >&6 6917 6503 fi 6918 {echo "$as_me:$LINENO: result: $ac_cv_header_stddef_h" >&56919 echo "${ECHO_T}$ac_cv_header_stddef_h" >&6 ; }6504 echo "$as_me:$LINENO: result: $ac_cv_header_stddef_h" >&5 6505 echo "${ECHO_T}$ac_cv_header_stddef_h" >&6 6920 6506 else 6921 6507 # Is the header compilable? 6922 {echo "$as_me:$LINENO: checking stddef.h usability" >&56923 echo $ECHO_N "checking stddef.h usability... $ECHO_C" >&6 ; }6508 echo "$as_me:$LINENO: checking stddef.h usability" >&5 6509 echo $ECHO_N "checking stddef.h usability... $ECHO_C" >&6 6924 6510 cat >conftest.$ac_ext <<_ACEOF 6925 6511 /* confdefs.h. */ … … 6932 6518 _ACEOF 6933 6519 rm -f conftest.$ac_objext 6934 if { (ac_try="$ac_compile" 6935 case "(($ac_try" in 6936 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6937 *) ac_try_echo=$ac_try;; 6938 esac 6939 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6940 (eval "$ac_compile") 2>conftest.er1 6520 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6521 (eval $ac_compile) 2>conftest.er1 6941 6522 ac_status=$? 6942 6523 grep -v '^ *+' conftest.er1 >conftest.err … … 6944 6525 cat conftest.err >&5 6945 6526 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6946 (exit $ac_status); } && { 6947 test -z "$ac_c_werror_flag" || 6948 test ! -s conftest.err 6949 } && test -s conftest.$ac_objext; then 6527 (exit $ac_status); } && 6528 { ac_try='test -z "$ac_c_werror_flag" 6529 || test ! -s conftest.err' 6530 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6531 (eval $ac_try) 2>&5 6532 ac_status=$? 6533 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6534 (exit $ac_status); }; } && 6535 { ac_try='test -s conftest.$ac_objext' 6536 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6537 (eval $ac_try) 2>&5 6538 ac_status=$? 6539 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6540 (exit $ac_status); }; }; then 6950 6541 ac_header_compiler=yes 6951 6542 else … … 6953 6544 sed 's/^/| /' conftest.$ac_ext >&5 6954 6545 6955 ac_header_compiler=no 6956 fi 6957 6958 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 6959 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6960 echo "${ECHO_T}$ac_header_compiler" >&6; } 6546 ac_header_compiler=no 6547 fi 6548 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 6549 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6550 echo "${ECHO_T}$ac_header_compiler" >&6 6961 6551 6962 6552 # Is the header present? 6963 {echo "$as_me:$LINENO: checking stddef.h presence" >&56964 echo $ECHO_N "checking stddef.h presence... $ECHO_C" >&6 ; }6553 echo "$as_me:$LINENO: checking stddef.h presence" >&5 6554 echo $ECHO_N "checking stddef.h presence... $ECHO_C" >&6 6965 6555 cat >conftest.$ac_ext <<_ACEOF 6966 6556 /* confdefs.h. */ … … 6971 6561 #include <stddef.h> 6972 6562 _ACEOF 6973 if { (ac_try="$ac_cpp conftest.$ac_ext" 6974 case "(($ac_try" in 6975 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 6976 *) ac_try_echo=$ac_try;; 6977 esac 6978 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 6979 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 6563 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 6564 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 6980 6565 ac_status=$? 6981 6566 grep -v '^ *+' conftest.er1 >conftest.err … … 6983 6568 cat conftest.err >&5 6984 6569 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6985 (exit $ac_status); } >/dev/null && { 6986 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 6987 test ! -s conftest.err 6988 }; then 6570 (exit $ac_status); } >/dev/null; then 6571 if test -s conftest.err; then 6572 ac_cpp_err=$ac_c_preproc_warn_flag 6573 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 6574 else 6575 ac_cpp_err= 6576 fi 6577 else 6578 ac_cpp_err=yes 6579 fi 6580 if test -z "$ac_cpp_err"; then 6989 6581 ac_header_preproc=yes 6990 6582 else … … 6994 6586 ac_header_preproc=no 6995 6587 fi 6996 6997 6588 rm -f conftest.err conftest.$ac_ext 6998 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&56999 echo "${ECHO_T}$ac_header_preproc" >&6 ; }6589 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 6590 echo "${ECHO_T}$ac_header_preproc" >&6 7000 6591 7001 6592 # So? What about this header? … … 7021 6612 { echo "$as_me:$LINENO: WARNING: stddef.h: in the future, the compiler will take precedence" >&5 7022 6613 echo "$as_me: WARNING: stddef.h: in the future, the compiler will take precedence" >&2;} 7023 6614 ( 6615 cat <<\_ASBOX 6616 ## ------------------------------------ ## 6617 ## Report this to the pjproject lists. ## 6618 ## ------------------------------------ ## 6619 _ASBOX 6620 ) | 6621 sed "s/^/$as_me: WARNING: /" >&2 7024 6622 ;; 7025 6623 esac 7026 {echo "$as_me:$LINENO: checking for stddef.h" >&57027 echo $ECHO_N "checking for stddef.h... $ECHO_C" >&6 ; }6624 echo "$as_me:$LINENO: checking for stddef.h" >&5 6625 echo $ECHO_N "checking for stddef.h... $ECHO_C" >&6 7028 6626 if test "${ac_cv_header_stddef_h+set}" = set; then 7029 6627 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 7031 6629 ac_cv_header_stddef_h=$ac_header_preproc 7032 6630 fi 7033 {echo "$as_me:$LINENO: result: $ac_cv_header_stddef_h" >&57034 echo "${ECHO_T}$ac_cv_header_stddef_h" >&6 ; }6631 echo "$as_me:$LINENO: result: $ac_cv_header_stddef_h" >&5 6632 echo "${ECHO_T}$ac_cv_header_stddef_h" >&6 7035 6633 7036 6634 fi … … 7044 6642 7045 6643 if test "${ac_cv_header_stdio_h+set}" = set; then 7046 {echo "$as_me:$LINENO: checking for stdio.h" >&57047 echo $ECHO_N "checking for stdio.h... $ECHO_C" >&6 ; }6644 echo "$as_me:$LINENO: checking for stdio.h" >&5 6645 echo $ECHO_N "checking for stdio.h... $ECHO_C" >&6 7048 6646 if test "${ac_cv_header_stdio_h+set}" = set; then 7049 6647 echo $ECHO_N "(cached) $ECHO_C" >&6 7050 6648 fi 7051 {echo "$as_me:$LINENO: result: $ac_cv_header_stdio_h" >&57052 echo "${ECHO_T}$ac_cv_header_stdio_h" >&6 ; }6649 echo "$as_me:$LINENO: result: $ac_cv_header_stdio_h" >&5 6650 echo "${ECHO_T}$ac_cv_header_stdio_h" >&6 7053 6651 else 7054 6652 # Is the header compilable? 7055 {echo "$as_me:$LINENO: checking stdio.h usability" >&57056 echo $ECHO_N "checking stdio.h usability... $ECHO_C" >&6 ; }6653 echo "$as_me:$LINENO: checking stdio.h usability" >&5 6654 echo $ECHO_N "checking stdio.h usability... $ECHO_C" >&6 7057 6655 cat >conftest.$ac_ext <<_ACEOF 7058 6656 /* confdefs.h. */ … … 7065 6663 _ACEOF 7066 6664 rm -f conftest.$ac_objext 7067 if { (ac_try="$ac_compile" 7068 case "(($ac_try" in 7069 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7070 *) ac_try_echo=$ac_try;; 7071 esac 7072 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7073 (eval "$ac_compile") 2>conftest.er1 6665 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6666 (eval $ac_compile) 2>conftest.er1 7074 6667 ac_status=$? 7075 6668 grep -v '^ *+' conftest.er1 >conftest.err … … 7077 6670 cat conftest.err >&5 7078 6671 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7079 (exit $ac_status); } && { 7080 test -z "$ac_c_werror_flag" || 7081 test ! -s conftest.err 7082 } && test -s conftest.$ac_objext; then 6672 (exit $ac_status); } && 6673 { ac_try='test -z "$ac_c_werror_flag" 6674 || test ! -s conftest.err' 6675 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6676 (eval $ac_try) 2>&5 6677 ac_status=$? 6678 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6679 (exit $ac_status); }; } && 6680 { ac_try='test -s conftest.$ac_objext' 6681 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6682 (eval $ac_try) 2>&5 6683 ac_status=$? 6684 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6685 (exit $ac_status); }; }; then 7083 6686 ac_header_compiler=yes 7084 6687 else … … 7086 6689 sed 's/^/| /' conftest.$ac_ext >&5 7087 6690 7088 ac_header_compiler=no 7089 fi 7090 7091 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 7092 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7093 echo "${ECHO_T}$ac_header_compiler" >&6; } 6691 ac_header_compiler=no 6692 fi 6693 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 6694 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6695 echo "${ECHO_T}$ac_header_compiler" >&6 7094 6696 7095 6697 # Is the header present? 7096 {echo "$as_me:$LINENO: checking stdio.h presence" >&57097 echo $ECHO_N "checking stdio.h presence... $ECHO_C" >&6 ; }6698 echo "$as_me:$LINENO: checking stdio.h presence" >&5 6699 echo $ECHO_N "checking stdio.h presence... $ECHO_C" >&6 7098 6700 cat >conftest.$ac_ext <<_ACEOF 7099 6701 /* confdefs.h. */ … … 7104 6706 #include <stdio.h> 7105 6707 _ACEOF 7106 if { (ac_try="$ac_cpp conftest.$ac_ext" 7107 case "(($ac_try" in 7108 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7109 *) ac_try_echo=$ac_try;; 7110 esac 7111 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7112 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 6708 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 6709 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 7113 6710 ac_status=$? 7114 6711 grep -v '^ *+' conftest.er1 >conftest.err … … 7116 6713 cat conftest.err >&5 7117 6714 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7118 (exit $ac_status); } >/dev/null && { 7119 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 7120 test ! -s conftest.err 7121 }; then 6715 (exit $ac_status); } >/dev/null; then 6716 if test -s conftest.err; then 6717 ac_cpp_err=$ac_c_preproc_warn_flag 6718 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 6719 else 6720 ac_cpp_err= 6721 fi 6722 else 6723 ac_cpp_err=yes 6724 fi 6725 if test -z "$ac_cpp_err"; then 7122 6726 ac_header_preproc=yes 7123 6727 else … … 7127 6731 ac_header_preproc=no 7128 6732 fi 7129 7130 6733 rm -f conftest.err conftest.$ac_ext 7131 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&57132 echo "${ECHO_T}$ac_header_preproc" >&6 ; }6734 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 6735 echo "${ECHO_T}$ac_header_preproc" >&6 7133 6736 7134 6737 # So? What about this header? … … 7154 6757 { echo "$as_me:$LINENO: WARNING: stdio.h: in the future, the compiler will take precedence" >&5 7155 6758 echo "$as_me: WARNING: stdio.h: in the future, the compiler will take precedence" >&2;} 7156 6759 ( 6760 cat <<\_ASBOX 6761 ## ------------------------------------ ## 6762 ## Report this to the pjproject lists. ## 6763 ## ------------------------------------ ## 6764 _ASBOX 6765 ) | 6766 sed "s/^/$as_me: WARNING: /" >&2 7157 6767 ;; 7158 6768 esac 7159 {echo "$as_me:$LINENO: checking for stdio.h" >&57160 echo $ECHO_N "checking for stdio.h... $ECHO_C" >&6 ; }6769 echo "$as_me:$LINENO: checking for stdio.h" >&5 6770 echo $ECHO_N "checking for stdio.h... $ECHO_C" >&6 7161 6771 if test "${ac_cv_header_stdio_h+set}" = set; then 7162 6772 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 7164 6774 ac_cv_header_stdio_h=$ac_header_preproc 7165 6775 fi 7166 {echo "$as_me:$LINENO: result: $ac_cv_header_stdio_h" >&57167 echo "${ECHO_T}$ac_cv_header_stdio_h" >&6 ; }6776 echo "$as_me:$LINENO: result: $ac_cv_header_stdio_h" >&5 6777 echo "${ECHO_T}$ac_cv_header_stdio_h" >&6 7168 6778 7169 6779 fi … … 7177 6787 7178 6788 if test "${ac_cv_header_stdint_h+set}" = set; then 7179 {echo "$as_me:$LINENO: checking for stdint.h" >&57180 echo $ECHO_N "checking for stdint.h... $ECHO_C" >&6 ; }6789 echo "$as_me:$LINENO: checking for stdint.h" >&5 6790 echo $ECHO_N "checking for stdint.h... $ECHO_C" >&6 7181 6791 if test "${ac_cv_header_stdint_h+set}" = set; then 7182 6792 echo $ECHO_N "(cached) $ECHO_C" >&6 7183 6793 fi 7184 {echo "$as_me:$LINENO: result: $ac_cv_header_stdint_h" >&57185 echo "${ECHO_T}$ac_cv_header_stdint_h" >&6 ; }6794 echo "$as_me:$LINENO: result: $ac_cv_header_stdint_h" >&5 6795 echo "${ECHO_T}$ac_cv_header_stdint_h" >&6 7186 6796 else 7187 6797 # Is the header compilable? 7188 {echo "$as_me:$LINENO: checking stdint.h usability" >&57189 echo $ECHO_N "checking stdint.h usability... $ECHO_C" >&6 ; }6798 echo "$as_me:$LINENO: checking stdint.h usability" >&5 6799 echo $ECHO_N "checking stdint.h usability... $ECHO_C" >&6 7190 6800 cat >conftest.$ac_ext <<_ACEOF 7191 6801 /* confdefs.h. */ … … 7198 6808 _ACEOF 7199 6809 rm -f conftest.$ac_objext 7200 if { (ac_try="$ac_compile" 7201 case "(($ac_try" in 7202 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7203 *) ac_try_echo=$ac_try;; 7204 esac 7205 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7206 (eval "$ac_compile") 2>conftest.er1 6810 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6811 (eval $ac_compile) 2>conftest.er1 7207 6812 ac_status=$? 7208 6813 grep -v '^ *+' conftest.er1 >conftest.err … … 7210 6815 cat conftest.err >&5 7211 6816 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7212 (exit $ac_status); } && { 7213 test -z "$ac_c_werror_flag" || 7214 test ! -s conftest.err 7215 } && test -s conftest.$ac_objext; then 6817 (exit $ac_status); } && 6818 { ac_try='test -z "$ac_c_werror_flag" 6819 || test ! -s conftest.err' 6820 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6821 (eval $ac_try) 2>&5 6822 ac_status=$? 6823 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6824 (exit $ac_status); }; } && 6825 { ac_try='test -s conftest.$ac_objext' 6826 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6827 (eval $ac_try) 2>&5 6828 ac_status=$? 6829 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6830 (exit $ac_status); }; }; then 7216 6831 ac_header_compiler=yes 7217 6832 else … … 7219 6834 sed 's/^/| /' conftest.$ac_ext >&5 7220 6835 7221 ac_header_compiler=no 7222 fi 7223 7224 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 7225 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7226 echo "${ECHO_T}$ac_header_compiler" >&6; } 6836 ac_header_compiler=no 6837 fi 6838 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 6839 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6840 echo "${ECHO_T}$ac_header_compiler" >&6 7227 6841 7228 6842 # Is the header present? 7229 {echo "$as_me:$LINENO: checking stdint.h presence" >&57230 echo $ECHO_N "checking stdint.h presence... $ECHO_C" >&6 ; }6843 echo "$as_me:$LINENO: checking stdint.h presence" >&5 6844 echo $ECHO_N "checking stdint.h presence... $ECHO_C" >&6 7231 6845 cat >conftest.$ac_ext <<_ACEOF 7232 6846 /* confdefs.h. */ … … 7237 6851 #include <stdint.h> 7238 6852 _ACEOF 7239 if { (ac_try="$ac_cpp conftest.$ac_ext" 7240 case "(($ac_try" in 7241 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7242 *) ac_try_echo=$ac_try;; 7243 esac 7244 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7245 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 6853 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 6854 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 7246 6855 ac_status=$? 7247 6856 grep -v '^ *+' conftest.er1 >conftest.err … … 7249 6858 cat conftest.err >&5 7250 6859 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7251 (exit $ac_status); } >/dev/null && { 7252 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 7253 test ! -s conftest.err 7254 }; then 6860 (exit $ac_status); } >/dev/null; then 6861 if test -s conftest.err; then 6862 ac_cpp_err=$ac_c_preproc_warn_flag 6863 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 6864 else 6865 ac_cpp_err= 6866 fi 6867 else 6868 ac_cpp_err=yes 6869 fi 6870 if test -z "$ac_cpp_err"; then 7255 6871 ac_header_preproc=yes 7256 6872 else … … 7260 6876 ac_header_preproc=no 7261 6877 fi 7262 7263 6878 rm -f conftest.err conftest.$ac_ext 7264 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&57265 echo "${ECHO_T}$ac_header_preproc" >&6 ; }6879 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 6880 echo "${ECHO_T}$ac_header_preproc" >&6 7266 6881 7267 6882 # So? What about this header? … … 7287 6902 { echo "$as_me:$LINENO: WARNING: stdint.h: in the future, the compiler will take precedence" >&5 7288 6903 echo "$as_me: WARNING: stdint.h: in the future, the compiler will take precedence" >&2;} 7289 6904 ( 6905 cat <<\_ASBOX 6906 ## ------------------------------------ ## 6907 ## Report this to the pjproject lists. ## 6908 ## ------------------------------------ ## 6909 _ASBOX 6910 ) | 6911 sed "s/^/$as_me: WARNING: /" >&2 7290 6912 ;; 7291 6913 esac 7292 {echo "$as_me:$LINENO: checking for stdint.h" >&57293 echo $ECHO_N "checking for stdint.h... $ECHO_C" >&6 ; }6914 echo "$as_me:$LINENO: checking for stdint.h" >&5 6915 echo $ECHO_N "checking for stdint.h... $ECHO_C" >&6 7294 6916 if test "${ac_cv_header_stdint_h+set}" = set; then 7295 6917 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 7297 6919 ac_cv_header_stdint_h=$ac_header_preproc 7298 6920 fi 7299 {echo "$as_me:$LINENO: result: $ac_cv_header_stdint_h" >&57300 echo "${ECHO_T}$ac_cv_header_stdint_h" >&6 ; }6921 echo "$as_me:$LINENO: result: $ac_cv_header_stdint_h" >&5 6922 echo "${ECHO_T}$ac_cv_header_stdint_h" >&6 7301 6923 7302 6924 fi … … 7310 6932 7311 6933 if test "${ac_cv_header_stdlib_h+set}" = set; then 7312 {echo "$as_me:$LINENO: checking for stdlib.h" >&57313 echo $ECHO_N "checking for stdlib.h... $ECHO_C" >&6 ; }6934 echo "$as_me:$LINENO: checking for stdlib.h" >&5 6935 echo $ECHO_N "checking for stdlib.h... $ECHO_C" >&6 7314 6936 if test "${ac_cv_header_stdlib_h+set}" = set; then 7315 6937 echo $ECHO_N "(cached) $ECHO_C" >&6 7316 6938 fi 7317 {echo "$as_me:$LINENO: result: $ac_cv_header_stdlib_h" >&57318 echo "${ECHO_T}$ac_cv_header_stdlib_h" >&6 ; }6939 echo "$as_me:$LINENO: result: $ac_cv_header_stdlib_h" >&5 6940 echo "${ECHO_T}$ac_cv_header_stdlib_h" >&6 7319 6941 else 7320 6942 # Is the header compilable? 7321 {echo "$as_me:$LINENO: checking stdlib.h usability" >&57322 echo $ECHO_N "checking stdlib.h usability... $ECHO_C" >&6 ; }6943 echo "$as_me:$LINENO: checking stdlib.h usability" >&5 6944 echo $ECHO_N "checking stdlib.h usability... $ECHO_C" >&6 7323 6945 cat >conftest.$ac_ext <<_ACEOF 7324 6946 /* confdefs.h. */ … … 7331 6953 _ACEOF 7332 6954 rm -f conftest.$ac_objext 7333 if { (ac_try="$ac_compile" 7334 case "(($ac_try" in 7335 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7336 *) ac_try_echo=$ac_try;; 7337 esac 7338 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7339 (eval "$ac_compile") 2>conftest.er1 6955 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6956 (eval $ac_compile) 2>conftest.er1 7340 6957 ac_status=$? 7341 6958 grep -v '^ *+' conftest.er1 >conftest.err … … 7343 6960 cat conftest.err >&5 7344 6961 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7345 (exit $ac_status); } && { 7346 test -z "$ac_c_werror_flag" || 7347 test ! -s conftest.err 7348 } && test -s conftest.$ac_objext; then 6962 (exit $ac_status); } && 6963 { ac_try='test -z "$ac_c_werror_flag" 6964 || test ! -s conftest.err' 6965 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6966 (eval $ac_try) 2>&5 6967 ac_status=$? 6968 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6969 (exit $ac_status); }; } && 6970 { ac_try='test -s conftest.$ac_objext' 6971 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 6972 (eval $ac_try) 2>&5 6973 ac_status=$? 6974 echo "$as_me:$LINENO: \$? = $ac_status" >&5 6975 (exit $ac_status); }; }; then 7349 6976 ac_header_compiler=yes 7350 6977 else … … 7352 6979 sed 's/^/| /' conftest.$ac_ext >&5 7353 6980 7354 ac_header_compiler=no 7355 fi 7356 7357 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 7358 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7359 echo "${ECHO_T}$ac_header_compiler" >&6; } 6981 ac_header_compiler=no 6982 fi 6983 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 6984 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 6985 echo "${ECHO_T}$ac_header_compiler" >&6 7360 6986 7361 6987 # Is the header present? 7362 {echo "$as_me:$LINENO: checking stdlib.h presence" >&57363 echo $ECHO_N "checking stdlib.h presence... $ECHO_C" >&6 ; }6988 echo "$as_me:$LINENO: checking stdlib.h presence" >&5 6989 echo $ECHO_N "checking stdlib.h presence... $ECHO_C" >&6 7364 6990 cat >conftest.$ac_ext <<_ACEOF 7365 6991 /* confdefs.h. */ … … 7370 6996 #include <stdlib.h> 7371 6997 _ACEOF 7372 if { (ac_try="$ac_cpp conftest.$ac_ext" 7373 case "(($ac_try" in 7374 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7375 *) ac_try_echo=$ac_try;; 7376 esac 7377 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7378 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 6998 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 6999 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 7379 7000 ac_status=$? 7380 7001 grep -v '^ *+' conftest.er1 >conftest.err … … 7382 7003 cat conftest.err >&5 7383 7004 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7384 (exit $ac_status); } >/dev/null && { 7385 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 7386 test ! -s conftest.err 7387 }; then 7005 (exit $ac_status); } >/dev/null; then 7006 if test -s conftest.err; then 7007 ac_cpp_err=$ac_c_preproc_warn_flag 7008 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 7009 else 7010 ac_cpp_err= 7011 fi 7012 else 7013 ac_cpp_err=yes 7014 fi 7015 if test -z "$ac_cpp_err"; then 7388 7016 ac_header_preproc=yes 7389 7017 else … … 7393 7021 ac_header_preproc=no 7394 7022 fi 7395 7396 7023 rm -f conftest.err conftest.$ac_ext 7397 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&57398 echo "${ECHO_T}$ac_header_preproc" >&6 ; }7024 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 7025 echo "${ECHO_T}$ac_header_preproc" >&6 7399 7026 7400 7027 # So? What about this header? … … 7420 7047 { echo "$as_me:$LINENO: WARNING: stdlib.h: in the future, the compiler will take precedence" >&5 7421 7048 echo "$as_me: WARNING: stdlib.h: in the future, the compiler will take precedence" >&2;} 7422 7049 ( 7050 cat <<\_ASBOX 7051 ## ------------------------------------ ## 7052 ## Report this to the pjproject lists. ## 7053 ## ------------------------------------ ## 7054 _ASBOX 7055 ) | 7056 sed "s/^/$as_me: WARNING: /" >&2 7423 7057 ;; 7424 7058 esac 7425 {echo "$as_me:$LINENO: checking for stdlib.h" >&57426 echo $ECHO_N "checking for stdlib.h... $ECHO_C" >&6 ; }7059 echo "$as_me:$LINENO: checking for stdlib.h" >&5 7060 echo $ECHO_N "checking for stdlib.h... $ECHO_C" >&6 7427 7061 if test "${ac_cv_header_stdlib_h+set}" = set; then 7428 7062 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 7430 7064 ac_cv_header_stdlib_h=$ac_header_preproc 7431 7065 fi 7432 {echo "$as_me:$LINENO: result: $ac_cv_header_stdlib_h" >&57433 echo "${ECHO_T}$ac_cv_header_stdlib_h" >&6 ; }7066 echo "$as_me:$LINENO: result: $ac_cv_header_stdlib_h" >&5 7067 echo "${ECHO_T}$ac_cv_header_stdlib_h" >&6 7434 7068 7435 7069 fi … … 7443 7077 7444 7078 if test "${ac_cv_header_string_h+set}" = set; then 7445 {echo "$as_me:$LINENO: checking for string.h" >&57446 echo $ECHO_N "checking for string.h... $ECHO_C" >&6 ; }7079 echo "$as_me:$LINENO: checking for string.h" >&5 7080 echo $ECHO_N "checking for string.h... $ECHO_C" >&6 7447 7081 if test "${ac_cv_header_string_h+set}" = set; then 7448 7082 echo $ECHO_N "(cached) $ECHO_C" >&6 7449 7083 fi 7450 {echo "$as_me:$LINENO: result: $ac_cv_header_string_h" >&57451 echo "${ECHO_T}$ac_cv_header_string_h" >&6 ; }7084 echo "$as_me:$LINENO: result: $ac_cv_header_string_h" >&5 7085 echo "${ECHO_T}$ac_cv_header_string_h" >&6 7452 7086 else 7453 7087 # Is the header compilable? 7454 {echo "$as_me:$LINENO: checking string.h usability" >&57455 echo $ECHO_N "checking string.h usability... $ECHO_C" >&6 ; }7088 echo "$as_me:$LINENO: checking string.h usability" >&5 7089 echo $ECHO_N "checking string.h usability... $ECHO_C" >&6 7456 7090 cat >conftest.$ac_ext <<_ACEOF 7457 7091 /* confdefs.h. */ … … 7464 7098 _ACEOF 7465 7099 rm -f conftest.$ac_objext 7466 if { (ac_try="$ac_compile" 7467 case "(($ac_try" in 7468 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7469 *) ac_try_echo=$ac_try;; 7470 esac 7471 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7472 (eval "$ac_compile") 2>conftest.er1 7100 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 7101 (eval $ac_compile) 2>conftest.er1 7473 7102 ac_status=$? 7474 7103 grep -v '^ *+' conftest.er1 >conftest.err … … 7476 7105 cat conftest.err >&5 7477 7106 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7478 (exit $ac_status); } && { 7479 test -z "$ac_c_werror_flag" || 7480 test ! -s conftest.err 7481 } && test -s conftest.$ac_objext; then 7107 (exit $ac_status); } && 7108 { ac_try='test -z "$ac_c_werror_flag" 7109 || test ! -s conftest.err' 7110 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7111 (eval $ac_try) 2>&5 7112 ac_status=$? 7113 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7114 (exit $ac_status); }; } && 7115 { ac_try='test -s conftest.$ac_objext' 7116 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7117 (eval $ac_try) 2>&5 7118 ac_status=$? 7119 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7120 (exit $ac_status); }; }; then 7482 7121 ac_header_compiler=yes 7483 7122 else … … 7485 7124 sed 's/^/| /' conftest.$ac_ext >&5 7486 7125 7487 ac_header_compiler=no 7488 fi 7489 7490 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 7491 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7492 echo "${ECHO_T}$ac_header_compiler" >&6; } 7126 ac_header_compiler=no 7127 fi 7128 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 7129 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7130 echo "${ECHO_T}$ac_header_compiler" >&6 7493 7131 7494 7132 # Is the header present? 7495 {echo "$as_me:$LINENO: checking string.h presence" >&57496 echo $ECHO_N "checking string.h presence... $ECHO_C" >&6 ; }7133 echo "$as_me:$LINENO: checking string.h presence" >&5 7134 echo $ECHO_N "checking string.h presence... $ECHO_C" >&6 7497 7135 cat >conftest.$ac_ext <<_ACEOF 7498 7136 /* confdefs.h. */ … … 7503 7141 #include <string.h> 7504 7142 _ACEOF 7505 if { (ac_try="$ac_cpp conftest.$ac_ext" 7506 case "(($ac_try" in 7507 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7508 *) ac_try_echo=$ac_try;; 7509 esac 7510 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7511 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 7143 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 7144 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 7512 7145 ac_status=$? 7513 7146 grep -v '^ *+' conftest.er1 >conftest.err … … 7515 7148 cat conftest.err >&5 7516 7149 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7517 (exit $ac_status); } >/dev/null && { 7518 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 7519 test ! -s conftest.err 7520 }; then 7150 (exit $ac_status); } >/dev/null; then 7151 if test -s conftest.err; then 7152 ac_cpp_err=$ac_c_preproc_warn_flag 7153 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 7154 else 7155 ac_cpp_err= 7156 fi 7157 else 7158 ac_cpp_err=yes 7159 fi 7160 if test -z "$ac_cpp_err"; then 7521 7161 ac_header_preproc=yes 7522 7162 else … … 7526 7166 ac_header_preproc=no 7527 7167 fi 7528 7529 7168 rm -f conftest.err conftest.$ac_ext 7530 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&57531 echo "${ECHO_T}$ac_header_preproc" >&6 ; }7169 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 7170 echo "${ECHO_T}$ac_header_preproc" >&6 7532 7171 7533 7172 # So? What about this header? … … 7553 7192 { echo "$as_me:$LINENO: WARNING: string.h: in the future, the compiler will take precedence" >&5 7554 7193 echo "$as_me: WARNING: string.h: in the future, the compiler will take precedence" >&2;} 7555 7194 ( 7195 cat <<\_ASBOX 7196 ## ------------------------------------ ## 7197 ## Report this to the pjproject lists. ## 7198 ## ------------------------------------ ## 7199 _ASBOX 7200 ) | 7201 sed "s/^/$as_me: WARNING: /" >&2 7556 7202 ;; 7557 7203 esac 7558 {echo "$as_me:$LINENO: checking for string.h" >&57559 echo $ECHO_N "checking for string.h... $ECHO_C" >&6 ; }7204 echo "$as_me:$LINENO: checking for string.h" >&5 7205 echo $ECHO_N "checking for string.h... $ECHO_C" >&6 7560 7206 if test "${ac_cv_header_string_h+set}" = set; then 7561 7207 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 7563 7209 ac_cv_header_string_h=$ac_header_preproc 7564 7210 fi 7565 {echo "$as_me:$LINENO: result: $ac_cv_header_string_h" >&57566 echo "${ECHO_T}$ac_cv_header_string_h" >&6 ; }7211 echo "$as_me:$LINENO: result: $ac_cv_header_string_h" >&5 7212 echo "${ECHO_T}$ac_cv_header_string_h" >&6 7567 7213 7568 7214 fi … … 7576 7222 7577 7223 if test "${ac_cv_header_sys_ioctl_h+set}" = set; then 7578 {echo "$as_me:$LINENO: checking for sys/ioctl.h" >&57579 echo $ECHO_N "checking for sys/ioctl.h... $ECHO_C" >&6 ; }7224 echo "$as_me:$LINENO: checking for sys/ioctl.h" >&5 7225 echo $ECHO_N "checking for sys/ioctl.h... $ECHO_C" >&6 7580 7226 if test "${ac_cv_header_sys_ioctl_h+set}" = set; then 7581 7227 echo $ECHO_N "(cached) $ECHO_C" >&6 7582 7228 fi 7583 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_ioctl_h" >&57584 echo "${ECHO_T}$ac_cv_header_sys_ioctl_h" >&6 ; }7229 echo "$as_me:$LINENO: result: $ac_cv_header_sys_ioctl_h" >&5 7230 echo "${ECHO_T}$ac_cv_header_sys_ioctl_h" >&6 7585 7231 else 7586 7232 # Is the header compilable? 7587 {echo "$as_me:$LINENO: checking sys/ioctl.h usability" >&57588 echo $ECHO_N "checking sys/ioctl.h usability... $ECHO_C" >&6 ; }7233 echo "$as_me:$LINENO: checking sys/ioctl.h usability" >&5 7234 echo $ECHO_N "checking sys/ioctl.h usability... $ECHO_C" >&6 7589 7235 cat >conftest.$ac_ext <<_ACEOF 7590 7236 /* confdefs.h. */ … … 7597 7243 _ACEOF 7598 7244 rm -f conftest.$ac_objext 7599 if { (ac_try="$ac_compile" 7600 case "(($ac_try" in 7601 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7602 *) ac_try_echo=$ac_try;; 7603 esac 7604 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7605 (eval "$ac_compile") 2>conftest.er1 7245 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 7246 (eval $ac_compile) 2>conftest.er1 7606 7247 ac_status=$? 7607 7248 grep -v '^ *+' conftest.er1 >conftest.err … … 7609 7250 cat conftest.err >&5 7610 7251 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7611 (exit $ac_status); } && { 7612 test -z "$ac_c_werror_flag" || 7613 test ! -s conftest.err 7614 } && test -s conftest.$ac_objext; then 7252 (exit $ac_status); } && 7253 { ac_try='test -z "$ac_c_werror_flag" 7254 || test ! -s conftest.err' 7255 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7256 (eval $ac_try) 2>&5 7257 ac_status=$? 7258 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7259 (exit $ac_status); }; } && 7260 { ac_try='test -s conftest.$ac_objext' 7261 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7262 (eval $ac_try) 2>&5 7263 ac_status=$? 7264 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7265 (exit $ac_status); }; }; then 7615 7266 ac_header_compiler=yes 7616 7267 else … … 7618 7269 sed 's/^/| /' conftest.$ac_ext >&5 7619 7270 7620 ac_header_compiler=no 7621 fi 7622 7623 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 7624 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7625 echo "${ECHO_T}$ac_header_compiler" >&6; } 7271 ac_header_compiler=no 7272 fi 7273 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 7274 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7275 echo "${ECHO_T}$ac_header_compiler" >&6 7626 7276 7627 7277 # Is the header present? 7628 {echo "$as_me:$LINENO: checking sys/ioctl.h presence" >&57629 echo $ECHO_N "checking sys/ioctl.h presence... $ECHO_C" >&6 ; }7278 echo "$as_me:$LINENO: checking sys/ioctl.h presence" >&5 7279 echo $ECHO_N "checking sys/ioctl.h presence... $ECHO_C" >&6 7630 7280 cat >conftest.$ac_ext <<_ACEOF 7631 7281 /* confdefs.h. */ … … 7636 7286 #include <sys/ioctl.h> 7637 7287 _ACEOF 7638 if { (ac_try="$ac_cpp conftest.$ac_ext" 7639 case "(($ac_try" in 7640 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7641 *) ac_try_echo=$ac_try;; 7642 esac 7643 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7644 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 7288 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 7289 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 7645 7290 ac_status=$? 7646 7291 grep -v '^ *+' conftest.er1 >conftest.err … … 7648 7293 cat conftest.err >&5 7649 7294 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7650 (exit $ac_status); } >/dev/null && { 7651 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 7652 test ! -s conftest.err 7653 }; then 7295 (exit $ac_status); } >/dev/null; then 7296 if test -s conftest.err; then 7297 ac_cpp_err=$ac_c_preproc_warn_flag 7298 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 7299 else 7300 ac_cpp_err= 7301 fi 7302 else 7303 ac_cpp_err=yes 7304 fi 7305 if test -z "$ac_cpp_err"; then 7654 7306 ac_header_preproc=yes 7655 7307 else … … 7659 7311 ac_header_preproc=no 7660 7312 fi 7661 7662 7313 rm -f conftest.err conftest.$ac_ext 7663 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&57664 echo "${ECHO_T}$ac_header_preproc" >&6 ; }7314 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 7315 echo "${ECHO_T}$ac_header_preproc" >&6 7665 7316 7666 7317 # So? What about this header? … … 7686 7337 { echo "$as_me:$LINENO: WARNING: sys/ioctl.h: in the future, the compiler will take precedence" >&5 7687 7338 echo "$as_me: WARNING: sys/ioctl.h: in the future, the compiler will take precedence" >&2;} 7688 7339 ( 7340 cat <<\_ASBOX 7341 ## ------------------------------------ ## 7342 ## Report this to the pjproject lists. ## 7343 ## ------------------------------------ ## 7344 _ASBOX 7345 ) | 7346 sed "s/^/$as_me: WARNING: /" >&2 7689 7347 ;; 7690 7348 esac 7691 {echo "$as_me:$LINENO: checking for sys/ioctl.h" >&57692 echo $ECHO_N "checking for sys/ioctl.h... $ECHO_C" >&6 ; }7349 echo "$as_me:$LINENO: checking for sys/ioctl.h" >&5 7350 echo $ECHO_N "checking for sys/ioctl.h... $ECHO_C" >&6 7693 7351 if test "${ac_cv_header_sys_ioctl_h+set}" = set; then 7694 7352 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 7696 7354 ac_cv_header_sys_ioctl_h=$ac_header_preproc 7697 7355 fi 7698 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_ioctl_h" >&57699 echo "${ECHO_T}$ac_cv_header_sys_ioctl_h" >&6 ; }7356 echo "$as_me:$LINENO: result: $ac_cv_header_sys_ioctl_h" >&5 7357 echo "${ECHO_T}$ac_cv_header_sys_ioctl_h" >&6 7700 7358 7701 7359 fi … … 7709 7367 7710 7368 if test "${ac_cv_header_sys_select_h+set}" = set; then 7711 {echo "$as_me:$LINENO: checking for sys/select.h" >&57712 echo $ECHO_N "checking for sys/select.h... $ECHO_C" >&6 ; }7369 echo "$as_me:$LINENO: checking for sys/select.h" >&5 7370 echo $ECHO_N "checking for sys/select.h... $ECHO_C" >&6 7713 7371 if test "${ac_cv_header_sys_select_h+set}" = set; then 7714 7372 echo $ECHO_N "(cached) $ECHO_C" >&6 7715 7373 fi 7716 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_select_h" >&57717 echo "${ECHO_T}$ac_cv_header_sys_select_h" >&6 ; }7374 echo "$as_me:$LINENO: result: $ac_cv_header_sys_select_h" >&5 7375 echo "${ECHO_T}$ac_cv_header_sys_select_h" >&6 7718 7376 else 7719 7377 # Is the header compilable? 7720 {echo "$as_me:$LINENO: checking sys/select.h usability" >&57721 echo $ECHO_N "checking sys/select.h usability... $ECHO_C" >&6 ; }7378 echo "$as_me:$LINENO: checking sys/select.h usability" >&5 7379 echo $ECHO_N "checking sys/select.h usability... $ECHO_C" >&6 7722 7380 cat >conftest.$ac_ext <<_ACEOF 7723 7381 /* confdefs.h. */ … … 7730 7388 _ACEOF 7731 7389 rm -f conftest.$ac_objext 7732 if { (ac_try="$ac_compile" 7733 case "(($ac_try" in 7734 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7735 *) ac_try_echo=$ac_try;; 7736 esac 7737 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7738 (eval "$ac_compile") 2>conftest.er1 7390 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 7391 (eval $ac_compile) 2>conftest.er1 7739 7392 ac_status=$? 7740 7393 grep -v '^ *+' conftest.er1 >conftest.err … … 7742 7395 cat conftest.err >&5 7743 7396 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7744 (exit $ac_status); } && { 7745 test -z "$ac_c_werror_flag" || 7746 test ! -s conftest.err 7747 } && test -s conftest.$ac_objext; then 7397 (exit $ac_status); } && 7398 { ac_try='test -z "$ac_c_werror_flag" 7399 || test ! -s conftest.err' 7400 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7401 (eval $ac_try) 2>&5 7402 ac_status=$? 7403 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7404 (exit $ac_status); }; } && 7405 { ac_try='test -s conftest.$ac_objext' 7406 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7407 (eval $ac_try) 2>&5 7408 ac_status=$? 7409 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7410 (exit $ac_status); }; }; then 7748 7411 ac_header_compiler=yes 7749 7412 else … … 7751 7414 sed 's/^/| /' conftest.$ac_ext >&5 7752 7415 7753 ac_header_compiler=no 7754 fi 7755 7756 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 7757 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7758 echo "${ECHO_T}$ac_header_compiler" >&6; } 7416 ac_header_compiler=no 7417 fi 7418 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 7419 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7420 echo "${ECHO_T}$ac_header_compiler" >&6 7759 7421 7760 7422 # Is the header present? 7761 {echo "$as_me:$LINENO: checking sys/select.h presence" >&57762 echo $ECHO_N "checking sys/select.h presence... $ECHO_C" >&6 ; }7423 echo "$as_me:$LINENO: checking sys/select.h presence" >&5 7424 echo $ECHO_N "checking sys/select.h presence... $ECHO_C" >&6 7763 7425 cat >conftest.$ac_ext <<_ACEOF 7764 7426 /* confdefs.h. */ … … 7769 7431 #include <sys/select.h> 7770 7432 _ACEOF 7771 if { (ac_try="$ac_cpp conftest.$ac_ext" 7772 case "(($ac_try" in 7773 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7774 *) ac_try_echo=$ac_try;; 7775 esac 7776 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7777 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 7433 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 7434 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 7778 7435 ac_status=$? 7779 7436 grep -v '^ *+' conftest.er1 >conftest.err … … 7781 7438 cat conftest.err >&5 7782 7439 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7783 (exit $ac_status); } >/dev/null && { 7784 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 7785 test ! -s conftest.err 7786 }; then 7440 (exit $ac_status); } >/dev/null; then 7441 if test -s conftest.err; then 7442 ac_cpp_err=$ac_c_preproc_warn_flag 7443 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 7444 else 7445 ac_cpp_err= 7446 fi 7447 else 7448 ac_cpp_err=yes 7449 fi 7450 if test -z "$ac_cpp_err"; then 7787 7451 ac_header_preproc=yes 7788 7452 else … … 7792 7456 ac_header_preproc=no 7793 7457 fi 7794 7795 7458 rm -f conftest.err conftest.$ac_ext 7796 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&57797 echo "${ECHO_T}$ac_header_preproc" >&6 ; }7459 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 7460 echo "${ECHO_T}$ac_header_preproc" >&6 7798 7461 7799 7462 # So? What about this header? … … 7819 7482 { echo "$as_me:$LINENO: WARNING: sys/select.h: in the future, the compiler will take precedence" >&5 7820 7483 echo "$as_me: WARNING: sys/select.h: in the future, the compiler will take precedence" >&2;} 7821 7484 ( 7485 cat <<\_ASBOX 7486 ## ------------------------------------ ## 7487 ## Report this to the pjproject lists. ## 7488 ## ------------------------------------ ## 7489 _ASBOX 7490 ) | 7491 sed "s/^/$as_me: WARNING: /" >&2 7822 7492 ;; 7823 7493 esac 7824 {echo "$as_me:$LINENO: checking for sys/select.h" >&57825 echo $ECHO_N "checking for sys/select.h... $ECHO_C" >&6 ; }7494 echo "$as_me:$LINENO: checking for sys/select.h" >&5 7495 echo $ECHO_N "checking for sys/select.h... $ECHO_C" >&6 7826 7496 if test "${ac_cv_header_sys_select_h+set}" = set; then 7827 7497 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 7829 7499 ac_cv_header_sys_select_h=$ac_header_preproc 7830 7500 fi 7831 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_select_h" >&57832 echo "${ECHO_T}$ac_cv_header_sys_select_h" >&6 ; }7501 echo "$as_me:$LINENO: result: $ac_cv_header_sys_select_h" >&5 7502 echo "${ECHO_T}$ac_cv_header_sys_select_h" >&6 7833 7503 7834 7504 fi … … 7842 7512 7843 7513 if test "${ac_cv_header_sys_socket_h+set}" = set; then 7844 {echo "$as_me:$LINENO: checking for sys/socket.h" >&57845 echo $ECHO_N "checking for sys/socket.h... $ECHO_C" >&6 ; }7514 echo "$as_me:$LINENO: checking for sys/socket.h" >&5 7515 echo $ECHO_N "checking for sys/socket.h... $ECHO_C" >&6 7846 7516 if test "${ac_cv_header_sys_socket_h+set}" = set; then 7847 7517 echo $ECHO_N "(cached) $ECHO_C" >&6 7848 7518 fi 7849 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_socket_h" >&57850 echo "${ECHO_T}$ac_cv_header_sys_socket_h" >&6 ; }7519 echo "$as_me:$LINENO: result: $ac_cv_header_sys_socket_h" >&5 7520 echo "${ECHO_T}$ac_cv_header_sys_socket_h" >&6 7851 7521 else 7852 7522 # Is the header compilable? 7853 {echo "$as_me:$LINENO: checking sys/socket.h usability" >&57854 echo $ECHO_N "checking sys/socket.h usability... $ECHO_C" >&6 ; }7523 echo "$as_me:$LINENO: checking sys/socket.h usability" >&5 7524 echo $ECHO_N "checking sys/socket.h usability... $ECHO_C" >&6 7855 7525 cat >conftest.$ac_ext <<_ACEOF 7856 7526 /* confdefs.h. */ … … 7863 7533 _ACEOF 7864 7534 rm -f conftest.$ac_objext 7865 if { (ac_try="$ac_compile" 7866 case "(($ac_try" in 7867 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7868 *) ac_try_echo=$ac_try;; 7869 esac 7870 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7871 (eval "$ac_compile") 2>conftest.er1 7535 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 7536 (eval $ac_compile) 2>conftest.er1 7872 7537 ac_status=$? 7873 7538 grep -v '^ *+' conftest.er1 >conftest.err … … 7875 7540 cat conftest.err >&5 7876 7541 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7877 (exit $ac_status); } && { 7878 test -z "$ac_c_werror_flag" || 7879 test ! -s conftest.err 7880 } && test -s conftest.$ac_objext; then 7542 (exit $ac_status); } && 7543 { ac_try='test -z "$ac_c_werror_flag" 7544 || test ! -s conftest.err' 7545 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7546 (eval $ac_try) 2>&5 7547 ac_status=$? 7548 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7549 (exit $ac_status); }; } && 7550 { ac_try='test -s conftest.$ac_objext' 7551 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7552 (eval $ac_try) 2>&5 7553 ac_status=$? 7554 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7555 (exit $ac_status); }; }; then 7881 7556 ac_header_compiler=yes 7882 7557 else … … 7884 7559 sed 's/^/| /' conftest.$ac_ext >&5 7885 7560 7886 ac_header_compiler=no 7887 fi 7888 7889 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 7890 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7891 echo "${ECHO_T}$ac_header_compiler" >&6; } 7561 ac_header_compiler=no 7562 fi 7563 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 7564 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7565 echo "${ECHO_T}$ac_header_compiler" >&6 7892 7566 7893 7567 # Is the header present? 7894 {echo "$as_me:$LINENO: checking sys/socket.h presence" >&57895 echo $ECHO_N "checking sys/socket.h presence... $ECHO_C" >&6 ; }7568 echo "$as_me:$LINENO: checking sys/socket.h presence" >&5 7569 echo $ECHO_N "checking sys/socket.h presence... $ECHO_C" >&6 7896 7570 cat >conftest.$ac_ext <<_ACEOF 7897 7571 /* confdefs.h. */ … … 7902 7576 #include <sys/socket.h> 7903 7577 _ACEOF 7904 if { (ac_try="$ac_cpp conftest.$ac_ext" 7905 case "(($ac_try" in 7906 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 7907 *) ac_try_echo=$ac_try;; 7908 esac 7909 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 7910 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 7578 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 7579 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 7911 7580 ac_status=$? 7912 7581 grep -v '^ *+' conftest.er1 >conftest.err … … 7914 7583 cat conftest.err >&5 7915 7584 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7916 (exit $ac_status); } >/dev/null && { 7917 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 7918 test ! -s conftest.err 7919 }; then 7585 (exit $ac_status); } >/dev/null; then 7586 if test -s conftest.err; then 7587 ac_cpp_err=$ac_c_preproc_warn_flag 7588 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 7589 else 7590 ac_cpp_err= 7591 fi 7592 else 7593 ac_cpp_err=yes 7594 fi 7595 if test -z "$ac_cpp_err"; then 7920 7596 ac_header_preproc=yes 7921 7597 else … … 7925 7601 ac_header_preproc=no 7926 7602 fi 7927 7928 7603 rm -f conftest.err conftest.$ac_ext 7929 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&57930 echo "${ECHO_T}$ac_header_preproc" >&6 ; }7604 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 7605 echo "${ECHO_T}$ac_header_preproc" >&6 7931 7606 7932 7607 # So? What about this header? … … 7952 7627 { echo "$as_me:$LINENO: WARNING: sys/socket.h: in the future, the compiler will take precedence" >&5 7953 7628 echo "$as_me: WARNING: sys/socket.h: in the future, the compiler will take precedence" >&2;} 7954 7629 ( 7630 cat <<\_ASBOX 7631 ## ------------------------------------ ## 7632 ## Report this to the pjproject lists. ## 7633 ## ------------------------------------ ## 7634 _ASBOX 7635 ) | 7636 sed "s/^/$as_me: WARNING: /" >&2 7955 7637 ;; 7956 7638 esac 7957 {echo "$as_me:$LINENO: checking for sys/socket.h" >&57958 echo $ECHO_N "checking for sys/socket.h... $ECHO_C" >&6 ; }7639 echo "$as_me:$LINENO: checking for sys/socket.h" >&5 7640 echo $ECHO_N "checking for sys/socket.h... $ECHO_C" >&6 7959 7641 if test "${ac_cv_header_sys_socket_h+set}" = set; then 7960 7642 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 7962 7644 ac_cv_header_sys_socket_h=$ac_header_preproc 7963 7645 fi 7964 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_socket_h" >&57965 echo "${ECHO_T}$ac_cv_header_sys_socket_h" >&6 ; }7646 echo "$as_me:$LINENO: result: $ac_cv_header_sys_socket_h" >&5 7647 echo "${ECHO_T}$ac_cv_header_sys_socket_h" >&6 7966 7648 7967 7649 fi … … 7975 7657 7976 7658 if test "${ac_cv_header_sys_time_h+set}" = set; then 7977 {echo "$as_me:$LINENO: checking for sys/time.h" >&57978 echo $ECHO_N "checking for sys/time.h... $ECHO_C" >&6 ; }7659 echo "$as_me:$LINENO: checking for sys/time.h" >&5 7660 echo $ECHO_N "checking for sys/time.h... $ECHO_C" >&6 7979 7661 if test "${ac_cv_header_sys_time_h+set}" = set; then 7980 7662 echo $ECHO_N "(cached) $ECHO_C" >&6 7981 7663 fi 7982 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_time_h" >&57983 echo "${ECHO_T}$ac_cv_header_sys_time_h" >&6 ; }7664 echo "$as_me:$LINENO: result: $ac_cv_header_sys_time_h" >&5 7665 echo "${ECHO_T}$ac_cv_header_sys_time_h" >&6 7984 7666 else 7985 7667 # Is the header compilable? 7986 {echo "$as_me:$LINENO: checking sys/time.h usability" >&57987 echo $ECHO_N "checking sys/time.h usability... $ECHO_C" >&6 ; }7668 echo "$as_me:$LINENO: checking sys/time.h usability" >&5 7669 echo $ECHO_N "checking sys/time.h usability... $ECHO_C" >&6 7988 7670 cat >conftest.$ac_ext <<_ACEOF 7989 7671 /* confdefs.h. */ … … 7996 7678 _ACEOF 7997 7679 rm -f conftest.$ac_objext 7998 if { (ac_try="$ac_compile" 7999 case "(($ac_try" in 8000 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8001 *) ac_try_echo=$ac_try;; 8002 esac 8003 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8004 (eval "$ac_compile") 2>conftest.er1 7680 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 7681 (eval $ac_compile) 2>conftest.er1 8005 7682 ac_status=$? 8006 7683 grep -v '^ *+' conftest.er1 >conftest.err … … 8008 7685 cat conftest.err >&5 8009 7686 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8010 (exit $ac_status); } && { 8011 test -z "$ac_c_werror_flag" || 8012 test ! -s conftest.err 8013 } && test -s conftest.$ac_objext; then 7687 (exit $ac_status); } && 7688 { ac_try='test -z "$ac_c_werror_flag" 7689 || test ! -s conftest.err' 7690 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7691 (eval $ac_try) 2>&5 7692 ac_status=$? 7693 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7694 (exit $ac_status); }; } && 7695 { ac_try='test -s conftest.$ac_objext' 7696 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7697 (eval $ac_try) 2>&5 7698 ac_status=$? 7699 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7700 (exit $ac_status); }; }; then 8014 7701 ac_header_compiler=yes 8015 7702 else … … 8017 7704 sed 's/^/| /' conftest.$ac_ext >&5 8018 7705 8019 ac_header_compiler=no 8020 fi 8021 8022 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 8023 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8024 echo "${ECHO_T}$ac_header_compiler" >&6; } 7706 ac_header_compiler=no 7707 fi 7708 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 7709 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7710 echo "${ECHO_T}$ac_header_compiler" >&6 8025 7711 8026 7712 # Is the header present? 8027 {echo "$as_me:$LINENO: checking sys/time.h presence" >&58028 echo $ECHO_N "checking sys/time.h presence... $ECHO_C" >&6 ; }7713 echo "$as_me:$LINENO: checking sys/time.h presence" >&5 7714 echo $ECHO_N "checking sys/time.h presence... $ECHO_C" >&6 8029 7715 cat >conftest.$ac_ext <<_ACEOF 8030 7716 /* confdefs.h. */ … … 8035 7721 #include <sys/time.h> 8036 7722 _ACEOF 8037 if { (ac_try="$ac_cpp conftest.$ac_ext" 8038 case "(($ac_try" in 8039 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8040 *) ac_try_echo=$ac_try;; 8041 esac 8042 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8043 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 7723 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 7724 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 8044 7725 ac_status=$? 8045 7726 grep -v '^ *+' conftest.er1 >conftest.err … … 8047 7728 cat conftest.err >&5 8048 7729 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8049 (exit $ac_status); } >/dev/null && { 8050 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 8051 test ! -s conftest.err 8052 }; then 7730 (exit $ac_status); } >/dev/null; then 7731 if test -s conftest.err; then 7732 ac_cpp_err=$ac_c_preproc_warn_flag 7733 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 7734 else 7735 ac_cpp_err= 7736 fi 7737 else 7738 ac_cpp_err=yes 7739 fi 7740 if test -z "$ac_cpp_err"; then 8053 7741 ac_header_preproc=yes 8054 7742 else … … 8058 7746 ac_header_preproc=no 8059 7747 fi 8060 8061 7748 rm -f conftest.err conftest.$ac_ext 8062 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&58063 echo "${ECHO_T}$ac_header_preproc" >&6 ; }7749 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 7750 echo "${ECHO_T}$ac_header_preproc" >&6 8064 7751 8065 7752 # So? What about this header? … … 8085 7772 { echo "$as_me:$LINENO: WARNING: sys/time.h: in the future, the compiler will take precedence" >&5 8086 7773 echo "$as_me: WARNING: sys/time.h: in the future, the compiler will take precedence" >&2;} 8087 7774 ( 7775 cat <<\_ASBOX 7776 ## ------------------------------------ ## 7777 ## Report this to the pjproject lists. ## 7778 ## ------------------------------------ ## 7779 _ASBOX 7780 ) | 7781 sed "s/^/$as_me: WARNING: /" >&2 8088 7782 ;; 8089 7783 esac 8090 {echo "$as_me:$LINENO: checking for sys/time.h" >&58091 echo $ECHO_N "checking for sys/time.h... $ECHO_C" >&6 ; }7784 echo "$as_me:$LINENO: checking for sys/time.h" >&5 7785 echo $ECHO_N "checking for sys/time.h... $ECHO_C" >&6 8092 7786 if test "${ac_cv_header_sys_time_h+set}" = set; then 8093 7787 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 8095 7789 ac_cv_header_sys_time_h=$ac_header_preproc 8096 7790 fi 8097 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_time_h" >&58098 echo "${ECHO_T}$ac_cv_header_sys_time_h" >&6 ; }7791 echo "$as_me:$LINENO: result: $ac_cv_header_sys_time_h" >&5 7792 echo "${ECHO_T}$ac_cv_header_sys_time_h" >&6 8099 7793 8100 7794 fi … … 8108 7802 8109 7803 if test "${ac_cv_header_sys_timeb_h+set}" = set; then 8110 {echo "$as_me:$LINENO: checking for sys/timeb.h" >&58111 echo $ECHO_N "checking for sys/timeb.h... $ECHO_C" >&6 ; }7804 echo "$as_me:$LINENO: checking for sys/timeb.h" >&5 7805 echo $ECHO_N "checking for sys/timeb.h... $ECHO_C" >&6 8112 7806 if test "${ac_cv_header_sys_timeb_h+set}" = set; then 8113 7807 echo $ECHO_N "(cached) $ECHO_C" >&6 8114 7808 fi 8115 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_timeb_h" >&58116 echo "${ECHO_T}$ac_cv_header_sys_timeb_h" >&6 ; }7809 echo "$as_me:$LINENO: result: $ac_cv_header_sys_timeb_h" >&5 7810 echo "${ECHO_T}$ac_cv_header_sys_timeb_h" >&6 8117 7811 else 8118 7812 # Is the header compilable? 8119 {echo "$as_me:$LINENO: checking sys/timeb.h usability" >&58120 echo $ECHO_N "checking sys/timeb.h usability... $ECHO_C" >&6 ; }7813 echo "$as_me:$LINENO: checking sys/timeb.h usability" >&5 7814 echo $ECHO_N "checking sys/timeb.h usability... $ECHO_C" >&6 8121 7815 cat >conftest.$ac_ext <<_ACEOF 8122 7816 /* confdefs.h. */ … … 8129 7823 _ACEOF 8130 7824 rm -f conftest.$ac_objext 8131 if { (ac_try="$ac_compile" 8132 case "(($ac_try" in 8133 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8134 *) ac_try_echo=$ac_try;; 8135 esac 8136 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8137 (eval "$ac_compile") 2>conftest.er1 7825 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 7826 (eval $ac_compile) 2>conftest.er1 8138 7827 ac_status=$? 8139 7828 grep -v '^ *+' conftest.er1 >conftest.err … … 8141 7830 cat conftest.err >&5 8142 7831 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8143 (exit $ac_status); } && { 8144 test -z "$ac_c_werror_flag" || 8145 test ! -s conftest.err 8146 } && test -s conftest.$ac_objext; then 7832 (exit $ac_status); } && 7833 { ac_try='test -z "$ac_c_werror_flag" 7834 || test ! -s conftest.err' 7835 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7836 (eval $ac_try) 2>&5 7837 ac_status=$? 7838 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7839 (exit $ac_status); }; } && 7840 { ac_try='test -s conftest.$ac_objext' 7841 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7842 (eval $ac_try) 2>&5 7843 ac_status=$? 7844 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7845 (exit $ac_status); }; }; then 8147 7846 ac_header_compiler=yes 8148 7847 else … … 8150 7849 sed 's/^/| /' conftest.$ac_ext >&5 8151 7850 8152 ac_header_compiler=no 8153 fi 8154 8155 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 8156 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8157 echo "${ECHO_T}$ac_header_compiler" >&6; } 7851 ac_header_compiler=no 7852 fi 7853 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 7854 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 7855 echo "${ECHO_T}$ac_header_compiler" >&6 8158 7856 8159 7857 # Is the header present? 8160 {echo "$as_me:$LINENO: checking sys/timeb.h presence" >&58161 echo $ECHO_N "checking sys/timeb.h presence... $ECHO_C" >&6 ; }7858 echo "$as_me:$LINENO: checking sys/timeb.h presence" >&5 7859 echo $ECHO_N "checking sys/timeb.h presence... $ECHO_C" >&6 8162 7860 cat >conftest.$ac_ext <<_ACEOF 8163 7861 /* confdefs.h. */ … … 8168 7866 #include <sys/timeb.h> 8169 7867 _ACEOF 8170 if { (ac_try="$ac_cpp conftest.$ac_ext" 8171 case "(($ac_try" in 8172 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8173 *) ac_try_echo=$ac_try;; 8174 esac 8175 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8176 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 7868 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 7869 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 8177 7870 ac_status=$? 8178 7871 grep -v '^ *+' conftest.er1 >conftest.err … … 8180 7873 cat conftest.err >&5 8181 7874 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8182 (exit $ac_status); } >/dev/null && { 8183 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 8184 test ! -s conftest.err 8185 }; then 7875 (exit $ac_status); } >/dev/null; then 7876 if test -s conftest.err; then 7877 ac_cpp_err=$ac_c_preproc_warn_flag 7878 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 7879 else 7880 ac_cpp_err= 7881 fi 7882 else 7883 ac_cpp_err=yes 7884 fi 7885 if test -z "$ac_cpp_err"; then 8186 7886 ac_header_preproc=yes 8187 7887 else … … 8191 7891 ac_header_preproc=no 8192 7892 fi 8193 8194 7893 rm -f conftest.err conftest.$ac_ext 8195 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&58196 echo "${ECHO_T}$ac_header_preproc" >&6 ; }7894 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 7895 echo "${ECHO_T}$ac_header_preproc" >&6 8197 7896 8198 7897 # So? What about this header? … … 8218 7917 { echo "$as_me:$LINENO: WARNING: sys/timeb.h: in the future, the compiler will take precedence" >&5 8219 7918 echo "$as_me: WARNING: sys/timeb.h: in the future, the compiler will take precedence" >&2;} 8220 7919 ( 7920 cat <<\_ASBOX 7921 ## ------------------------------------ ## 7922 ## Report this to the pjproject lists. ## 7923 ## ------------------------------------ ## 7924 _ASBOX 7925 ) | 7926 sed "s/^/$as_me: WARNING: /" >&2 8221 7927 ;; 8222 7928 esac 8223 {echo "$as_me:$LINENO: checking for sys/timeb.h" >&58224 echo $ECHO_N "checking for sys/timeb.h... $ECHO_C" >&6 ; }7929 echo "$as_me:$LINENO: checking for sys/timeb.h" >&5 7930 echo $ECHO_N "checking for sys/timeb.h... $ECHO_C" >&6 8225 7931 if test "${ac_cv_header_sys_timeb_h+set}" = set; then 8226 7932 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 8228 7934 ac_cv_header_sys_timeb_h=$ac_header_preproc 8229 7935 fi 8230 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_timeb_h" >&58231 echo "${ECHO_T}$ac_cv_header_sys_timeb_h" >&6 ; }7936 echo "$as_me:$LINENO: result: $ac_cv_header_sys_timeb_h" >&5 7937 echo "${ECHO_T}$ac_cv_header_sys_timeb_h" >&6 8232 7938 8233 7939 fi … … 8241 7947 8242 7948 if test "${ac_cv_header_sys_types_h+set}" = set; then 8243 {echo "$as_me:$LINENO: checking for sys/types.h" >&58244 echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6 ; }7949 echo "$as_me:$LINENO: checking for sys/types.h" >&5 7950 echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6 8245 7951 if test "${ac_cv_header_sys_types_h+set}" = set; then 8246 7952 echo $ECHO_N "(cached) $ECHO_C" >&6 8247 7953 fi 8248 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&58249 echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6 ; }7954 echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&5 7955 echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6 8250 7956 else 8251 7957 # Is the header compilable? 8252 {echo "$as_me:$LINENO: checking sys/types.h usability" >&58253 echo $ECHO_N "checking sys/types.h usability... $ECHO_C" >&6 ; }7958 echo "$as_me:$LINENO: checking sys/types.h usability" >&5 7959 echo $ECHO_N "checking sys/types.h usability... $ECHO_C" >&6 8254 7960 cat >conftest.$ac_ext <<_ACEOF 8255 7961 /* confdefs.h. */ … … 8262 7968 _ACEOF 8263 7969 rm -f conftest.$ac_objext 8264 if { (ac_try="$ac_compile" 8265 case "(($ac_try" in 8266 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8267 *) ac_try_echo=$ac_try;; 8268 esac 8269 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8270 (eval "$ac_compile") 2>conftest.er1 7970 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 7971 (eval $ac_compile) 2>conftest.er1 8271 7972 ac_status=$? 8272 7973 grep -v '^ *+' conftest.er1 >conftest.err … … 8274 7975 cat conftest.err >&5 8275 7976 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8276 (exit $ac_status); } && { 8277 test -z "$ac_c_werror_flag" || 8278 test ! -s conftest.err 8279 } && test -s conftest.$ac_objext; then 7977 (exit $ac_status); } && 7978 { ac_try='test -z "$ac_c_werror_flag" 7979 || test ! -s conftest.err' 7980 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7981 (eval $ac_try) 2>&5 7982 ac_status=$? 7983 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7984 (exit $ac_status); }; } && 7985 { ac_try='test -s conftest.$ac_objext' 7986 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 7987 (eval $ac_try) 2>&5 7988 ac_status=$? 7989 echo "$as_me:$LINENO: \$? = $ac_status" >&5 7990 (exit $ac_status); }; }; then 8280 7991 ac_header_compiler=yes 8281 7992 else … … 8283 7994 sed 's/^/| /' conftest.$ac_ext >&5 8284 7995 8285 ac_header_compiler=no 8286 fi 8287 8288 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 8289 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8290 echo "${ECHO_T}$ac_header_compiler" >&6; } 7996 ac_header_compiler=no 7997 fi 7998 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 7999 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8000 echo "${ECHO_T}$ac_header_compiler" >&6 8291 8001 8292 8002 # Is the header present? 8293 {echo "$as_me:$LINENO: checking sys/types.h presence" >&58294 echo $ECHO_N "checking sys/types.h presence... $ECHO_C" >&6 ; }8003 echo "$as_me:$LINENO: checking sys/types.h presence" >&5 8004 echo $ECHO_N "checking sys/types.h presence... $ECHO_C" >&6 8295 8005 cat >conftest.$ac_ext <<_ACEOF 8296 8006 /* confdefs.h. */ … … 8301 8011 #include <sys/types.h> 8302 8012 _ACEOF 8303 if { (ac_try="$ac_cpp conftest.$ac_ext" 8304 case "(($ac_try" in 8305 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8306 *) ac_try_echo=$ac_try;; 8307 esac 8308 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8309 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 8013 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 8014 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 8310 8015 ac_status=$? 8311 8016 grep -v '^ *+' conftest.er1 >conftest.err … … 8313 8018 cat conftest.err >&5 8314 8019 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8315 (exit $ac_status); } >/dev/null && { 8316 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 8317 test ! -s conftest.err 8318 }; then 8020 (exit $ac_status); } >/dev/null; then 8021 if test -s conftest.err; then 8022 ac_cpp_err=$ac_c_preproc_warn_flag 8023 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 8024 else 8025 ac_cpp_err= 8026 fi 8027 else 8028 ac_cpp_err=yes 8029 fi 8030 if test -z "$ac_cpp_err"; then 8319 8031 ac_header_preproc=yes 8320 8032 else … … 8324 8036 ac_header_preproc=no 8325 8037 fi 8326 8327 8038 rm -f conftest.err conftest.$ac_ext 8328 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&58329 echo "${ECHO_T}$ac_header_preproc" >&6 ; }8039 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 8040 echo "${ECHO_T}$ac_header_preproc" >&6 8330 8041 8331 8042 # So? What about this header? … … 8351 8062 { echo "$as_me:$LINENO: WARNING: sys/types.h: in the future, the compiler will take precedence" >&5 8352 8063 echo "$as_me: WARNING: sys/types.h: in the future, the compiler will take precedence" >&2;} 8353 8064 ( 8065 cat <<\_ASBOX 8066 ## ------------------------------------ ## 8067 ## Report this to the pjproject lists. ## 8068 ## ------------------------------------ ## 8069 _ASBOX 8070 ) | 8071 sed "s/^/$as_me: WARNING: /" >&2 8354 8072 ;; 8355 8073 esac 8356 {echo "$as_me:$LINENO: checking for sys/types.h" >&58357 echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6 ; }8074 echo "$as_me:$LINENO: checking for sys/types.h" >&5 8075 echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6 8358 8076 if test "${ac_cv_header_sys_types_h+set}" = set; then 8359 8077 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 8361 8079 ac_cv_header_sys_types_h=$ac_header_preproc 8362 8080 fi 8363 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&58364 echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6 ; }8081 echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&5 8082 echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6 8365 8083 8366 8084 fi … … 8374 8092 8375 8093 if test "${ac_cv_header_time_h+set}" = set; then 8376 {echo "$as_me:$LINENO: checking for time.h" >&58377 echo $ECHO_N "checking for time.h... $ECHO_C" >&6 ; }8094 echo "$as_me:$LINENO: checking for time.h" >&5 8095 echo $ECHO_N "checking for time.h... $ECHO_C" >&6 8378 8096 if test "${ac_cv_header_time_h+set}" = set; then 8379 8097 echo $ECHO_N "(cached) $ECHO_C" >&6 8380 8098 fi 8381 {echo "$as_me:$LINENO: result: $ac_cv_header_time_h" >&58382 echo "${ECHO_T}$ac_cv_header_time_h" >&6 ; }8099 echo "$as_me:$LINENO: result: $ac_cv_header_time_h" >&5 8100 echo "${ECHO_T}$ac_cv_header_time_h" >&6 8383 8101 else 8384 8102 # Is the header compilable? 8385 {echo "$as_me:$LINENO: checking time.h usability" >&58386 echo $ECHO_N "checking time.h usability... $ECHO_C" >&6 ; }8103 echo "$as_me:$LINENO: checking time.h usability" >&5 8104 echo $ECHO_N "checking time.h usability... $ECHO_C" >&6 8387 8105 cat >conftest.$ac_ext <<_ACEOF 8388 8106 /* confdefs.h. */ … … 8395 8113 _ACEOF 8396 8114 rm -f conftest.$ac_objext 8397 if { (ac_try="$ac_compile" 8398 case "(($ac_try" in 8399 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8400 *) ac_try_echo=$ac_try;; 8401 esac 8402 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8403 (eval "$ac_compile") 2>conftest.er1 8115 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 8116 (eval $ac_compile) 2>conftest.er1 8404 8117 ac_status=$? 8405 8118 grep -v '^ *+' conftest.er1 >conftest.err … … 8407 8120 cat conftest.err >&5 8408 8121 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8409 (exit $ac_status); } && { 8410 test -z "$ac_c_werror_flag" || 8411 test ! -s conftest.err 8412 } && test -s conftest.$ac_objext; then 8122 (exit $ac_status); } && 8123 { ac_try='test -z "$ac_c_werror_flag" 8124 || test ! -s conftest.err' 8125 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8126 (eval $ac_try) 2>&5 8127 ac_status=$? 8128 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8129 (exit $ac_status); }; } && 8130 { ac_try='test -s conftest.$ac_objext' 8131 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8132 (eval $ac_try) 2>&5 8133 ac_status=$? 8134 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8135 (exit $ac_status); }; }; then 8413 8136 ac_header_compiler=yes 8414 8137 else … … 8416 8139 sed 's/^/| /' conftest.$ac_ext >&5 8417 8140 8418 ac_header_compiler=no 8419 fi 8420 8421 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 8422 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8423 echo "${ECHO_T}$ac_header_compiler" >&6; } 8141 ac_header_compiler=no 8142 fi 8143 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 8144 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8145 echo "${ECHO_T}$ac_header_compiler" >&6 8424 8146 8425 8147 # Is the header present? 8426 {echo "$as_me:$LINENO: checking time.h presence" >&58427 echo $ECHO_N "checking time.h presence... $ECHO_C" >&6 ; }8148 echo "$as_me:$LINENO: checking time.h presence" >&5 8149 echo $ECHO_N "checking time.h presence... $ECHO_C" >&6 8428 8150 cat >conftest.$ac_ext <<_ACEOF 8429 8151 /* confdefs.h. */ … … 8434 8156 #include <time.h> 8435 8157 _ACEOF 8436 if { (ac_try="$ac_cpp conftest.$ac_ext" 8437 case "(($ac_try" in 8438 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8439 *) ac_try_echo=$ac_try;; 8440 esac 8441 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8442 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 8158 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 8159 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 8443 8160 ac_status=$? 8444 8161 grep -v '^ *+' conftest.er1 >conftest.err … … 8446 8163 cat conftest.err >&5 8447 8164 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8448 (exit $ac_status); } >/dev/null && { 8449 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 8450 test ! -s conftest.err 8451 }; then 8165 (exit $ac_status); } >/dev/null; then 8166 if test -s conftest.err; then 8167 ac_cpp_err=$ac_c_preproc_warn_flag 8168 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 8169 else 8170 ac_cpp_err= 8171 fi 8172 else 8173 ac_cpp_err=yes 8174 fi 8175 if test -z "$ac_cpp_err"; then 8452 8176 ac_header_preproc=yes 8453 8177 else … … 8457 8181 ac_header_preproc=no 8458 8182 fi 8459 8460 8183 rm -f conftest.err conftest.$ac_ext 8461 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&58462 echo "${ECHO_T}$ac_header_preproc" >&6 ; }8184 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 8185 echo "${ECHO_T}$ac_header_preproc" >&6 8463 8186 8464 8187 # So? What about this header? … … 8484 8207 { echo "$as_me:$LINENO: WARNING: time.h: in the future, the compiler will take precedence" >&5 8485 8208 echo "$as_me: WARNING: time.h: in the future, the compiler will take precedence" >&2;} 8486 8209 ( 8210 cat <<\_ASBOX 8211 ## ------------------------------------ ## 8212 ## Report this to the pjproject lists. ## 8213 ## ------------------------------------ ## 8214 _ASBOX 8215 ) | 8216 sed "s/^/$as_me: WARNING: /" >&2 8487 8217 ;; 8488 8218 esac 8489 {echo "$as_me:$LINENO: checking for time.h" >&58490 echo $ECHO_N "checking for time.h... $ECHO_C" >&6 ; }8219 echo "$as_me:$LINENO: checking for time.h" >&5 8220 echo $ECHO_N "checking for time.h... $ECHO_C" >&6 8491 8221 if test "${ac_cv_header_time_h+set}" = set; then 8492 8222 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 8494 8224 ac_cv_header_time_h=$ac_header_preproc 8495 8225 fi 8496 {echo "$as_me:$LINENO: result: $ac_cv_header_time_h" >&58497 echo "${ECHO_T}$ac_cv_header_time_h" >&6 ; }8226 echo "$as_me:$LINENO: result: $ac_cv_header_time_h" >&5 8227 echo "${ECHO_T}$ac_cv_header_time_h" >&6 8498 8228 8499 8229 fi … … 8507 8237 8508 8238 if test "${ac_cv_header_unistd_h+set}" = set; then 8509 {echo "$as_me:$LINENO: checking for unistd.h" >&58510 echo $ECHO_N "checking for unistd.h... $ECHO_C" >&6 ; }8239 echo "$as_me:$LINENO: checking for unistd.h" >&5 8240 echo $ECHO_N "checking for unistd.h... $ECHO_C" >&6 8511 8241 if test "${ac_cv_header_unistd_h+set}" = set; then 8512 8242 echo $ECHO_N "(cached) $ECHO_C" >&6 8513 8243 fi 8514 {echo "$as_me:$LINENO: result: $ac_cv_header_unistd_h" >&58515 echo "${ECHO_T}$ac_cv_header_unistd_h" >&6 ; }8244 echo "$as_me:$LINENO: result: $ac_cv_header_unistd_h" >&5 8245 echo "${ECHO_T}$ac_cv_header_unistd_h" >&6 8516 8246 else 8517 8247 # Is the header compilable? 8518 {echo "$as_me:$LINENO: checking unistd.h usability" >&58519 echo $ECHO_N "checking unistd.h usability... $ECHO_C" >&6 ; }8248 echo "$as_me:$LINENO: checking unistd.h usability" >&5 8249 echo $ECHO_N "checking unistd.h usability... $ECHO_C" >&6 8520 8250 cat >conftest.$ac_ext <<_ACEOF 8521 8251 /* confdefs.h. */ … … 8528 8258 _ACEOF 8529 8259 rm -f conftest.$ac_objext 8530 if { (ac_try="$ac_compile" 8531 case "(($ac_try" in 8532 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8533 *) ac_try_echo=$ac_try;; 8534 esac 8535 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8536 (eval "$ac_compile") 2>conftest.er1 8260 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 8261 (eval $ac_compile) 2>conftest.er1 8537 8262 ac_status=$? 8538 8263 grep -v '^ *+' conftest.er1 >conftest.err … … 8540 8265 cat conftest.err >&5 8541 8266 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8542 (exit $ac_status); } && { 8543 test -z "$ac_c_werror_flag" || 8544 test ! -s conftest.err 8545 } && test -s conftest.$ac_objext; then 8267 (exit $ac_status); } && 8268 { ac_try='test -z "$ac_c_werror_flag" 8269 || test ! -s conftest.err' 8270 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8271 (eval $ac_try) 2>&5 8272 ac_status=$? 8273 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8274 (exit $ac_status); }; } && 8275 { ac_try='test -s conftest.$ac_objext' 8276 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8277 (eval $ac_try) 2>&5 8278 ac_status=$? 8279 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8280 (exit $ac_status); }; }; then 8546 8281 ac_header_compiler=yes 8547 8282 else … … 8549 8284 sed 's/^/| /' conftest.$ac_ext >&5 8550 8285 8551 ac_header_compiler=no 8552 fi 8553 8554 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 8555 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8556 echo "${ECHO_T}$ac_header_compiler" >&6; } 8286 ac_header_compiler=no 8287 fi 8288 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 8289 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8290 echo "${ECHO_T}$ac_header_compiler" >&6 8557 8291 8558 8292 # Is the header present? 8559 {echo "$as_me:$LINENO: checking unistd.h presence" >&58560 echo $ECHO_N "checking unistd.h presence... $ECHO_C" >&6 ; }8293 echo "$as_me:$LINENO: checking unistd.h presence" >&5 8294 echo $ECHO_N "checking unistd.h presence... $ECHO_C" >&6 8561 8295 cat >conftest.$ac_ext <<_ACEOF 8562 8296 /* confdefs.h. */ … … 8567 8301 #include <unistd.h> 8568 8302 _ACEOF 8569 if { (ac_try="$ac_cpp conftest.$ac_ext" 8570 case "(($ac_try" in 8571 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8572 *) ac_try_echo=$ac_try;; 8573 esac 8574 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8575 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 8303 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 8304 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 8576 8305 ac_status=$? 8577 8306 grep -v '^ *+' conftest.er1 >conftest.err … … 8579 8308 cat conftest.err >&5 8580 8309 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8581 (exit $ac_status); } >/dev/null && { 8582 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 8583 test ! -s conftest.err 8584 }; then 8310 (exit $ac_status); } >/dev/null; then 8311 if test -s conftest.err; then 8312 ac_cpp_err=$ac_c_preproc_warn_flag 8313 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 8314 else 8315 ac_cpp_err= 8316 fi 8317 else 8318 ac_cpp_err=yes 8319 fi 8320 if test -z "$ac_cpp_err"; then 8585 8321 ac_header_preproc=yes 8586 8322 else … … 8590 8326 ac_header_preproc=no 8591 8327 fi 8592 8593 8328 rm -f conftest.err conftest.$ac_ext 8594 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&58595 echo "${ECHO_T}$ac_header_preproc" >&6 ; }8329 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 8330 echo "${ECHO_T}$ac_header_preproc" >&6 8596 8331 8597 8332 # So? What about this header? … … 8617 8352 { echo "$as_me:$LINENO: WARNING: unistd.h: in the future, the compiler will take precedence" >&5 8618 8353 echo "$as_me: WARNING: unistd.h: in the future, the compiler will take precedence" >&2;} 8619 8354 ( 8355 cat <<\_ASBOX 8356 ## ------------------------------------ ## 8357 ## Report this to the pjproject lists. ## 8358 ## ------------------------------------ ## 8359 _ASBOX 8360 ) | 8361 sed "s/^/$as_me: WARNING: /" >&2 8620 8362 ;; 8621 8363 esac 8622 {echo "$as_me:$LINENO: checking for unistd.h" >&58623 echo $ECHO_N "checking for unistd.h... $ECHO_C" >&6 ; }8364 echo "$as_me:$LINENO: checking for unistd.h" >&5 8365 echo $ECHO_N "checking for unistd.h... $ECHO_C" >&6 8624 8366 if test "${ac_cv_header_unistd_h+set}" = set; then 8625 8367 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 8627 8369 ac_cv_header_unistd_h=$ac_header_preproc 8628 8370 fi 8629 {echo "$as_me:$LINENO: result: $ac_cv_header_unistd_h" >&58630 echo "${ECHO_T}$ac_cv_header_unistd_h" >&6 ; }8371 echo "$as_me:$LINENO: result: $ac_cv_header_unistd_h" >&5 8372 echo "${ECHO_T}$ac_cv_header_unistd_h" >&6 8631 8373 8632 8374 fi … … 8640 8382 8641 8383 if test "${ac_cv_header_winsock_h+set}" = set; then 8642 {echo "$as_me:$LINENO: checking for winsock.h" >&58643 echo $ECHO_N "checking for winsock.h... $ECHO_C" >&6 ; }8384 echo "$as_me:$LINENO: checking for winsock.h" >&5 8385 echo $ECHO_N "checking for winsock.h... $ECHO_C" >&6 8644 8386 if test "${ac_cv_header_winsock_h+set}" = set; then 8645 8387 echo $ECHO_N "(cached) $ECHO_C" >&6 8646 8388 fi 8647 {echo "$as_me:$LINENO: result: $ac_cv_header_winsock_h" >&58648 echo "${ECHO_T}$ac_cv_header_winsock_h" >&6 ; }8389 echo "$as_me:$LINENO: result: $ac_cv_header_winsock_h" >&5 8390 echo "${ECHO_T}$ac_cv_header_winsock_h" >&6 8649 8391 else 8650 8392 # Is the header compilable? 8651 {echo "$as_me:$LINENO: checking winsock.h usability" >&58652 echo $ECHO_N "checking winsock.h usability... $ECHO_C" >&6 ; }8393 echo "$as_me:$LINENO: checking winsock.h usability" >&5 8394 echo $ECHO_N "checking winsock.h usability... $ECHO_C" >&6 8653 8395 cat >conftest.$ac_ext <<_ACEOF 8654 8396 /* confdefs.h. */ … … 8661 8403 _ACEOF 8662 8404 rm -f conftest.$ac_objext 8663 if { (ac_try="$ac_compile" 8664 case "(($ac_try" in 8665 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8666 *) ac_try_echo=$ac_try;; 8667 esac 8668 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8669 (eval "$ac_compile") 2>conftest.er1 8405 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 8406 (eval $ac_compile) 2>conftest.er1 8670 8407 ac_status=$? 8671 8408 grep -v '^ *+' conftest.er1 >conftest.err … … 8673 8410 cat conftest.err >&5 8674 8411 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8675 (exit $ac_status); } && { 8676 test -z "$ac_c_werror_flag" || 8677 test ! -s conftest.err 8678 } && test -s conftest.$ac_objext; then 8412 (exit $ac_status); } && 8413 { ac_try='test -z "$ac_c_werror_flag" 8414 || test ! -s conftest.err' 8415 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8416 (eval $ac_try) 2>&5 8417 ac_status=$? 8418 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8419 (exit $ac_status); }; } && 8420 { ac_try='test -s conftest.$ac_objext' 8421 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8422 (eval $ac_try) 2>&5 8423 ac_status=$? 8424 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8425 (exit $ac_status); }; }; then 8679 8426 ac_header_compiler=yes 8680 8427 else … … 8682 8429 sed 's/^/| /' conftest.$ac_ext >&5 8683 8430 8684 ac_header_compiler=no 8685 fi 8686 8687 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 8688 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8689 echo "${ECHO_T}$ac_header_compiler" >&6; } 8431 ac_header_compiler=no 8432 fi 8433 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 8434 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8435 echo "${ECHO_T}$ac_header_compiler" >&6 8690 8436 8691 8437 # Is the header present? 8692 {echo "$as_me:$LINENO: checking winsock.h presence" >&58693 echo $ECHO_N "checking winsock.h presence... $ECHO_C" >&6 ; }8438 echo "$as_me:$LINENO: checking winsock.h presence" >&5 8439 echo $ECHO_N "checking winsock.h presence... $ECHO_C" >&6 8694 8440 cat >conftest.$ac_ext <<_ACEOF 8695 8441 /* confdefs.h. */ … … 8700 8446 #include <winsock.h> 8701 8447 _ACEOF 8702 if { (ac_try="$ac_cpp conftest.$ac_ext" 8703 case "(($ac_try" in 8704 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8705 *) ac_try_echo=$ac_try;; 8706 esac 8707 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8708 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 8448 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 8449 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 8709 8450 ac_status=$? 8710 8451 grep -v '^ *+' conftest.er1 >conftest.err … … 8712 8453 cat conftest.err >&5 8713 8454 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8714 (exit $ac_status); } >/dev/null && { 8715 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 8716 test ! -s conftest.err 8717 }; then 8455 (exit $ac_status); } >/dev/null; then 8456 if test -s conftest.err; then 8457 ac_cpp_err=$ac_c_preproc_warn_flag 8458 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 8459 else 8460 ac_cpp_err= 8461 fi 8462 else 8463 ac_cpp_err=yes 8464 fi 8465 if test -z "$ac_cpp_err"; then 8718 8466 ac_header_preproc=yes 8719 8467 else … … 8723 8471 ac_header_preproc=no 8724 8472 fi 8725 8726 8473 rm -f conftest.err conftest.$ac_ext 8727 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&58728 echo "${ECHO_T}$ac_header_preproc" >&6 ; }8474 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 8475 echo "${ECHO_T}$ac_header_preproc" >&6 8729 8476 8730 8477 # So? What about this header? … … 8750 8497 { echo "$as_me:$LINENO: WARNING: winsock.h: in the future, the compiler will take precedence" >&5 8751 8498 echo "$as_me: WARNING: winsock.h: in the future, the compiler will take precedence" >&2;} 8752 8499 ( 8500 cat <<\_ASBOX 8501 ## ------------------------------------ ## 8502 ## Report this to the pjproject lists. ## 8503 ## ------------------------------------ ## 8504 _ASBOX 8505 ) | 8506 sed "s/^/$as_me: WARNING: /" >&2 8753 8507 ;; 8754 8508 esac 8755 {echo "$as_me:$LINENO: checking for winsock.h" >&58756 echo $ECHO_N "checking for winsock.h... $ECHO_C" >&6 ; }8509 echo "$as_me:$LINENO: checking for winsock.h" >&5 8510 echo $ECHO_N "checking for winsock.h... $ECHO_C" >&6 8757 8511 if test "${ac_cv_header_winsock_h+set}" = set; then 8758 8512 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 8760 8514 ac_cv_header_winsock_h=$ac_header_preproc 8761 8515 fi 8762 {echo "$as_me:$LINENO: result: $ac_cv_header_winsock_h" >&58763 echo "${ECHO_T}$ac_cv_header_winsock_h" >&6 ; }8516 echo "$as_me:$LINENO: result: $ac_cv_header_winsock_h" >&5 8517 echo "${ECHO_T}$ac_cv_header_winsock_h" >&6 8764 8518 8765 8519 fi … … 8773 8527 8774 8528 if test "${ac_cv_header_winsock2_h+set}" = set; then 8775 {echo "$as_me:$LINENO: checking for winsock2.h" >&58776 echo $ECHO_N "checking for winsock2.h... $ECHO_C" >&6 ; }8529 echo "$as_me:$LINENO: checking for winsock2.h" >&5 8530 echo $ECHO_N "checking for winsock2.h... $ECHO_C" >&6 8777 8531 if test "${ac_cv_header_winsock2_h+set}" = set; then 8778 8532 echo $ECHO_N "(cached) $ECHO_C" >&6 8779 8533 fi 8780 {echo "$as_me:$LINENO: result: $ac_cv_header_winsock2_h" >&58781 echo "${ECHO_T}$ac_cv_header_winsock2_h" >&6 ; }8534 echo "$as_me:$LINENO: result: $ac_cv_header_winsock2_h" >&5 8535 echo "${ECHO_T}$ac_cv_header_winsock2_h" >&6 8782 8536 else 8783 8537 # Is the header compilable? 8784 {echo "$as_me:$LINENO: checking winsock2.h usability" >&58785 echo $ECHO_N "checking winsock2.h usability... $ECHO_C" >&6 ; }8538 echo "$as_me:$LINENO: checking winsock2.h usability" >&5 8539 echo $ECHO_N "checking winsock2.h usability... $ECHO_C" >&6 8786 8540 cat >conftest.$ac_ext <<_ACEOF 8787 8541 /* confdefs.h. */ … … 8794 8548 _ACEOF 8795 8549 rm -f conftest.$ac_objext 8796 if { (ac_try="$ac_compile" 8797 case "(($ac_try" in 8798 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8799 *) ac_try_echo=$ac_try;; 8800 esac 8801 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8802 (eval "$ac_compile") 2>conftest.er1 8550 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 8551 (eval $ac_compile) 2>conftest.er1 8803 8552 ac_status=$? 8804 8553 grep -v '^ *+' conftest.er1 >conftest.err … … 8806 8555 cat conftest.err >&5 8807 8556 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8808 (exit $ac_status); } && { 8809 test -z "$ac_c_werror_flag" || 8810 test ! -s conftest.err 8811 } && test -s conftest.$ac_objext; then 8557 (exit $ac_status); } && 8558 { ac_try='test -z "$ac_c_werror_flag" 8559 || test ! -s conftest.err' 8560 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8561 (eval $ac_try) 2>&5 8562 ac_status=$? 8563 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8564 (exit $ac_status); }; } && 8565 { ac_try='test -s conftest.$ac_objext' 8566 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8567 (eval $ac_try) 2>&5 8568 ac_status=$? 8569 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8570 (exit $ac_status); }; }; then 8812 8571 ac_header_compiler=yes 8813 8572 else … … 8815 8574 sed 's/^/| /' conftest.$ac_ext >&5 8816 8575 8817 ac_header_compiler=no 8818 fi 8819 8820 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 8821 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8822 echo "${ECHO_T}$ac_header_compiler" >&6; } 8576 ac_header_compiler=no 8577 fi 8578 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 8579 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8580 echo "${ECHO_T}$ac_header_compiler" >&6 8823 8581 8824 8582 # Is the header present? 8825 {echo "$as_me:$LINENO: checking winsock2.h presence" >&58826 echo $ECHO_N "checking winsock2.h presence... $ECHO_C" >&6 ; }8583 echo "$as_me:$LINENO: checking winsock2.h presence" >&5 8584 echo $ECHO_N "checking winsock2.h presence... $ECHO_C" >&6 8827 8585 cat >conftest.$ac_ext <<_ACEOF 8828 8586 /* confdefs.h. */ … … 8833 8591 #include <winsock2.h> 8834 8592 _ACEOF 8835 if { (ac_try="$ac_cpp conftest.$ac_ext" 8836 case "(($ac_try" in 8837 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8838 *) ac_try_echo=$ac_try;; 8839 esac 8840 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8841 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 8593 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 8594 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 8842 8595 ac_status=$? 8843 8596 grep -v '^ *+' conftest.er1 >conftest.err … … 8845 8598 cat conftest.err >&5 8846 8599 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8847 (exit $ac_status); } >/dev/null && { 8848 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 8849 test ! -s conftest.err 8850 }; then 8600 (exit $ac_status); } >/dev/null; then 8601 if test -s conftest.err; then 8602 ac_cpp_err=$ac_c_preproc_warn_flag 8603 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 8604 else 8605 ac_cpp_err= 8606 fi 8607 else 8608 ac_cpp_err=yes 8609 fi 8610 if test -z "$ac_cpp_err"; then 8851 8611 ac_header_preproc=yes 8852 8612 else … … 8856 8616 ac_header_preproc=no 8857 8617 fi 8858 8859 8618 rm -f conftest.err conftest.$ac_ext 8860 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&58861 echo "${ECHO_T}$ac_header_preproc" >&6 ; }8619 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 8620 echo "${ECHO_T}$ac_header_preproc" >&6 8862 8621 8863 8622 # So? What about this header? … … 8883 8642 { echo "$as_me:$LINENO: WARNING: winsock2.h: in the future, the compiler will take precedence" >&5 8884 8643 echo "$as_me: WARNING: winsock2.h: in the future, the compiler will take precedence" >&2;} 8885 8644 ( 8645 cat <<\_ASBOX 8646 ## ------------------------------------ ## 8647 ## Report this to the pjproject lists. ## 8648 ## ------------------------------------ ## 8649 _ASBOX 8650 ) | 8651 sed "s/^/$as_me: WARNING: /" >&2 8886 8652 ;; 8887 8653 esac 8888 {echo "$as_me:$LINENO: checking for winsock2.h" >&58889 echo $ECHO_N "checking for winsock2.h... $ECHO_C" >&6 ; }8654 echo "$as_me:$LINENO: checking for winsock2.h" >&5 8655 echo $ECHO_N "checking for winsock2.h... $ECHO_C" >&6 8890 8656 if test "${ac_cv_header_winsock2_h+set}" = set; then 8891 8657 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 8893 8659 ac_cv_header_winsock2_h=$ac_header_preproc 8894 8660 fi 8895 {echo "$as_me:$LINENO: result: $ac_cv_header_winsock2_h" >&58896 echo "${ECHO_T}$ac_cv_header_winsock2_h" >&6 ; }8661 echo "$as_me:$LINENO: result: $ac_cv_header_winsock2_h" >&5 8662 echo "${ECHO_T}$ac_cv_header_winsock2_h" >&6 8897 8663 8898 8664 fi … … 8905 8671 8906 8672 8907 {echo "$as_me:$LINENO: checking for mswsock.h" >&58908 echo $ECHO_N "checking for mswsock.h... $ECHO_C" >&6 ; }8673 echo "$as_me:$LINENO: checking for mswsock.h" >&5 8674 echo $ECHO_N "checking for mswsock.h... $ECHO_C" >&6 8909 8675 if test "${ac_cv_header_mswsock_h+set}" = set; then 8910 8676 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 8926 8692 _ACEOF 8927 8693 rm -f conftest.$ac_objext 8928 if { (ac_try="$ac_compile" 8929 case "(($ac_try" in 8930 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8931 *) ac_try_echo=$ac_try;; 8932 esac 8933 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8934 (eval "$ac_compile") 2>conftest.er1 8694 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 8695 (eval $ac_compile) 2>conftest.er1 8935 8696 ac_status=$? 8936 8697 grep -v '^ *+' conftest.er1 >conftest.err … … 8938 8699 cat conftest.err >&5 8939 8700 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8940 (exit $ac_status); } && { 8941 test -z "$ac_c_werror_flag" || 8942 test ! -s conftest.err 8943 } && test -s conftest.$ac_objext; then 8701 (exit $ac_status); } && 8702 { ac_try='test -z "$ac_c_werror_flag" 8703 || test ! -s conftest.err' 8704 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8705 (eval $ac_try) 2>&5 8706 ac_status=$? 8707 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8708 (exit $ac_status); }; } && 8709 { ac_try='test -s conftest.$ac_objext' 8710 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8711 (eval $ac_try) 2>&5 8712 ac_status=$? 8713 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8714 (exit $ac_status); }; }; then 8944 8715 ac_cv_header_mswsock_h=yes 8945 8716 else … … 8947 8718 sed 's/^/| /' conftest.$ac_ext >&5 8948 8719 8949 ac_cv_header_mswsock_h=no 8950 fi 8951 8952 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 8953 fi 8954 { echo "$as_me:$LINENO: result: $ac_cv_header_mswsock_h" >&5 8955 echo "${ECHO_T}$ac_cv_header_mswsock_h" >&6; } 8720 ac_cv_header_mswsock_h=no 8721 fi 8722 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 8723 fi 8724 echo "$as_me:$LINENO: result: $ac_cv_header_mswsock_h" >&5 8725 echo "${ECHO_T}$ac_cv_header_mswsock_h" >&6 8956 8726 if test $ac_cv_header_mswsock_h = yes; then 8957 8727 cat >>confdefs.h <<\_ACEOF … … 8962 8732 8963 8733 8734 if test "${ac_cv_header_ws2tcpip_h+set}" = set; then 8735 echo "$as_me:$LINENO: checking for ws2tcpip.h" >&5 8736 echo $ECHO_N "checking for ws2tcpip.h... $ECHO_C" >&6 8737 if test "${ac_cv_header_ws2tcpip_h+set}" = set; then 8738 echo $ECHO_N "(cached) $ECHO_C" >&6 8739 fi 8740 echo "$as_me:$LINENO: result: $ac_cv_header_ws2tcpip_h" >&5 8741 echo "${ECHO_T}$ac_cv_header_ws2tcpip_h" >&6 8742 else 8743 # Is the header compilable? 8744 echo "$as_me:$LINENO: checking ws2tcpip.h usability" >&5 8745 echo $ECHO_N "checking ws2tcpip.h usability... $ECHO_C" >&6 8746 cat >conftest.$ac_ext <<_ACEOF 8747 /* confdefs.h. */ 8748 _ACEOF 8749 cat confdefs.h >>conftest.$ac_ext 8750 cat >>conftest.$ac_ext <<_ACEOF 8751 /* end confdefs.h. */ 8752 $ac_includes_default 8753 #include <ws2tcpip.h> 8754 _ACEOF 8755 rm -f conftest.$ac_objext 8756 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 8757 (eval $ac_compile) 2>conftest.er1 8758 ac_status=$? 8759 grep -v '^ *+' conftest.er1 >conftest.err 8760 rm -f conftest.er1 8761 cat conftest.err >&5 8762 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8763 (exit $ac_status); } && 8764 { ac_try='test -z "$ac_c_werror_flag" 8765 || test ! -s conftest.err' 8766 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8767 (eval $ac_try) 2>&5 8768 ac_status=$? 8769 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8770 (exit $ac_status); }; } && 8771 { ac_try='test -s conftest.$ac_objext' 8772 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8773 (eval $ac_try) 2>&5 8774 ac_status=$? 8775 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8776 (exit $ac_status); }; }; then 8777 ac_header_compiler=yes 8778 else 8779 echo "$as_me: failed program was:" >&5 8780 sed 's/^/| /' conftest.$ac_ext >&5 8781 8782 ac_header_compiler=no 8783 fi 8784 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 8785 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8786 echo "${ECHO_T}$ac_header_compiler" >&6 8787 8788 # Is the header present? 8789 echo "$as_me:$LINENO: checking ws2tcpip.h presence" >&5 8790 echo $ECHO_N "checking ws2tcpip.h presence... $ECHO_C" >&6 8791 cat >conftest.$ac_ext <<_ACEOF 8792 /* confdefs.h. */ 8793 _ACEOF 8794 cat confdefs.h >>conftest.$ac_ext 8795 cat >>conftest.$ac_ext <<_ACEOF 8796 /* end confdefs.h. */ 8797 #include <ws2tcpip.h> 8798 _ACEOF 8799 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 8800 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 8801 ac_status=$? 8802 grep -v '^ *+' conftest.er1 >conftest.err 8803 rm -f conftest.er1 8804 cat conftest.err >&5 8805 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8806 (exit $ac_status); } >/dev/null; then 8807 if test -s conftest.err; then 8808 ac_cpp_err=$ac_c_preproc_warn_flag 8809 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 8810 else 8811 ac_cpp_err= 8812 fi 8813 else 8814 ac_cpp_err=yes 8815 fi 8816 if test -z "$ac_cpp_err"; then 8817 ac_header_preproc=yes 8818 else 8819 echo "$as_me: failed program was:" >&5 8820 sed 's/^/| /' conftest.$ac_ext >&5 8821 8822 ac_header_preproc=no 8823 fi 8824 rm -f conftest.err conftest.$ac_ext 8825 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 8826 echo "${ECHO_T}$ac_header_preproc" >&6 8827 8828 # So? What about this header? 8829 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in 8830 yes:no: ) 8831 { echo "$as_me:$LINENO: WARNING: ws2tcpip.h: accepted by the compiler, rejected by the preprocessor!" >&5 8832 echo "$as_me: WARNING: ws2tcpip.h: accepted by the compiler, rejected by the preprocessor!" >&2;} 8833 { echo "$as_me:$LINENO: WARNING: ws2tcpip.h: proceeding with the compiler's result" >&5 8834 echo "$as_me: WARNING: ws2tcpip.h: proceeding with the compiler's result" >&2;} 8835 ac_header_preproc=yes 8836 ;; 8837 no:yes:* ) 8838 { echo "$as_me:$LINENO: WARNING: ws2tcpip.h: present but cannot be compiled" >&5 8839 echo "$as_me: WARNING: ws2tcpip.h: present but cannot be compiled" >&2;} 8840 { echo "$as_me:$LINENO: WARNING: ws2tcpip.h: check for missing prerequisite headers?" >&5 8841 echo "$as_me: WARNING: ws2tcpip.h: check for missing prerequisite headers?" >&2;} 8842 { echo "$as_me:$LINENO: WARNING: ws2tcpip.h: see the Autoconf documentation" >&5 8843 echo "$as_me: WARNING: ws2tcpip.h: see the Autoconf documentation" >&2;} 8844 { echo "$as_me:$LINENO: WARNING: ws2tcpip.h: section \"Present But Cannot Be Compiled\"" >&5 8845 echo "$as_me: WARNING: ws2tcpip.h: section \"Present But Cannot Be Compiled\"" >&2;} 8846 { echo "$as_me:$LINENO: WARNING: ws2tcpip.h: proceeding with the preprocessor's result" >&5 8847 echo "$as_me: WARNING: ws2tcpip.h: proceeding with the preprocessor's result" >&2;} 8848 { echo "$as_me:$LINENO: WARNING: ws2tcpip.h: in the future, the compiler will take precedence" >&5 8849 echo "$as_me: WARNING: ws2tcpip.h: in the future, the compiler will take precedence" >&2;} 8850 ( 8851 cat <<\_ASBOX 8852 ## ------------------------------------ ## 8853 ## Report this to the pjproject lists. ## 8854 ## ------------------------------------ ## 8855 _ASBOX 8856 ) | 8857 sed "s/^/$as_me: WARNING: /" >&2 8858 ;; 8859 esac 8860 echo "$as_me:$LINENO: checking for ws2tcpip.h" >&5 8861 echo $ECHO_N "checking for ws2tcpip.h... $ECHO_C" >&6 8862 if test "${ac_cv_header_ws2tcpip_h+set}" = set; then 8863 echo $ECHO_N "(cached) $ECHO_C" >&6 8864 else 8865 ac_cv_header_ws2tcpip_h=$ac_header_preproc 8866 fi 8867 echo "$as_me:$LINENO: result: $ac_cv_header_ws2tcpip_h" >&5 8868 echo "${ECHO_T}$ac_cv_header_ws2tcpip_h" >&6 8869 8870 fi 8871 if test $ac_cv_header_ws2tcpip_h = yes; then 8872 cat >>confdefs.h <<\_ACEOF 8873 #define PJ_HAS_WS2TCPIP_H 1 8874 _ACEOF 8875 8876 fi 8877 8878 8964 8879 if test "${ac_cv_header_uuid_uuid_h+set}" = set; then 8965 {echo "$as_me:$LINENO: checking for uuid/uuid.h" >&58966 echo $ECHO_N "checking for uuid/uuid.h... $ECHO_C" >&6 ; }8880 echo "$as_me:$LINENO: checking for uuid/uuid.h" >&5 8881 echo $ECHO_N "checking for uuid/uuid.h... $ECHO_C" >&6 8967 8882 if test "${ac_cv_header_uuid_uuid_h+set}" = set; then 8968 8883 echo $ECHO_N "(cached) $ECHO_C" >&6 8969 8884 fi 8970 {echo "$as_me:$LINENO: result: $ac_cv_header_uuid_uuid_h" >&58971 echo "${ECHO_T}$ac_cv_header_uuid_uuid_h" >&6 ; }8885 echo "$as_me:$LINENO: result: $ac_cv_header_uuid_uuid_h" >&5 8886 echo "${ECHO_T}$ac_cv_header_uuid_uuid_h" >&6 8972 8887 else 8973 8888 # Is the header compilable? 8974 {echo "$as_me:$LINENO: checking uuid/uuid.h usability" >&58975 echo $ECHO_N "checking uuid/uuid.h usability... $ECHO_C" >&6 ; }8889 echo "$as_me:$LINENO: checking uuid/uuid.h usability" >&5 8890 echo $ECHO_N "checking uuid/uuid.h usability... $ECHO_C" >&6 8976 8891 cat >conftest.$ac_ext <<_ACEOF 8977 8892 /* confdefs.h. */ … … 8984 8899 _ACEOF 8985 8900 rm -f conftest.$ac_objext 8986 if { (ac_try="$ac_compile" 8987 case "(($ac_try" in 8988 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 8989 *) ac_try_echo=$ac_try;; 8990 esac 8991 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 8992 (eval "$ac_compile") 2>conftest.er1 8901 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 8902 (eval $ac_compile) 2>conftest.er1 8993 8903 ac_status=$? 8994 8904 grep -v '^ *+' conftest.er1 >conftest.err … … 8996 8906 cat conftest.err >&5 8997 8907 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8998 (exit $ac_status); } && { 8999 test -z "$ac_c_werror_flag" || 9000 test ! -s conftest.err 9001 } && test -s conftest.$ac_objext; then 8908 (exit $ac_status); } && 8909 { ac_try='test -z "$ac_c_werror_flag" 8910 || test ! -s conftest.err' 8911 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8912 (eval $ac_try) 2>&5 8913 ac_status=$? 8914 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8915 (exit $ac_status); }; } && 8916 { ac_try='test -s conftest.$ac_objext' 8917 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 8918 (eval $ac_try) 2>&5 8919 ac_status=$? 8920 echo "$as_me:$LINENO: \$? = $ac_status" >&5 8921 (exit $ac_status); }; }; then 9002 8922 ac_header_compiler=yes 9003 8923 else … … 9005 8925 sed 's/^/| /' conftest.$ac_ext >&5 9006 8926 9007 ac_header_compiler=no 9008 fi 9009 9010 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9011 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 9012 echo "${ECHO_T}$ac_header_compiler" >&6; } 8927 ac_header_compiler=no 8928 fi 8929 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 8930 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 8931 echo "${ECHO_T}$ac_header_compiler" >&6 9013 8932 9014 8933 # Is the header present? 9015 {echo "$as_me:$LINENO: checking uuid/uuid.h presence" >&59016 echo $ECHO_N "checking uuid/uuid.h presence... $ECHO_C" >&6 ; }8934 echo "$as_me:$LINENO: checking uuid/uuid.h presence" >&5 8935 echo $ECHO_N "checking uuid/uuid.h presence... $ECHO_C" >&6 9017 8936 cat >conftest.$ac_ext <<_ACEOF 9018 8937 /* confdefs.h. */ … … 9023 8942 #include <uuid/uuid.h> 9024 8943 _ACEOF 9025 if { (ac_try="$ac_cpp conftest.$ac_ext" 9026 case "(($ac_try" in 9027 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9028 *) ac_try_echo=$ac_try;; 9029 esac 9030 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9031 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 8944 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 8945 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 9032 8946 ac_status=$? 9033 8947 grep -v '^ *+' conftest.er1 >conftest.err … … 9035 8949 cat conftest.err >&5 9036 8950 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9037 (exit $ac_status); } >/dev/null && { 9038 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 9039 test ! -s conftest.err 9040 }; then 8951 (exit $ac_status); } >/dev/null; then 8952 if test -s conftest.err; then 8953 ac_cpp_err=$ac_c_preproc_warn_flag 8954 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 8955 else 8956 ac_cpp_err= 8957 fi 8958 else 8959 ac_cpp_err=yes 8960 fi 8961 if test -z "$ac_cpp_err"; then 9041 8962 ac_header_preproc=yes 9042 8963 else … … 9046 8967 ac_header_preproc=no 9047 8968 fi 9048 9049 8969 rm -f conftest.err conftest.$ac_ext 9050 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&59051 echo "${ECHO_T}$ac_header_preproc" >&6 ; }8970 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 8971 echo "${ECHO_T}$ac_header_preproc" >&6 9052 8972 9053 8973 # So? What about this header? … … 9073 8993 { echo "$as_me:$LINENO: WARNING: uuid/uuid.h: in the future, the compiler will take precedence" >&5 9074 8994 echo "$as_me: WARNING: uuid/uuid.h: in the future, the compiler will take precedence" >&2;} 9075 8995 ( 8996 cat <<\_ASBOX 8997 ## ------------------------------------ ## 8998 ## Report this to the pjproject lists. ## 8999 ## ------------------------------------ ## 9000 _ASBOX 9001 ) | 9002 sed "s/^/$as_me: WARNING: /" >&2 9076 9003 ;; 9077 9004 esac 9078 {echo "$as_me:$LINENO: checking for uuid/uuid.h" >&59079 echo $ECHO_N "checking for uuid/uuid.h... $ECHO_C" >&6 ; }9005 echo "$as_me:$LINENO: checking for uuid/uuid.h" >&5 9006 echo $ECHO_N "checking for uuid/uuid.h... $ECHO_C" >&6 9080 9007 if test "${ac_cv_header_uuid_uuid_h+set}" = set; then 9081 9008 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 9083 9010 ac_cv_header_uuid_uuid_h=$ac_header_preproc 9084 9011 fi 9085 {echo "$as_me:$LINENO: result: $ac_cv_header_uuid_uuid_h" >&59086 echo "${ECHO_T}$ac_cv_header_uuid_uuid_h" >&6 ; }9012 echo "$as_me:$LINENO: result: $ac_cv_header_uuid_uuid_h" >&5 9013 echo "${ECHO_T}$ac_cv_header_uuid_uuid_h" >&6 9087 9014 9088 9015 fi … … 9092 9019 9093 9020 9094 {echo "$as_me:$LINENO: checking for net/if.h" >&59095 echo $ECHO_N "checking for net/if.h... $ECHO_C" >&6 ; }9021 echo "$as_me:$LINENO: checking for net/if.h" >&5 9022 echo $ECHO_N "checking for net/if.h... $ECHO_C" >&6 9096 9023 if test "${ac_cv_header_net_if_h+set}" = set; then 9097 9024 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 9111 9038 _ACEOF 9112 9039 rm -f conftest.$ac_objext 9113 if { (ac_try="$ac_compile" 9114 case "(($ac_try" in 9115 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9116 *) ac_try_echo=$ac_try;; 9117 esac 9118 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9119 (eval "$ac_compile") 2>conftest.er1 9040 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9041 (eval $ac_compile) 2>conftest.er1 9120 9042 ac_status=$? 9121 9043 grep -v '^ *+' conftest.er1 >conftest.err … … 9123 9045 cat conftest.err >&5 9124 9046 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9125 (exit $ac_status); } && { 9126 test -z "$ac_c_werror_flag" || 9127 test ! -s conftest.err 9128 } && test -s conftest.$ac_objext; then 9047 (exit $ac_status); } && 9048 { ac_try='test -z "$ac_c_werror_flag" 9049 || test ! -s conftest.err' 9050 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9051 (eval $ac_try) 2>&5 9052 ac_status=$? 9053 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9054 (exit $ac_status); }; } && 9055 { ac_try='test -s conftest.$ac_objext' 9056 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9057 (eval $ac_try) 2>&5 9058 ac_status=$? 9059 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9060 (exit $ac_status); }; }; then 9129 9061 ac_cv_header_net_if_h=yes 9130 9062 else … … 9132 9064 sed 's/^/| /' conftest.$ac_ext >&5 9133 9065 9134 ac_cv_header_net_if_h=no 9135 fi 9136 9137 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9138 fi 9139 { echo "$as_me:$LINENO: result: $ac_cv_header_net_if_h" >&5 9140 echo "${ECHO_T}$ac_cv_header_net_if_h" >&6; } 9066 ac_cv_header_net_if_h=no 9067 fi 9068 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9069 fi 9070 echo "$as_me:$LINENO: result: $ac_cv_header_net_if_h" >&5 9071 echo "${ECHO_T}$ac_cv_header_net_if_h" >&6 9141 9072 if test $ac_cv_header_net_if_h = yes; then 9142 9073 cat >>confdefs.h <<\_ACEOF … … 9148 9079 9149 9080 9150 {echo "$as_me:$LINENO: result: Setting PJ_OS_NAME to $target" >&59151 echo "${ECHO_T}Setting PJ_OS_NAME to $target" >&6 ; }9081 echo "$as_me:$LINENO: result: Setting PJ_OS_NAME to $target" >&5 9082 echo "${ECHO_T}Setting PJ_OS_NAME to $target" >&6 9152 9083 cat >>confdefs.h <<_ACEOF 9153 9084 #define PJ_OS_NAME "$target" … … 9155 9086 9156 9087 9157 {echo "$as_me:$LINENO: result: Setting PJ_HAS_ERRNO_VAR to 1" >&59158 echo "${ECHO_T}Setting PJ_HAS_ERRNO_VAR to 1" >&6 ; }9088 echo "$as_me:$LINENO: result: Setting PJ_HAS_ERRNO_VAR to 1" >&5 9089 echo "${ECHO_T}Setting PJ_HAS_ERRNO_VAR to 1" >&6 9159 9090 cat >>confdefs.h <<\_ACEOF 9160 9091 #define PJ_HAS_ERRNO_VAR 1 … … 9162 9093 9163 9094 9164 {echo "$as_me:$LINENO: result: Setting PJ_HAS_HIGH_RES_TIMER to 1" >&59165 echo "${ECHO_T}Setting PJ_HAS_HIGH_RES_TIMER to 1" >&6 ; }9095 echo "$as_me:$LINENO: result: Setting PJ_HAS_HIGH_RES_TIMER to 1" >&5 9096 echo "${ECHO_T}Setting PJ_HAS_HIGH_RES_TIMER to 1" >&6 9166 9097 cat >>confdefs.h <<\_ACEOF 9167 9098 #define PJ_HAS_HIGH_RES_TIMER 1 … … 9169 9100 9170 9101 9171 {echo "$as_me:$LINENO: result: Setting PJ_HAS_MALLOC to 1" >&59172 echo "${ECHO_T}Setting PJ_HAS_MALLOC to 1" >&6 ; }9102 echo "$as_me:$LINENO: result: Setting PJ_HAS_MALLOC to 1" >&5 9103 echo "${ECHO_T}Setting PJ_HAS_MALLOC to 1" >&6 9173 9104 cat >>confdefs.h <<\_ACEOF 9174 9105 #define PJ_HAS_MALLOC 1 … … 9176 9107 9177 9108 9178 {echo "$as_me:$LINENO: result: Setting PJ_NATIVE_STRING_IS_UNICODE to 0" >&59179 echo "${ECHO_T}Setting PJ_NATIVE_STRING_IS_UNICODE to 0" >&6 ; }9109 echo "$as_me:$LINENO: result: Setting PJ_NATIVE_STRING_IS_UNICODE to 0" >&5 9110 echo "${ECHO_T}Setting PJ_NATIVE_STRING_IS_UNICODE to 0" >&6 9180 9111 cat >>confdefs.h <<\_ACEOF 9181 9112 #define PJ_NATIVE_STRING_IS_UNICODE 0 … … 9183 9114 9184 9115 9185 {echo "$as_me:$LINENO: result: Setting PJ_ATOMIC_VALUE_TYPE to long" >&59186 echo "${ECHO_T}Setting PJ_ATOMIC_VALUE_TYPE to long" >&6 ; }9116 echo "$as_me:$LINENO: result: Setting PJ_ATOMIC_VALUE_TYPE to long" >&5 9117 echo "${ECHO_T}Setting PJ_ATOMIC_VALUE_TYPE to long" >&6 9187 9118 cat >>confdefs.h <<\_ACEOF 9188 9119 #define PJ_ATOMIC_VALUE_TYPE long … … 9190 9121 9191 9122 9192 {echo "$as_me:$LINENO: checking if inet_aton() is available" >&59193 echo $ECHO_N "checking if inet_aton() is available... $ECHO_C" >&6 ; }9123 echo "$as_me:$LINENO: checking if inet_aton() is available" >&5 9124 echo $ECHO_N "checking if inet_aton() is available... $ECHO_C" >&6 9194 9125 cat >conftest.$ac_ext <<_ACEOF 9195 9126 /* confdefs.h. */ … … 9210 9141 _ACEOF 9211 9142 rm -f conftest.$ac_objext 9212 if { (ac_try="$ac_compile" 9213 case "(($ac_try" in 9214 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9215 *) ac_try_echo=$ac_try;; 9216 esac 9217 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9218 (eval "$ac_compile") 2>conftest.er1 9143 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9144 (eval $ac_compile) 2>conftest.er1 9219 9145 ac_status=$? 9220 9146 grep -v '^ *+' conftest.er1 >conftest.err … … 9222 9148 cat conftest.err >&5 9223 9149 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9224 (exit $ac_status); } && { 9225 test -z "$ac_c_werror_flag" || 9226 test ! -s conftest.err 9227 } && test -s conftest.$ac_objext; then 9150 (exit $ac_status); } && 9151 { ac_try='test -z "$ac_c_werror_flag" 9152 || test ! -s conftest.err' 9153 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9154 (eval $ac_try) 2>&5 9155 ac_status=$? 9156 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9157 (exit $ac_status); }; } && 9158 { ac_try='test -s conftest.$ac_objext' 9159 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9160 (eval $ac_try) 2>&5 9161 ac_status=$? 9162 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9163 (exit $ac_status); }; }; then 9228 9164 cat >>confdefs.h <<\_ACEOF 9229 9165 #define PJ_SOCK_HAS_INET_ATON 1 9230 9166 _ACEOF 9231 9167 9232 {echo "$as_me:$LINENO: result: yes" >&59233 echo "${ECHO_T}yes" >&6 ; }9168 echo "$as_me:$LINENO: result: yes" >&5 9169 echo "${ECHO_T}yes" >&6 9234 9170 else 9235 9171 echo "$as_me: failed program was:" >&5 9236 9172 sed 's/^/| /' conftest.$ac_ext >&5 9237 9173 9238 { echo "$as_me:$LINENO: result: no" >&5 9239 echo "${ECHO_T}no" >&6; } 9240 fi 9241 9242 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9243 9244 { echo "$as_me:$LINENO: checking if inet_pton() is available" >&5 9245 echo $ECHO_N "checking if inet_pton() is available... $ECHO_C" >&6; } 9174 echo "$as_me:$LINENO: result: no" >&5 9175 echo "${ECHO_T}no" >&6 9176 fi 9177 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9178 9179 echo "$as_me:$LINENO: checking if inet_pton() is available" >&5 9180 echo $ECHO_N "checking if inet_pton() is available... $ECHO_C" >&6 9246 9181 cat >conftest.$ac_ext <<_ACEOF 9247 9182 /* confdefs.h. */ … … 9262 9197 _ACEOF 9263 9198 rm -f conftest.$ac_objext 9264 if { (ac_try="$ac_compile" 9265 case "(($ac_try" in 9266 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9267 *) ac_try_echo=$ac_try;; 9268 esac 9269 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9270 (eval "$ac_compile") 2>conftest.er1 9199 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9200 (eval $ac_compile) 2>conftest.er1 9271 9201 ac_status=$? 9272 9202 grep -v '^ *+' conftest.er1 >conftest.err … … 9274 9204 cat conftest.err >&5 9275 9205 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9276 (exit $ac_status); } && { 9277 test -z "$ac_c_werror_flag" || 9278 test ! -s conftest.err 9279 } && test -s conftest.$ac_objext; then 9206 (exit $ac_status); } && 9207 { ac_try='test -z "$ac_c_werror_flag" 9208 || test ! -s conftest.err' 9209 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9210 (eval $ac_try) 2>&5 9211 ac_status=$? 9212 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9213 (exit $ac_status); }; } && 9214 { ac_try='test -s conftest.$ac_objext' 9215 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9216 (eval $ac_try) 2>&5 9217 ac_status=$? 9218 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9219 (exit $ac_status); }; }; then 9280 9220 cat >>confdefs.h <<\_ACEOF 9281 9221 #define PJ_SOCK_HAS_INET_PTON 1 9282 9222 _ACEOF 9283 9223 9284 {echo "$as_me:$LINENO: result: yes" >&59285 echo "${ECHO_T}yes" >&6 ; }9224 echo "$as_me:$LINENO: result: yes" >&5 9225 echo "${ECHO_T}yes" >&6 9286 9226 else 9287 9227 echo "$as_me: failed program was:" >&5 9288 9228 sed 's/^/| /' conftest.$ac_ext >&5 9289 9229 9290 { echo "$as_me:$LINENO: result: no" >&5 9291 echo "${ECHO_T}no" >&6; } 9292 fi 9293 9294 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9295 9296 { echo "$as_me:$LINENO: checking if inet_ntop() is available" >&5 9297 echo $ECHO_N "checking if inet_ntop() is available... $ECHO_C" >&6; } 9230 echo "$as_me:$LINENO: result: no" >&5 9231 echo "${ECHO_T}no" >&6 9232 fi 9233 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9234 9235 echo "$as_me:$LINENO: checking if inet_ntop() is available" >&5 9236 echo $ECHO_N "checking if inet_ntop() is available... $ECHO_C" >&6 9298 9237 cat >conftest.$ac_ext <<_ACEOF 9299 9238 /* confdefs.h. */ … … 9314 9253 _ACEOF 9315 9254 rm -f conftest.$ac_objext 9316 if { (ac_try="$ac_compile" 9317 case "(($ac_try" in 9318 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9319 *) ac_try_echo=$ac_try;; 9320 esac 9321 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9322 (eval "$ac_compile") 2>conftest.er1 9255 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9256 (eval $ac_compile) 2>conftest.er1 9323 9257 ac_status=$? 9324 9258 grep -v '^ *+' conftest.er1 >conftest.err … … 9326 9260 cat conftest.err >&5 9327 9261 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9328 (exit $ac_status); } && { 9329 test -z "$ac_c_werror_flag" || 9330 test ! -s conftest.err 9331 } && test -s conftest.$ac_objext; then 9262 (exit $ac_status); } && 9263 { ac_try='test -z "$ac_c_werror_flag" 9264 || test ! -s conftest.err' 9265 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9266 (eval $ac_try) 2>&5 9267 ac_status=$? 9268 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9269 (exit $ac_status); }; } && 9270 { ac_try='test -s conftest.$ac_objext' 9271 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9272 (eval $ac_try) 2>&5 9273 ac_status=$? 9274 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9275 (exit $ac_status); }; }; then 9332 9276 cat >>confdefs.h <<\_ACEOF 9333 9277 #define PJ_SOCK_HAS_INET_NTOP 1 9334 9278 _ACEOF 9335 9279 9336 {echo "$as_me:$LINENO: result: yes" >&59337 echo "${ECHO_T}yes" >&6 ; }9280 echo "$as_me:$LINENO: result: yes" >&5 9281 echo "${ECHO_T}yes" >&6 9338 9282 else 9339 9283 echo "$as_me: failed program was:" >&5 9340 9284 sed 's/^/| /' conftest.$ac_ext >&5 9341 9285 9342 { echo "$as_me:$LINENO: result: no" >&5 9343 echo "${ECHO_T}no" >&6; } 9344 fi 9345 9346 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9347 9348 { echo "$as_me:$LINENO: checking if getaddrinfo() is available" >&5 9349 echo $ECHO_N "checking if getaddrinfo() is available... $ECHO_C" >&6; } 9286 echo "$as_me:$LINENO: result: no" >&5 9287 echo "${ECHO_T}no" >&6 9288 fi 9289 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9290 9291 echo "$as_me:$LINENO: checking if getaddrinfo() is available" >&5 9292 echo $ECHO_N "checking if getaddrinfo() is available... $ECHO_C" >&6 9350 9293 cat >conftest.$ac_ext <<_ACEOF 9351 9294 /* confdefs.h. */ … … 9366 9309 _ACEOF 9367 9310 rm -f conftest.$ac_objext 9368 if { (ac_try="$ac_compile" 9369 case "(($ac_try" in 9370 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9371 *) ac_try_echo=$ac_try;; 9372 esac 9373 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9374 (eval "$ac_compile") 2>conftest.er1 9311 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9312 (eval $ac_compile) 2>conftest.er1 9375 9313 ac_status=$? 9376 9314 grep -v '^ *+' conftest.er1 >conftest.err … … 9378 9316 cat conftest.err >&5 9379 9317 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9380 (exit $ac_status); } && { 9381 test -z "$ac_c_werror_flag" || 9382 test ! -s conftest.err 9383 } && test -s conftest.$ac_objext; then 9318 (exit $ac_status); } && 9319 { ac_try='test -z "$ac_c_werror_flag" 9320 || test ! -s conftest.err' 9321 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9322 (eval $ac_try) 2>&5 9323 ac_status=$? 9324 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9325 (exit $ac_status); }; } && 9326 { ac_try='test -s conftest.$ac_objext' 9327 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9328 (eval $ac_try) 2>&5 9329 ac_status=$? 9330 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9331 (exit $ac_status); }; }; then 9384 9332 cat >>confdefs.h <<\_ACEOF 9385 9333 #define PJ_SOCK_HAS_GETADDRINFO 1 9386 9334 _ACEOF 9387 9335 9388 {echo "$as_me:$LINENO: result: yes" >&59389 echo "${ECHO_T}yes" >&6 ; }9336 echo "$as_me:$LINENO: result: yes" >&5 9337 echo "${ECHO_T}yes" >&6 9390 9338 else 9391 9339 echo "$as_me: failed program was:" >&5 9392 9340 sed 's/^/| /' conftest.$ac_ext >&5 9393 9341 9394 { echo "$as_me:$LINENO: result: no" >&5 9395 echo "${ECHO_T}no" >&6; } 9396 fi 9397 9398 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9399 9400 { echo "$as_me:$LINENO: checking if sockaddr_in has sin_len member" >&5 9401 echo $ECHO_N "checking if sockaddr_in has sin_len member... $ECHO_C" >&6; } 9342 echo "$as_me:$LINENO: result: no" >&5 9343 echo "${ECHO_T}no" >&6 9344 fi 9345 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9346 9347 echo "$as_me:$LINENO: checking if sockaddr_in has sin_len member" >&5 9348 echo $ECHO_N "checking if sockaddr_in has sin_len member... $ECHO_C" >&6 9402 9349 cat >conftest.$ac_ext <<_ACEOF 9403 9350 /* confdefs.h. */ … … 9419 9366 _ACEOF 9420 9367 rm -f conftest.$ac_objext 9421 if { (ac_try="$ac_compile" 9422 case "(($ac_try" in 9423 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9424 *) ac_try_echo=$ac_try;; 9425 esac 9426 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9427 (eval "$ac_compile") 2>conftest.er1 9368 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9369 (eval $ac_compile) 2>conftest.er1 9428 9370 ac_status=$? 9429 9371 grep -v '^ *+' conftest.er1 >conftest.err … … 9431 9373 cat conftest.err >&5 9432 9374 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9433 (exit $ac_status); } && { 9434 test -z "$ac_c_werror_flag" || 9435 test ! -s conftest.err 9436 } && test -s conftest.$ac_objext; then 9375 (exit $ac_status); } && 9376 { ac_try='test -z "$ac_c_werror_flag" 9377 || test ! -s conftest.err' 9378 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9379 (eval $ac_try) 2>&5 9380 ac_status=$? 9381 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9382 (exit $ac_status); }; } && 9383 { ac_try='test -s conftest.$ac_objext' 9384 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9385 (eval $ac_try) 2>&5 9386 ac_status=$? 9387 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9388 (exit $ac_status); }; }; then 9437 9389 cat >>confdefs.h <<\_ACEOF 9438 9390 #define PJ_SOCKADDR_HAS_LEN 1 9439 9391 _ACEOF 9440 9392 9441 {echo "$as_me:$LINENO: result: yes" >&59442 echo "${ECHO_T}yes" >&6 ; }9393 echo "$as_me:$LINENO: result: yes" >&5 9394 echo "${ECHO_T}yes" >&6 9443 9395 else 9444 9396 echo "$as_me: failed program was:" >&5 9445 9397 sed 's/^/| /' conftest.$ac_ext >&5 9446 9398 9447 { echo "$as_me:$LINENO: result: no" >&5 9448 echo "${ECHO_T}no" >&6; } 9449 fi 9450 9451 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9452 9453 { echo "$as_me:$LINENO: checking if socklen_t is available" >&5 9454 echo $ECHO_N "checking if socklen_t is available... $ECHO_C" >&6; } 9399 echo "$as_me:$LINENO: result: no" >&5 9400 echo "${ECHO_T}no" >&6 9401 fi 9402 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9403 9404 echo "$as_me:$LINENO: checking if socklen_t is available" >&5 9405 echo $ECHO_N "checking if socklen_t is available... $ECHO_C" >&6 9455 9406 cat >conftest.$ac_ext <<_ACEOF 9456 9407 /* confdefs.h. */ … … 9469 9420 _ACEOF 9470 9421 rm -f conftest.$ac_objext 9471 if { (ac_try="$ac_compile" 9472 case "(($ac_try" in 9473 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9474 *) ac_try_echo=$ac_try;; 9475 esac 9476 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9477 (eval "$ac_compile") 2>conftest.er1 9422 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9423 (eval $ac_compile) 2>conftest.er1 9478 9424 ac_status=$? 9479 9425 grep -v '^ *+' conftest.er1 >conftest.err … … 9481 9427 cat conftest.err >&5 9482 9428 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9483 (exit $ac_status); } && { 9484 test -z "$ac_c_werror_flag" || 9485 test ! -s conftest.err 9486 } && test -s conftest.$ac_objext; then 9429 (exit $ac_status); } && 9430 { ac_try='test -z "$ac_c_werror_flag" 9431 || test ! -s conftest.err' 9432 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9433 (eval $ac_try) 2>&5 9434 ac_status=$? 9435 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9436 (exit $ac_status); }; } && 9437 { ac_try='test -s conftest.$ac_objext' 9438 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9439 (eval $ac_try) 2>&5 9440 ac_status=$? 9441 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9442 (exit $ac_status); }; }; then 9487 9443 cat >>confdefs.h <<\_ACEOF 9488 9444 #define PJ_HAS_SOCKLEN_T 1 9489 9445 _ACEOF 9490 9446 9491 {echo "$as_me:$LINENO: result: yes" >&59492 echo "${ECHO_T}yes" >&6 ; }9447 echo "$as_me:$LINENO: result: yes" >&5 9448 echo "${ECHO_T}yes" >&6 9493 9449 else 9494 9450 echo "$as_me: failed program was:" >&5 9495 9451 sed 's/^/| /' conftest.$ac_ext >&5 9496 9452 9497 { echo "$as_me:$LINENO: result: no" >&5 9498 echo "${ECHO_T}no" >&6; } 9499 fi 9500 9501 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9502 9503 { echo "$as_me:$LINENO: checking if SO_ERROR is available" >&5 9504 echo $ECHO_N "checking if SO_ERROR is available... $ECHO_C" >&6; } 9453 echo "$as_me:$LINENO: result: no" >&5 9454 echo "${ECHO_T}no" >&6 9455 fi 9456 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9457 9458 echo "$as_me:$LINENO: checking if SO_ERROR is available" >&5 9459 echo $ECHO_N "checking if SO_ERROR is available... $ECHO_C" >&6 9505 9460 case $target in 9506 9461 *mingw* | *cygw* | *win32* | *w32* ) … … 9509 9464 _ACEOF 9510 9465 9511 {echo "$as_me:$LINENO: result: yes" >&59512 echo "${ECHO_T}yes" >&6 ; }9466 echo "$as_me:$LINENO: result: yes" >&5 9467 echo "${ECHO_T}yes" >&6 9513 9468 ;; 9514 9469 *) … … 9532 9487 _ACEOF 9533 9488 rm -f conftest.$ac_objext 9534 if { (ac_try="$ac_compile" 9535 case "(($ac_try" in 9536 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9537 *) ac_try_echo=$ac_try;; 9538 esac 9539 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9540 (eval "$ac_compile") 2>conftest.er1 9489 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9490 (eval $ac_compile) 2>conftest.er1 9541 9491 ac_status=$? 9542 9492 grep -v '^ *+' conftest.er1 >conftest.err … … 9544 9494 cat conftest.err >&5 9545 9495 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9546 (exit $ac_status); } && { 9547 test -z "$ac_c_werror_flag" || 9548 test ! -s conftest.err 9549 } && test -s conftest.$ac_objext; then 9496 (exit $ac_status); } && 9497 { ac_try='test -z "$ac_c_werror_flag" 9498 || test ! -s conftest.err' 9499 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9500 (eval $ac_try) 2>&5 9501 ac_status=$? 9502 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9503 (exit $ac_status); }; } && 9504 { ac_try='test -s conftest.$ac_objext' 9505 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9506 (eval $ac_try) 2>&5 9507 ac_status=$? 9508 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9509 (exit $ac_status); }; }; then 9550 9510 cat >>confdefs.h <<\_ACEOF 9551 9511 #define PJ_HAS_SO_ERROR 1 9552 9512 _ACEOF 9553 9513 9554 {echo "$as_me:$LINENO: result: yes" >&59555 echo "${ECHO_T}yes" >&6 ; }9514 echo "$as_me:$LINENO: result: yes" >&5 9515 echo "${ECHO_T}yes" >&6 9556 9516 else 9557 9517 echo "$as_me: failed program was:" >&5 9558 9518 sed 's/^/| /' conftest.$ac_ext >&5 9559 9519 9560 { echo "$as_me:$LINENO: result: no" >&5 9561 echo "${ECHO_T}no" >&6; } 9562 fi 9563 9564 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9520 echo "$as_me:$LINENO: result: no" >&5 9521 echo "${ECHO_T}no" >&6 9522 fi 9523 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9565 9524 ;; 9566 9525 esac 9567 9526 9568 9527 9569 {echo "$as_me:$LINENO: checking if pthread_rwlock_t is available" >&59570 echo $ECHO_N "checking if pthread_rwlock_t is available... $ECHO_C" >&6 ; }9528 echo "$as_me:$LINENO: checking if pthread_rwlock_t is available" >&5 9529 echo $ECHO_N "checking if pthread_rwlock_t is available... $ECHO_C" >&6 9571 9530 cat >conftest.$ac_ext <<_ACEOF 9572 9531 /* confdefs.h. */ … … 9585 9544 _ACEOF 9586 9545 rm -f conftest.$ac_objext 9587 if { (ac_try="$ac_compile" 9588 case "(($ac_try" in 9589 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9590 *) ac_try_echo=$ac_try;; 9591 esac 9592 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9593 (eval "$ac_compile") 2>conftest.er1 9546 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9547 (eval $ac_compile) 2>conftest.er1 9594 9548 ac_status=$? 9595 9549 grep -v '^ *+' conftest.er1 >conftest.err … … 9597 9551 cat conftest.err >&5 9598 9552 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9599 (exit $ac_status); } && { 9600 test -z "$ac_c_werror_flag" || 9601 test ! -s conftest.err 9602 } && test -s conftest.$ac_objext; then 9553 (exit $ac_status); } && 9554 { ac_try='test -z "$ac_c_werror_flag" 9555 || test ! -s conftest.err' 9556 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9557 (eval $ac_try) 2>&5 9558 ac_status=$? 9559 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9560 (exit $ac_status); }; } && 9561 { ac_try='test -s conftest.$ac_objext' 9562 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9563 (eval $ac_try) 2>&5 9564 ac_status=$? 9565 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9566 (exit $ac_status); }; }; then 9603 9567 cat >>confdefs.h <<\_ACEOF 9604 9568 #define PJ_EMULATE_RWMUTEX 0 … … 9606 9570 9607 9571 ac_rwmutex="yes" 9608 {echo "$as_me:$LINENO: result: yes" >&59609 echo "${ECHO_T}yes" >&6 ; }9572 echo "$as_me:$LINENO: result: yes" >&5 9573 echo "${ECHO_T}yes" >&6 9610 9574 else 9611 9575 echo "$as_me: failed program was:" >&5 9612 9576 sed 's/^/| /' conftest.$ac_ext >&5 9613 9577 9614 9578 cat >>confdefs.h <<\_ACEOF 9615 9579 #define PJ_EMULATE_RWMUTEX 1 9616 9580 _ACEOF 9617 9581 9618 9582 ac_rwmutex="no" 9619 { echo "$as_me:$LINENO: result: no" >&5 9620 echo "${ECHO_T}no" >&6; } 9621 fi 9622 9623 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9583 echo "$as_me:$LINENO: result: no" >&5 9584 echo "${ECHO_T}no" >&6 9585 fi 9586 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9624 9587 9625 9588 if test "$ac_rwmutex" = "no"; then 9626 {echo "$as_me:$LINENO: checking if pthread_rwlock_t is available with _POSIX_READER_WRITER_LOCKS" >&59627 echo $ECHO_N "checking if pthread_rwlock_t is available with _POSIX_READER_WRITER_LOCKS... $ECHO_C" >&6 ; }9589 echo "$as_me:$LINENO: checking if pthread_rwlock_t is available with _POSIX_READER_WRITER_LOCKS" >&5 9590 echo $ECHO_N "checking if pthread_rwlock_t is available with _POSIX_READER_WRITER_LOCKS... $ECHO_C" >&6 9628 9591 cat >conftest.$ac_ext <<_ACEOF 9629 9592 /* confdefs.h. */ … … 9643 9606 _ACEOF 9644 9607 rm -f conftest.$ac_objext 9645 if { (ac_try="$ac_compile" 9646 case "(($ac_try" in 9647 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9648 *) ac_try_echo=$ac_try;; 9649 esac 9650 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9651 (eval "$ac_compile") 2>conftest.er1 9608 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9609 (eval $ac_compile) 2>conftest.er1 9652 9610 ac_status=$? 9653 9611 grep -v '^ *+' conftest.er1 >conftest.err … … 9655 9613 cat conftest.err >&5 9656 9614 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9657 (exit $ac_status); } && { 9658 test -z "$ac_c_werror_flag" || 9659 test ! -s conftest.err 9660 } && test -s conftest.$ac_objext; then 9615 (exit $ac_status); } && 9616 { ac_try='test -z "$ac_c_werror_flag" 9617 || test ! -s conftest.err' 9618 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9619 (eval $ac_try) 2>&5 9620 ac_status=$? 9621 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9622 (exit $ac_status); }; } && 9623 { ac_try='test -s conftest.$ac_objext' 9624 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9625 (eval $ac_try) 2>&5 9626 ac_status=$? 9627 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9628 (exit $ac_status); }; }; then 9661 9629 cat >>confdefs.h <<\_ACEOF 9662 9630 #define PJ_EMULATE_RWMUTEX 0 … … 9664 9632 9665 9633 CFLAGS="$CFLAGS -D_POSIX_THREADS -D_POSIX_READER_WRITER_LOCKS" 9666 {echo "$as_me:$LINENO: result: yes" >&59667 echo "${ECHO_T}yes" >&6 ; }9634 echo "$as_me:$LINENO: result: yes" >&5 9635 echo "${ECHO_T}yes" >&6 9668 9636 else 9669 9637 echo "$as_me: failed program was:" >&5 9670 9638 sed 's/^/| /' conftest.$ac_ext >&5 9671 9639 9672 9640 cat >>confdefs.h <<\_ACEOF 9673 9641 #define PJ_EMULATE_RWMUTEX 1 9674 9642 _ACEOF 9675 9643 9676 { echo "$as_me:$LINENO: result: no" >&5 9677 echo "${ECHO_T}no" >&6; } 9678 fi 9679 9680 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9681 fi 9682 9683 { echo "$as_me:$LINENO: checking if pthread_mutexattr_settype() is available" >&5 9684 echo $ECHO_N "checking if pthread_mutexattr_settype() is available... $ECHO_C" >&6; } 9644 echo "$as_me:$LINENO: result: no" >&5 9645 echo "${ECHO_T}no" >&6 9646 fi 9647 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9648 fi 9649 9650 echo "$as_me:$LINENO: checking if pthread_mutexattr_settype() is available" >&5 9651 echo $ECHO_N "checking if pthread_mutexattr_settype() is available... $ECHO_C" >&6 9685 9652 cat >conftest.$ac_ext <<_ACEOF 9686 9653 /* confdefs.h. */ … … 9699 9666 _ACEOF 9700 9667 rm -f conftest.$ac_objext 9701 if { (ac_try="$ac_compile" 9702 case "(($ac_try" in 9703 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9704 *) ac_try_echo=$ac_try;; 9705 esac 9706 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9707 (eval "$ac_compile") 2>conftest.er1 9668 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9669 (eval $ac_compile) 2>conftest.er1 9708 9670 ac_status=$? 9709 9671 grep -v '^ *+' conftest.er1 >conftest.err … … 9711 9673 cat conftest.err >&5 9712 9674 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9713 (exit $ac_status); } && { 9714 test -z "$ac_c_werror_flag" || 9715 test ! -s conftest.err 9716 } && test -s conftest.$ac_objext; then 9675 (exit $ac_status); } && 9676 { ac_try='test -z "$ac_c_werror_flag" 9677 || test ! -s conftest.err' 9678 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9679 (eval $ac_try) 2>&5 9680 ac_status=$? 9681 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9682 (exit $ac_status); }; } && 9683 { ac_try='test -s conftest.$ac_objext' 9684 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9685 (eval $ac_try) 2>&5 9686 ac_status=$? 9687 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9688 (exit $ac_status); }; }; then 9717 9689 cat >>confdefs.h <<\_ACEOF 9718 9690 #define PJ_HAS_PTHREAD_MUTEXATTR_SETTYPE 1 9719 9691 _ACEOF 9720 9692 9721 {echo "$as_me:$LINENO: result: yes" >&59722 echo "${ECHO_T}yes" >&6 ; }9693 echo "$as_me:$LINENO: result: yes" >&5 9694 echo "${ECHO_T}yes" >&6 9723 9695 else 9724 9696 echo "$as_me: failed program was:" >&5 9725 9697 sed 's/^/| /' conftest.$ac_ext >&5 9726 9698 9727 { echo "$as_me:$LINENO: result: no" >&5 9728 echo "${ECHO_T}no" >&6; } 9729 fi 9730 9731 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9732 9733 { echo "$as_me:$LINENO: checking if pthread_mutexattr_t has recursive member" >&5 9734 echo $ECHO_N "checking if pthread_mutexattr_t has recursive member... $ECHO_C" >&6; } 9699 echo "$as_me:$LINENO: result: no" >&5 9700 echo "${ECHO_T}no" >&6 9701 fi 9702 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9703 9704 echo "$as_me:$LINENO: checking if pthread_mutexattr_t has recursive member" >&5 9705 echo $ECHO_N "checking if pthread_mutexattr_t has recursive member... $ECHO_C" >&6 9735 9706 cat >conftest.$ac_ext <<_ACEOF 9736 9707 /* confdefs.h. */ … … 9750 9721 _ACEOF 9751 9722 rm -f conftest.$ac_objext 9752 if { (ac_try="$ac_compile" 9753 case "(($ac_try" in 9754 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9755 *) ac_try_echo=$ac_try;; 9756 esac 9757 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9758 (eval "$ac_compile") 2>conftest.er1 9723 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9724 (eval $ac_compile) 2>conftest.er1 9759 9725 ac_status=$? 9760 9726 grep -v '^ *+' conftest.er1 >conftest.err … … 9762 9728 cat conftest.err >&5 9763 9729 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9764 (exit $ac_status); } && { 9765 test -z "$ac_c_werror_flag" || 9766 test ! -s conftest.err 9767 } && test -s conftest.$ac_objext; then 9730 (exit $ac_status); } && 9731 { ac_try='test -z "$ac_c_werror_flag" 9732 || test ! -s conftest.err' 9733 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9734 (eval $ac_try) 2>&5 9735 ac_status=$? 9736 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9737 (exit $ac_status); }; } && 9738 { ac_try='test -s conftest.$ac_objext' 9739 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9740 (eval $ac_try) 2>&5 9741 ac_status=$? 9742 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9743 (exit $ac_status); }; }; then 9768 9744 cat >>confdefs.h <<\_ACEOF 9769 9745 #define PJ_PTHREAD_MUTEXATTR_T_HAS_RECURSIVE 1 9770 9746 _ACEOF 9771 9747 9772 {echo "$as_me:$LINENO: result: yes" >&59773 echo "${ECHO_T}yes" >&6 ; }9748 echo "$as_me:$LINENO: result: yes" >&5 9749 echo "${ECHO_T}yes" >&6 9774 9750 else 9775 9751 echo "$as_me: failed program was:" >&5 9776 9752 sed 's/^/| /' conftest.$ac_ext >&5 9777 9753 9778 { echo "$as_me:$LINENO: result: no" >&5 9779 echo "${ECHO_T}no" >&6; } 9780 fi 9781 9782 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9783 9784 9785 { echo "$as_me:$LINENO: checking ioqueue backend" >&5 9786 echo $ECHO_N "checking ioqueue backend... $ECHO_C" >&6; } 9787 # Check whether --enable-epoll was given. 9754 echo "$as_me:$LINENO: result: no" >&5 9755 echo "${ECHO_T}no" >&6 9756 fi 9757 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9758 9759 9760 echo "$as_me:$LINENO: checking ioqueue backend" >&5 9761 echo $ECHO_N "checking ioqueue backend... $ECHO_C" >&6 9762 # Check whether --enable-epoll or --disable-epoll was given. 9788 9763 if test "${enable_epoll+set}" = set; then 9789 enableval=$enable_epoll; 9764 enableval="$enable_epoll" 9765 9790 9766 ac_os_objs=ioqueue_epoll.o 9791 {echo "$as_me:$LINENO: result: /dev/epoll" >&59792 echo "${ECHO_T}/dev/epoll" >&6 ; }9767 echo "$as_me:$LINENO: result: /dev/epoll" >&5 9768 echo "${ECHO_T}/dev/epoll" >&6 9793 9769 9794 9770 else 9795 9771 9796 9772 ac_os_objs=ioqueue_select.o 9797 { echo "$as_me:$LINENO: result: select()" >&5 9798 echo "${ECHO_T}select()" >&6; } 9799 9800 fi 9801 9773 echo "$as_me:$LINENO: result: select()" >&5 9774 echo "${ECHO_T}select()" >&6 9775 9776 fi; 9802 9777 9803 9778 … … 9821 9796 9822 9797 9823 # Check whether --enable-sound was given.9798 # Check whether --enable-sound or --disable-sound was given. 9824 9799 if test "${enable_sound+set}" = set; then 9825 enableval=$enable_sound; if test "$enable_sound" = "no"; then 9800 enableval="$enable_sound" 9801 if test "$enable_sound" = "no"; then 9826 9802 ac_pjmedia_snd=null 9827 {echo "$as_me:$LINENO: result: Checking if sound is disabled... yes" >&59828 echo "${ECHO_T}Checking if sound is disabled... yes" >&6 ; }9803 echo "$as_me:$LINENO: result: Checking if sound is disabled... yes" >&5 9804 echo "${ECHO_T}Checking if sound is disabled... yes" >&6 9829 9805 fi 9830 9806 9831 fi 9832 9807 fi; 9833 9808 9834 9809 9835 9810 if test "${ac_cv_header_sys_soundcard_h+set}" = set; then 9836 {echo "$as_me:$LINENO: checking for sys/soundcard.h" >&59837 echo $ECHO_N "checking for sys/soundcard.h... $ECHO_C" >&6 ; }9811 echo "$as_me:$LINENO: checking for sys/soundcard.h" >&5 9812 echo $ECHO_N "checking for sys/soundcard.h... $ECHO_C" >&6 9838 9813 if test "${ac_cv_header_sys_soundcard_h+set}" = set; then 9839 9814 echo $ECHO_N "(cached) $ECHO_C" >&6 9840 9815 fi 9841 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_soundcard_h" >&59842 echo "${ECHO_T}$ac_cv_header_sys_soundcard_h" >&6 ; }9816 echo "$as_me:$LINENO: result: $ac_cv_header_sys_soundcard_h" >&5 9817 echo "${ECHO_T}$ac_cv_header_sys_soundcard_h" >&6 9843 9818 else 9844 9819 # Is the header compilable? 9845 {echo "$as_me:$LINENO: checking sys/soundcard.h usability" >&59846 echo $ECHO_N "checking sys/soundcard.h usability... $ECHO_C" >&6 ; }9820 echo "$as_me:$LINENO: checking sys/soundcard.h usability" >&5 9821 echo $ECHO_N "checking sys/soundcard.h usability... $ECHO_C" >&6 9847 9822 cat >conftest.$ac_ext <<_ACEOF 9848 9823 /* confdefs.h. */ … … 9855 9830 _ACEOF 9856 9831 rm -f conftest.$ac_objext 9857 if { (ac_try="$ac_compile" 9858 case "(($ac_try" in 9859 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9860 *) ac_try_echo=$ac_try;; 9861 esac 9862 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9863 (eval "$ac_compile") 2>conftest.er1 9832 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9833 (eval $ac_compile) 2>conftest.er1 9864 9834 ac_status=$? 9865 9835 grep -v '^ *+' conftest.er1 >conftest.err … … 9867 9837 cat conftest.err >&5 9868 9838 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9869 (exit $ac_status); } && { 9870 test -z "$ac_c_werror_flag" || 9871 test ! -s conftest.err 9872 } && test -s conftest.$ac_objext; then 9839 (exit $ac_status); } && 9840 { ac_try='test -z "$ac_c_werror_flag" 9841 || test ! -s conftest.err' 9842 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9843 (eval $ac_try) 2>&5 9844 ac_status=$? 9845 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9846 (exit $ac_status); }; } && 9847 { ac_try='test -s conftest.$ac_objext' 9848 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9849 (eval $ac_try) 2>&5 9850 ac_status=$? 9851 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9852 (exit $ac_status); }; }; then 9873 9853 ac_header_compiler=yes 9874 9854 else … … 9876 9856 sed 's/^/| /' conftest.$ac_ext >&5 9877 9857 9878 ac_header_compiler=no 9879 fi 9880 9881 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 9882 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 9883 echo "${ECHO_T}$ac_header_compiler" >&6; } 9858 ac_header_compiler=no 9859 fi 9860 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 9861 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 9862 echo "${ECHO_T}$ac_header_compiler" >&6 9884 9863 9885 9864 # Is the header present? 9886 {echo "$as_me:$LINENO: checking sys/soundcard.h presence" >&59887 echo $ECHO_N "checking sys/soundcard.h presence... $ECHO_C" >&6 ; }9865 echo "$as_me:$LINENO: checking sys/soundcard.h presence" >&5 9866 echo $ECHO_N "checking sys/soundcard.h presence... $ECHO_C" >&6 9888 9867 cat >conftest.$ac_ext <<_ACEOF 9889 9868 /* confdefs.h. */ … … 9894 9873 #include <sys/soundcard.h> 9895 9874 _ACEOF 9896 if { (ac_try="$ac_cpp conftest.$ac_ext" 9897 case "(($ac_try" in 9898 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9899 *) ac_try_echo=$ac_try;; 9900 esac 9901 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9902 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 9875 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 9876 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 9903 9877 ac_status=$? 9904 9878 grep -v '^ *+' conftest.er1 >conftest.err … … 9906 9880 cat conftest.err >&5 9907 9881 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9908 (exit $ac_status); } >/dev/null && { 9909 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 9910 test ! -s conftest.err 9911 }; then 9882 (exit $ac_status); } >/dev/null; then 9883 if test -s conftest.err; then 9884 ac_cpp_err=$ac_c_preproc_warn_flag 9885 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 9886 else 9887 ac_cpp_err= 9888 fi 9889 else 9890 ac_cpp_err=yes 9891 fi 9892 if test -z "$ac_cpp_err"; then 9912 9893 ac_header_preproc=yes 9913 9894 else … … 9917 9898 ac_header_preproc=no 9918 9899 fi 9919 9920 9900 rm -f conftest.err conftest.$ac_ext 9921 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&59922 echo "${ECHO_T}$ac_header_preproc" >&6 ; }9901 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 9902 echo "${ECHO_T}$ac_header_preproc" >&6 9923 9903 9924 9904 # So? What about this header? … … 9944 9924 { echo "$as_me:$LINENO: WARNING: sys/soundcard.h: in the future, the compiler will take precedence" >&5 9945 9925 echo "$as_me: WARNING: sys/soundcard.h: in the future, the compiler will take precedence" >&2;} 9946 9926 ( 9927 cat <<\_ASBOX 9928 ## ------------------------------------ ## 9929 ## Report this to the pjproject lists. ## 9930 ## ------------------------------------ ## 9931 _ASBOX 9932 ) | 9933 sed "s/^/$as_me: WARNING: /" >&2 9947 9934 ;; 9948 9935 esac 9949 {echo "$as_me:$LINENO: checking for sys/soundcard.h" >&59950 echo $ECHO_N "checking for sys/soundcard.h... $ECHO_C" >&6 ; }9936 echo "$as_me:$LINENO: checking for sys/soundcard.h" >&5 9937 echo $ECHO_N "checking for sys/soundcard.h... $ECHO_C" >&6 9951 9938 if test "${ac_cv_header_sys_soundcard_h+set}" = set; then 9952 9939 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 9954 9941 ac_cv_header_sys_soundcard_h=$ac_header_preproc 9955 9942 fi 9956 {echo "$as_me:$LINENO: result: $ac_cv_header_sys_soundcard_h" >&59957 echo "${ECHO_T}$ac_cv_header_sys_soundcard_h" >&6 ; }9943 echo "$as_me:$LINENO: result: $ac_cv_header_sys_soundcard_h" >&5 9944 echo "${ECHO_T}$ac_cv_header_sys_soundcard_h" >&6 9958 9945 9959 9946 fi … … 9964 9951 9965 9952 if test "${ac_cv_header_linux_soundcard_h+set}" = set; then 9966 {echo "$as_me:$LINENO: checking for linux/soundcard.h" >&59967 echo $ECHO_N "checking for linux/soundcard.h... $ECHO_C" >&6 ; }9953 echo "$as_me:$LINENO: checking for linux/soundcard.h" >&5 9954 echo $ECHO_N "checking for linux/soundcard.h... $ECHO_C" >&6 9968 9955 if test "${ac_cv_header_linux_soundcard_h+set}" = set; then 9969 9956 echo $ECHO_N "(cached) $ECHO_C" >&6 9970 9957 fi 9971 {echo "$as_me:$LINENO: result: $ac_cv_header_linux_soundcard_h" >&59972 echo "${ECHO_T}$ac_cv_header_linux_soundcard_h" >&6 ; }9958 echo "$as_me:$LINENO: result: $ac_cv_header_linux_soundcard_h" >&5 9959 echo "${ECHO_T}$ac_cv_header_linux_soundcard_h" >&6 9973 9960 else 9974 9961 # Is the header compilable? 9975 {echo "$as_me:$LINENO: checking linux/soundcard.h usability" >&59976 echo $ECHO_N "checking linux/soundcard.h usability... $ECHO_C" >&6 ; }9962 echo "$as_me:$LINENO: checking linux/soundcard.h usability" >&5 9963 echo $ECHO_N "checking linux/soundcard.h usability... $ECHO_C" >&6 9977 9964 cat >conftest.$ac_ext <<_ACEOF 9978 9965 /* confdefs.h. */ … … 9985 9972 _ACEOF 9986 9973 rm -f conftest.$ac_objext 9987 if { (ac_try="$ac_compile" 9988 case "(($ac_try" in 9989 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 9990 *) ac_try_echo=$ac_try;; 9991 esac 9992 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 9993 (eval "$ac_compile") 2>conftest.er1 9974 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 9975 (eval $ac_compile) 2>conftest.er1 9994 9976 ac_status=$? 9995 9977 grep -v '^ *+' conftest.er1 >conftest.err … … 9997 9979 cat conftest.err >&5 9998 9980 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9999 (exit $ac_status); } && { 10000 test -z "$ac_c_werror_flag" || 10001 test ! -s conftest.err 10002 } && test -s conftest.$ac_objext; then 9981 (exit $ac_status); } && 9982 { ac_try='test -z "$ac_c_werror_flag" 9983 || test ! -s conftest.err' 9984 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9985 (eval $ac_try) 2>&5 9986 ac_status=$? 9987 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9988 (exit $ac_status); }; } && 9989 { ac_try='test -s conftest.$ac_objext' 9990 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 9991 (eval $ac_try) 2>&5 9992 ac_status=$? 9993 echo "$as_me:$LINENO: \$? = $ac_status" >&5 9994 (exit $ac_status); }; }; then 10003 9995 ac_header_compiler=yes 10004 9996 else … … 10006 9998 sed 's/^/| /' conftest.$ac_ext >&5 10007 9999 10008 ac_header_compiler=no 10009 fi 10010 10011 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 10012 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 10013 echo "${ECHO_T}$ac_header_compiler" >&6; } 10000 ac_header_compiler=no 10001 fi 10002 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 10003 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 10004 echo "${ECHO_T}$ac_header_compiler" >&6 10014 10005 10015 10006 # Is the header present? 10016 {echo "$as_me:$LINENO: checking linux/soundcard.h presence" >&510017 echo $ECHO_N "checking linux/soundcard.h presence... $ECHO_C" >&6 ; }10007 echo "$as_me:$LINENO: checking linux/soundcard.h presence" >&5 10008 echo $ECHO_N "checking linux/soundcard.h presence... $ECHO_C" >&6 10018 10009 cat >conftest.$ac_ext <<_ACEOF 10019 10010 /* confdefs.h. */ … … 10024 10015 #include <linux/soundcard.h> 10025 10016 _ACEOF 10026 if { (ac_try="$ac_cpp conftest.$ac_ext" 10027 case "(($ac_try" in 10028 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 10029 *) ac_try_echo=$ac_try;; 10030 esac 10031 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 10032 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 10017 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 10018 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 10033 10019 ac_status=$? 10034 10020 grep -v '^ *+' conftest.er1 >conftest.err … … 10036 10022 cat conftest.err >&5 10037 10023 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10038 (exit $ac_status); } >/dev/null && { 10039 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 10040 test ! -s conftest.err 10041 }; then 10024 (exit $ac_status); } >/dev/null; then 10025 if test -s conftest.err; then 10026 ac_cpp_err=$ac_c_preproc_warn_flag 10027 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 10028 else 10029 ac_cpp_err= 10030 fi 10031 else 10032 ac_cpp_err=yes 10033 fi 10034 if test -z "$ac_cpp_err"; then 10042 10035 ac_header_preproc=yes 10043 10036 else … … 10047 10040 ac_header_preproc=no 10048 10041 fi 10049 10050 10042 rm -f conftest.err conftest.$ac_ext 10051 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&510052 echo "${ECHO_T}$ac_header_preproc" >&6 ; }10043 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 10044 echo "${ECHO_T}$ac_header_preproc" >&6 10053 10045 10054 10046 # So? What about this header? … … 10074 10066 { echo "$as_me:$LINENO: WARNING: linux/soundcard.h: in the future, the compiler will take precedence" >&5 10075 10067 echo "$as_me: WARNING: linux/soundcard.h: in the future, the compiler will take precedence" >&2;} 10076 10068 ( 10069 cat <<\_ASBOX 10070 ## ------------------------------------ ## 10071 ## Report this to the pjproject lists. ## 10072 ## ------------------------------------ ## 10073 _ASBOX 10074 ) | 10075 sed "s/^/$as_me: WARNING: /" >&2 10077 10076 ;; 10078 10077 esac 10079 {echo "$as_me:$LINENO: checking for linux/soundcard.h" >&510080 echo $ECHO_N "checking for linux/soundcard.h... $ECHO_C" >&6 ; }10078 echo "$as_me:$LINENO: checking for linux/soundcard.h" >&5 10079 echo $ECHO_N "checking for linux/soundcard.h... $ECHO_C" >&6 10081 10080 if test "${ac_cv_header_linux_soundcard_h+set}" = set; then 10082 10081 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 10084 10083 ac_cv_header_linux_soundcard_h=$ac_header_preproc 10085 10084 fi 10086 {echo "$as_me:$LINENO: result: $ac_cv_header_linux_soundcard_h" >&510087 echo "${ECHO_T}$ac_cv_header_linux_soundcard_h" >&6 ; }10085 echo "$as_me:$LINENO: result: $ac_cv_header_linux_soundcard_h" >&5 10086 echo "${ECHO_T}$ac_cv_header_linux_soundcard_h" >&6 10088 10087 10089 10088 fi … … 10094 10093 10095 10094 if test "${ac_cv_header_machine_soundcard_h+set}" = set; then 10096 {echo "$as_me:$LINENO: checking for machine/soundcard.h" >&510097 echo $ECHO_N "checking for machine/soundcard.h... $ECHO_C" >&6 ; }10095 echo "$as_me:$LINENO: checking for machine/soundcard.h" >&5 10096 echo $ECHO_N "checking for machine/soundcard.h... $ECHO_C" >&6 10098 10097 if test "${ac_cv_header_machine_soundcard_h+set}" = set; then 10099 10098 echo $ECHO_N "(cached) $ECHO_C" >&6 10100 10099 fi 10101 {echo "$as_me:$LINENO: result: $ac_cv_header_machine_soundcard_h" >&510102 echo "${ECHO_T}$ac_cv_header_machine_soundcard_h" >&6 ; }10100 echo "$as_me:$LINENO: result: $ac_cv_header_machine_soundcard_h" >&5 10101 echo "${ECHO_T}$ac_cv_header_machine_soundcard_h" >&6 10103 10102 else 10104 10103 # Is the header compilable? 10105 {echo "$as_me:$LINENO: checking machine/soundcard.h usability" >&510106 echo $ECHO_N "checking machine/soundcard.h usability... $ECHO_C" >&6 ; }10104 echo "$as_me:$LINENO: checking machine/soundcard.h usability" >&5 10105 echo $ECHO_N "checking machine/soundcard.h usability... $ECHO_C" >&6 10107 10106 cat >conftest.$ac_ext <<_ACEOF 10108 10107 /* confdefs.h. */ … … 10115 10114 _ACEOF 10116 10115 rm -f conftest.$ac_objext 10117 if { (ac_try="$ac_compile" 10118 case "(($ac_try" in 10119 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 10120 *) ac_try_echo=$ac_try;; 10121 esac 10122 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 10123 (eval "$ac_compile") 2>conftest.er1 10116 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 10117 (eval $ac_compile) 2>conftest.er1 10124 10118 ac_status=$? 10125 10119 grep -v '^ *+' conftest.er1 >conftest.err … … 10127 10121 cat conftest.err >&5 10128 10122 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10129 (exit $ac_status); } && { 10130 test -z "$ac_c_werror_flag" || 10131 test ! -s conftest.err 10132 } && test -s conftest.$ac_objext; then 10123 (exit $ac_status); } && 10124 { ac_try='test -z "$ac_c_werror_flag" 10125 || test ! -s conftest.err' 10126 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 10127 (eval $ac_try) 2>&5 10128 ac_status=$? 10129 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10130 (exit $ac_status); }; } && 10131 { ac_try='test -s conftest.$ac_objext' 10132 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 10133 (eval $ac_try) 2>&5 10134 ac_status=$? 10135 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10136 (exit $ac_status); }; }; then 10133 10137 ac_header_compiler=yes 10134 10138 else … … 10136 10140 sed 's/^/| /' conftest.$ac_ext >&5 10137 10141 10138 ac_header_compiler=no 10139 fi 10140 10141 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 10142 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 10143 echo "${ECHO_T}$ac_header_compiler" >&6; } 10142 ac_header_compiler=no 10143 fi 10144 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 10145 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 10146 echo "${ECHO_T}$ac_header_compiler" >&6 10144 10147 10145 10148 # Is the header present? 10146 {echo "$as_me:$LINENO: checking machine/soundcard.h presence" >&510147 echo $ECHO_N "checking machine/soundcard.h presence... $ECHO_C" >&6 ; }10149 echo "$as_me:$LINENO: checking machine/soundcard.h presence" >&5 10150 echo $ECHO_N "checking machine/soundcard.h presence... $ECHO_C" >&6 10148 10151 cat >conftest.$ac_ext <<_ACEOF 10149 10152 /* confdefs.h. */ … … 10154 10157 #include <machine/soundcard.h> 10155 10158 _ACEOF 10156 if { (ac_try="$ac_cpp conftest.$ac_ext" 10157 case "(($ac_try" in 10158 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 10159 *) ac_try_echo=$ac_try;; 10160 esac 10161 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 10162 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 10159 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 10160 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 10163 10161 ac_status=$? 10164 10162 grep -v '^ *+' conftest.er1 >conftest.err … … 10166 10164 cat conftest.err >&5 10167 10165 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10168 (exit $ac_status); } >/dev/null && { 10169 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 10170 test ! -s conftest.err 10171 }; then 10166 (exit $ac_status); } >/dev/null; then 10167 if test -s conftest.err; then 10168 ac_cpp_err=$ac_c_preproc_warn_flag 10169 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 10170 else 10171 ac_cpp_err= 10172 fi 10173 else 10174 ac_cpp_err=yes 10175 fi 10176 if test -z "$ac_cpp_err"; then 10172 10177 ac_header_preproc=yes 10173 10178 else … … 10177 10182 ac_header_preproc=no 10178 10183 fi 10179 10180 10184 rm -f conftest.err conftest.$ac_ext 10181 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&510182 echo "${ECHO_T}$ac_header_preproc" >&6 ; }10185 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 10186 echo "${ECHO_T}$ac_header_preproc" >&6 10183 10187 10184 10188 # So? What about this header? … … 10204 10208 { echo "$as_me:$LINENO: WARNING: machine/soundcard.h: in the future, the compiler will take precedence" >&5 10205 10209 echo "$as_me: WARNING: machine/soundcard.h: in the future, the compiler will take precedence" >&2;} 10206 10210 ( 10211 cat <<\_ASBOX 10212 ## ------------------------------------ ## 10213 ## Report this to the pjproject lists. ## 10214 ## ------------------------------------ ## 10215 _ASBOX 10216 ) | 10217 sed "s/^/$as_me: WARNING: /" >&2 10207 10218 ;; 10208 10219 esac 10209 {echo "$as_me:$LINENO: checking for machine/soundcard.h" >&510210 echo $ECHO_N "checking for machine/soundcard.h... $ECHO_C" >&6 ; }10220 echo "$as_me:$LINENO: checking for machine/soundcard.h" >&5 10221 echo $ECHO_N "checking for machine/soundcard.h... $ECHO_C" >&6 10211 10222 if test "${ac_cv_header_machine_soundcard_h+set}" = set; then 10212 10223 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 10214 10225 ac_cv_header_machine_soundcard_h=$ac_header_preproc 10215 10226 fi 10216 {echo "$as_me:$LINENO: result: $ac_cv_header_machine_soundcard_h" >&510217 echo "${ECHO_T}$ac_cv_header_machine_soundcard_h" >&6 ; }10227 echo "$as_me:$LINENO: result: $ac_cv_header_machine_soundcard_h" >&5 10228 echo "${ECHO_T}$ac_cv_header_machine_soundcard_h" >&6 10218 10229 10219 10230 fi … … 10240 10251 #AC_MSG_RESULT([Setting additional PortAudio CFLAGS.. -DPA_OLD_CORE_AUDIO -DMOSX_USE_NON_ATOMIC_FLAG_BITS]) 10241 10252 ac_pjmedia_snd=pa_old_darwinos 10242 {echo "$as_me:$LINENO: result: Checking sound device backend... old coreaudio" >&510243 echo "${ECHO_T}Checking sound device backend... old coreaudio" >&6 ; }10253 echo "$as_me:$LINENO: result: Checking sound device backend... old coreaudio" >&5 10254 echo "${ECHO_T}Checking sound device backend... old coreaudio" >&6 10244 10255 else 10245 10256 ac_pjmedia_snd=pa_darwinos 10246 {echo "$as_me:$LINENO: result: Checking sound device backend... coreaudio" >&510247 echo "${ECHO_T}Checking sound device backend... coreaudio" >&6 ; }10257 echo "$as_me:$LINENO: result: Checking sound device backend... coreaudio" >&5 10258 echo "${ECHO_T}Checking sound device backend... coreaudio" >&6 10248 10259 fi 10249 10260 ;; 10250 10261 *cygwin* | *mingw*) 10251 10262 ac_pjmedia_snd=pa_win32 10252 {echo "$as_me:$LINENO: result: Checking sound device backend... win32 sound" >&510253 echo "${ECHO_T}Checking sound device backend... win32 sound" >&6 ; }10263 echo "$as_me:$LINENO: result: Checking sound device backend... win32 sound" >&5 10264 echo "${ECHO_T}Checking sound device backend... win32 sound" >&6 10254 10265 ;; 10255 10266 *rtems*) 10256 10267 ac_pjmedia_snd=null 10257 {echo "$as_me:$LINENO: result: Checking sound device backend... null sound" >&510258 echo "${ECHO_T}Checking sound device backend... null sound" >&6 ; }10268 echo "$as_me:$LINENO: result: Checking sound device backend... null sound" >&5 10269 echo "${ECHO_T}Checking sound device backend... null sound" >&6 10259 10270 ;; 10260 10271 *) 10261 10272 ac_pjmedia_snd=pa_unix 10262 10273 if test "${ac_cv_header_alsa_version_h+set}" = set; then 10263 {echo "$as_me:$LINENO: checking for alsa/version.h" >&510264 echo $ECHO_N "checking for alsa/version.h... $ECHO_C" >&6 ; }10274 echo "$as_me:$LINENO: checking for alsa/version.h" >&5 10275 echo $ECHO_N "checking for alsa/version.h... $ECHO_C" >&6 10265 10276 if test "${ac_cv_header_alsa_version_h+set}" = set; then 10266 10277 echo $ECHO_N "(cached) $ECHO_C" >&6 10267 10278 fi 10268 {echo "$as_me:$LINENO: result: $ac_cv_header_alsa_version_h" >&510269 echo "${ECHO_T}$ac_cv_header_alsa_version_h" >&6 ; }10279 echo "$as_me:$LINENO: result: $ac_cv_header_alsa_version_h" >&5 10280 echo "${ECHO_T}$ac_cv_header_alsa_version_h" >&6 10270 10281 else 10271 10282 # Is the header compilable? 10272 {echo "$as_me:$LINENO: checking alsa/version.h usability" >&510273 echo $ECHO_N "checking alsa/version.h usability... $ECHO_C" >&6 ; }10283 echo "$as_me:$LINENO: checking alsa/version.h usability" >&5 10284 echo $ECHO_N "checking alsa/version.h usability... $ECHO_C" >&6 10274 10285 cat >conftest.$ac_ext <<_ACEOF 10275 10286 /* confdefs.h. */ … … 10282 10293 _ACEOF 10283 10294 rm -f conftest.$ac_objext 10284 if { (ac_try="$ac_compile" 10285 case "(($ac_try" in 10286 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 10287 *) ac_try_echo=$ac_try;; 10288 esac 10289 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 10290 (eval "$ac_compile") 2>conftest.er1 10295 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 10296 (eval $ac_compile) 2>conftest.er1 10291 10297 ac_status=$? 10292 10298 grep -v '^ *+' conftest.er1 >conftest.err … … 10294 10300 cat conftest.err >&5 10295 10301 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10296 (exit $ac_status); } && { 10297 test -z "$ac_c_werror_flag" || 10298 test ! -s conftest.err 10299 } && test -s conftest.$ac_objext; then 10302 (exit $ac_status); } && 10303 { ac_try='test -z "$ac_c_werror_flag" 10304 || test ! -s conftest.err' 10305 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 10306 (eval $ac_try) 2>&5 10307 ac_status=$? 10308 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10309 (exit $ac_status); }; } && 10310 { ac_try='test -s conftest.$ac_objext' 10311 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 10312 (eval $ac_try) 2>&5 10313 ac_status=$? 10314 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10315 (exit $ac_status); }; }; then 10300 10316 ac_header_compiler=yes 10301 10317 else … … 10303 10319 sed 's/^/| /' conftest.$ac_ext >&5 10304 10320 10305 ac_header_compiler=no 10306 fi 10307 10308 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 10309 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 10310 echo "${ECHO_T}$ac_header_compiler" >&6; } 10321 ac_header_compiler=no 10322 fi 10323 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 10324 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 10325 echo "${ECHO_T}$ac_header_compiler" >&6 10311 10326 10312 10327 # Is the header present? 10313 {echo "$as_me:$LINENO: checking alsa/version.h presence" >&510314 echo $ECHO_N "checking alsa/version.h presence... $ECHO_C" >&6 ; }10328 echo "$as_me:$LINENO: checking alsa/version.h presence" >&5 10329 echo $ECHO_N "checking alsa/version.h presence... $ECHO_C" >&6 10315 10330 cat >conftest.$ac_ext <<_ACEOF 10316 10331 /* confdefs.h. */ … … 10321 10336 #include <alsa/version.h> 10322 10337 _ACEOF 10323 if { (ac_try="$ac_cpp conftest.$ac_ext" 10324 case "(($ac_try" in 10325 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 10326 *) ac_try_echo=$ac_try;; 10327 esac 10328 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 10329 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 10338 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 10339 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 10330 10340 ac_status=$? 10331 10341 grep -v '^ *+' conftest.er1 >conftest.err … … 10333 10343 cat conftest.err >&5 10334 10344 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10335 (exit $ac_status); } >/dev/null && { 10336 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 10337 test ! -s conftest.err 10338 }; then 10345 (exit $ac_status); } >/dev/null; then 10346 if test -s conftest.err; then 10347 ac_cpp_err=$ac_c_preproc_warn_flag 10348 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 10349 else 10350 ac_cpp_err= 10351 fi 10352 else 10353 ac_cpp_err=yes 10354 fi 10355 if test -z "$ac_cpp_err"; then 10339 10356 ac_header_preproc=yes 10340 10357 else … … 10344 10361 ac_header_preproc=no 10345 10362 fi 10346 10347 10363 rm -f conftest.err conftest.$ac_ext 10348 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&510349 echo "${ECHO_T}$ac_header_preproc" >&6 ; }10364 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 10365 echo "${ECHO_T}$ac_header_preproc" >&6 10350 10366 10351 10367 # So? What about this header? … … 10371 10387 { echo "$as_me:$LINENO: WARNING: alsa/version.h: in the future, the compiler will take precedence" >&5 10372 10388 echo "$as_me: WARNING: alsa/version.h: in the future, the compiler will take precedence" >&2;} 10373 10389 ( 10390 cat <<\_ASBOX 10391 ## ------------------------------------ ## 10392 ## Report this to the pjproject lists. ## 10393 ## ------------------------------------ ## 10394 _ASBOX 10395 ) | 10396 sed "s/^/$as_me: WARNING: /" >&2 10374 10397 ;; 10375 10398 esac 10376 {echo "$as_me:$LINENO: checking for alsa/version.h" >&510377 echo $ECHO_N "checking for alsa/version.h... $ECHO_C" >&6 ; }10399 echo "$as_me:$LINENO: checking for alsa/version.h" >&5 10400 echo $ECHO_N "checking for alsa/version.h... $ECHO_C" >&6 10378 10401 if test "${ac_cv_header_alsa_version_h+set}" = set; then 10379 10402 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 10381 10404 ac_cv_header_alsa_version_h=$ac_header_preproc 10382 10405 fi 10383 {echo "$as_me:$LINENO: result: $ac_cv_header_alsa_version_h" >&510384 echo "${ECHO_T}$ac_cv_header_alsa_version_h" >&6 ; }10406 echo "$as_me:$LINENO: result: $ac_cv_header_alsa_version_h" >&5 10407 echo "${ECHO_T}$ac_cv_header_alsa_version_h" >&6 10385 10408 10386 10409 fi … … 10396 10419 10397 10420 10398 {echo "$as_me:$LINENO: result: Checking sound device backend... unix" >&510399 echo "${ECHO_T}Checking sound device backend... unix" >&6 ; }10421 echo "$as_me:$LINENO: result: Checking sound device backend... unix" >&5 10422 echo "${ECHO_T}Checking sound device backend... unix" >&6 10400 10423 10401 10424 ac_pa_use_oss=1 10402 10425 10403 # Check whether --enable-oss was given.10426 # Check whether --enable-oss or --disable-oss was given. 10404 10427 if test "${enable_oss+set}" = set; then 10405 enableval=$enable_oss; 10428 enableval="$enable_oss" 10429 10406 10430 if test "$enable_oss" = "no"; then 10407 10431 ac_pa_use_oss=0 10408 {echo "$as_me:$LINENO: result: Checking if OSS audio is disabled... yes" >&510409 echo "${ECHO_T}Checking if OSS audio is disabled... yes" >&6 ; }10432 echo "$as_me:$LINENO: result: Checking if OSS audio is disabled... yes" >&5 10433 echo "${ECHO_T}Checking if OSS audio is disabled... yes" >&6 10410 10434 fi 10411 10435 10412 fi 10413 10436 fi; 10414 10437 ;; 10415 10438 esac 10416 10439 fi 10417 10440 10418 # Check whether --enable-ext_sound was given.10441 # Check whether --enable-ext_sound or --disable-ext_sound was given. 10419 10442 if test "${enable_ext_sound+set}" = set; then 10420 enableval=$enable_ext_sound; if test "$enable_ext_sound" = "yes"; then 10443 enableval="$enable_ext_sound" 10444 if test "$enable_ext_sound" = "yes"; then 10421 10445 ac_pjmedia_snd=external 10422 {echo "$as_me:$LINENO: result: Checking if external sound is set... yes" >&510423 echo "${ECHO_T}Checking if external sound is set... yes" >&6 ; }10446 echo "$as_me:$LINENO: result: Checking if external sound is set... yes" >&5 10447 echo "${ECHO_T}Checking if external sound is set... yes" >&6 10424 10448 fi 10425 10449 10426 fi 10427 10428 10429 10430 # Check whether --enable-small-filter was given. 10450 fi; 10451 10452 10453 # Check whether --enable-small-filter or --disable-small-filter was given. 10431 10454 if test "${enable_small_filter+set}" = set; then 10432 enableval=$enable_small_filter; if test "$enable_small_filter" = "no"; then 10455 enableval="$enable_small_filter" 10456 if test "$enable_small_filter" = "no"; then 10433 10457 ac_no_small_filter='-DPJMEDIA_HAS_SMALL_FILTER=0' 10434 {echo "$as_me:$LINENO: result: Checking if small filter is disabled... yes" >&510435 echo "${ECHO_T}Checking if small filter is disabled... yes" >&6 ; }10458 echo "$as_me:$LINENO: result: Checking if small filter is disabled... yes" >&5 10459 echo "${ECHO_T}Checking if small filter is disabled... yes" >&6 10436 10460 fi 10437 10461 else 10438 { echo "$as_me:$LINENO: result: Checking if small filter is disabled... no" >&5 10439 echo "${ECHO_T}Checking if small filter is disabled... no" >&6; } 10440 fi 10441 10442 10443 10444 # Check whether --enable-large-filter was given. 10462 echo "$as_me:$LINENO: result: Checking if small filter is disabled... no" >&5 10463 echo "${ECHO_T}Checking if small filter is disabled... no" >&6 10464 fi; 10465 10466 10467 # Check whether --enable-large-filter or --disable-large-filter was given. 10445 10468 if test "${enable_large_filter+set}" = set; then 10446 enableval=$enable_large_filter; if test "$enable_large_filter" = "no"; then 10469 enableval="$enable_large_filter" 10470 if test "$enable_large_filter" = "no"; then 10447 10471 ac_no_large_filter='-DPJMEDIA_HAS_LARGE_FILTER=0' 10448 {echo "$as_me:$LINENO: result: Checking if large filter is disabled... yes" >&510449 echo "${ECHO_T}Checking if large filter is disabled... yes" >&6 ; }10472 echo "$as_me:$LINENO: result: Checking if large filter is disabled... yes" >&5 10473 echo "${ECHO_T}Checking if large filter is disabled... yes" >&6 10450 10474 fi 10451 10475 else 10452 { echo "$as_me:$LINENO: result: Checking if large filter is disabled... no" >&5 10453 echo "${ECHO_T}Checking if large filter is disabled... no" >&6; } 10454 fi 10455 10456 10457 10458 # Check whether --enable-speex-aec was given. 10476 echo "$as_me:$LINENO: result: Checking if large filter is disabled... no" >&5 10477 echo "${ECHO_T}Checking if large filter is disabled... no" >&6 10478 fi; 10479 10480 10481 # Check whether --enable-speex-aec or --disable-speex-aec was given. 10459 10482 if test "${enable_speex_aec+set}" = set; then 10460 enableval=$enable_speex_aec; if test "$enable_speex_aec" = "no"; then 10483 enableval="$enable_speex_aec" 10484 if test "$enable_speex_aec" = "no"; then 10461 10485 ac_no_speex_aec='-DPJMEDIA_HAS_SPEEX_AEC=0' 10462 {echo "$as_me:$LINENO: result: Checking if Speex AEC is disabled...yes" >&510463 echo "${ECHO_T}Checking if Speex AEC is disabled...yes" >&6 ; }10486 echo "$as_me:$LINENO: result: Checking if Speex AEC is disabled...yes" >&5 10487 echo "${ECHO_T}Checking if Speex AEC is disabled...yes" >&6 10464 10488 fi 10465 10489 else 10466 { echo "$as_me:$LINENO: result: Checking if Speex AEC is disabled...no" >&5 10467 echo "${ECHO_T}Checking if Speex AEC is disabled...no" >&6; } 10468 fi 10469 10470 10471 10472 # Check whether --enable-g711-codec was given. 10490 echo "$as_me:$LINENO: result: Checking if Speex AEC is disabled...no" >&5 10491 echo "${ECHO_T}Checking if Speex AEC is disabled...no" >&6 10492 fi; 10493 10494 10495 # Check whether --enable-g711-codec or --disable-g711-codec was given. 10473 10496 if test "${enable_g711_codec+set}" = set; then 10474 enableval=$enable_g711_codec; if test "$enable_g711_codec" = "no"; then 10497 enableval="$enable_g711_codec" 10498 if test "$enable_g711_codec" = "no"; then 10475 10499 ac_no_g711_codec=1 10476 10500 cat >>confdefs.h <<\_ACEOF … … 10478 10502 _ACEOF 10479 10503 10480 {echo "$as_me:$LINENO: result: Checking if G.711 codec is disabled...yes" >&510481 echo "${ECHO_T}Checking if G.711 codec is disabled...yes" >&6 ; }10504 echo "$as_me:$LINENO: result: Checking if G.711 codec is disabled...yes" >&5 10505 echo "${ECHO_T}Checking if G.711 codec is disabled...yes" >&6 10482 10506 fi 10483 10507 else 10484 { echo "$as_me:$LINENO: result: Checking if G.711 codec is disabled...no" >&5 10485 echo "${ECHO_T}Checking if G.711 codec is disabled...no" >&6; } 10486 fi 10487 10488 10489 10490 10491 # Check whether --enable-l16-codec was given. 10508 echo "$as_me:$LINENO: result: Checking if G.711 codec is disabled...no" >&5 10509 echo "${ECHO_T}Checking if G.711 codec is disabled...no" >&6 10510 fi; 10511 10512 10513 10514 # Check whether --enable-l16-codec or --disable-l16-codec was given. 10492 10515 if test "${enable_l16_codec+set}" = set; then 10493 enableval=$enable_l16_codec; if test "$enable_l16_codec" = "no"; then 10516 enableval="$enable_l16_codec" 10517 if test "$enable_l16_codec" = "no"; then 10494 10518 ac_no_l16_codec=1 10495 10519 cat >>confdefs.h <<\_ACEOF … … 10497 10521 _ACEOF 10498 10522 10499 {echo "$as_me:$LINENO: result: Checking if L16 codecs are disabled...yes" >&510500 echo "${ECHO_T}Checking if L16 codecs are disabled...yes" >&6 ; }10523 echo "$as_me:$LINENO: result: Checking if L16 codecs are disabled...yes" >&5 10524 echo "${ECHO_T}Checking if L16 codecs are disabled...yes" >&6 10501 10525 fi 10502 10526 else 10503 { echo "$as_me:$LINENO: result: Checking if L16 codec is disabled...no" >&5 10504 echo "${ECHO_T}Checking if L16 codec is disabled...no" >&6; } 10505 fi 10506 10507 10508 10509 10510 # Check whether --enable-gsm-codec was given. 10527 echo "$as_me:$LINENO: result: Checking if L16 codec is disabled...no" >&5 10528 echo "${ECHO_T}Checking if L16 codec is disabled...no" >&6 10529 fi; 10530 10531 10532 10533 # Check whether --enable-gsm-codec or --disable-gsm-codec was given. 10511 10534 if test "${enable_gsm_codec+set}" = set; then 10512 enableval=$enable_gsm_codec; if test "$enable_gsm_codec" = "no"; then 10535 enableval="$enable_gsm_codec" 10536 if test "$enable_gsm_codec" = "no"; then 10513 10537 ac_no_gsm_codec=1 10514 10538 cat >>confdefs.h <<\_ACEOF … … 10516 10540 _ACEOF 10517 10541 10518 {echo "$as_me:$LINENO: result: Checking if GSM codec is disabled...yes" >&510519 echo "${ECHO_T}Checking if GSM codec is disabled...yes" >&6 ; }10542 echo "$as_me:$LINENO: result: Checking if GSM codec is disabled...yes" >&5 10543 echo "${ECHO_T}Checking if GSM codec is disabled...yes" >&6 10520 10544 fi 10521 10545 else 10522 { echo "$as_me:$LINENO: result: Checking if GSM codec is disabled...no" >&5 10523 echo "${ECHO_T}Checking if GSM codec is disabled...no" >&6; } 10524 fi 10525 10526 10527 10528 # Check whether --enable-g722-codec was given. 10546 echo "$as_me:$LINENO: result: Checking if GSM codec is disabled...no" >&5 10547 echo "${ECHO_T}Checking if GSM codec is disabled...no" >&6 10548 fi; 10549 10550 10551 # Check whether --enable-g722-codec or --disable-g722-codec was given. 10529 10552 if test "${enable_g722_codec+set}" = set; then 10530 enableval=$enable_g722_codec; if test "$enable_g722_codec" = "no"; then 10553 enableval="$enable_g722_codec" 10554 if test "$enable_g722_codec" = "no"; then 10531 10555 ac_no_g722_codec=1 10532 10556 cat >>confdefs.h <<\_ACEOF … … 10534 10558 _ACEOF 10535 10559 10536 {echo "$as_me:$LINENO: result: Checking if G.722 codec is disabled...yes" >&510537 echo "${ECHO_T}Checking if G.722 codec is disabled...yes" >&6 ; }10560 echo "$as_me:$LINENO: result: Checking if G.722 codec is disabled...yes" >&5 10561 echo "${ECHO_T}Checking if G.722 codec is disabled...yes" >&6 10538 10562 fi 10539 10563 else 10540 { echo "$as_me:$LINENO: result: Checking if G.722 codec is disabled...no" >&5 10541 echo "${ECHO_T}Checking if G.722 codec is disabled...no" >&6; } 10542 fi 10543 10544 10545 10546 # Check whether --enable-speex-codec was given. 10564 echo "$as_me:$LINENO: result: Checking if G.722 codec is disabled...no" >&5 10565 echo "${ECHO_T}Checking if G.722 codec is disabled...no" >&6 10566 fi; 10567 10568 10569 # Check whether --enable-speex-codec or --disable-speex-codec was given. 10547 10570 if test "${enable_speex_codec+set}" = set; then 10548 enableval=$enable_speex_codec; if test "$enable_speex_codec" = "no"; then 10571 enableval="$enable_speex_codec" 10572 if test "$enable_speex_codec" = "no"; then 10549 10573 ac_no_speex_codec=1 10550 10574 cat >>confdefs.h <<\_ACEOF … … 10552 10576 _ACEOF 10553 10577 10554 {echo "$as_me:$LINENO: result: Checking if Speex codec is disabled...yes" >&510555 echo "${ECHO_T}Checking if Speex codec is disabled...yes" >&6 ; }10578 echo "$as_me:$LINENO: result: Checking if Speex codec is disabled...yes" >&5 10579 echo "${ECHO_T}Checking if Speex codec is disabled...yes" >&6 10556 10580 fi 10557 10581 else 10558 { echo "$as_me:$LINENO: result: Checking if Speex codec is disabled...no" >&5 10559 echo "${ECHO_T}Checking if Speex codec is disabled...no" >&6; } 10560 fi 10561 10562 10563 10564 # Check whether --enable-ilbc-codec was given. 10582 echo "$as_me:$LINENO: result: Checking if Speex codec is disabled...no" >&5 10583 echo "${ECHO_T}Checking if Speex codec is disabled...no" >&6 10584 fi; 10585 10586 10587 # Check whether --enable-ilbc-codec or --disable-ilbc-codec was given. 10565 10588 if test "${enable_ilbc_codec+set}" = set; then 10566 enableval=$enable_ilbc_codec; if test "$enable_ilbc_codec" = "no"; then 10589 enableval="$enable_ilbc_codec" 10590 if test "$enable_ilbc_codec" = "no"; then 10567 10591 ac_no_ilbc_codec=1 10568 10592 cat >>confdefs.h <<\_ACEOF … … 10570 10594 _ACEOF 10571 10595 10572 {echo "$as_me:$LINENO: result: Checking if iLBC codec is disabled...yes" >&510573 echo "${ECHO_T}Checking if iLBC codec is disabled...yes" >&6 ; }10596 echo "$as_me:$LINENO: result: Checking if iLBC codec is disabled...yes" >&5 10597 echo "${ECHO_T}Checking if iLBC codec is disabled...yes" >&6 10574 10598 fi 10575 10599 else 10576 { echo "$as_me:$LINENO: result: Checking if iLBC codec is disabled...no" >&5 10577 echo "${ECHO_T}Checking if iLBC codec is disabled...no" >&6; } 10578 fi 10579 10580 10581 # Check whether --enable-libsamplerate was given. 10600 echo "$as_me:$LINENO: result: Checking if iLBC codec is disabled...no" >&5 10601 echo "${ECHO_T}Checking if iLBC codec is disabled...no" >&6 10602 fi; 10603 10604 # Check whether --enable-libsamplerate or --disable-libsamplerate was given. 10582 10605 if test "${enable_libsamplerate+set}" = set; then 10583 enableval=$enable_libsamplerate; 10584 { echo "$as_me:$LINENO: checking for src_new in -lsamplerate" >&5 10585 echo $ECHO_N "checking for src_new in -lsamplerate... $ECHO_C" >&6; } 10606 enableval="$enable_libsamplerate" 10607 10608 echo "$as_me:$LINENO: checking for src_new in -lsamplerate" >&5 10609 echo $ECHO_N "checking for src_new in -lsamplerate... $ECHO_C" >&6 10586 10610 if test "${ac_cv_lib_samplerate_src_new+set}" = set; then 10587 10611 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 10596 10620 /* end confdefs.h. */ 10597 10621 10598 /* Override any GCC internal prototype to avoid an error. 10599 Use char because int might match the return type of a GCC 10600 builtin and then its argument prototype would still apply. */ 10622 /* Override any gcc2 internal prototype to avoid an error. */ 10601 10623 #ifdef __cplusplus 10602 10624 extern "C" 10603 10625 #endif 10626 /* We use char because int might match the return type of a gcc2 10627 builtin and then its argument prototype would still apply. */ 10604 10628 char src_new (); 10605 10629 int 10606 10630 main () 10607 10631 { 10608 returnsrc_new ();10632 src_new (); 10609 10633 ; 10610 10634 return 0; … … 10612 10636 _ACEOF 10613 10637 rm -f conftest.$ac_objext conftest$ac_exeext 10614 if { (ac_try="$ac_link" 10615 case "(($ac_try" in 10616 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 10617 *) ac_try_echo=$ac_try;; 10618 esac 10619 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 10620 (eval "$ac_link") 2>conftest.er1 10638 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 10639 (eval $ac_link) 2>conftest.er1 10621 10640 ac_status=$? 10622 10641 grep -v '^ *+' conftest.er1 >conftest.err … … 10624 10643 cat conftest.err >&5 10625 10644 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10626 (exit $ac_status); } && { 10627 test -z "$ac_c_werror_flag" || 10628 test ! -s conftest.err 10629 } && test -s conftest$ac_exeext && 10630 $as_test_x conftest$ac_exeext; then 10645 (exit $ac_status); } && 10646 { ac_try='test -z "$ac_c_werror_flag" 10647 || test ! -s conftest.err' 10648 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 10649 (eval $ac_try) 2>&5 10650 ac_status=$? 10651 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10652 (exit $ac_status); }; } && 10653 { ac_try='test -s conftest$ac_exeext' 10654 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 10655 (eval $ac_try) 2>&5 10656 ac_status=$? 10657 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10658 (exit $ac_status); }; }; then 10631 10659 ac_cv_lib_samplerate_src_new=yes 10632 10660 else … … 10634 10662 sed 's/^/| /' conftest.$ac_ext >&5 10635 10663 10636 ac_cv_lib_samplerate_src_new=no 10637 fi 10638 10639 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 10664 ac_cv_lib_samplerate_src_new=no 10665 fi 10666 rm -f conftest.err conftest.$ac_objext \ 10640 10667 conftest$ac_exeext conftest.$ac_ext 10641 10668 LIBS=$ac_check_lib_save_LIBS 10642 10669 fi 10643 {echo "$as_me:$LINENO: result: $ac_cv_lib_samplerate_src_new" >&510644 echo "${ECHO_T}$ac_cv_lib_samplerate_src_new" >&6 ; }10670 echo "$as_me:$LINENO: result: $ac_cv_lib_samplerate_src_new" >&5 10671 echo "${ECHO_T}$ac_cv_lib_samplerate_src_new" >&6 10645 10672 if test $ac_cv_lib_samplerate_src_new = yes; then 10646 10673 cat >>confdefs.h <<_ACEOF … … 10653 10680 10654 10681 else 10655 { echo "$as_me:$LINENO: result: Skipping libsamplerate detection" >&5 10656 echo "${ECHO_T}Skipping libsamplerate detection" >&6; } 10657 10658 fi 10659 10660 10661 10662 # Check whether --enable-ipp was given. 10682 echo "$as_me:$LINENO: result: Skipping libsamplerate detection" >&5 10683 echo "${ECHO_T}Skipping libsamplerate detection" >&6 10684 10685 fi; 10686 10687 10688 # Check whether --enable-ipp or --disable-ipp was given. 10663 10689 if test "${enable_ipp+set}" = set; then 10664 enableval=$enable_ipp; 10690 enableval="$enable_ipp" 10691 10665 10692 else 10666 10693 enable_ipp=no 10667 10694 10668 fi 10669 10670 10671 # Check whether --enable-ipp was given. 10695 fi; 10696 10697 # Check whether --enable-ipp or --disable-ipp was given. 10672 10698 if test "${enable_ipp+set}" = set; then 10673 enableval=$enable_ipp; 10699 enableval="$enable_ipp" 10700 10674 10701 else 10675 10702 with_ipp=no 10676 10703 10677 fi 10678 10679 10680 # Check whether --enable-ipp-samples was given. 10704 fi; 10705 10706 # Check whether --enable-ipp-samples or --disable-ipp-samples was given. 10681 10707 if test "${enable_ipp_samples+set}" = set; then 10682 enableval=$enable_ipp_samples; 10708 enableval="$enable_ipp_samples" 10709 10683 10710 else 10684 10711 with_ipp_samples=no 10685 10712 10686 fi 10687 10713 fi; 10688 10714 10689 10715 if test "x$enable_ipp" != "xno"; then 10690 {echo "$as_me:$LINENO: checking Intel IPP location" >&510691 echo $ECHO_N "checking Intel IPP location... $ECHO_C" >&6 ; }10716 echo "$as_me:$LINENO: checking Intel IPP location" >&5 10717 echo $ECHO_N "checking Intel IPP location... $ECHO_C" >&6 10692 10718 10693 10719 if test "x$with_ipp" != "xno" -a "x$with_ipp" != "x"; then 10694 {echo "$as_me:$LINENO: result: $with_ipp" >&510695 echo "${ECHO_T}$with_ipp" >&6 ; }10720 echo "$as_me:$LINENO: result: $with_ipp" >&5 10721 echo "${ECHO_T}$with_ipp" >&6 10696 10722 IPPROOT=$with_ipp 10697 10723 elif test "x$IPPROOT" = "x"; then 10698 10724 if test -d /opt/intel/ipp; then 10699 10725 IPPROOT=`ls -d /opt/intel/ipp/*/* | head -1` 10700 {echo "$as_me:$LINENO: result: autodetected in $IPPROOT" >&510701 echo "${ECHO_T}autodetected in $IPPROOT" >&6 ; }10726 echo "$as_me:$LINENO: result: autodetected in $IPPROOT" >&5 10727 echo "${ECHO_T}autodetected in $IPPROOT" >&6 10702 10728 fi 10703 10729 else 10704 {echo "$as_me:$LINENO: result: $IPPROOT" >&510705 echo "${ECHO_T}$IPPROOT" >&6 ; }10730 echo "$as_me:$LINENO: result: $IPPROOT" >&5 10731 echo "${ECHO_T}$IPPROOT" >&6 10706 10732 fi 10707 10733 … … 10738 10764 10739 10765 10740 {echo "$as_me:$LINENO: checking Intel IPP usability" >&510741 echo $ECHO_N "checking Intel IPP usability... $ECHO_C" >&6 ; }10766 echo "$as_me:$LINENO: checking Intel IPP usability" >&5 10767 echo $ECHO_N "checking Intel IPP usability... $ECHO_C" >&6 10742 10768 cat >conftest.$ac_ext <<_ACEOF 10743 10769 /* confdefs.h. */ … … 10757 10783 _ACEOF 10758 10784 rm -f conftest.$ac_objext conftest$ac_exeext 10759 if { (ac_try="$ac_link" 10760 case "(($ac_try" in 10761 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 10762 *) ac_try_echo=$ac_try;; 10763 esac 10764 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 10765 (eval "$ac_link") 2>conftest.er1 10785 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 10786 (eval $ac_link) 2>conftest.er1 10766 10787 ac_status=$? 10767 10788 grep -v '^ *+' conftest.er1 >conftest.err … … 10769 10790 cat conftest.err >&5 10770 10791 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10771 (exit $ac_status); } && { 10772 test -z "$ac_c_werror_flag" || 10773 test ! -s conftest.err 10774 } && test -s conftest$ac_exeext && 10775 $as_test_x conftest$ac_exeext; then 10776 { echo "$as_me:$LINENO: result: ok" >&5 10777 echo "${ECHO_T}ok" >&6; } 10792 (exit $ac_status); } && 10793 { ac_try='test -z "$ac_c_werror_flag" 10794 || test ! -s conftest.err' 10795 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 10796 (eval $ac_try) 2>&5 10797 ac_status=$? 10798 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10799 (exit $ac_status); }; } && 10800 { ac_try='test -s conftest$ac_exeext' 10801 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 10802 (eval $ac_try) 2>&5 10803 ac_status=$? 10804 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10805 (exit $ac_status); }; }; then 10806 echo "$as_me:$LINENO: result: ok" >&5 10807 echo "${ECHO_T}ok" >&6 10778 10808 else 10779 10809 echo "$as_me: failed program was:" >&5 10780 10810 sed 's/^/| /' conftest.$ac_ext >&5 10781 10811 10782 10812 { { echo "$as_me:$LINENO: error: failed 10783 10813 See \`config.log' for more details." >&5 10784 10814 echo "$as_me: error: failed … … 10786 10816 { (exit 1); exit 1; }; } 10787 10817 fi 10788 10789 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 10818 rm -f conftest.err conftest.$ac_objext \ 10790 10819 conftest$ac_exeext conftest.$ac_ext 10791 10820 … … 10795 10824 fi 10796 10825 10797 {echo "$as_me:$LINENO: checking Intel IPP samples location" >&510798 echo $ECHO_N "checking Intel IPP samples location... $ECHO_C" >&6 ; }10826 echo "$as_me:$LINENO: checking Intel IPP samples location" >&5 10827 echo $ECHO_N "checking Intel IPP samples location... $ECHO_C" >&6 10799 10828 10800 10829 if test "x$with_ipp_samples" != "xno" -a "x$with_ipp_samples" != "x"; then 10801 {echo "$as_me:$LINENO: result: $with_ipp_samples" >&510802 echo "${ECHO_T}$with_ipp_samples" >&6 ; }10830 echo "$as_me:$LINENO: result: $with_ipp_samples" >&5 10831 echo "${ECHO_T}$with_ipp_samples" >&6 10803 10832 IPPSAMPLES=$with_ipp_samples 10804 10833 elif test "x$IPPSAMPLES" = "x"; then 10805 10834 if test -d /opt/intel/ipp-samples; then 10806 10835 IPPSAMPLES=/opt/intel/ipp-samples 10807 {echo "$as_me:$LINENO: result: autodetected in $IPPSAMPLES" >&510808 echo "${ECHO_T}autodetected in $IPPSAMPLES" >&6 ; }10836 echo "$as_me:$LINENO: result: autodetected in $IPPSAMPLES" >&5 10837 echo "${ECHO_T}autodetected in $IPPSAMPLES" >&6 10809 10838 fi 10810 10839 else 10811 {echo "$as_me:$LINENO: result: $IPPSAMPLES" >&510812 echo "${ECHO_T}$IPPSAMPLES" >&6 ; }10840 echo "$as_me:$LINENO: result: $IPPSAMPLES" >&5 10841 echo "${ECHO_T}$IPPSAMPLES" >&6 10813 10842 fi 10814 10843 … … 10830 10859 10831 10860 # Guess the libusc.a build location 10832 {echo "$as_me:$LINENO: checking Intel IPP USC build location" >&510833 echo $ECHO_N "checking Intel IPP USC build location... $ECHO_C" >&6 ; }10861 echo "$as_me:$LINENO: checking Intel IPP USC build location" >&5 10862 echo $ECHO_N "checking Intel IPP USC build location... $ECHO_C" >&6 10834 10863 IPPSAMPLESLIB=`ls -d $IPPSAMPLES/speech-codecs/bin/*gcc*/lib | head -1` 10835 10864 if test ! -d $IPPSAMPLESLIB; then … … 10847 10876 { (exit 1); exit 1; }; } 10848 10877 fi 10849 {echo "$as_me:$LINENO: result: $IPPSAMPLESLIB" >&510850 echo "${ECHO_T}$IPPSAMPLESLIB" >&6 ; }10878 echo "$as_me:$LINENO: result: $IPPSAMPLESLIB" >&5 10879 echo "${ECHO_T}$IPPSAMPLESLIB" >&6 10851 10880 10852 10881 SAVED_CFLAGS="$CFLAGS" … … 10859 10888 LIBS="-lusc $LIBS" 10860 10889 10861 {echo "$as_me:$LINENO: checking Intel IPP USC usability" >&510862 echo $ECHO_N "checking Intel IPP USC usability... $ECHO_C" >&6 ; }10890 echo "$as_me:$LINENO: checking Intel IPP USC usability" >&5 10891 echo $ECHO_N "checking Intel IPP USC usability... $ECHO_C" >&6 10863 10892 cat >conftest.$ac_ext <<_ACEOF 10864 10893 /* confdefs.h. */ … … 10878 10907 _ACEOF 10879 10908 rm -f conftest.$ac_objext conftest$ac_exeext 10880 if { (ac_try="$ac_link" 10881 case "(($ac_try" in 10882 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 10883 *) ac_try_echo=$ac_try;; 10884 esac 10885 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 10886 (eval "$ac_link") 2>conftest.er1 10909 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 10910 (eval $ac_link) 2>conftest.er1 10887 10911 ac_status=$? 10888 10912 grep -v '^ *+' conftest.er1 >conftest.err … … 10890 10914 cat conftest.err >&5 10891 10915 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10892 (exit $ac_status); } && { 10893 test -z "$ac_c_werror_flag" || 10894 test ! -s conftest.err 10895 } && test -s conftest$ac_exeext && 10896 $as_test_x conftest$ac_exeext; then 10897 { echo "$as_me:$LINENO: result: ok" >&5 10898 echo "${ECHO_T}ok" >&6; } 10916 (exit $ac_status); } && 10917 { ac_try='test -z "$ac_c_werror_flag" 10918 || test ! -s conftest.err' 10919 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 10920 (eval $ac_try) 2>&5 10921 ac_status=$? 10922 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10923 (exit $ac_status); }; } && 10924 { ac_try='test -s conftest$ac_exeext' 10925 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 10926 (eval $ac_try) 2>&5 10927 ac_status=$? 10928 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10929 (exit $ac_status); }; }; then 10930 echo "$as_me:$LINENO: result: ok" >&5 10931 echo "${ECHO_T}ok" >&6 10899 10932 else 10900 10933 echo "$as_me: failed program was:" >&5 10901 10934 sed 's/^/| /' conftest.$ac_ext >&5 10902 10935 10903 10936 { { echo "$as_me:$LINENO: error: failed 10904 10937 See \`config.log' for more details." >&5 10905 10938 echo "$as_me: error: failed … … 10907 10940 { (exit 1); exit 1; }; } 10908 10941 fi 10909 10910 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 10942 rm -f conftest.err conftest.$ac_objext \ 10911 10943 conftest$ac_exeext conftest.$ac_ext 10912 10944 … … 10925 10957 export IPP_LIBS=$IPP_LIBS" 10926 10958 else 10927 {echo "$as_me:$LINENO: result: Skipping Intel IPP settings (not wanted)" >&510928 echo "${ECHO_T}Skipping Intel IPP settings (not wanted)" >&6 ; }10929 fi 10930 10931 10932 10933 10934 # Check whether --enable-ssl was given.10959 echo "$as_me:$LINENO: result: Skipping Intel IPP settings (not wanted)" >&5 10960 echo "${ECHO_T}Skipping Intel IPP settings (not wanted)" >&6 10961 fi 10962 10963 10964 10965 10966 # Check whether --enable-ssl or --disable-ssl was given. 10935 10967 if test "${enable_ssl+set}" = set; then 10936 enableval=$enable_ssl; 10968 enableval="$enable_ssl" 10969 10937 10970 if test "$enable_ssl" = "no"; then 10938 10971 ac_no_ssl=1 10939 {echo "$as_me:$LINENO: result: Checking if SSL support is disabled... yes" >&510940 echo "${ECHO_T}Checking if SSL support is disabled... yes" >&6 ; }10972 echo "$as_me:$LINENO: result: Checking if SSL support is disabled... yes" >&5 10973 echo "${ECHO_T}Checking if SSL support is disabled... yes" >&6 10941 10974 fi 10942 10975 10943 10976 else 10944 10977 10945 {echo "$as_me:$LINENO: result: checking for OpenSSL installations.." >&510946 echo "${ECHO_T}checking for OpenSSL installations.." >&6 ; }10978 echo "$as_me:$LINENO: result: checking for OpenSSL installations.." >&5 10979 echo "${ECHO_T}checking for OpenSSL installations.." >&6 10947 10980 10948 10981 10949 10982 10950 10983 if test "${ac_cv_header_openssl_ssl_h+set}" = set; then 10951 {echo "$as_me:$LINENO: checking for openssl/ssl.h" >&510952 echo $ECHO_N "checking for openssl/ssl.h... $ECHO_C" >&6 ; }10984 echo "$as_me:$LINENO: checking for openssl/ssl.h" >&5 10985 echo $ECHO_N "checking for openssl/ssl.h... $ECHO_C" >&6 10953 10986 if test "${ac_cv_header_openssl_ssl_h+set}" = set; then 10954 10987 echo $ECHO_N "(cached) $ECHO_C" >&6 10955 10988 fi 10956 {echo "$as_me:$LINENO: result: $ac_cv_header_openssl_ssl_h" >&510957 echo "${ECHO_T}$ac_cv_header_openssl_ssl_h" >&6 ; }10989 echo "$as_me:$LINENO: result: $ac_cv_header_openssl_ssl_h" >&5 10990 echo "${ECHO_T}$ac_cv_header_openssl_ssl_h" >&6 10958 10991 else 10959 10992 # Is the header compilable? 10960 {echo "$as_me:$LINENO: checking openssl/ssl.h usability" >&510961 echo $ECHO_N "checking openssl/ssl.h usability... $ECHO_C" >&6 ; }10993 echo "$as_me:$LINENO: checking openssl/ssl.h usability" >&5 10994 echo $ECHO_N "checking openssl/ssl.h usability... $ECHO_C" >&6 10962 10995 cat >conftest.$ac_ext <<_ACEOF 10963 10996 /* confdefs.h. */ … … 10970 11003 _ACEOF 10971 11004 rm -f conftest.$ac_objext 10972 if { (ac_try="$ac_compile" 10973 case "(($ac_try" in 10974 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 10975 *) ac_try_echo=$ac_try;; 10976 esac 10977 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 10978 (eval "$ac_compile") 2>conftest.er1 11005 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 11006 (eval $ac_compile) 2>conftest.er1 10979 11007 ac_status=$? 10980 11008 grep -v '^ *+' conftest.er1 >conftest.err … … 10982 11010 cat conftest.err >&5 10983 11011 echo "$as_me:$LINENO: \$? = $ac_status" >&5 10984 (exit $ac_status); } && { 10985 test -z "$ac_c_werror_flag" || 10986 test ! -s conftest.err 10987 } && test -s conftest.$ac_objext; then 11012 (exit $ac_status); } && 11013 { ac_try='test -z "$ac_c_werror_flag" 11014 || test ! -s conftest.err' 11015 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 11016 (eval $ac_try) 2>&5 11017 ac_status=$? 11018 echo "$as_me:$LINENO: \$? = $ac_status" >&5 11019 (exit $ac_status); }; } && 11020 { ac_try='test -s conftest.$ac_objext' 11021 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 11022 (eval $ac_try) 2>&5 11023 ac_status=$? 11024 echo "$as_me:$LINENO: \$? = $ac_status" >&5 11025 (exit $ac_status); }; }; then 10988 11026 ac_header_compiler=yes 10989 11027 else … … 10991 11029 sed 's/^/| /' conftest.$ac_ext >&5 10992 11030 10993 ac_header_compiler=no 10994 fi 10995 10996 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 10997 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 10998 echo "${ECHO_T}$ac_header_compiler" >&6; } 11031 ac_header_compiler=no 11032 fi 11033 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 11034 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 11035 echo "${ECHO_T}$ac_header_compiler" >&6 10999 11036 11000 11037 # Is the header present? 11001 {echo "$as_me:$LINENO: checking openssl/ssl.h presence" >&511002 echo $ECHO_N "checking openssl/ssl.h presence... $ECHO_C" >&6 ; }11038 echo "$as_me:$LINENO: checking openssl/ssl.h presence" >&5 11039 echo $ECHO_N "checking openssl/ssl.h presence... $ECHO_C" >&6 11003 11040 cat >conftest.$ac_ext <<_ACEOF 11004 11041 /* confdefs.h. */ … … 11009 11046 #include <openssl/ssl.h> 11010 11047 _ACEOF 11011 if { (ac_try="$ac_cpp conftest.$ac_ext" 11012 case "(($ac_try" in 11013 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 11014 *) ac_try_echo=$ac_try;; 11015 esac 11016 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 11017 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 11048 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 11049 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 11018 11050 ac_status=$? 11019 11051 grep -v '^ *+' conftest.er1 >conftest.err … … 11021 11053 cat conftest.err >&5 11022 11054 echo "$as_me:$LINENO: \$? = $ac_status" >&5 11023 (exit $ac_status); } >/dev/null && { 11024 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 11025 test ! -s conftest.err 11026 }; then 11055 (exit $ac_status); } >/dev/null; then 11056 if test -s conftest.err; then 11057 ac_cpp_err=$ac_c_preproc_warn_flag 11058 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 11059 else 11060 ac_cpp_err= 11061 fi 11062 else 11063 ac_cpp_err=yes 11064 fi 11065 if test -z "$ac_cpp_err"; then 11027 11066 ac_header_preproc=yes 11028 11067 else … … 11032 11071 ac_header_preproc=no 11033 11072 fi 11034 11035 11073 rm -f conftest.err conftest.$ac_ext 11036 {echo "$as_me:$LINENO: result: $ac_header_preproc" >&511037 echo "${ECHO_T}$ac_header_preproc" >&6 ; }11074 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 11075 echo "${ECHO_T}$ac_header_preproc" >&6 11038 11076 11039 11077 # So? What about this header? … … 11059 11097 { echo "$as_me:$LINENO: WARNING: openssl/ssl.h: in the future, the compiler will take precedence" >&5 11060 11098 echo "$as_me: WARNING: openssl/ssl.h: in the future, the compiler will take precedence" >&2;} 11061 11099 ( 11100 cat <<\_ASBOX 11101 ## ------------------------------------ ## 11102 ## Report this to the pjproject lists. ## 11103 ## ------------------------------------ ## 11104 _ASBOX 11105 ) | 11106 sed "s/^/$as_me: WARNING: /" >&2 11062 11107 ;; 11063 11108 esac 11064 {echo "$as_me:$LINENO: checking for openssl/ssl.h" >&511065 echo $ECHO_N "checking for openssl/ssl.h... $ECHO_C" >&6 ; }11109 echo "$as_me:$LINENO: checking for openssl/ssl.h" >&5 11110 echo $ECHO_N "checking for openssl/ssl.h... $ECHO_C" >&6 11066 11111 if test "${ac_cv_header_openssl_ssl_h+set}" = set; then 11067 11112 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 11069 11114 ac_cv_header_openssl_ssl_h=$ac_header_preproc 11070 11115 fi 11071 {echo "$as_me:$LINENO: result: $ac_cv_header_openssl_ssl_h" >&511072 echo "${ECHO_T}$ac_cv_header_openssl_ssl_h" >&6 ; }11116 echo "$as_me:$LINENO: result: $ac_cv_header_openssl_ssl_h" >&5 11117 echo "${ECHO_T}$ac_cv_header_openssl_ssl_h" >&6 11073 11118 11074 11119 fi … … 11078 11123 11079 11124 11080 {echo "$as_me:$LINENO: checking for SSL_library_init in -lssl" >&511081 echo $ECHO_N "checking for SSL_library_init in -lssl... $ECHO_C" >&6 ; }11125 echo "$as_me:$LINENO: checking for SSL_library_init in -lssl" >&5 11126 echo $ECHO_N "checking for SSL_library_init in -lssl... $ECHO_C" >&6 11082 11127 if test "${ac_cv_lib_ssl_SSL_library_init+set}" = set; then 11083 11128 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 11092 11137 /* end confdefs.h. */ 11093 11138 11094 /* Override any GCC internal prototype to avoid an error. 11095 Use char because int might match the return type of a GCC 11096 builtin and then its argument prototype would still apply. */ 11139 /* Override any gcc2 internal prototype to avoid an error. */ 11097 11140 #ifdef __cplusplus 11098 11141 extern "C" 11099 11142 #endif 11143 /* We use char because int might match the return type of a gcc2 11144 builtin and then its argument prototype would still apply. */ 11100 11145 char SSL_library_init (); 11101 11146 int 11102 11147 main () 11103 11148 { 11104 returnSSL_library_init ();11149 SSL_library_init (); 11105 11150 ; 11106 11151 return 0; … … 11108 11153 _ACEOF 11109 11154 rm -f conftest.$ac_objext conftest$ac_exeext 11110 if { (ac_try="$ac_link" 11111 case "(($ac_try" in 11112 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 11113 *) ac_try_echo=$ac_try;; 11114 esac 11115 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 11116 (eval "$ac_link") 2>conftest.er1 11155 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 11156 (eval $ac_link) 2>conftest.er1 11117 11157 ac_status=$? 11118 11158 grep -v '^ *+' conftest.er1 >conftest.err … … 11120 11160 cat conftest.err >&5 11121 11161 echo "$as_me:$LINENO: \$? = $ac_status" >&5 11122 (exit $ac_status); } && { 11123 test -z "$ac_c_werror_flag" || 11124 test ! -s conftest.err 11125 } && test -s conftest$ac_exeext && 11126 $as_test_x conftest$ac_exeext; then 11162 (exit $ac_status); } && 11163 { ac_try='test -z "$ac_c_werror_flag" 11164 || test ! -s conftest.err' 11165 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 11166 (eval $ac_try) 2>&5 11167 ac_status=$? 11168 echo "$as_me:$LINENO: \$? = $ac_status" >&5 11169 (exit $ac_status); }; } && 11170 { ac_try='test -s conftest$ac_exeext' 11171 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 11172 (eval $ac_try) 2>&5 11173 ac_status=$? 11174 echo "$as_me:$LINENO: \$? = $ac_status" >&5 11175 (exit $ac_status); }; }; then 11127 11176 ac_cv_lib_ssl_SSL_library_init=yes 11128 11177 else … … 11130 11179 sed 's/^/| /' conftest.$ac_ext >&5 11131 11180 11132 ac_cv_lib_ssl_SSL_library_init=no 11133 fi 11134 11135 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 11181 ac_cv_lib_ssl_SSL_library_init=no 11182 fi 11183 rm -f conftest.err conftest.$ac_objext \ 11136 11184 conftest$ac_exeext conftest.$ac_ext 11137 11185 LIBS=$ac_check_lib_save_LIBS 11138 11186 fi 11139 {echo "$as_me:$LINENO: result: $ac_cv_lib_ssl_SSL_library_init" >&511140 echo "${ECHO_T}$ac_cv_lib_ssl_SSL_library_init" >&6 ; }11187 echo "$as_me:$LINENO: result: $ac_cv_lib_ssl_SSL_library_init" >&5 11188 echo "${ECHO_T}$ac_cv_lib_ssl_SSL_library_init" >&6 11141 11189 if test $ac_cv_lib_ssl_SSL_library_init = yes; then 11142 11190 libssl_present=1 && LIBS="$LIBS -lssl" 11143 11191 fi 11144 11192 11145 {echo "$as_me:$LINENO: checking for ERR_load_BIO_strings in -lcrypto" >&511146 echo $ECHO_N "checking for ERR_load_BIO_strings in -lcrypto... $ECHO_C" >&6 ; }11193 echo "$as_me:$LINENO: checking for ERR_load_BIO_strings in -lcrypto" >&5 11194 echo $ECHO_N "checking for ERR_load_BIO_strings in -lcrypto... $ECHO_C" >&6 11147 11195 if test "${ac_cv_lib_crypto_ERR_load_BIO_strings+set}" = set; then 11148 11196 echo $ECHO_N "(cached) $ECHO_C" >&6 … … 11157 11205 /* end confdefs.h. */ 11158 11206 11159 /* Override any GCC internal prototype to avoid an error. 11160 Use char because int might match the return type of a GCC 11161 builtin and then its argument prototype would still apply. */ 11207 /* Override any gcc2 internal prototype to avoid an error. */ 11162 11208 #ifdef __cplusplus 11163 11209 extern "C" 11164 11210 #endif 11211 /* We use char because int might match the return type of a gcc2 11212 builtin and then its argument prototype would still apply. */ 11165 11213 char ERR_load_BIO_strings (); 11166 11214 int 11167 11215 main () 11168 11216 { 11169 returnERR_load_BIO_strings ();11217 ERR_load_BIO_strings (); 11170 11218 ; 11171 11219 return 0; … … 11173 11221 _ACEOF 11174 11222 rm -f conftest.$ac_objext conftest$ac_exeext 11175 if { (ac_try="$ac_link" 11176 case "(($ac_try" in 11177 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 11178 *) ac_try_echo=$ac_try;; 11179 esac 11180 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 11181 (eval "$ac_link") 2>conftest.er1 11223 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 11224 (eval $ac_link) 2>conftest.er1 11182 11225 ac_status=$? 11183 11226 grep -v '^ *+' conftest.er1 >conftest.err … … 11185 11228 cat conftest.err >&5 11186 11229 echo "$as_me:$LINENO: \$? = $ac_status" >&5 11187 (exit $ac_status); } && { 11188 test -z "$ac_c_werror_flag" || 11189 test ! -s conftest.err 11190 } && test -s conftest$ac_exeext && 11191 $as_test_x conftest$ac_exeext; then 11230 (exit $ac_status); } && 11231 { ac_try='test -z "$ac_c_werror_flag" 11232 || test ! -s conftest.err' 11233 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 11234 (eval $ac_try) 2>&5 11235 ac_status=$? 11236 echo "$as_me:$LINENO: \$? = $ac_status" >&5 11237 (exit $ac_status); }; } && 11238 { ac_try='test -s conftest$ac_exeext' 11239 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 11240 (eval $ac_try) 2>&5 11241 ac_status=$? 11242 echo "$as_me:$LINENO: \$? = $ac_status" >&5 11243 (exit $ac_status); }; }; then 11192 11244 ac_cv_lib_crypto_ERR_load_BIO_strings=yes 11193 11245 else … … 11195 11247 sed 's/^/| /' conftest.$ac_ext >&5 11196 11248 11197 ac_cv_lib_crypto_ERR_load_BIO_strings=no 11198 fi 11199 11200 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 11249 ac_cv_lib_crypto_ERR_load_BIO_strings=no 11250 fi 11251 rm -f conftest.err conftest.$ac_objext \ 11201 11252 conftest$ac_exeext conftest.$ac_ext 11202 11253 LIBS=$ac_check_lib_save_LIBS 11203 11254 fi 11204 {echo "$as_me:$LINENO: result: $ac_cv_lib_crypto_ERR_load_BIO_strings" >&511205 echo "${ECHO_T}$ac_cv_lib_crypto_ERR_load_BIO_strings" >&6 ; }11255 echo "$as_me:$LINENO: result: $ac_cv_lib_crypto_ERR_load_BIO_strings" >&5 11256 echo "${ECHO_T}$ac_cv_lib_crypto_ERR_load_BIO_strings" >&6 11206 11257 if test $ac_cv_lib_crypto_ERR_load_BIO_strings = yes; then 11207 11258 libcrypto_present=1 && LIBS="$LIBS -lcrypto" … … 11209 11260 11210 11261 if test "x$openssl_h_present" = "x1" -a "x$libssl_present" = "x1" -a "x$libcrypto_present" = "x1"; then 11211 {echo "$as_me:$LINENO: result: OpenSSL library found, SSL support enabled" >&511212 echo "${ECHO_T}OpenSSL library found, SSL support enabled" >&6 ; }11262 echo "$as_me:$LINENO: result: OpenSSL library found, SSL support enabled" >&5 11263 echo "${ECHO_T}OpenSSL library found, SSL support enabled" >&6 11213 11264 cat >>confdefs.h <<\_ACEOF 11214 11265 #define PJSIP_HAS_TLS_TRANSPORT 1 … … 11216 11267 11217 11268 else 11218 {echo "$as_me:$LINENO: result: ** OpenSSL libraries not found, disabling SSL support **" >&511219 echo "${ECHO_T}** OpenSSL libraries not found, disabling SSL support **" >&6 ; }11269 echo "$as_me:$LINENO: result: ** OpenSSL libraries not found, disabling SSL support **" >&5 11270 echo "${ECHO_T}** OpenSSL libraries not found, disabling SSL support **" >&6 11220 11271 fi 11221 11272 11222 fi 11223 11224 11225 11226 11227 11228 { echo "$as_me:$LINENO: checking if select() needs correct nfds" >&5 11229 echo $ECHO_N "checking if select() needs correct nfds... $ECHO_C" >&6; } 11273 fi; 11274 11275 11276 11277 11278 echo "$as_me:$LINENO: checking if select() needs correct nfds" >&5 11279 echo $ECHO_N "checking if select() needs correct nfds... $ECHO_C" >&6 11230 11280 case $target in 11231 11281 *rtems*) cat >>confdefs.h <<\_ACEOF … … 11233 11283 _ACEOF 11234 11284 11235 {echo "$as_me:$LINENO: result: yes" >&511236 echo "${ECHO_T}yes" >&6 ; }11285 echo "$as_me:$LINENO: result: yes" >&5 11286 echo "${ECHO_T}yes" >&6 11237 11287 ;; 11238 11288 *) cat >>confdefs.h <<\_ACEOF … … 11240 11290 _ACEOF 11241 11291 11242 {echo "$as_me:$LINENO: result: no (default)" >&511243 echo "${ECHO_T}no (default)" >&6 ; }11244 {echo "$as_me:$LINENO: result: ** Decided that select() doesn't need correct nfds (please check)" >&511245 echo "${ECHO_T}** Decided that select() doesn't need correct nfds (please check)" >&6 ; }11292 echo "$as_me:$LINENO: result: no (default)" >&5 11293 echo "${ECHO_T}no (default)" >&6 11294 echo "$as_me:$LINENO: result: ** Decided that select() doesn't need correct nfds (please check)" >&5 11295 echo "${ECHO_T}** Decided that select() doesn't need correct nfds (please check)" >&6 11246 11296 ;; 11247 11297 esac 11248 11298 11249 {echo "$as_me:$LINENO: checking if pj_thread_create() should enforce stack size" >&511250 echo $ECHO_N "checking if pj_thread_create() should enforce stack size... $ECHO_C" >&6 ; }11299 echo "$as_me:$LINENO: checking if pj_thread_create() should enforce stack size" >&5 11300 echo $ECHO_N "checking if pj_thread_create() should enforce stack size... $ECHO_C" >&6 11251 11301 case $target in 11252 11302 *rtems*) cat >>confdefs.h <<\_ACEOF … … 11254 11304 _ACEOF 11255 11305 11256 {echo "$as_me:$LINENO: result: yes" >&511257 echo "${ECHO_T}yes" >&6 ; }11306 echo "$as_me:$LINENO: result: yes" >&5 11307 echo "${ECHO_T}yes" >&6 11258 11308 ;; 11259 11309 *) cat >>confdefs.h <<\_ACEOF … … 11261 11311 _ACEOF 11262 11312 11263 {echo "$as_me:$LINENO: result: no (default)" >&511264 echo "${ECHO_T}no (default)" >&6 ; }11313 echo "$as_me:$LINENO: result: no (default)" >&5 11314 echo "${ECHO_T}no (default)" >&6 11265 11315 ;; 11266 11316 esac 11267 11317 11268 {echo "$as_me:$LINENO: checking if pj_thread_create() should allocate stack" >&511269 echo $ECHO_N "checking if pj_thread_create() should allocate stack... $ECHO_C" >&6 ; }11318 echo "$as_me:$LINENO: checking if pj_thread_create() should allocate stack" >&5 11319 echo $ECHO_N "checking if pj_thread_create() should allocate stack... $ECHO_C" >&6 11270 11320 case $target in 11271 11321 *rtems*) cat >>confdefs.h <<\_ACEOF … … 11273 11323 _ACEOF 11274 11324 11275 {echo "$as_me:$LINENO: result: yes" >&511276 echo "${ECHO_T}yes" >&6 ; }11325 echo "$as_me:$LINENO: result: yes" >&5 11326 echo "${ECHO_T}yes" >&6 11277 11327 ;; 11278 11328 *) cat >>confdefs.h <<\_ACEOF … … 11280 11330 _ACEOF 11281 11331 11282 {echo "$as_me:$LINENO: result: no (default)" >&511283 echo "${ECHO_T}no (default)" >&6 ; }11332 echo "$as_me:$LINENO: result: no (default)" >&5 11333 echo "${ECHO_T}no (default)" >&6 11284 11334 ;; 11285 11335 esac … … 11296 11346 _ACEOF 11297 11347 11298 {echo "$as_me:$LINENO: result: ** Setting non-blocking recv() retval to EAGAIN (please check)" >&511299 echo "${ECHO_T}** Setting non-blocking recv() retval to EAGAIN (please check)" >&6 ; }11348 echo "$as_me:$LINENO: result: ** Setting non-blocking recv() retval to EAGAIN (please check)" >&5 11349 echo "${ECHO_T}** Setting non-blocking recv() retval to EAGAIN (please check)" >&6 11300 11350 ;; 11301 11351 esac … … 11312 11362 _ACEOF 11313 11363 11314 {echo "$as_me:$LINENO: result: ** Setting non-blocking connect() retval to EINPROGRESS (please check)" >&511315 echo "${ECHO_T}** Setting non-blocking connect() retval to EINPROGRESS (please check)" >&6 ; }11364 echo "$as_me:$LINENO: result: ** Setting non-blocking connect() retval to EINPROGRESS (please check)" >&5 11365 echo "${ECHO_T}** Setting non-blocking connect() retval to EINPROGRESS (please check)" >&6 11316 11366 ;; 11317 11367 esac … … 11359 11409 # The following way of writing the cache mishandles newlines in values, 11360 11410 # but we know of no workaround that is simple, portable, and efficient. 11361 # So, we kill variables containing newlines.11411 # So, don't put newlines in cache variables' values. 11362 11412 # Ultrix sh set writes to stderr and can't be redirected directly, 11363 11413 # and sets the high bit in the cache file unless we assign to the vars. 11364 ( 11365 for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do 11366 eval ac_val=\$$ac_var 11367 case $ac_val in #( 11368 *${as_nl}*) 11369 case $ac_var in #( 11370 *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 11371 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; 11372 esac 11373 case $ac_var in #( 11374 _ | IFS | as_nl) ;; #( 11375 *) $as_unset $ac_var ;; 11376 esac ;; 11377 esac 11378 done 11379 11414 { 11380 11415 (set) 2>&1 | 11381 case $as_nl`(ac_space=' '; set) 2>&1` in #(11382 * ${as_nl}ac_space=\ *)11416 case `(ac_space=' '; set | grep ac_space) 2>&1` in 11417 *ac_space=\ *) 11383 11418 # `set' does not quote correctly, so add quotes (double-quote 11384 11419 # substitution turns \\\\ into \\, and sed turns \\ into \). … … 11386 11421 "s/'/'\\\\''/g; 11387 11422 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" 11388 ;; #(11423 ;; 11389 11424 *) 11390 11425 # `set' quotes correctly as required by POSIX, so do not add quotes. 11391 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" 11426 sed -n \ 11427 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" 11392 11428 ;; 11393 esac | 11394 sort 11395 ) | 11429 esac; 11430 } | 11396 11431 sed ' 11397 /^ac_cv_env_/b end11398 11432 t clear 11399 : clear11433 : clear 11400 11434 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ 11401 11435 t end 11402 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ 11403 :end' >>confcache 11404 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else 11405 if test -w "$cache_file"; then 11406 test "x$cache_file" != "x/dev/null" && 11407 { echo "$as_me:$LINENO: updating cache $cache_file" >&5 11408 echo "$as_me: updating cache $cache_file" >&6;} 11436 /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ 11437 : end' >>confcache 11438 if diff $cache_file confcache >/dev/null 2>&1; then :; else 11439 if test -w $cache_file; then 11440 test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" 11409 11441 cat confcache >$cache_file 11410 11442 else 11411 { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 11412 echo "$as_me: not updating unwritable cache $cache_file" >&6;} 11443 echo "not updating unwritable cache $cache_file" 11413 11444 fi 11414 11445 fi … … 11418 11449 # Let make expand exec_prefix. 11419 11450 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' 11451 11452 # VPATH may cause trouble with some makes, so we remove $(srcdir), 11453 # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and 11454 # trailing colons and then remove the whole line if VPATH becomes empty 11455 # (actually we leave an empty line to preserve line numbers). 11456 if test "x$srcdir" = x.; then 11457 ac_vpsub='/^[ ]*VPATH[ ]*=/{ 11458 s/:*\$(srcdir):*/:/; 11459 s/:*\${srcdir}:*/:/; 11460 s/:*@srcdir@:*/:/; 11461 s/^\([^=]*=[ ]*\):*/\1/; 11462 s/:*$//; 11463 s/^[^=]*=[ ]*$//; 11464 }' 11465 fi 11420 11466 11421 11467 DEFS=-DHAVE_CONFIG_H … … 11425 11471 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue 11426 11472 # 1. Remove the extension, and $U if already installed. 11427 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' 11428 ac_i=`echo "$ac_i" | sed "$ac_script"` 11429 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR 11430 # will be set to the directory where LIBOBJS objects are built. 11431 ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" 11432 ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' 11473 ac_i=`echo "$ac_i" | 11474 sed 's/\$U\././;s/\.o$//;s/\.obj$//'` 11475 # 2. Add them. 11476 ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" 11477 ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' 11433 11478 done 11434 11479 LIBOBJS=$ac_libobjs … … 11461 11506 ## --------------------- ## 11462 11507 11463 # Be more Bourne compatible 11464 DUALCASE=1; export DUALCASE # for MKS sh 11508 # Be Bourne compatible 11465 11509 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 11466 11510 emulate sh … … 11469 11513 # is contrary to our usage. Disable this feature. 11470 11514 alias -g '${1+"$@"}'='"$@"' 11471 setopt NO_GLOB_SUBST 11472 else 11473 case `(set -o) 2>/dev/null` in 11474 *posix*) set -o posix ;; 11475 esac 11476 11477 fi 11478 11479 11480 11481 11482 # PATH needs CR 11515 elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then 11516 set -o posix 11517 fi 11518 DUALCASE=1; export DUALCASE # for MKS sh 11519 11520 # Support unset when possible. 11521 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then 11522 as_unset=unset 11523 else 11524 as_unset=false 11525 fi 11526 11527 11528 # Work around bugs in pre-3.0 UWIN ksh. 11529 $as_unset ENV MAIL MAILPATH 11530 PS1='$ ' 11531 PS2='> ' 11532 PS4='+ ' 11533 11534 # NLS nuisances. 11535 for as_var in \ 11536 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 11537 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 11538 LC_TELEPHONE LC_TIME 11539 do 11540 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 11541 eval $as_var=C; export $as_var 11542 else 11543 $as_unset $as_var 11544 fi 11545 done 11546 11547 # Required to use basename. 11548 if expr a : '\(a\)' >/dev/null 2>&1; then 11549 as_expr=expr 11550 else 11551 as_expr=false 11552 fi 11553 11554 if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then 11555 as_basename=basename 11556 else 11557 as_basename=false 11558 fi 11559 11560 11561 # Name of the executable. 11562 as_me=`$as_basename "$0" || 11563 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 11564 X"$0" : 'X\(//\)$' \| \ 11565 X"$0" : 'X\(/\)$' \| \ 11566 . : '\(.\)' 2>/dev/null || 11567 echo X/"$0" | 11568 sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } 11569 /^X\/\(\/\/\)$/{ s//\1/; q; } 11570 /^X\/\(\/\).*/{ s//\1/; q; } 11571 s/.*/./; q'` 11572 11573 11574 # PATH needs CR, and LINENO needs CR and PATH. 11483 11575 # Avoid depending upon Character Ranges. 11484 11576 as_cr_letters='abcdefghijklmnopqrstuvwxyz' … … 11501 11593 fi 11502 11594 11503 # Support unset when possible. 11504 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then 11505 as_unset=unset 11506 else 11507 as_unset=false 11508 fi 11509 11510 11511 # IFS 11512 # We need space, tab and new line, in precisely that order. Quoting is 11513 # there to prevent editors from complaining about space-tab. 11514 # (If _AS_PATH_WALK were called with IFS unset, it would disable word 11515 # splitting by setting IFS to empty value.) 11516 as_nl=' 11517 ' 11518 IFS=" "" $as_nl" 11519 11520 # Find who we are. Look in the path if we contain no directory separator. 11521 case $0 in 11522 *[\\/]* ) as_myself=$0 ;; 11523 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 11595 11596 as_lineno_1=$LINENO 11597 as_lineno_2=$LINENO 11598 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` 11599 test "x$as_lineno_1" != "x$as_lineno_2" && 11600 test "x$as_lineno_3" = "x$as_lineno_2" || { 11601 # Find who we are. Look in the path if we contain no path at all 11602 # relative or not. 11603 case $0 in 11604 *[\\/]* ) as_myself=$0 ;; 11605 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 11524 11606 for as_dir in $PATH 11525 11607 do … … 11528 11610 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break 11529 11611 done 11530 IFS=$as_save_IFS 11531 11532 ;; 11533 esac 11534 # We did not find ourselves, most probably we were run as `sh COMMAND' 11535 # in which case we are not to be found in the path. 11536 if test "x$as_myself" = x; then 11537 as_myself=$0 11538 fi 11539 if test ! -f "$as_myself"; then 11540 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 11541 { (exit 1); exit 1; } 11542 fi 11543 11544 # Work around bugs in pre-3.0 UWIN ksh. 11545 for as_var in ENV MAIL MAILPATH 11546 do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 11547 done 11548 PS1='$ ' 11549 PS2='> ' 11550 PS4='+ ' 11551 11552 # NLS nuisances. 11553 for as_var in \ 11554 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 11555 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 11556 LC_TELEPHONE LC_TIME 11612 11613 ;; 11614 esac 11615 # We did not find ourselves, most probably we were run as `sh COMMAND' 11616 # in which case we are not to be found in the path. 11617 if test "x$as_myself" = x; then 11618 as_myself=$0 11619 fi 11620 if test ! -f "$as_myself"; then 11621 { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 11622 echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} 11623 { (exit 1); exit 1; }; } 11624 fi 11625 case $CONFIG_SHELL in 11626 '') 11627 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 11628 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH 11557 11629 do 11558 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 11559 eval $as_var=C; export $as_var 11560 else 11561 ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 11562 fi 11563 done 11564 11565 # Required to use basename. 11566 if expr a : '\(a\)' >/dev/null 2>&1 && 11567 test "X`expr 00001 : '.*\(...\)'`" = X001; then 11568 as_expr=expr 11569 else 11570 as_expr=false 11571 fi 11572 11573 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then 11574 as_basename=basename 11575 else 11576 as_basename=false 11577 fi 11578 11579 11580 # Name of the executable. 11581 as_me=`$as_basename -- "$0" || 11582 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 11583 X"$0" : 'X\(//\)$' \| \ 11584 X"$0" : 'X\(/\)' \| . 2>/dev/null || 11585 echo X/"$0" | 11586 sed '/^.*\/\([^/][^/]*\)\/*$/{ 11587 s//\1/ 11588 q 11589 } 11590 /^X\/\(\/\/\)$/{ 11591 s//\1/ 11592 q 11593 } 11594 /^X\/\(\/\).*/{ 11595 s//\1/ 11596 q 11597 } 11598 s/.*/./; q'` 11599 11600 # CDPATH. 11601 $as_unset CDPATH 11602 11603 11604 11630 IFS=$as_save_IFS 11631 test -z "$as_dir" && as_dir=. 11632 for as_base in sh bash ksh sh5; do 11633 case $as_dir in 11634 /*) 11635 if ("$as_dir/$as_base" -c ' 11605 11636 as_lineno_1=$LINENO 11606 11637 as_lineno_2=$LINENO 11638 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` 11607 11639 test "x$as_lineno_1" != "x$as_lineno_2" && 11608 test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { 11640 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then 11641 $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } 11642 $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } 11643 CONFIG_SHELL=$as_dir/$as_base 11644 export CONFIG_SHELL 11645 exec "$CONFIG_SHELL" "$0" ${1+"$@"} 11646 fi;; 11647 esac 11648 done 11649 done 11650 ;; 11651 esac 11609 11652 11610 11653 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO 11611 11654 # uniformly replaced by the line number. The first 'sed' inserts a 11612 # line-number line after each line using $LINENO; the second 'sed' 11613 # does the real work. The second script uses 'N' to pair each 11614 # line-number line with the line containing $LINENO, and appends 11615 # trailing '-' during substitution so that $LINENO is not a special 11616 # case at line end. 11655 # line-number line before each line; the second 'sed' does the real 11656 # work. The second script uses 'N' to pair each line-number line 11657 # with the numbered line, and appends trailing '-' during 11658 # substitution so that $LINENO is not a special case at line end. 11617 11659 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the 11618 # scripts with optimization help from Paolo Bonzini. Blame Lee 11619 # E. McMahon (1931-1989) for sed's syntax. :-) 11620 sed -n ' 11621 p 11622 /[$]LINENO/= 11623 ' <$as_myself | 11660 # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) 11661 sed '=' <$as_myself | 11624 11662 sed ' 11625 s/[$]LINENO.*/&-/11626 t lineno11627 b11628 :lineno11629 11663 N 11630 :loop 11631 s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ 11664 s,$,-, 11665 : loop 11666 s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, 11632 11667 t loop 11633 s/-\n.*// 11668 s,-$,, 11669 s,^['$as_cr_digits']*\n,, 11634 11670 ' >$as_me.lineno && 11635 chmod +x "$as_me.lineno" || 11636 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 11671 chmod +x $as_me.lineno || 11672 { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 11673 echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} 11637 11674 { (exit 1); exit 1; }; } 11638 11675 11639 11676 # Don't try to exec as it changes $[0], causing all sort of problems 11640 11677 # (the dirname of $[0] is not the place where we might find the 11641 # original and so on. Autoconf is especially sensi tive to this).11642 . "./$as_me.lineno"11678 # original and so on. Autoconf is especially sensible to this). 11679 . ./$as_me.lineno 11643 11680 # Exit status is that of the last command. 11644 11681 exit … … 11646 11683 11647 11684 11648 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then 11649 as_dirname=dirname 11650 else 11651 as_dirname=false 11652 fi 11653 11654 ECHO_C= ECHO_N= ECHO_T= 11655 case `echo -n x` in 11656 -n*) 11657 case `echo 'x\c'` in 11658 *c*) ECHO_T=' ';; # ECHO_T is single tab character. 11659 *) ECHO_C='\c';; 11660 esac;; 11661 *) 11662 ECHO_N='-n';; 11685 case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in 11686 *c*,-n*) ECHO_N= ECHO_C=' 11687 ' ECHO_T=' ' ;; 11688 *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; 11689 *) ECHO_N= ECHO_C='\c' ECHO_T= ;; 11663 11690 esac 11664 11691 11665 if expr a : '\(a\)' >/dev/null 2>&1 && 11666 test "X`expr 00001 : '.*\(...\)'`" = X001; then 11692 if expr a : '\(a\)' >/dev/null 2>&1; then 11667 11693 as_expr=expr 11668 11694 else … … 11671 11697 11672 11698 rm -f conf$$ conf$$.exe conf$$.file 11673 if test -d conf$$.dir; then11674 rm -f conf$$.dir/conf$$.file11675 else11676 rm -f conf$$.dir11677 mkdir conf$$.dir11678 fi11679 11699 echo >conf$$.file 11680 11700 if ln -s conf$$.file conf$$ 2>/dev/null; then 11681 as_ln_s='ln -s' 11682 # ... but there are two gotchas: 11683 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 11684 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 11685 # In both cases, we have to default to `cp -p'. 11686 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 11701 # We could just check for DJGPP; but this test a) works b) is more generic 11702 # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). 11703 if test -f conf$$.exe; then 11704 # Don't use ln at all; we don't have any links 11687 11705 as_ln_s='cp -p' 11706 else 11707 as_ln_s='ln -s' 11708 fi 11688 11709 elif ln conf$$.file conf$$ 2>/dev/null; then 11689 11710 as_ln_s=ln … … 11691 11712 as_ln_s='cp -p' 11692 11713 fi 11693 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file 11694 rmdir conf$$.dir 2>/dev/null 11714 rm -f conf$$ conf$$.exe conf$$.file 11695 11715 11696 11716 if mkdir -p . 2>/dev/null; then … … 11701 11721 fi 11702 11722 11703 if test -x / >/dev/null 2>&1; then 11704 as_test_x='test -x' 11705 else 11706 if ls -dL / >/dev/null 2>&1; then 11707 as_ls_L_option=L 11708 else 11709 as_ls_L_option= 11710 fi 11711 as_test_x=' 11712 eval sh -c '\'' 11713 if test -d "$1"; then 11714 test -d "$1/."; 11715 else 11716 case $1 in 11717 -*)set "./$1";; 11718 esac; 11719 case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in 11720 ???[sx]*):;;*)false;;esac;fi 11721 '\'' sh 11722 ' 11723 fi 11724 as_executable_p=$as_test_x 11723 as_executable_p="test -f" 11725 11724 11726 11725 # Sed expression to map a string onto a valid CPP name. … … 11731 11730 11732 11731 11732 # IFS 11733 # We need space, tab and new line, in precisely that order. 11734 as_nl=' 11735 ' 11736 IFS=" $as_nl" 11737 11738 # CDPATH. 11739 $as_unset CDPATH 11740 11733 11741 exec 6>&1 11734 11742 11735 # Save the log message, to keep$[0] and so on meaningful, and to11743 # Open the log real soon, to keep \$[0] and so on meaningful, and to 11736 11744 # report actual input values of CONFIG_FILES etc. instead of their 11737 # values after options handling. 11738 ac_log=" 11745 # values after options handling. Logging --version etc. is OK. 11746 exec 5>>config.log 11747 { 11748 echo 11749 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX 11750 ## Running $as_me. ## 11751 _ASBOX 11752 } >&5 11753 cat >&5 <<_CSEOF 11754 11739 11755 This file was extended by pjproject $as_me 1.0, which was 11740 generated by GNU Autoconf 2. 61. Invocation command line was11756 generated by GNU Autoconf 2.59. Invocation command line was 11741 11757 11742 11758 CONFIG_FILES = $CONFIG_FILES … … 11746 11762 $ $0 $@ 11747 11763 11748 on `(hostname || uname -n) 2>/dev/null | sed 1q` 11749 " 11750 11751 _ACEOF 11752 11753 cat >>$CONFIG_STATUS <<_ACEOF 11764 _CSEOF 11765 echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 11766 echo >&5 11767 _ACEOF 11768 11754 11769 # Files that config.status was made for. 11755 config_files="$ac_config_files" 11756 config_headers="$ac_config_headers" 11757 11758 _ACEOF 11770 if test -n "$ac_config_files"; then 11771 echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS 11772 fi 11773 11774 if test -n "$ac_config_headers"; then 11775 echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS 11776 fi 11777 11778 if test -n "$ac_config_links"; then 11779 echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS 11780 fi 11781 11782 if test -n "$ac_config_commands"; then 11783 echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS 11784 fi 11759 11785 11760 11786 cat >>$CONFIG_STATUS <<\_ACEOF 11787 11761 11788 ac_cs_usage="\ 11762 11789 \`$as_me' instantiates files from templates according to the … … 11766 11793 11767 11794 -h, --help print this help, then exit 11768 -V, --version print version number and configuration settings, then exit11795 -V, --version print version number, then exit 11769 11796 -q, --quiet do not print progress messages 11770 11797 -d, --debug don't remove temporary files … … 11782 11809 11783 11810 Report bugs to <bug-autoconf@gnu.org>." 11784 11785 _ACEOF 11811 _ACEOF 11812 11786 11813 cat >>$CONFIG_STATUS <<_ACEOF 11787 11814 ac_cs_version="\\ 11788 11815 pjproject config.status 1.0 11789 configured by $0, generated by GNU Autoconf 2. 61,11790 with options \\"`echo "$ac_configure_args" | sed 's/ ^ //; s/[\\""\`\$]/\\\\&/g'`\\"11791 11792 Copyright (C) 200 6Free Software Foundation, Inc.11816 configured by $0, generated by GNU Autoconf 2.59, 11817 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" 11818 11819 Copyright (C) 2003 Free Software Foundation, Inc. 11793 11820 This config.status script is free software; the Free Software Foundation 11794 11821 gives unlimited permission to copy, distribute and modify it." 11795 11796 ac_pwd='$ac_pwd' 11797 srcdir='$srcdir' 11822 srcdir=$srcdir 11798 11823 _ACEOF 11799 11824 … … 11806 11831 case $1 in 11807 11832 --*=*) 11808 ac_option=`expr " X$1" : 'X\([^=]*\)='`11809 ac_optarg=`expr " X$1" : 'X[^=]*=\(.*\)'`11833 ac_option=`expr "x$1" : 'x\([^=]*\)='` 11834 ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` 11810 11835 ac_shift=: 11811 11836 ;; 11812 *)11837 -*) 11813 11838 ac_option=$1 11814 11839 ac_optarg=$2 11815 11840 ac_shift=shift 11816 11841 ;; 11842 *) # This is not an option, so the user has probably given explicit 11843 # arguments. 11844 ac_option=$1 11845 ac_need_defaults=false;; 11817 11846 esac 11818 11847 11819 11848 case $ac_option in 11820 11849 # Handling of the options. 11850 _ACEOF 11851 cat >>$CONFIG_STATUS <<\_ACEOF 11821 11852 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) 11822 11853 ac_cs_recheck=: ;; 11823 --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) 11824 echo "$ac_cs_version"; exit ;; 11825 --debug | --debu | --deb | --de | --d | -d ) 11854 --version | --vers* | -V ) 11855 echo "$ac_cs_version"; exit 0 ;; 11856 --he | --h) 11857 # Conflict between --help and --header 11858 { { echo "$as_me:$LINENO: error: ambiguous option: $1 11859 Try \`$0 --help' for more information." >&5 11860 echo "$as_me: error: ambiguous option: $1 11861 Try \`$0 --help' for more information." >&2;} 11862 { (exit 1); exit 1; }; };; 11863 --help | --hel | -h ) 11864 echo "$ac_cs_usage"; exit 0 ;; 11865 --debug | --d* | -d ) 11826 11866 debug=: ;; 11827 11867 --file | --fil | --fi | --f ) … … 11833 11873 CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" 11834 11874 ac_need_defaults=false;; 11835 --he | --h)11836 # Conflict between --help and --header11837 { echo "$as_me: error: ambiguous option: $111838 Try \`$0 --help' for more information." >&211839 { (exit 1); exit 1; }; };;11840 --help | --hel | -h )11841 echo "$ac_cs_usage"; exit ;;11842 11875 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 11843 11876 | -silent | --silent | --silen | --sile | --sil | --si | --s) … … 11845 11878 11846 11879 # This is an error. 11847 -*) { echo "$as_me: error: unrecognized option: $1 11848 Try \`$0 --help' for more information." >&2 11880 -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 11881 Try \`$0 --help' for more information." >&5 11882 echo "$as_me: error: unrecognized option: $1 11883 Try \`$0 --help' for more information." >&2;} 11849 11884 { (exit 1); exit 1; }; } ;; 11850 11885 11851 *) ac_config_targets="$ac_config_targets $1" 11852 ac_need_defaults=false ;; 11886 *) ac_config_targets="$ac_config_targets $1" ;; 11853 11887 11854 11888 esac … … 11866 11900 cat >>$CONFIG_STATUS <<_ACEOF 11867 11901 if \$ac_cs_recheck; then 11868 echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 11869 CONFIG_SHELL=$SHELL 11870 export CONFIG_SHELL 11871 exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion 11872 fi 11873 11874 _ACEOF 11902 echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 11903 exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion 11904 fi 11905 11906 _ACEOF 11907 11908 11909 11910 11911 11875 11912 cat >>$CONFIG_STATUS <<\_ACEOF 11876 exec 5>>config.log11877 {11878 echo11879 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX11880 ## Running $as_me. ##11881 _ASBOX11882 echo "$ac_log"11883 } >&511884 11885 _ACEOF11886 cat >>$CONFIG_STATUS <<_ACEOF11887 _ACEOF11888 11889 cat >>$CONFIG_STATUS <<\_ACEOF11890 11891 # Handling of arguments.11892 11913 for ac_config_target in $ac_config_targets 11893 11914 do 11894 case $ac_config_targetin11895 "pjlib/include/pj/compat/os_auto.h") CONFIG_HEADERS="$CONFIG_HEADERS pjlib/include/pj/compat/os_auto.h" ;;11896 "pjlib/include/pj/compat/m_auto.h") CONFIG_HEADERS="$CONFIG_HEADERS pjlib/include/pj/compat/m_auto.h" ;;11897 "pjmedia/include/pjmedia/config_auto.h") CONFIG_HEADERS="$CONFIG_HEADERS pjmedia/include/pjmedia/config_auto.h" ;;11898 "pjmedia/include/pjmedia-codec/config_auto.h") CONFIG_HEADERS="$CONFIG_HEADERS pjmedia/include/pjmedia-codec/config_auto.h" ;;11899 "pjsip/include/pjsip/sip_autoconf.h") CONFIG_HEADERS="$CONFIG_HEADERS pjsip/include/pjsip/sip_autoconf.h" ;;11900 "build.mak") CONFIG_FILES="$CONFIG_FILES build.mak" ;;11901 "build/os-auto.mak") CONFIG_FILES="$CONFIG_FILESbuild/os-auto.mak" ;;11902 "pjlib/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES pjlib/build/os-auto.mak" ;;11903 "pjlib-util/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES pjlib-util/build/os-auto.mak" ;;11904 "pjmedia/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES pjmedia/build/os-auto.mak" ;;11905 "pjsip/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES pjsip/build/os-auto.mak" ;;11906 "third_party/build/portaudio/os-auto.mak") CONFIG_FILES="$CONFIG_FILES third_party/build/portaudio/os-auto.mak" ;;11907 "third_party/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES third_party/build/os-auto.mak" ;;11908 11915 case "$ac_config_target" in 11916 # Handling of arguments. 11917 "build.mak" ) CONFIG_FILES="$CONFIG_FILES build.mak" ;; 11918 "build/os-auto.mak" ) CONFIG_FILES="$CONFIG_FILES build/os-auto.mak" ;; 11919 "pjlib/build/os-auto.mak" ) CONFIG_FILES="$CONFIG_FILES pjlib/build/os-auto.mak" ;; 11920 "pjlib-util/build/os-auto.mak" ) CONFIG_FILES="$CONFIG_FILES pjlib-util/build/os-auto.mak" ;; 11921 "pjmedia/build/os-auto.mak" ) CONFIG_FILES="$CONFIG_FILES pjmedia/build/os-auto.mak" ;; 11922 "pjsip/build/os-auto.mak" ) CONFIG_FILES="$CONFIG_FILES pjsip/build/os-auto.mak" ;; 11923 "third_party/build/portaudio/os-auto.mak" ) CONFIG_FILES="$CONFIG_FILES third_party/build/portaudio/os-auto.mak" ;; 11924 "third_party/build/os-auto.mak" ) CONFIG_FILES="$CONFIG_FILES third_party/build/os-auto.mak" ;; 11925 "pjlib/include/pj/compat/os_auto.h" ) CONFIG_HEADERS="$CONFIG_HEADERS pjlib/include/pj/compat/os_auto.h" ;; 11926 "pjlib/include/pj/compat/m_auto.h" ) CONFIG_HEADERS="$CONFIG_HEADERS pjlib/include/pj/compat/m_auto.h" ;; 11927 "pjmedia/include/pjmedia/config_auto.h" ) CONFIG_HEADERS="$CONFIG_HEADERS pjmedia/include/pjmedia/config_auto.h" ;; 11928 "pjmedia/include/pjmedia-codec/config_auto.h" ) CONFIG_HEADERS="$CONFIG_HEADERS pjmedia/include/pjmedia-codec/config_auto.h" ;; 11929 "pjsip/include/pjsip/sip_autoconf.h" ) CONFIG_HEADERS="$CONFIG_HEADERS pjsip/include/pjsip/sip_autoconf.h" ;; 11909 11930 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 11910 11931 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} … … 11912 11933 esac 11913 11934 done 11914 11915 11935 11916 11936 # If the user did not use the arguments to specify the items to instantiate, … … 11924 11944 11925 11945 # Have a temporary directory for convenience. Make it in the build tree 11926 # simply because there is no reason against havingit here, and in addition,11946 # simply because there is no reason to put it here, and in addition, 11927 11947 # creating and moving files from /tmp can sometimes cause problems. 11928 # Hook for its removal unless debugging. 11929 # Note that there is a small window in which the directory will not be cleaned: 11930 # after its creation but before its name has been assigned to `$tmp'. 11948 # Create a temporary directory, and hook for its removal unless debugging. 11931 11949 $debug || 11932 11950 { 11933 tmp= 11934 trap 'exit_status=$? 11935 { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status 11936 ' 0 11951 trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 11937 11952 trap '{ (exit 1); exit 1; }' 1 2 13 15 11938 11953 } 11954 11939 11955 # Create a (secure) tmp directory for tmp files. 11940 11956 11941 11957 { 11942 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&11958 tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && 11943 11959 test -n "$tmp" && test -d "$tmp" 11944 11960 } || 11945 11961 { 11946 tmp=./conf $$-$RANDOM11947 (umask 077 && mkdir "$tmp")11962 tmp=./confstat$$-$RANDOM 11963 (umask 077 && mkdir $tmp) 11948 11964 } || 11949 11965 { … … 11952 11968 } 11953 11969 11970 _ACEOF 11971 11972 cat >>$CONFIG_STATUS <<_ACEOF 11973 11954 11974 # 11955 # Set up the sed scripts forCONFIG_FILES section.11975 # CONFIG_FILES section. 11956 11976 # 11957 11977 11958 11978 # No need to generate the scripts if there are no CONFIG_FILES. 11959 11979 # This happens for instance when ./config.status config.h 11960 if test -n "$CONFIG_FILES"; then 11961 11962 _ACEOF 11963 11964 11965 11966 ac_delim='%!_!# ' 11967 for ac_last_try in false false false false false :; do 11968 cat >conf$$subs.sed <<_ACEOF 11969 SHELL!$SHELL$ac_delim 11970 PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim 11971 PACKAGE_NAME!$PACKAGE_NAME$ac_delim 11972 PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim 11973 PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim 11974 PACKAGE_STRING!$PACKAGE_STRING$ac_delim 11975 PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim 11976 exec_prefix!$exec_prefix$ac_delim 11977 prefix!$prefix$ac_delim 11978 program_transform_name!$program_transform_name$ac_delim 11979 bindir!$bindir$ac_delim 11980 sbindir!$sbindir$ac_delim 11981 libexecdir!$libexecdir$ac_delim 11982 datarootdir!$datarootdir$ac_delim 11983 datadir!$datadir$ac_delim 11984 sysconfdir!$sysconfdir$ac_delim 11985 sharedstatedir!$sharedstatedir$ac_delim 11986 localstatedir!$localstatedir$ac_delim 11987 includedir!$includedir$ac_delim 11988 oldincludedir!$oldincludedir$ac_delim 11989 docdir!$docdir$ac_delim 11990 infodir!$infodir$ac_delim 11991 htmldir!$htmldir$ac_delim 11992 dvidir!$dvidir$ac_delim 11993 pdfdir!$pdfdir$ac_delim 11994 psdir!$psdir$ac_delim 11995 libdir!$libdir$ac_delim 11996 localedir!$localedir$ac_delim 11997 mandir!$mandir$ac_delim 11998 DEFS!$DEFS$ac_delim 11999 ECHO_C!$ECHO_C$ac_delim 12000 ECHO_N!$ECHO_N$ac_delim 12001 ECHO_T!$ECHO_T$ac_delim 12002 LIBS!$LIBS$ac_delim 12003 build_alias!$build_alias$ac_delim 12004 host_alias!$host_alias$ac_delim 12005 target_alias!$target_alias$ac_delim 12006 build!$build$ac_delim 12007 build_cpu!$build_cpu$ac_delim 12008 build_vendor!$build_vendor$ac_delim 12009 build_os!$build_os$ac_delim 12010 host!$host$ac_delim 12011 host_cpu!$host_cpu$ac_delim 12012 host_vendor!$host_vendor$ac_delim 12013 host_os!$host_os$ac_delim 12014 target!$target$ac_delim 12015 target_cpu!$target_cpu$ac_delim 12016 target_vendor!$target_vendor$ac_delim 12017 target_os!$target_os$ac_delim 12018 CC!$CC$ac_delim 12019 CFLAGS!$CFLAGS$ac_delim 12020 LDFLAGS!$LDFLAGS$ac_delim 12021 CPPFLAGS!$CPPFLAGS$ac_delim 12022 ac_ct_CC!$ac_ct_CC$ac_delim 12023 EXEEXT!$EXEEXT$ac_delim 12024 OBJEXT!$OBJEXT$ac_delim 12025 CXX!$CXX$ac_delim 12026 CXXFLAGS!$CXXFLAGS$ac_delim 12027 ac_ct_CXX!$ac_ct_CXX$ac_delim 12028 ac_pjdir!$ac_pjdir$ac_delim 12029 ac_build_mak_vars!$ac_build_mak_vars$ac_delim 12030 CPP!$CPP$ac_delim 12031 GREP!$GREP$ac_delim 12032 EGREP!$EGREP$ac_delim 12033 ac_os_objs!$ac_os_objs$ac_delim 12034 ac_pjmedia_snd!$ac_pjmedia_snd$ac_delim 12035 ac_pa_cflags!$ac_pa_cflags$ac_delim 12036 ac_pa_use_alsa!$ac_pa_use_alsa$ac_delim 12037 ac_pa_use_oss!$ac_pa_use_oss$ac_delim 12038 ac_no_small_filter!$ac_no_small_filter$ac_delim 12039 ac_no_large_filter!$ac_no_large_filter$ac_delim 12040 ac_no_speex_aec!$ac_no_speex_aec$ac_delim 12041 ac_no_g711_codec!$ac_no_g711_codec$ac_delim 12042 ac_no_l16_codec!$ac_no_l16_codec$ac_delim 12043 ac_no_gsm_codec!$ac_no_gsm_codec$ac_delim 12044 ac_no_g722_codec!$ac_no_g722_codec$ac_delim 12045 ac_no_speex_codec!$ac_no_speex_codec$ac_delim 12046 ac_no_ilbc_codec!$ac_no_ilbc_codec$ac_delim 12047 ac_no_ssl!$ac_no_ssl$ac_delim 12048 openssl_h_present!$openssl_h_present$ac_delim 12049 libssl_present!$libssl_present$ac_delim 12050 libcrypto_present!$libcrypto_present$ac_delim 12051 ac_cross_compile!$ac_cross_compile$ac_delim 12052 ac_linux_poll!$ac_linux_poll$ac_delim 12053 ac_host!$ac_host$ac_delim 12054 ac_main_obj!$ac_main_obj$ac_delim 12055 LIBOBJS!$LIBOBJS$ac_delim 12056 LTLIBOBJS!$LTLIBOBJS$ac_delim 12057 _ACEOF 12058 12059 if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 88; then 12060 break 12061 elif $ac_last_try; then 12062 { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 12063 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} 12064 { (exit 1); exit 1; }; } 12065 else 12066 ac_delim="$ac_delim!$ac_delim _$ac_delim!! " 11980 if test -n "\$CONFIG_FILES"; then 11981 # Protect against being on the right side of a sed subst in config.status. 11982 sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; 11983 s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF 11984 s,@SHELL@,$SHELL,;t t 11985 s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t 11986 s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t 11987 s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t 11988 s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t 11989 s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t 11990 s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t 11991 s,@exec_prefix@,$exec_prefix,;t t 11992 s,@prefix@,$prefix,;t t 11993 s,@program_transform_name@,$program_transform_name,;t t 11994 s,@bindir@,$bindir,;t t 11995 s,@sbindir@,$sbindir,;t t 11996 s,@libexecdir@,$libexecdir,;t t 11997 s,@datadir@,$datadir,;t t 11998 s,@sysconfdir@,$sysconfdir,;t t 11999 s,@sharedstatedir@,$sharedstatedir,;t t 12000 s,@localstatedir@,$localstatedir,;t t 12001 s,@libdir@,$libdir,;t t 12002 s,@includedir@,$includedir,;t t 12003 s,@oldincludedir@,$oldincludedir,;t t 12004 s,@infodir@,$infodir,;t t 12005 s,@mandir@,$mandir,;t t 12006 s,@build_alias@,$build_alias,;t t 12007 s,@host_alias@,$host_alias,;t t 12008 s,@target_alias@,$target_alias,;t t 12009 s,@DEFS@,$DEFS,;t t 12010 s,@ECHO_C@,$ECHO_C,;t t 12011 s,@ECHO_N@,$ECHO_N,;t t 12012 s,@ECHO_T@,$ECHO_T,;t t 12013 s,@LIBS@,$LIBS,;t t 12014 s,@build@,$build,;t t 12015 s,@build_cpu@,$build_cpu,;t t 12016 s,@build_vendor@,$build_vendor,;t t 12017 s,@build_os@,$build_os,;t t 12018 s,@host@,$host,;t t 12019 s,@host_cpu@,$host_cpu,;t t 12020 s,@host_vendor@,$host_vendor,;t t 12021 s,@host_os@,$host_os,;t t 12022 s,@target@,$target,;t t 12023 s,@target_cpu@,$target_cpu,;t t 12024 s,@target_vendor@,$target_vendor,;t t 12025 s,@target_os@,$target_os,;t t 12026 s,@CC@,$CC,;t t 12027 s,@CFLAGS@,$CFLAGS,;t t 12028 s,@LDFLAGS@,$LDFLAGS,;t t 12029 s,@CPPFLAGS@,$CPPFLAGS,;t t 12030 s,@ac_ct_CC@,$ac_ct_CC,;t t 12031 s,@EXEEXT@,$EXEEXT,;t t 12032 s,@OBJEXT@,$OBJEXT,;t t 12033 s,@CXX@,$CXX,;t t 12034 s,@CXXFLAGS@,$CXXFLAGS,;t t 12035 s,@ac_ct_CXX@,$ac_ct_CXX,;t t 12036 s,@ac_pjdir@,$ac_pjdir,;t t 12037 s,@ac_build_mak_vars@,$ac_build_mak_vars,;t t 12038 s,@CPP@,$CPP,;t t 12039 s,@EGREP@,$EGREP,;t t 12040 s,@ac_os_objs@,$ac_os_objs,;t t 12041 s,@ac_pjmedia_snd@,$ac_pjmedia_snd,;t t 12042 s,@ac_pa_cflags@,$ac_pa_cflags,;t t 12043 s,@ac_pa_use_alsa@,$ac_pa_use_alsa,;t t 12044 s,@ac_pa_use_oss@,$ac_pa_use_oss,;t t 12045 s,@ac_no_small_filter@,$ac_no_small_filter,;t t 12046 s,@ac_no_large_filter@,$ac_no_large_filter,;t t 12047 s,@ac_no_speex_aec@,$ac_no_speex_aec,;t t 12048 s,@ac_no_g711_codec@,$ac_no_g711_codec,;t t 12049 s,@ac_no_l16_codec@,$ac_no_l16_codec,;t t 12050 s,@ac_no_gsm_codec@,$ac_no_gsm_codec,;t t 12051 s,@ac_no_g722_codec@,$ac_no_g722_codec,;t t 12052 s,@ac_no_speex_codec@,$ac_no_speex_codec,;t t 12053 s,@ac_no_ilbc_codec@,$ac_no_ilbc_codec,;t t 12054 s,@ac_no_ssl@,$ac_no_ssl,;t t 12055 s,@openssl_h_present@,$openssl_h_present,;t t 12056 s,@libssl_present@,$libssl_present,;t t 12057 s,@libcrypto_present@,$libcrypto_present,;t t 12058 s,@ac_cross_compile@,$ac_cross_compile,;t t 12059 s,@ac_linux_poll@,$ac_linux_poll,;t t 12060 s,@ac_host@,$ac_host,;t t 12061 s,@ac_main_obj@,$ac_main_obj,;t t 12062 s,@LIBOBJS@,$LIBOBJS,;t t 12063 s,@LTLIBOBJS@,$LTLIBOBJS,;t t 12064 CEOF 12065 12066 _ACEOF 12067 12068 cat >>$CONFIG_STATUS <<\_ACEOF 12069 # Split the substitutions into bite-sized pieces for seds with 12070 # small command number limits, like on Digital OSF/1 and HP-UX. 12071 ac_max_sed_lines=48 12072 ac_sed_frag=1 # Number of current file. 12073 ac_beg=1 # First line for current file. 12074 ac_end=$ac_max_sed_lines # Line after last line for current file. 12075 ac_more_lines=: 12076 ac_sed_cmds= 12077 while $ac_more_lines; do 12078 if test $ac_beg -gt 1; then 12079 sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag 12080 else 12081 sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag 12082 fi 12083 if test ! -s $tmp/subs.frag; then 12084 ac_more_lines=false 12085 else 12086 # The purpose of the label and of the branching condition is to 12087 # speed up the sed processing (if there are no `@' at all, there 12088 # is no need to browse any of the substitutions). 12089 # These are the two extra sed commands mentioned above. 12090 (echo ':t 12091 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed 12092 if test -z "$ac_sed_cmds"; then 12093 ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" 12094 else 12095 ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" 12096 fi 12097 ac_sed_frag=`expr $ac_sed_frag + 1` 12098 ac_beg=$ac_end 12099 ac_end=`expr $ac_end + $ac_max_sed_lines` 12100 fi 12101 done 12102 if test -z "$ac_sed_cmds"; then 12103 ac_sed_cmds=cat 12067 12104 fi 12068 done 12069 12070 ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` 12071 if test -n "$ac_eof"; then 12072 ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` 12073 ac_eof=`expr $ac_eof + 1` 12074 fi 12075 12076 cat >>$CONFIG_STATUS <<_ACEOF 12077 cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof 12078 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end 12079 _ACEOF 12080 sed ' 12081 s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g 12082 s/^/s,@/; s/!/@,|#_!!_#|/ 12083 :n 12084 t n 12085 s/'"$ac_delim"'$/,g/; t 12086 s/$/\\/; p 12087 N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n 12088 ' >>$CONFIG_STATUS <conf$$subs.sed 12089 rm -f conf$$subs.sed 12090 cat >>$CONFIG_STATUS <<_ACEOF 12091 :end 12092 s/|#_!!_#|//g 12093 CEOF$ac_eof 12094 _ACEOF 12095 12096 12097 # VPATH may cause trouble with some makes, so we remove $(srcdir), 12098 # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and 12099 # trailing colons and then remove the whole line if VPATH becomes empty 12100 # (actually we leave an empty line to preserve line numbers). 12101 if test "x$srcdir" = x.; then 12102 ac_vpsub='/^[ ]*VPATH[ ]*=/{ 12103 s/:*\$(srcdir):*/:/ 12104 s/:*\${srcdir}:*/:/ 12105 s/:*@srcdir@:*/:/ 12106 s/^\([^=]*=[ ]*\):*/\1/ 12107 s/:*$// 12108 s/^[^=]*=[ ]*$// 12109 }' 12110 fi 12111 12105 fi # test -n "$CONFIG_FILES" 12106 12107 _ACEOF 12112 12108 cat >>$CONFIG_STATUS <<\_ACEOF 12113 fi # test -n "$CONFIG_FILES" 12114 12115 12116 for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS 12117 do 12118 case $ac_tag in 12119 :[FHLC]) ac_mode=$ac_tag; continue;; 12109 for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue 12110 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". 12111 case $ac_file in 12112 - | *:- | *:-:* ) # input from stdin 12113 cat >$tmp/stdin 12114 ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` 12115 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; 12116 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` 12117 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; 12118 * ) ac_file_in=$ac_file.in ;; 12120 12119 esac 12121 case $ac_mode$ac_tag in 12122 :[FHL]*:*);; 12123 :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 12124 echo "$as_me: error: Invalid tag $ac_tag." >&2;} 12125 { (exit 1); exit 1; }; };; 12126 :[FH]-) ac_tag=-:-;; 12127 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; 12128 esac 12129 ac_save_IFS=$IFS 12130 IFS=: 12131 set x $ac_tag 12132 IFS=$ac_save_IFS 12133 shift 12134 ac_file=$1 12135 shift 12136 12137 case $ac_mode in 12138 :L) ac_source=$1;; 12139 :[FH]) 12140 ac_file_inputs= 12141 for ac_f 12142 do 12143 case $ac_f in 12144 -) ac_f="$tmp/stdin";; 12145 *) # Look for the file first in the build tree, then in the source tree 12146 # (if the path is not absolute). The absolute path cannot be DOS-style, 12147 # because $ac_f cannot contain `:'. 12148 test -f "$ac_f" || 12149 case $ac_f in 12150 [\\/$]*) false;; 12151 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; 12152 esac || 12153 { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 12154 echo "$as_me: error: cannot find input file: $ac_f" >&2;} 12155 { (exit 1); exit 1; }; };; 12156 esac 12157 ac_file_inputs="$ac_file_inputs $ac_f" 12158 done 12159 12160 # Let's still pretend it is `configure' which instantiates (i.e., don't 12161 # use $as_me), people would be surprised to read: 12162 # /* config.h. Generated by config.status. */ 12163 configure_input="Generated from "`IFS=: 12164 echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." 12165 if test x"$ac_file" != x-; then 12166 configure_input="$ac_file. $configure_input" 12167 { echo "$as_me:$LINENO: creating $ac_file" >&5 12168 echo "$as_me: creating $ac_file" >&6;} 12169 fi 12170 12171 case $ac_tag in 12172 *:-:* | *:-) cat >"$tmp/stdin";; 12173 esac 12174 ;; 12175 esac 12176 12177 ac_dir=`$as_dirname -- "$ac_file" || 12120 12121 # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. 12122 ac_dir=`(dirname "$ac_file") 2>/dev/null || 12178 12123 $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 12179 12124 X"$ac_file" : 'X\(//\)[^/]' \| \ 12180 12125 X"$ac_file" : 'X\(//\)$' \| \ 12181 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || 12126 X"$ac_file" : 'X\(/\)' \| \ 12127 . : '\(.\)' 2>/dev/null || 12182 12128 echo X"$ac_file" | 12183 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 12184 s//\1/ 12185 q 12186 } 12187 /^X\(\/\/\)[^/].*/{ 12188 s//\1/ 12189 q 12190 } 12191 /^X\(\/\/\)$/{ 12192 s//\1/ 12193 q 12194 } 12195 /^X\(\/\).*/{ 12196 s//\1/ 12197 q 12198 } 12199 s/.*/./; q'` 12200 { as_dir="$ac_dir" 12201 case $as_dir in #( 12202 -*) as_dir=./$as_dir;; 12203 esac 12204 test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { 12129 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } 12130 /^X\(\/\/\)[^/].*/{ s//\1/; q; } 12131 /^X\(\/\/\)$/{ s//\1/; q; } 12132 /^X\(\/\).*/{ s//\1/; q; } 12133 s/.*/./; q'` 12134 { if $as_mkdir_p; then 12135 mkdir -p "$ac_dir" 12136 else 12137 as_dir="$ac_dir" 12205 12138 as_dirs= 12206 while :; do 12207 case $as_dir in #( 12208 *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( 12209 *) as_qdir=$as_dir;; 12210 esac 12211 as_dirs="'$as_qdir' $as_dirs" 12212 as_dir=`$as_dirname -- "$as_dir" || 12139 while test ! -d "$as_dir"; do 12140 as_dirs="$as_dir $as_dirs" 12141 as_dir=`(dirname "$as_dir") 2>/dev/null || 12213 12142 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 12214 12143 X"$as_dir" : 'X\(//\)[^/]' \| \ 12215 12144 X"$as_dir" : 'X\(//\)$' \| \ 12216 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || 12145 X"$as_dir" : 'X\(/\)' \| \ 12146 . : '\(.\)' 2>/dev/null || 12217 12147 echo X"$as_dir" | 12218 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 12219 s//\1/ 12220 q 12221 } 12222 /^X\(\/\/\)[^/].*/{ 12223 s//\1/ 12224 q 12225 } 12226 /^X\(\/\/\)$/{ 12227 s//\1/ 12228 q 12229 } 12230 /^X\(\/\).*/{ 12231 s//\1/ 12232 q 12233 } 12234 s/.*/./; q'` 12235 test -d "$as_dir" && break 12148 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } 12149 /^X\(\/\/\)[^/].*/{ s//\1/; q; } 12150 /^X\(\/\/\)$/{ s//\1/; q; } 12151 /^X\(\/\).*/{ s//\1/; q; } 12152 s/.*/./; q'` 12236 12153 done 12237 test -z "$as_dirs" || eval "mkdir $as_dirs"12238 } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&512239 echo "$as_me: error: cannot create directory $as_dir" >&2;}12154 test ! -n "$as_dirs" || mkdir $as_dirs 12155 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 12156 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} 12240 12157 { (exit 1); exit 1; }; }; } 12158 12241 12159 ac_builddir=. 12242 12160 12243 case "$ac_dir" in 12244 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 12161 if test "$ac_dir" != .; then 12162 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` 12163 # A "../" for each directory in $ac_dir_suffix. 12164 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` 12165 else 12166 ac_dir_suffix= ac_top_builddir= 12167 fi 12168 12169 case $srcdir in 12170 .) # No --srcdir option. We are building in place. 12171 ac_srcdir=. 12172 if test -z "$ac_top_builddir"; then 12173 ac_top_srcdir=. 12174 else 12175 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` 12176 fi ;; 12177 [\\/]* | ?:[\\/]* ) # Absolute path. 12178 ac_srcdir=$srcdir$ac_dir_suffix; 12179 ac_top_srcdir=$srcdir ;; 12180 *) # Relative path. 12181 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix 12182 ac_top_srcdir=$ac_top_builddir$srcdir ;; 12183 esac 12184 12185 # Do not use `cd foo && pwd` to compute absolute paths, because 12186 # the directories may not exist. 12187 case `pwd` in 12188 .) ac_abs_builddir="$ac_dir";; 12245 12189 *) 12246 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` 12247 # A ".." for each directory in $ac_dir_suffix. 12248 ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` 12249 case $ac_top_builddir_sub in 12250 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; 12251 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; 12252 esac ;; 12190 case "$ac_dir" in 12191 .) ac_abs_builddir=`pwd`;; 12192 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; 12193 *) ac_abs_builddir=`pwd`/"$ac_dir";; 12194 esac;; 12253 12195 esac 12254 ac_abs_top_builddir=$ac_pwd 12255 ac_abs_builddir=$ac_pwd$ac_dir_suffix 12256 # for backward compatibility: 12257 ac_top_builddir=$ac_top_build_prefix 12258 12259 case $srcdir in 12260 .) # We are building in place. 12261 ac_srcdir=. 12262 ac_top_srcdir=$ac_top_builddir_sub 12263 ac_abs_top_srcdir=$ac_pwd ;; 12264 [\\/]* | ?:[\\/]* ) # Absolute name. 12265 ac_srcdir=$srcdir$ac_dir_suffix; 12266 ac_top_srcdir=$srcdir 12267 ac_abs_top_srcdir=$srcdir ;; 12268 *) # Relative name. 12269 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix 12270 ac_top_srcdir=$ac_top_build_prefix$srcdir 12271 ac_abs_top_srcdir=$ac_pwd/$srcdir ;; 12196 case $ac_abs_builddir in 12197 .) ac_abs_top_builddir=${ac_top_builddir}.;; 12198 *) 12199 case ${ac_top_builddir}. in 12200 .) ac_abs_top_builddir=$ac_abs_builddir;; 12201 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; 12202 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; 12203 esac;; 12272 12204 esac 12273 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix 12274 12275 12276 case $ac_mode in 12277 :F) 12278 # 12279 # CONFIG_FILE 12280 # 12281 12282 _ACEOF 12283 12284 cat >>$CONFIG_STATUS <<\_ACEOF 12285 # If the template does not know about datarootdir, expand it. 12286 # FIXME: This hack should be removed a few years after 2.60. 12287 ac_datarootdir_hack=; ac_datarootdir_seen= 12288 12289 case `sed -n '/datarootdir/ { 12290 p 12291 q 12292 } 12293 /@datadir@/p 12294 /@docdir@/p 12295 /@infodir@/p 12296 /@localedir@/p 12297 /@mandir@/p 12298 ' $ac_file_inputs` in 12299 *datarootdir*) ac_datarootdir_seen=yes;; 12300 *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) 12301 { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 12302 echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} 12303 _ACEOF 12304 cat >>$CONFIG_STATUS <<_ACEOF 12305 ac_datarootdir_hack=' 12306 s&@datadir@&$datadir&g 12307 s&@docdir@&$docdir&g 12308 s&@infodir@&$infodir&g 12309 s&@localedir@&$localedir&g 12310 s&@mandir@&$mandir&g 12311 s&\\\${datarootdir}&$datarootdir&g' ;; 12205 case $ac_abs_builddir in 12206 .) ac_abs_srcdir=$ac_srcdir;; 12207 *) 12208 case $ac_srcdir in 12209 .) ac_abs_srcdir=$ac_abs_builddir;; 12210 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; 12211 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; 12212 esac;; 12312 12213 esac 12313 _ACEOF 12314 12315 # Neutralize VPATH when `$srcdir' = `.'. 12316 # Shell code in configure.ac might set extrasub. 12317 # FIXME: do we really want to maintain this feature? 12214 case $ac_abs_builddir in 12215 .) ac_abs_top_srcdir=$ac_top_srcdir;; 12216 *) 12217 case $ac_top_srcdir in 12218 .) ac_abs_top_srcdir=$ac_abs_builddir;; 12219 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; 12220 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; 12221 esac;; 12222 esac 12223 12224 12225 12226 if test x"$ac_file" != x-; then 12227 { echo "$as_me:$LINENO: creating $ac_file" >&5 12228 echo "$as_me: creating $ac_file" >&6;} 12229 rm -f "$ac_file" 12230 fi 12231 # Let's still pretend it is `configure' which instantiates (i.e., don't 12232 # use $as_me), people would be surprised to read: 12233 # /* config.h. Generated by config.status. */ 12234 if test x"$ac_file" = x-; then 12235 configure_input= 12236 else 12237 configure_input="$ac_file. " 12238 fi 12239 configure_input=$configure_input"Generated from `echo $ac_file_in | 12240 sed 's,.*/,,'` by configure." 12241 12242 # First look for the input files in the build tree, otherwise in the 12243 # src tree. 12244 ac_file_inputs=`IFS=: 12245 for f in $ac_file_in; do 12246 case $f in 12247 -) echo $tmp/stdin ;; 12248 [\\/$]*) 12249 # Absolute (can't be DOS-style, as IFS=:) 12250 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 12251 echo "$as_me: error: cannot find input file: $f" >&2;} 12252 { (exit 1); exit 1; }; } 12253 echo "$f";; 12254 *) # Relative 12255 if test -f "$f"; then 12256 # Build tree 12257 echo "$f" 12258 elif test -f "$srcdir/$f"; then 12259 # Source tree 12260 echo "$srcdir/$f" 12261 else 12262 # /dev/null tree 12263 { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 12264 echo "$as_me: error: cannot find input file: $f" >&2;} 12265 { (exit 1); exit 1; }; } 12266 fi;; 12267 esac 12268 done` || { (exit 1); exit 1; } 12269 _ACEOF 12318 12270 cat >>$CONFIG_STATUS <<_ACEOF 12319 12271 sed "$ac_vpsub … … 12323 12275 :t 12324 12276 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b 12325 s&@configure_input@&$configure_input&;t t 12326 s&@top_builddir@&$ac_top_builddir_sub&;t t 12327 s&@srcdir@&$ac_srcdir&;t t 12328 s&@abs_srcdir@&$ac_abs_srcdir&;t t 12329 s&@top_srcdir@&$ac_top_srcdir&;t t 12330 s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t 12331 s&@builddir@&$ac_builddir&;t t 12332 s&@abs_builddir@&$ac_abs_builddir&;t t 12333 s&@abs_top_builddir@&$ac_abs_top_builddir&;t t 12334 $ac_datarootdir_hack 12335 " $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out 12336 12337 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && 12338 { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && 12339 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && 12340 { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' 12341 which seems to be undefined. Please make sure it is defined." >&5 12342 echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' 12343 which seems to be undefined. Please make sure it is defined." >&2;} 12344 12345 rm -f "$tmp/stdin" 12277 s,@configure_input@,$configure_input,;t t 12278 s,@srcdir@,$ac_srcdir,;t t 12279 s,@abs_srcdir@,$ac_abs_srcdir,;t t 12280 s,@top_srcdir@,$ac_top_srcdir,;t t 12281 s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t 12282 s,@builddir@,$ac_builddir,;t t 12283 s,@abs_builddir@,$ac_abs_builddir,;t t 12284 s,@top_builddir@,$ac_top_builddir,;t t 12285 s,@abs_top_builddir@,$ac_abs_top_builddir,;t t 12286 " $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out 12287 rm -f $tmp/stdin 12288 if test x"$ac_file" != x-; then 12289 mv $tmp/out $ac_file 12290 else 12291 cat $tmp/out 12292 rm -f $tmp/out 12293 fi 12294 12295 done 12296 _ACEOF 12297 cat >>$CONFIG_STATUS <<\_ACEOF 12298 12299 # 12300 # CONFIG_HEADER section. 12301 # 12302 12303 # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where 12304 # NAME is the cpp macro being defined and VALUE is the value it is being given. 12305 # 12306 # ac_d sets the value in "#define NAME VALUE" lines. 12307 ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' 12308 ac_dB='[ ].*$,\1#\2' 12309 ac_dC=' ' 12310 ac_dD=',;t' 12311 # ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". 12312 ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' 12313 ac_uB='$,\1#\2define\3' 12314 ac_uC=' ' 12315 ac_uD=',;t' 12316 12317 for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue 12318 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". 12346 12319 case $ac_file in 12347 -) cat "$tmp/out"; rm -f "$tmp/out";; 12348 *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; 12320 - | *:- | *:-:* ) # input from stdin 12321 cat >$tmp/stdin 12322 ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` 12323 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; 12324 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` 12325 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; 12326 * ) ac_file_in=$ac_file.in ;; 12349 12327 esac 12350 ;; 12351 :H) 12352 # 12353 # CONFIG_HEADER 12354 # 12355 _ACEOF 12356 12357 # Transform confdefs.h into a sed script `conftest.defines', that 12358 # substitutes the proper values into config.h.in to produce config.h. 12359 rm -f conftest.defines conftest.tail 12360 # First, append a space to every undef/define line, to ease matching. 12361 echo 's/$/ /' >conftest.defines 12362 # Then, protect against being on the right side of a sed subst, or in 12363 # an unquoted here document, in config.status. If some macros were 12364 # called several times there might be several #defines for the same 12365 # symbol, which is useless. But do not sort them, since the last 12366 # AC_DEFINE must be honored. 12367 ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* 12368 # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where 12369 # NAME is the cpp macro being defined, VALUE is the value it is being given. 12370 # PARAMS is the parameter list in the macro definition--in most cases, it's 12371 # just an empty string. 12372 ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' 12373 ac_dB='\\)[ (].*,\\1define\\2' 12374 ac_dC=' ' 12375 ac_dD=' ,' 12376 12377 uniq confdefs.h | 12378 sed -n ' 12379 t rset 12380 :rset 12381 s/^[ ]*#[ ]*define[ ][ ]*// 12382 t ok 12383 d 12384 :ok 12385 s/[\\&,]/\\&/g 12386 s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p 12387 s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p 12388 ' >>conftest.defines 12389 12390 # Remove the space that was appended to ease matching. 12391 # Then replace #undef with comments. This is necessary, for 12328 12329 test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 12330 echo "$as_me: creating $ac_file" >&6;} 12331 12332 # First look for the input files in the build tree, otherwise in the 12333 # src tree. 12334 ac_file_inputs=`IFS=: 12335 for f in $ac_file_in; do 12336 case $f in 12337 -) echo $tmp/stdin ;; 12338 [\\/$]*) 12339 # Absolute (can't be DOS-style, as IFS=:) 12340 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 12341 echo "$as_me: error: cannot find input file: $f" >&2;} 12342 { (exit 1); exit 1; }; } 12343 # Do quote $f, to prevent DOS paths from being IFS'd. 12344 echo "$f";; 12345 *) # Relative 12346 if test -f "$f"; then 12347 # Build tree 12348 echo "$f" 12349 elif test -f "$srcdir/$f"; then 12350 # Source tree 12351 echo "$srcdir/$f" 12352 else 12353 # /dev/null tree 12354 { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 12355 echo "$as_me: error: cannot find input file: $f" >&2;} 12356 { (exit 1); exit 1; }; } 12357 fi;; 12358 esac 12359 done` || { (exit 1); exit 1; } 12360 # Remove the trailing spaces. 12361 sed 's/[ ]*$//' $ac_file_inputs >$tmp/in 12362 12363 _ACEOF 12364 12365 # Transform confdefs.h into two sed scripts, `conftest.defines' and 12366 # `conftest.undefs', that substitutes the proper values into 12367 # config.h.in to produce config.h. The first handles `#define' 12368 # templates, and the second `#undef' templates. 12369 # And first: Protect against being on the right side of a sed subst in 12370 # config.status. Protect against being in an unquoted here document 12371 # in config.status. 12372 rm -f conftest.defines conftest.undefs 12373 # Using a here document instead of a string reduces the quoting nightmare. 12374 # Putting comments in sed scripts is not portable. 12375 # 12376 # `end' is used to avoid that the second main sed command (meant for 12377 # 0-ary CPP macros) applies to n-ary macro definitions. 12378 # See the Autoconf documentation for `clear'. 12379 cat >confdef2sed.sed <<\_ACEOF 12380 s/[\\&,]/\\&/g 12381 s,[\\$`],\\&,g 12382 t clear 12383 : clear 12384 s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp 12385 t end 12386 s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp 12387 : end 12388 _ACEOF 12389 # If some macros were called several times there might be several times 12390 # the same #defines, which is useless. Nevertheless, we may not want to 12391 # sort them, since we want the *last* AC-DEFINE to be honored. 12392 uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines 12393 sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs 12394 rm -f confdef2sed.sed 12395 12396 # This sed command replaces #undef with comments. This is necessary, for 12392 12397 # example, in the case of _POSIX_SOURCE, which is predefined and required 12393 12398 # on some systems where configure will not decide to define it. 12394 # (The regexp can be short, since the line contains either #define or #undef.) 12395 echo 's/ $// 12396 s,^[ #]*u.*,/* & */,' >>conftest.defines 12397 12398 # Break up conftest.defines: 12399 ac_max_sed_lines=50 12400 12401 # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" 12402 # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" 12403 # Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" 12404 # et cetera. 12405 ac_in='$ac_file_inputs' 12406 ac_out='"$tmp/out1"' 12407 ac_nxt='"$tmp/out2"' 12408 12409 while : 12399 cat >>conftest.undefs <<\_ACEOF 12400 s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, 12401 _ACEOF 12402 12403 # Break up conftest.defines because some shells have a limit on the size 12404 # of here documents, and old seds have small limits too (100 cmds). 12405 echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS 12406 echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS 12407 echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS 12408 echo ' :' >>$CONFIG_STATUS 12409 rm -f conftest.tail 12410 while grep . conftest.defines >/dev/null 12410 12411 do 12411 # Write a here document: 12412 cat >>$CONFIG_STATUS <<_ACEOF 12413 # First, check the format of the line: 12414 cat >"\$tmp/defines.sed" <<\\CEOF 12415 /^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def 12416 /^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def 12417 b 12418 :def 12419 _ACEOF 12420 sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS 12412 # Write a limited-size here document to $tmp/defines.sed. 12413 echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS 12414 # Speed up: don't consider the non `#define' lines. 12415 echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS 12416 # Work around the forget-to-reset-the-flag bug. 12417 echo 't clr' >>$CONFIG_STATUS 12418 echo ': clr' >>$CONFIG_STATUS 12419 sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS 12421 12420 echo 'CEOF 12422 sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS 12423 ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in 12424 sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail 12425 grep . conftest.tail >/dev/null || break 12421 sed -f $tmp/defines.sed $tmp/in >$tmp/out 12422 rm -f $tmp/in 12423 mv $tmp/out $tmp/in 12424 ' >>$CONFIG_STATUS 12425 sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail 12426 12426 rm -f conftest.defines 12427 12427 mv conftest.tail conftest.defines 12428 12428 done 12429 rm -f conftest.defines conftest.tail 12430 12431 echo "ac_result=$ac_in" >>$CONFIG_STATUS 12429 rm -f conftest.defines 12430 echo ' fi # grep' >>$CONFIG_STATUS 12431 echo >>$CONFIG_STATUS 12432 12433 # Break up conftest.undefs because some shells have a limit on the size 12434 # of here documents, and old seds have small limits too (100 cmds). 12435 echo ' # Handle all the #undef templates' >>$CONFIG_STATUS 12436 rm -f conftest.tail 12437 while grep . conftest.undefs >/dev/null 12438 do 12439 # Write a limited-size here document to $tmp/undefs.sed. 12440 echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS 12441 # Speed up: don't consider the non `#undef' 12442 echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS 12443 # Work around the forget-to-reset-the-flag bug. 12444 echo 't clr' >>$CONFIG_STATUS 12445 echo ': clr' >>$CONFIG_STATUS 12446 sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS 12447 echo 'CEOF 12448 sed -f $tmp/undefs.sed $tmp/in >$tmp/out 12449 rm -f $tmp/in 12450 mv $tmp/out $tmp/in 12451 ' >>$CONFIG_STATUS 12452 sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail 12453 rm -f conftest.undefs 12454 mv conftest.tail conftest.undefs 12455 done 12456 rm -f conftest.undefs 12457 12432 12458 cat >>$CONFIG_STATUS <<\_ACEOF 12459 # Let's still pretend it is `configure' which instantiates (i.e., don't 12460 # use $as_me), people would be surprised to read: 12461 # /* config.h. Generated by config.status. */ 12462 if test x"$ac_file" = x-; then 12463 echo "/* Generated by configure. */" >$tmp/config.h 12464 else 12465 echo "/* $ac_file. Generated by configure. */" >$tmp/config.h 12466 fi 12467 cat $tmp/in >>$tmp/config.h 12468 rm -f $tmp/in 12433 12469 if test x"$ac_file" != x-; then 12434 echo "/* $configure_input */" >"$tmp/config.h" 12435 cat "$ac_result" >>"$tmp/config.h" 12436 if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then 12470 if diff $ac_file $tmp/config.h >/dev/null 2>&1; then 12437 12471 { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 12438 12472 echo "$as_me: $ac_file is unchanged" >&6;} 12439 12473 else 12474 ac_dir=`(dirname "$ac_file") 2>/dev/null || 12475 $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 12476 X"$ac_file" : 'X\(//\)[^/]' \| \ 12477 X"$ac_file" : 'X\(//\)$' \| \ 12478 X"$ac_file" : 'X\(/\)' \| \ 12479 . : '\(.\)' 2>/dev/null || 12480 echo X"$ac_file" | 12481 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } 12482 /^X\(\/\/\)[^/].*/{ s//\1/; q; } 12483 /^X\(\/\/\)$/{ s//\1/; q; } 12484 /^X\(\/\).*/{ s//\1/; q; } 12485 s/.*/./; q'` 12486 { if $as_mkdir_p; then 12487 mkdir -p "$ac_dir" 12488 else 12489 as_dir="$ac_dir" 12490 as_dirs= 12491 while test ! -d "$as_dir"; do 12492 as_dirs="$as_dir $as_dirs" 12493 as_dir=`(dirname "$as_dir") 2>/dev/null || 12494 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 12495 X"$as_dir" : 'X\(//\)[^/]' \| \ 12496 X"$as_dir" : 'X\(//\)$' \| \ 12497 X"$as_dir" : 'X\(/\)' \| \ 12498 . : '\(.\)' 2>/dev/null || 12499 echo X"$as_dir" | 12500 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } 12501 /^X\(\/\/\)[^/].*/{ s//\1/; q; } 12502 /^X\(\/\/\)$/{ s//\1/; q; } 12503 /^X\(\/\).*/{ s//\1/; q; } 12504 s/.*/./; q'` 12505 done 12506 test ! -n "$as_dirs" || mkdir $as_dirs 12507 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 12508 echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} 12509 { (exit 1); exit 1; }; }; } 12510 12440 12511 rm -f $ac_file 12441 mv "$tmp/config.h"$ac_file12512 mv $tmp/config.h $ac_file 12442 12513 fi 12443 12514 else 12444 echo "/* $configure_input */"12445 cat "$ac_result"12515 cat $tmp/config.h 12516 rm -f $tmp/config.h 12446 12517 fi 12447 rm -f "$tmp/out12" 12448 ;; 12449 12450 12451 esac 12452 12453 done # for ac_tag 12454 12518 done 12519 _ACEOF 12520 12521 cat >>$CONFIG_STATUS <<\_ACEOF 12455 12522 12456 12523 { (exit 0); exit 0; } … … 12483 12550 12484 12551 12485 {echo "$as_me:$LINENO: result:12552 echo "$as_me:$LINENO: result: 12486 12553 12487 12554 Configurations for current target have been written to 'build.mak', and 'os-auto.mak' in various build directories, and pjlib/include/pj/compat/os_auto.h. … … 12502 12569 12503 12570 The next step now is to run 'make dep' and 'make'. 12504 " >&6 ; }12505 12571 " >&6 12572 -
pjproject/trunk/aconfigure.ac
r2300 r2331 177 177 #endif 178 178 ]) 179 AC_CHECK_HEADER(ws2tcpip.h,[AC_DEFINE(PJ_HAS_WS2TCPIP_H,1)]) 179 180 AC_CHECK_HEADER(uuid/uuid.h,[ac_has_uuid_h=1]) 180 181 AC_CHECK_HEADER(net/if.h,[AC_DEFINE(PJ_HAS_NET_IF_H,1)],[], -
pjproject/trunk/pjlib/include/pj/compat/os_auto.h.in
r2190 r2331 76 76 #undef PJ_HAS_WINSOCK_H 77 77 #undef PJ_HAS_WINSOCK2_H 78 #undef PJ_HAS_WS2TCPIP_H 78 79 79 80 #undef PJ_SOCK_HAS_INET_ATON -
pjproject/trunk/pjlib/include/pj/compat/os_win32.h
r2039 r2331 60 60 #define PJ_HAS_WINSOCK_H 0 61 61 #define PJ_HAS_WINSOCK2_H 1 62 #define PJ_HAS_WS2TCPIP_H 1 62 63 63 64 #define PJ_SOCK_HAS_INET_ATON 0 -
pjproject/trunk/pjlib/include/pj/compat/socket.h
r2330 r2331 32 32 # include <winsock.h> 33 33 #endif 34 35 #if defined(PJ_HAS_WS2TCPIP_H) && PJ_HAS_WS2TCPIP_H != 0 36 # include <ws2tcpip.h> 37 #endif 38 34 39 35 40 /* … … 59 64 # endif 60 65 61 # include <ws2tcpip.h>62 # define PJ_WS2TCPIP_H_INCLUDED63 64 66 # if !defined(IPPROTO_IPV6) 65 67 /* Need to download and install IPv6Kit for this platform. … … 71 73 # define PJ_SOCK_HAS_GETADDRINFO 1 72 74 #endif /* _MSC_VER */ 73 74 /* Mingw32 needs ws2tcpip.h for the IGMP constants */75 #if defined(__GNUC__) && defined(WIN32) && !defined(PJ_WS2TCPIP_H_INCLUDED)76 # include <ws2tcpip.h>77 #endif78 75 79 76 #if defined(PJ_HAS_SYS_TYPES_H) && PJ_HAS_SYS_TYPES_H != 0 -
pjproject/trunk/pjlib/src/pj/sock_bsd.c
r2327 r2331 116 116 const pj_uint16_t PJ_SO_RCVBUF = SO_RCVBUF; 117 117 const pj_uint16_t PJ_SO_SNDBUF = SO_SNDBUF; 118 /* Multicasting is not supported e.g. in PocketPC 2003 SDK */ 119 #ifdef IP_MULTICAST_IF 118 120 const pj_uint16_t PJ_IP_MULTICAST_IF = IP_MULTICAST_IF; 119 121 const pj_uint16_t PJ_IP_MULTICAST_TTL = IP_MULTICAST_TTL; … … 121 123 const pj_uint16_t PJ_IP_ADD_MEMBERSHIP = IP_ADD_MEMBERSHIP; 122 124 const pj_uint16_t PJ_IP_DROP_MEMBERSHIP = IP_DROP_MEMBERSHIP; 123 125 #else 126 const pj_uint16_t PJ_IP_MULTICAST_IF = 0xFFFF; 127 const pj_uint16_t PJ_IP_MULTICAST_TTL = 0xFFFF; 128 const pj_uint16_t PJ_IP_MULTICAST_LOOP = 0xFFFF; 129 const pj_uint16_t PJ_IP_ADD_MEMBERSHIP = 0xFFFF; 130 const pj_uint16_t PJ_IP_DROP_MEMBERSHIP = 0xFFFF; 131 #endif 124 132 125 133 /* recv() and send() flags */
Note: See TracChangeset
for help on using the changeset viewer.