Changeset 23800
- Timestamp:
- 2011-03-22T21:33:42+13:00 (13 years ago)
- Location:
- main/trunk/greenstone2/build-src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/greenstone2/build-src/configure
r23356 r23800 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2. 67.3 # Generated by GNU Autoconf 2.59. 4 4 # 5 # 6 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 7 # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software 8 # Foundation, Inc. 9 # 10 # 5 # Copyright (C) 2003 Free Software Foundation, Inc. 11 6 # This configure script is free software; the Free Software Foundation 12 7 # gives unlimited permission to copy, distribute and modify it. 13 ## -------------------- ## 14 ## M4sh Initialization. ## 15 ## -------------------- ## 16 17 # Be more Bourne compatible 18 DUALCASE=1; export DUALCASE # for MKS sh 19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 8 ## --------------------- ## 9 ## M4sh Initialization. ## 10 ## --------------------- ## 11 12 # Be Bourne compatible 13 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 20 14 emulate sh 21 15 NULLCMD=: 22 # Pre-4.2 versions of Zsh doword splitting on ${1+"$@"}, which16 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which 23 17 # is contrary to our usage. Disable this feature. 24 18 alias -g '${1+"$@"}'='"$@"' 25 setopt NO_GLOB_SUBST 26 else 27 case `(set -o) 2>/dev/null` in #( 28 *posix*) : 29 set -o posix ;; #( 30 *) : 31 ;; 32 esac 33 fi 34 35 36 as_nl=' 37 ' 38 export as_nl 39 # Printing a long string crashes Solaris 7 /usr/bin/printf. 40 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' 41 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo 42 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo 43 # Prefer a ksh shell builtin over an external printf program on Solaris, 44 # but without wasting forks for bash or zsh. 45 if test -z "$BASH_VERSION$ZSH_VERSION" \ 46 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then 47 as_echo='print -r --' 48 as_echo_n='print -rn --' 49 elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then 50 as_echo='printf %s\n' 51 as_echo_n='printf %s' 52 else 53 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then 54 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' 55 as_echo_n='/usr/ucb/echo -n' 56 else 57 as_echo_body='eval expr "X$1" : "X\\(.*\\)"' 58 as_echo_n_body='eval 59 arg=$1; 60 case $arg in #( 61 *"$as_nl"*) 62 expr "X$arg" : "X\\(.*\\)$as_nl"; 63 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; 64 esac; 65 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" 66 ' 67 export as_echo_n_body 68 as_echo_n='sh -c $as_echo_n_body as_echo' 69 fi 70 export as_echo_body 71 as_echo='sh -c $as_echo_body as_echo' 72 fi 73 74 # The user is always right. 75 if test "${PATH_SEPARATOR+set}" != set; then 76 PATH_SEPARATOR=: 77 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { 78 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || 79 PATH_SEPARATOR=';' 80 } 81 fi 82 83 84 # IFS 85 # We need space, tab and new line, in precisely that order. Quoting is 86 # there to prevent editors from complaining about space-tab. 87 # (If _AS_PATH_WALK were called with IFS unset, it would disable word 88 # splitting by setting IFS to empty value.) 89 IFS=" "" $as_nl" 90 91 # Find who we are. Look in the path if we contain no directory separator. 92 case $0 in #(( 93 *[\\/]* ) as_myself=$0 ;; 94 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 95 for as_dir in $PATH 96 do 97 IFS=$as_save_IFS 98 test -z "$as_dir" && as_dir=. 99 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break 100 done 101 IFS=$as_save_IFS 102 103 ;; 104 esac 105 # We did not find ourselves, most probably we were run as `sh COMMAND' 106 # in which case we are not to be found in the path. 107 if test "x$as_myself" = x; then 108 as_myself=$0 109 fi 110 if test ! -f "$as_myself"; then 111 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 112 exit 1 113 fi 114 115 # Unset variables that we do not need and which cause bugs (e.g. in 116 # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" 117 # suppresses any "Segmentation fault" message there. '((' could 118 # trigger a bug in pdksh 5.2.14. 119 for as_var in BASH_ENV ENV MAIL MAILPATH 120 do eval test x\${$as_var+set} = xset \ 121 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : 122 done 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 123 34 PS1='$ ' 124 35 PS2='> ' … … 126 37 127 38 # NLS nuisances. 128 LC_ALL=C 129 export LC_ALL 130 LANGUAGE=C 131 export LANGUAGE 132 133 # CDPATH. 134 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH 135 136 if test "x$CONFIG_SHELL" = x; then 137 as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : 138 emulate sh 139 NULLCMD=: 140 # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which 141 # is contrary to our usage. Disable this feature. 142 alias -g '\${1+\"\$@\"}'='\"\$@\"' 143 setopt NO_GLOB_SUBST 144 else 145 case \`(set -o) 2>/dev/null\` in #( 146 *posix*) : 147 set -o posix ;; #( 148 *) : 149 ;; 150 esac 151 fi 152 " 153 as_required="as_fn_return () { (exit \$1); } 154 as_fn_success () { as_fn_return 0; } 155 as_fn_failure () { as_fn_return 1; } 156 as_fn_ret_success () { return 0; } 157 as_fn_ret_failure () { return 1; } 158 159 exitcode=0 160 as_fn_success || { exitcode=1; echo as_fn_success failed.; } 161 as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } 162 as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } 163 as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } 164 if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : 165 166 else 167 exitcode=1; echo positional parameters were not saved. 168 fi 169 test x\$exitcode = x0 || exit 1" 170 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO 171 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO 172 eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && 173 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 174 test \$(( 1 + 1 )) = 2 || exit 1" 175 if (eval "$as_required") 2>/dev/null; then : 176 as_have_required=yes 177 else 178 as_have_required=no 179 fi 180 if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : 181 182 else 183 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 184 as_found=false 185 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH 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 186 43 do 187 IFS=$as_save_IFS 188 test -z "$as_dir" && as_dir=. 189 as_found=: 190 case $as_dir in #( 191 /*) 192 for as_base in sh bash ksh sh5; do 193 # Try only shells that exist, to save several forks. 194 as_shell=$as_dir/$as_base 195 if { test -f "$as_shell" || test -f "$as_shell.exe"; } && 196 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : 197 CONFIG_SHELL=$as_shell as_have_required=yes 198 if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : 199 break 2 200 fi 201 fi 202 done;; 203 esac 204 as_found=false 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 205 49 done 206 $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && 207 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : 208 CONFIG_SHELL=$SHELL as_have_required=yes 209 fi; } 210 IFS=$as_save_IFS 211 212 213 if test "x$CONFIG_SHELL" != x; then : 214 # We cannot yet assume a decent shell, so we have to provide a 215 # neutralization value for shells without unset; and this also 216 # works around shells that cannot unset nonexistent variables. 217 BASH_ENV=/dev/null 218 ENV=/dev/null 219 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV 220 export CONFIG_SHELL 221 exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} 222 fi 223 224 if test x$as_have_required = xno; then : 225 $as_echo "$0: This script requires a shell more modern than all" 226 $as_echo "$0: the shells that I found on your system." 227 if test x${ZSH_VERSION+set} = xset ; then 228 $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" 229 $as_echo "$0: be upgraded to zsh 4.3.4 or later." 230 else 231 $as_echo "$0: Please tell [email protected] about your system, 232 $0: including any error possibly output before this 233 $0: message. Then install a modern shell, or manually run 234 $0: the script under such a shell if you do have one." 235 fi 236 exit 1 237 fi 238 fi 239 fi 240 SHELL=${CONFIG_SHELL-/bin/sh} 241 export SHELL 242 # Unset more variables known to interfere with behavior of common tools. 243 CLICOLOR_FORCE= GREP_OPTIONS= 244 unset CLICOLOR_FORCE GREP_OPTIONS 245 246 ## --------------------- ## 247 ## M4sh Shell Functions. ## 248 ## --------------------- ## 249 # as_fn_unset VAR 250 # --------------- 251 # Portably unset VAR. 252 as_fn_unset () 253 { 254 { eval $1=; unset $1;} 255 } 256 as_unset=as_fn_unset 257 258 # as_fn_set_status STATUS 259 # ----------------------- 260 # Set $? to STATUS, without forking. 261 as_fn_set_status () 262 { 263 return $1 264 } # as_fn_set_status 265 266 # as_fn_exit STATUS 267 # ----------------- 268 # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. 269 as_fn_exit () 270 { 271 set +e 272 as_fn_set_status $1 273 exit $1 274 } # as_fn_exit 275 276 # as_fn_mkdir_p 277 # ------------- 278 # Create "$as_dir" as a directory, including parents if necessary. 279 as_fn_mkdir_p () 280 { 281 282 case $as_dir in #( 283 -*) as_dir=./$as_dir;; 284 esac 285 test -d "$as_dir" || eval $as_mkdir_p || { 286 as_dirs= 287 while :; do 288 case $as_dir in #( 289 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( 290 *) as_qdir=$as_dir;; 291 esac 292 as_dirs="'$as_qdir' $as_dirs" 293 as_dir=`$as_dirname -- "$as_dir" || 294 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 295 X"$as_dir" : 'X\(//\)[^/]' \| \ 296 X"$as_dir" : 'X\(//\)$' \| \ 297 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || 298 $as_echo X"$as_dir" | 299 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 300 s//\1/ 301 q 302 } 303 /^X\(\/\/\)[^/].*/{ 304 s//\1/ 305 q 306 } 307 /^X\(\/\/\)$/{ 308 s//\1/ 309 q 310 } 311 /^X\(\/\).*/{ 312 s//\1/ 313 q 314 } 315 s/.*/./; q'` 316 test -d "$as_dir" && break 317 done 318 test -z "$as_dirs" || eval "mkdir $as_dirs" 319 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" 320 321 322 } # as_fn_mkdir_p 323 # as_fn_append VAR VALUE 324 # ---------------------- 325 # Append the text in VALUE to the end of the definition contained in VAR. Take 326 # advantage of any shell optimizations that allow amortized linear growth over 327 # repeated appends, instead of the typical quadratic growth present in naive 328 # implementations. 329 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : 330 eval 'as_fn_append () 331 { 332 eval $1+=\$2 333 }' 334 else 335 as_fn_append () 336 { 337 eval $1=\$$1\$2 338 } 339 fi # as_fn_append 340 341 # as_fn_arith ARG... 342 # ------------------ 343 # Perform arithmetic evaluation on the ARGs, and store the result in the 344 # global $as_val. Take advantage of shells that can avoid forks. The arguments 345 # must be portable across $(()) and expr. 346 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : 347 eval 'as_fn_arith () 348 { 349 as_val=$(( $* )) 350 }' 351 else 352 as_fn_arith () 353 { 354 as_val=`expr "$@" || test $? -eq 1` 355 } 356 fi # as_fn_arith 357 358 359 # as_fn_error STATUS ERROR [LINENO LOG_FD] 360 # ---------------------------------------- 361 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are 362 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the 363 # script with STATUS, using 1 if that was 0. 364 as_fn_error () 365 { 366 as_status=$1; test $as_status -eq 0 && as_status=1 367 if test "$4"; then 368 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 369 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 370 fi 371 $as_echo "$as_me: error: $2" >&2 372 as_fn_exit $as_status 373 } # as_fn_error 374 375 if expr a : '\(a\)' >/dev/null 2>&1 && 376 test "X`expr 00001 : '.*\(...\)'`" = X001; then 50 51 # Required to use basename. 52 if expr a : '\(a\)' >/dev/null 2>&1; then 377 53 as_expr=expr 378 54 else … … 380 56 fi 381 57 382 if (basename -- /) >/dev/null 2>&1 && test "X`basename --/ 2>&1`" = "X/"; then58 if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then 383 59 as_basename=basename 384 60 else … … 386 62 fi 387 63 388 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then 389 as_dirname=dirname 390 else 391 as_dirname=false 392 fi 393 394 as_me=`$as_basename -- "$0" || 64 65 # Name of the executable. 66 as_me=`$as_basename "$0" || 395 67 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ 396 68 X"$0" : 'X\(//\)$' \| \ 397 X"$0" : 'X\(/\)' \| . 2>/dev/null || 398 $as_echo X/"$0" | 399 sed '/^.*\/\([^/][^/]*\)\/*$/{ 400 s//\1/ 401 q 402 } 403 /^X\/\(\/\/\)$/{ 404 s//\1/ 405 q 406 } 407 /^X\/\(\/\).*/{ 408 s//\1/ 409 q 410 } 411 s/.*/./; q'` 412 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. 413 79 # Avoid depending upon Character Ranges. 414 80 as_cr_letters='abcdefghijklmnopqrstuvwxyz' … … 418 84 as_cr_alnum=$as_cr_Letters$as_cr_digits 419 85 420 421 as_lineno_1=$LINENO as_lineno_1a=$LINENO 422 as_lineno_2=$LINENO as_lineno_2a=$LINENO 423 eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && 424 test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { 425 # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) 426 sed -n ' 427 p 428 /[$]LINENO/= 429 ' <$as_myself | 86 # The user is always right. 87 if test "${PATH_SEPARATOR+set}" != set; then 88 echo "#! /bin/sh" >conf$$.sh 89 echo "exit 0" >>conf$$.sh 90 chmod +x conf$$.sh 91 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then 92 PATH_SEPARATOR=';' 93 else 94 PATH_SEPARATOR=: 95 fi 96 rm -f conf$$.sh 97 fi 98 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 110 for as_dir in $PATH 111 do 112 IFS=$as_save_IFS 113 test -z "$as_dir" && as_dir=. 114 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break 115 done 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 123 fi 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 '') 130 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 131 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH 132 do 133 IFS=$as_save_IFS 134 test -z "$as_dir" && as_dir=. 135 for as_base in sh bash ksh sh5; do 136 case $as_dir in 137 /*) 138 if ("$as_dir/$as_base" -c ' 139 as_lineno_1=$LINENO 140 as_lineno_2=$LINENO 141 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` 142 test "x$as_lineno_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 155 156 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO 157 # uniformly replaced by the line number. The first 'sed' inserts a 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. 162 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the 163 # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) 164 sed '=' <$as_myself | 430 165 sed ' 431 s/[$]LINENO.*/&-/432 t lineno433 b434 :lineno435 166 N 436 :loop 437 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, 438 170 t loop 439 s/-\n.*// 171 s,-$,, 172 s,^['$as_cr_digits']*\n,, 440 173 ' >$as_me.lineno && 441 chmod +x "$as_me.lineno" || 442 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } 174 chmod +x $as_me.lineno || 175 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 176 { (exit 1); exit 1; }; } 443 177 444 178 # Don't try to exec as it changes $[0], causing all sort of problems 445 179 # (the dirname of $[0] is not the place where we might find the 446 # original and so on. Autoconf is especially sensi tive to this).447 . "./$as_me.lineno"180 # original and so on. Autoconf is especially sensible to this). 181 . ./$as_me.lineno 448 182 # Exit status is that of the last command. 449 183 exit 450 184 } 451 185 452 ECHO_C= ECHO_N= ECHO_T= 453 case `echo -n x` in #((((( 454 -n*) 455 case `echo 'xy\c'` in 456 *c*) ECHO_T=' ';; # ECHO_T is single tab character. 457 xy) ECHO_C='\c';; 458 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null 459 ECHO_T=' ';; 460 esac;; 461 *) 462 ECHO_N='-n';; 186 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= ;; 463 192 esac 464 193 194 if expr a : '\(a\)' >/dev/null 2>&1; then 195 as_expr=expr 196 else 197 as_expr=false 198 fi 199 465 200 rm -f conf$$ conf$$.exe conf$$.file 466 if test -d conf$$.dir; then 467 rm -f conf$$.dir/conf$$.file 468 else 469 rm -f conf$$.dir470 mkdir conf$$.dir 2>/dev/null471 fi 472 if (echo >conf$$.file) 2>/dev/null; then 473 if ln -s conf$$.file conf$$ 2>/dev/null; then201 echo >conf$$.file 202 if ln -s conf$$.file conf$$ 2>/dev/null; then 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 207 as_ln_s='cp -p' 208 else 474 209 as_ln_s='ln -s' 475 # ... but there are two gotchas:476 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.477 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.478 # In both cases, we have to default to `cp -p'.479 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||480 as_ln_s='cp -p'481 elif ln conf$$.file conf$$ 2>/dev/null; then482 as_ln_s=ln483 else484 as_ln_s='cp -p'485 210 fi 211 elif ln conf$$.file conf$$ 2>/dev/null; then 212 as_ln_s=ln 486 213 else 487 214 as_ln_s='cp -p' 488 215 fi 489 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file 490 rmdir conf$$.dir 2>/dev/null 216 rm -f conf$$ conf$$.exe conf$$.file 491 217 492 218 if mkdir -p . 2>/dev/null; then 493 as_mkdir_p= 'mkdir -p "$as_dir"'219 as_mkdir_p=: 494 220 else 495 221 test -d ./-p && rmdir ./-p … … 497 223 fi 498 224 499 if test -x / >/dev/null 2>&1; then 500 as_test_x='test -x' 501 else 502 if ls -dL / >/dev/null 2>&1; then 503 as_ls_L_option=L 504 else 505 as_ls_L_option= 506 fi 507 as_test_x=' 508 eval sh -c '\'' 509 if test -d "$1"; then 510 test -d "$1/."; 511 else 512 case $1 in #( 513 -*)set "./$1";; 514 esac; 515 case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( 516 ???[sx]*):;;*)false;;esac;fi 517 '\'' sh 518 ' 519 fi 520 as_executable_p=$as_test_x 225 as_executable_p="test -f" 521 226 522 227 # Sed expression to map a string onto a valid CPP name. … … 527 232 528 233 529 test -n "$DJDIR" || exec 7<&0 </dev/null 530 exec 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 531 243 532 244 # Name of the host. 533 # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,245 # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, 534 246 # so uname gets run too. 535 247 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` 248 249 exec 6>&1 536 250 537 251 # … … 539 253 # 540 254 ac_default_prefix=/usr/local 541 ac_clean_files=542 255 ac_config_libobj_dir=. 543 LIBOBJS=544 256 cross_compiling=no 545 257 subdirs= 546 258 MFLAGS= 547 259 MAKEFLAGS= 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} 548 266 549 267 # Identity of this package. … … 553 271 PACKAGE_STRING= 554 272 PACKAGE_BUGREPORT= 555 PACKAGE_URL=556 273 557 274 # Factoring default headers for most tests. 558 275 ac_includes_default="\ 559 276 #include <stdio.h> 560 #if defHAVE_SYS_TYPES_H277 #if HAVE_SYS_TYPES_H 561 278 # include <sys/types.h> 562 279 #endif 563 #if defHAVE_SYS_STAT_H280 #if HAVE_SYS_STAT_H 564 281 # include <sys/stat.h> 565 282 #endif 566 #if defSTDC_HEADERS283 #if STDC_HEADERS 567 284 # include <stdlib.h> 568 285 # include <stddef.h> 569 286 #else 570 # if defHAVE_STDLIB_H287 # if HAVE_STDLIB_H 571 288 # include <stdlib.h> 572 289 # endif 573 290 #endif 574 #if defHAVE_STRING_H575 # if ! defined STDC_HEADERS && definedHAVE_MEMORY_H291 #if HAVE_STRING_H 292 # if !STDC_HEADERS && HAVE_MEMORY_H 576 293 # include <memory.h> 577 294 # endif 578 295 # include <string.h> 579 296 #endif 580 #if defHAVE_STRINGS_H297 #if HAVE_STRINGS_H 581 298 # include <strings.h> 582 299 #endif 583 #if defHAVE_INTTYPES_H300 #if HAVE_INTTYPES_H 584 301 # include <inttypes.h> 302 #else 303 # if HAVE_STDINT_H 304 # include <stdint.h> 305 # endif 585 306 #endif 586 #ifdef HAVE_STDINT_H 587 # include <stdint.h> 588 #endif 589 #ifdef HAVE_UNISTD_H 307 #if HAVE_UNISTD_H 590 308 # include <unistd.h> 591 309 #endif" 592 310 593 enable_option_checking=no 594 ac_subst_vars='LTLIBOBJS 595 subdirs 596 MODULEDIRS 597 gsdlos 598 STATIC 599 LIBOBJS 600 ALLOCA 601 ANSI2KNR 602 U 603 EGREP 604 GREP 605 CPP 606 MICO_VER 607 COMPAT32BITFLAGS 608 RANLIB 609 SET_MAKE 610 LN_S 611 INSTALL_DATA 612 INSTALL_SCRIPT 613 INSTALL_PROGRAM 614 target_os 615 target_vendor 616 target_cpu 617 target 618 host_os 619 host_vendor 620 host_cpu 621 host 622 build_os 623 build_vendor 624 build_cpu 625 build 626 YFLAGS 627 YACC 628 AWK 629 uudecode 630 JAVA 631 JAVACFLAGS 632 JAVAC 633 ac_ct_CXX 634 CXXFLAGS 635 CXX 636 OBJEXT 637 EXEEXT 638 ac_ct_CC 639 CPPFLAGS 640 CC 641 CFLAGS 642 LDFLAGS 643 USE_SQLITE 644 ENABLE_ACCENTFOLD 645 USE_GDBM 646 USE_JDBM 647 ENABLE_JAVA 648 USE_YAZ 649 USE_Z3950 650 MICO_DIR 651 USE_CORBA 652 USE_LANGACTION 653 USE_FASTCGI 654 VERSION 655 PACKAGE 656 target_alias 657 host_alias 658 build_alias 659 LIBS 660 ECHO_T 661 ECHO_N 662 ECHO_C 663 DEFS 664 mandir 665 localedir 666 libdir 667 psdir 668 pdfdir 669 dvidir 670 htmldir 671 infodir 672 docdir 673 oldincludedir 674 includedir 675 localstatedir 676 sharedstatedir 677 sysconfdir 678 datadir 679 datarootdir 680 libexecdir 681 sbindir 682 bindir 683 program_transform_name 684 prefix 685 exec_prefix 686 PACKAGE_URL 687 PACKAGE_BUGREPORT 688 PACKAGE_STRING 689 PACKAGE_VERSION 690 PACKAGE_TARNAME 691 PACKAGE_NAME 692 PATH_SEPARATOR 693 SHELL' 311 ac_subdirs_all="$ac_subdirs_all packages" 312 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 PACKAGE VERSION USE_FASTCGI USE_LANGACTION USE_CORBA MICO_DIR USE_Z3950 USE_YAZ ENABLE_JAVA USE_WVWARE USE_JDBM USE_GDBM ENABLE_ACCENTFOLD USE_SQLITE LDFLAGS CFLAGS CC CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX JAVAC JAVACFLAGS JAVA uudecode AWK YACC build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LN_S SET_MAKE RANLIB ac_ct_RANLIB COMPAT32BITFLAGS MICO_VER CPP EGREP U ANSI2KNR ALLOCA LIBOBJS STATIC gsdlos MODULEDIRS subdirs LTLIBOBJS' 694 313 ac_subst_files='' 695 ac_user_opts='696 enable_option_checking697 enable_corba698 with_micodir699 enable_z3950700 enable_yaz701 enable_java702 enable_jdbm703 enable_gdbm704 enable_accentfold705 enable_sqlite706 with_dmalloc707 with_regex708 '709 ac_precious_vars='build_alias710 host_alias711 target_alias712 CC713 CFLAGS714 LDFLAGS715 LIBS716 CPPFLAGS717 CXX718 CXXFLAGS719 CCC720 YACC721 YFLAGS722 CPP'723 ac_subdirs_all='packages'724 314 725 315 # Initialize some variables set by options. 726 316 ac_init_help= 727 317 ac_init_version=false 728 ac_unrecognized_opts=729 ac_unrecognized_sep=730 318 # The variables have the same names as the options, with 731 319 # dashes changed to underlines. … … 750 338 # by default will actually change. 751 339 # Use braces instead of parens because sh, perl, etc. also accept them. 752 # (The list follows the same order as the GNU Coding Standards.)753 340 bindir='${exec_prefix}/bin' 754 341 sbindir='${exec_prefix}/sbin' 755 342 libexecdir='${exec_prefix}/libexec' 756 datarootdir='${prefix}/share' 757 datadir='${datarootdir}' 343 datadir='${prefix}/share' 758 344 sysconfdir='${prefix}/etc' 759 345 sharedstatedir='${prefix}/com' 760 346 localstatedir='${prefix}/var' 347 libdir='${exec_prefix}/lib' 761 348 includedir='${prefix}/include' 762 349 oldincludedir='/usr/include' 763 docdir='${datarootdir}/doc/${PACKAGE}' 764 infodir='${datarootdir}/info' 765 htmldir='${docdir}' 766 dvidir='${docdir}' 767 pdfdir='${docdir}' 768 psdir='${docdir}' 769 libdir='${exec_prefix}/lib' 770 localedir='${datarootdir}/locale' 771 mandir='${datarootdir}/man' 350 infodir='${prefix}/info' 351 mandir='${prefix}/man' 772 352 773 353 ac_prev= 774 ac_dashdash=775 354 for ac_option 776 355 do 777 356 # If the previous option needs an argument, assign it. 778 357 if test -n "$ac_prev"; then 779 eval $ac_prev=\$ac_option358 eval "$ac_prev=\$ac_option" 780 359 ac_prev= 781 360 continue 782 361 fi 783 362 363 ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` 364 365 # Accept the important Cygnus configure options, so we can diagnose typos. 366 784 367 case $ac_option in 785 *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;786 *=) ac_optarg= ;;787 *) ac_optarg=yes ;;788 esac789 790 # Accept the important Cygnus configure options, so we can diagnose typos.791 792 case $ac_dashdash$ac_option in793 --)794 ac_dashdash=yes ;;795 368 796 369 -bindir | --bindir | --bindi | --bind | --bin | --bi) … … 814 387 cache_file=config.cache ;; 815 388 816 -datadir | --datadir | --datadi | --datad )389 -datadir | --datadir | --datadi | --datad | --data | --dat | --da) 817 390 ac_prev=datadir ;; 818 -datadir=* | --datadir=* | --datadi=* | --datad=*) 391 -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ 392 | --da=*) 819 393 datadir=$ac_optarg ;; 820 394 821 -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \822 | --dataroo | --dataro | --datar)823 ac_prev=datarootdir ;;824 -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \825 | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)826 datarootdir=$ac_optarg ;;827 828 395 -disable-* | --disable-*) 829 ac_ useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`396 ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 830 397 # Reject names that are not valid shell variable names. 831 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 832 as_fn_error $? "invalid feature name: $ac_useropt" 833 ac_useropt_orig=$ac_useropt 834 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 835 case $ac_user_opts in 836 *" 837 "enable_$ac_useropt" 838 "*) ;; 839 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" 840 ac_unrecognized_sep=', ';; 398 expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && 399 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 400 { (exit 1); exit 1; }; } 401 ac_feature=`echo $ac_feature | sed 's/-/_/g'` 402 eval "enable_$ac_feature=no" ;; 403 404 -enable-* | --enable-*) 405 ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 406 # Reject names that are not valid shell variable names. 407 expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && 408 { echo "$as_me: error: invalid feature name: $ac_feature" >&2 409 { (exit 1); exit 1; }; } 410 ac_feature=`echo $ac_feature | sed 's/-/_/g'` 411 case $ac_option in 412 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; 413 *) ac_optarg=yes ;; 841 414 esac 842 eval enable_$ac_useropt=no ;; 843 844 -docdir | --docdir | --docdi | --doc | --do) 845 ac_prev=docdir ;; 846 -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) 847 docdir=$ac_optarg ;; 848 849 -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) 850 ac_prev=dvidir ;; 851 -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) 852 dvidir=$ac_optarg ;; 853 854 -enable-* | --enable-*) 855 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 856 # Reject names that are not valid shell variable names. 857 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 858 as_fn_error $? "invalid feature name: $ac_useropt" 859 ac_useropt_orig=$ac_useropt 860 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 861 case $ac_user_opts in 862 *" 863 "enable_$ac_useropt" 864 "*) ;; 865 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" 866 ac_unrecognized_sep=', ';; 867 esac 868 eval enable_$ac_useropt=\$ac_optarg ;; 415 eval "enable_$ac_feature='$ac_optarg'" ;; 869 416 870 417 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ … … 893 440 host_alias=$ac_optarg ;; 894 441 895 -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)896 ac_prev=htmldir ;;897 -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \898 | --ht=*)899 htmldir=$ac_optarg ;;900 901 442 -includedir | --includedir | --includedi | --included | --include \ 902 443 | --includ | --inclu | --incl | --inc) … … 923 464 libexecdir=$ac_optarg ;; 924 465 925 -localedir | --localedir | --localedi | --localed | --locale)926 ac_prev=localedir ;;927 -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)928 localedir=$ac_optarg ;;929 930 466 -localstatedir | --localstatedir | --localstatedi | --localstated \ 931 | --localstate | --localstat | --localsta | --localst | --locals) 467 | --localstate | --localstat | --localsta | --localst \ 468 | --locals | --local | --loca | --loc | --lo) 932 469 ac_prev=localstatedir ;; 933 470 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ 934 | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) 471 | --localstate=* | --localstat=* | --localsta=* | --localst=* \ 472 | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) 935 473 localstatedir=$ac_optarg ;; 936 474 … … 997 535 program_transform_name=$ac_optarg ;; 998 536 999 -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)1000 ac_prev=pdfdir ;;1001 -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)1002 pdfdir=$ac_optarg ;;1003 1004 -psdir | --psdir | --psdi | --psd | --ps)1005 ac_prev=psdir ;;1006 -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)1007 psdir=$ac_optarg ;;1008 1009 537 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 1010 538 | -silent | --silent | --silen | --sile | --sil) … … 1057 585 1058 586 -with-* | --with-*) 1059 ac_ useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`587 ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 1060 588 # Reject names that are not valid shell variable names. 1061 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1062 as_fn_error $? "invalid package name: $ac_useropt" 1063 ac_useropt_orig=$ac_useropt 1064 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1065 case $ac_user_opts in 1066 *" 1067 "with_$ac_useropt" 1068 "*) ;; 1069 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" 1070 ac_unrecognized_sep=', ';; 589 expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && 590 { echo "$as_me: error: invalid package name: $ac_package" >&2 591 { (exit 1); exit 1; }; } 592 ac_package=`echo $ac_package| sed 's/-/_/g'` 593 case $ac_option in 594 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; 595 *) ac_optarg=yes ;; 1071 596 esac 1072 eval with_$ac_useropt=\$ac_optarg;;597 eval "with_$ac_package='$ac_optarg'" ;; 1073 598 1074 599 -without-* | --without-*) 1075 ac_ useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`600 ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` 1076 601 # Reject names that are not valid shell variable names. 1077 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1078 as_fn_error $? "invalid package name: $ac_useropt" 1079 ac_useropt_orig=$ac_useropt 1080 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1081 case $ac_user_opts in 1082 *" 1083 "with_$ac_useropt" 1084 "*) ;; 1085 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" 1086 ac_unrecognized_sep=', ';; 1087 esac 1088 eval with_$ac_useropt=no ;; 602 expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && 603 { echo "$as_me: error: invalid package name: $ac_package" >&2 604 { (exit 1); exit 1; }; } 605 ac_package=`echo $ac_package | sed 's/-/_/g'` 606 eval "with_$ac_package=no" ;; 1089 607 1090 608 --x) … … 1106 624 x_libraries=$ac_optarg ;; 1107 625 1108 -*) as_fn_error $? "unrecognized option: \`$ac_option' 1109 Try \`$0 --help' for more information" 626 -*) { echo "$as_me: error: unrecognized option: $ac_option 627 Try \`$0 --help' for more information." >&2 628 { (exit 1); exit 1; }; } 1110 629 ;; 1111 630 … … 1113 632 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` 1114 633 # Reject names that are not valid shell variable names. 1115 case $ac_envvar in #(1116 '' | [0-9]* | *[!_$as_cr_alnum]* )1117 as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;1118 esac1119 eval $ac_envvar=\$ac_optarg634 expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && 635 { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 636 { (exit 1); exit 1; }; } 637 ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` 638 eval "$ac_envvar='$ac_optarg'" 1120 639 export $ac_envvar ;; 1121 640 1122 641 *) 1123 642 # FIXME: should be removed in autoconf 3.0. 1124 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2643 echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1125 644 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 1126 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2645 echo "$as_me: WARNING: invalid host type: $ac_option" >&2 1127 646 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} 1128 647 ;; … … 1133 652 if test -n "$ac_prev"; then 1134 653 ac_option=--`echo $ac_prev | sed 's/_/-/g'` 1135 as_fn_error $? "missing argument to $ac_option" 1136 fi 1137 1138 if test -n "$ac_unrecognized_opts"; then 1139 case $enable_option_checking in 1140 no) ;; 1141 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; 1142 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; 654 { echo "$as_me: error: missing argument to $ac_option" >&2 655 { (exit 1); exit 1; }; } 656 fi 657 658 # Be sure to have absolute paths. 659 for ac_var in exec_prefix prefix 660 do 661 eval ac_val=$`echo $ac_var` 662 case $ac_val in 663 [\\/$]* | ?:[\\/]* | NONE | '' ) ;; 664 *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 665 { (exit 1); exit 1; }; };; 1143 666 esac 1144 fi 1145 1146 # Check all directory arguments for consistency. 1147 for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ 1148 datadir sysconfdir sharedstatedir localstatedir includedir \ 1149 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ 1150 libdir localedir mandir 667 done 668 669 # Be sure to have absolute paths. 670 for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ 671 localstatedir libdir includedir oldincludedir infodir mandir 1151 672 do 1152 eval ac_val=\$$ac_var 1153 # Remove trailing slashes. 673 eval ac_val=$`echo $ac_var` 1154 674 case $ac_val in 1155 */ )1156 ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`1157 eval $ac_var=\$ac_val;;675 [\\/$]* | ?:[\\/]* ) ;; 676 *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 677 { (exit 1); exit 1; }; };; 1158 678 esac 1159 # Be sure to have absolute directory names.1160 case $ac_val in1161 [\\/$]* | ?:[\\/]* ) continue;;1162 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;1163 esac1164 as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"1165 679 done 1166 680 … … 1176 690 if test "x$build_alias" = x; then 1177 691 cross_compiling=maybe 1178 $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.1179 If a cross compiler is detected then cross compile mode will be used " >&2692 echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. 693 If a cross compiler is detected then cross compile mode will be used." >&2 1180 694 elif test "x$build_alias" != "x$host_alias"; then 1181 695 cross_compiling=yes … … 1189 703 1190 704 1191 ac_pwd=`pwd` && test -n "$ac_pwd" &&1192 ac_ls_di=`ls -di .` &&1193 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||1194 as_fn_error $? "working directory cannot be determined"1195 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||1196 as_fn_error $? "pwd does not report name of working directory"1197 1198 1199 705 # Find the source files, if location was not specified. 1200 706 if test -z "$srcdir"; then 1201 707 ac_srcdir_defaulted=yes 1202 # Try the directory containing this script, then the parent directory. 1203 ac_confdir=`$as_dirname -- "$as_myself" || 1204 $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 1205 X"$as_myself" : 'X\(//\)[^/]' \| \ 1206 X"$as_myself" : 'X\(//\)$' \| \ 1207 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || 1208 $as_echo X"$as_myself" | 1209 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 1210 s//\1/ 1211 q 1212 } 1213 /^X\(\/\/\)[^/].*/{ 1214 s//\1/ 1215 q 1216 } 1217 /^X\(\/\/\)$/{ 1218 s//\1/ 1219 q 1220 } 1221 /^X\(\/\).*/{ 1222 s//\1/ 1223 q 1224 } 1225 s/.*/./; q'` 708 # Try the directory containing this script, then its parent. 709 ac_confdir=`(dirname "$0") 2>/dev/null || 710 $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 711 X"$0" : 'X\(//\)[^/]' \| \ 712 X"$0" : 'X\(//\)$' \| \ 713 X"$0" : 'X\(/\)' \| \ 714 . : '\(.\)' 2>/dev/null || 715 echo X"$0" | 716 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } 717 /^X\(\/\/\)[^/].*/{ s//\1/; q; } 718 /^X\(\/\/\)$/{ s//\1/; q; } 719 /^X\(\/\).*/{ s//\1/; q; } 720 s/.*/./; q'` 1226 721 srcdir=$ac_confdir 1227 if test ! -r "$srcdir/$ac_unique_file"; then722 if test ! -r $srcdir/$ac_unique_file; then 1228 723 srcdir=.. 1229 724 fi … … 1231 726 ac_srcdir_defaulted=no 1232 727 fi 1233 if test ! -r "$srcdir/$ac_unique_file"; then 1234 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." 1235 as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" 1236 fi 1237 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" 1238 ac_abs_confdir=`( 1239 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" 1240 pwd)` 1241 # When building in place, set srcdir=. 1242 if test "$ac_abs_confdir" = "$ac_pwd"; then 1243 srcdir=. 1244 fi 1245 # Remove unnecessary trailing slashes from srcdir. 1246 # Double slashes in file names in object file debugging info 1247 # mess up M-x gdb in Emacs. 1248 case $srcdir in 1249 */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; 1250 esac 1251 for ac_var in $ac_precious_vars; do 1252 eval ac_env_${ac_var}_set=\${${ac_var}+set} 1253 eval ac_env_${ac_var}_value=\$${ac_var} 1254 eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} 1255 eval ac_cv_env_${ac_var}_value=\$${ac_var} 1256 done 728 if test ! -r $srcdir/$ac_unique_file; then 729 if test "$ac_srcdir_defaulted" = yes; then 730 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 731 { (exit 1); exit 1; }; } 732 else 733 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 734 { (exit 1); exit 1; }; } 735 fi 736 fi 737 (cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || 738 { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 739 { (exit 1); exit 1; }; } 740 srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` 741 ac_env_build_alias_set=${build_alias+set} 742 ac_env_build_alias_value=$build_alias 743 ac_cv_env_build_alias_set=${build_alias+set} 744 ac_cv_env_build_alias_value=$build_alias 745 ac_env_host_alias_set=${host_alias+set} 746 ac_env_host_alias_value=$host_alias 747 ac_cv_env_host_alias_set=${host_alias+set} 748 ac_cv_env_host_alias_value=$host_alias 749 ac_env_target_alias_set=${target_alias+set} 750 ac_env_target_alias_value=$target_alias 751 ac_cv_env_target_alias_set=${target_alias+set} 752 ac_cv_env_target_alias_value=$target_alias 753 ac_env_CC_set=${CC+set} 754 ac_env_CC_value=$CC 755 ac_cv_env_CC_set=${CC+set} 756 ac_cv_env_CC_value=$CC 757 ac_env_CFLAGS_set=${CFLAGS+set} 758 ac_env_CFLAGS_value=$CFLAGS 759 ac_cv_env_CFLAGS_set=${CFLAGS+set} 760 ac_cv_env_CFLAGS_value=$CFLAGS 761 ac_env_LDFLAGS_set=${LDFLAGS+set} 762 ac_env_LDFLAGS_value=$LDFLAGS 763 ac_cv_env_LDFLAGS_set=${LDFLAGS+set} 764 ac_cv_env_LDFLAGS_value=$LDFLAGS 765 ac_env_CPPFLAGS_set=${CPPFLAGS+set} 766 ac_env_CPPFLAGS_value=$CPPFLAGS 767 ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} 768 ac_cv_env_CPPFLAGS_value=$CPPFLAGS 769 ac_env_CXX_set=${CXX+set} 770 ac_env_CXX_value=$CXX 771 ac_cv_env_CXX_set=${CXX+set} 772 ac_cv_env_CXX_value=$CXX 773 ac_env_CXXFLAGS_set=${CXXFLAGS+set} 774 ac_env_CXXFLAGS_value=$CXXFLAGS 775 ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set} 776 ac_cv_env_CXXFLAGS_value=$CXXFLAGS 777 ac_env_CPP_set=${CPP+set} 778 ac_env_CPP_value=$CPP 779 ac_cv_env_CPP_set=${CPP+set} 780 ac_cv_env_CPP_value=$CPP 1257 781 1258 782 # … … 1277 801 --help=recursive display the short help of all the included packages 1278 802 -V, --version display version information and exit 1279 -q, --quiet, --silent do not print \`checking 803 -q, --quiet, --silent do not print \`checking...' messages 1280 804 --cache-file=FILE cache test results in FILE [disabled] 1281 805 -C, --config-cache alias for \`--cache-file=config.cache' … … 1283 807 --srcdir=DIR find the sources in DIR [configure dir or \`..'] 1284 808 809 _ACEOF 810 811 cat <<_ACEOF 1285 812 Installation directories: 1286 813 --prefix=PREFIX install architecture-independent files in PREFIX 1287 814 [$ac_default_prefix] 1288 815 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX 1289 816 [PREFIX] 1290 817 1291 818 By default, \`make install' will install all the files in … … 1297 824 1298 825 Fine tuning of the installation directories: 1299 --bindir=DIR user executables [EPREFIX/bin] 1300 --sbindir=DIR system admin executables [EPREFIX/sbin] 1301 --libexecdir=DIR program executables [EPREFIX/libexec] 1302 --sysconfdir=DIR read-only single-machine data [PREFIX/etc] 1303 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] 1304 --localstatedir=DIR modifiable single-machine data [PREFIX/var] 1305 --libdir=DIR object code libraries [EPREFIX/lib] 1306 --includedir=DIR C header files [PREFIX/include] 1307 --oldincludedir=DIR C header files for non-gcc [/usr/include] 1308 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] 1309 --datadir=DIR read-only architecture-independent data [DATAROOTDIR] 1310 --infodir=DIR info documentation [DATAROOTDIR/info] 1311 --localedir=DIR locale-dependent data [DATAROOTDIR/locale] 1312 --mandir=DIR man documentation [DATAROOTDIR/man] 1313 --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] 1314 --htmldir=DIR html documentation [DOCDIR] 1315 --dvidir=DIR dvi documentation [DOCDIR] 1316 --pdfdir=DIR pdf documentation [DOCDIR] 1317 --psdir=DIR ps documentation [DOCDIR] 826 --bindir=DIR user executables [EPREFIX/bin] 827 --sbindir=DIR system admin executables [EPREFIX/sbin] 828 --libexecdir=DIR program executables [EPREFIX/libexec] 829 --datadir=DIR read-only architecture-independent data [PREFIX/share] 830 --sysconfdir=DIR read-only single-machine data [PREFIX/etc] 831 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] 832 --localstatedir=DIR modifiable single-machine data [PREFIX/var] 833 --libdir=DIR object code libraries [EPREFIX/lib] 834 --includedir=DIR C header files [PREFIX/include] 835 --oldincludedir=DIR C header files for non-gcc [/usr/include] 836 --infodir=DIR info documentation [PREFIX/info] 837 --mandir=DIR man documentation [PREFIX/man] 1318 838 _ACEOF 1319 839 … … 1332 852 1333 853 Optional Features: 1334 --disable-option-checking ignore unrecognized --enable/--with options1335 854 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1336 855 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] … … 1339 858 --disable-yaz Disable YAZ compilation 1340 859 --disable-java Disable Java compilation 860 --disable-wvware Disable wvWare compilation 1341 861 --disable-jdbm Disable JDBM compilation 1342 862 --disable-gdbm Disable GDBM compilation … … 1357 877 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a 1358 878 nonstandard directory <lib dir> 1359 LIBS libraries to pass to the linker, e.g. -l<library> 1360 CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if 1361 you have headers in a nonstandard directory <include dir> 879 CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have 880 headers in a nonstandard directory <include dir> 1362 881 CXX C++ compiler command 1363 882 CXXFLAGS C++ compiler flags 1364 YACC The `Yet Another C Compiler' implementation to use. Defaults to1365 the first program found out of: `bison -y', `byacc', `yacc'.1366 YFLAGS The list of arguments that will be passed by default to $YACC.1367 This script will default YFLAGS to the empty string to avoid a1368 default value of `-d' given by some make applications.1369 883 CPP C preprocessor 1370 884 … … 1372 886 it to find libraries and programs with nonstandard names/locations. 1373 887 1374 Report bugs to the package provider. 1375 _ACEOF 1376 ac_status=$? 888 _ACEOF 1377 889 fi 1378 890 1379 891 if test "$ac_init_help" = "recursive"; then 1380 892 # If there are subdirs, report their specific --help. 893 ac_popdir=`pwd` 1381 894 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue 1382 test -d "$ac_dir" || 1383 { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || 1384 continue 895 test -d $ac_dir || continue 1385 896 ac_builddir=. 1386 897 1387 case "$ac_dir" in 1388 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 898 if test "$ac_dir" != .; then 899 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` 900 # A "../" for each directory in $ac_dir_suffix. 901 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` 902 else 903 ac_dir_suffix= ac_top_builddir= 904 fi 905 906 case $srcdir in 907 .) # No --srcdir option. We are building in place. 908 ac_srcdir=. 909 if test -z "$ac_top_builddir"; then 910 ac_top_srcdir=. 911 else 912 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` 913 fi ;; 914 [\\/]* | ?:[\\/]* ) # Absolute path. 915 ac_srcdir=$srcdir$ac_dir_suffix; 916 ac_top_srcdir=$srcdir ;; 917 *) # Relative path. 918 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix 919 ac_top_srcdir=$ac_top_builddir$srcdir ;; 920 esac 921 922 # Do not use `cd foo && pwd` to compute absolute paths, because 923 # the directories may not exist. 924 case `pwd` in 925 .) ac_abs_builddir="$ac_dir";; 1389 926 *) 1390 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` 1391 # A ".." for each directory in $ac_dir_suffix. 1392 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` 1393 case $ac_top_builddir_sub in 1394 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; 1395 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; 1396 esac ;; 927 case "$ac_dir" in 928 .) ac_abs_builddir=`pwd`;; 929 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; 930 *) ac_abs_builddir=`pwd`/"$ac_dir";; 931 esac;; 1397 932 esac 1398 ac_abs_top_builddir=$ac_pwd 1399 ac_abs_builddir=$ac_pwd$ac_dir_suffix 1400 # for backward compatibility: 1401 ac_top_builddir=$ac_top_build_prefix 1402 1403 case $srcdir in 1404 .) # We are building in place. 1405 ac_srcdir=. 1406 ac_top_srcdir=$ac_top_builddir_sub 1407 ac_abs_top_srcdir=$ac_pwd ;; 1408 [\\/]* | ?:[\\/]* ) # Absolute name. 1409 ac_srcdir=$srcdir$ac_dir_suffix; 1410 ac_top_srcdir=$srcdir 1411 ac_abs_top_srcdir=$srcdir ;; 1412 *) # Relative name. 1413 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix 1414 ac_top_srcdir=$ac_top_build_prefix$srcdir 1415 ac_abs_top_srcdir=$ac_pwd/$srcdir ;; 933 case $ac_abs_builddir in 934 .) ac_abs_top_builddir=${ac_top_builddir}.;; 935 *) 936 case ${ac_top_builddir}. in 937 .) ac_abs_top_builddir=$ac_abs_builddir;; 938 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; 939 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; 940 esac;; 1416 941 esac 1417 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix 1418 1419 cd "$ac_dir" || { ac_status=$?; continue; } 1420 # Check for guested configure. 1421 if test -f "$ac_srcdir/configure.gnu"; then 1422 echo && 1423 $SHELL "$ac_srcdir/configure.gnu" --help=recursive 1424 elif test -f "$ac_srcdir/configure"; then 1425 echo && 1426 $SHELL "$ac_srcdir/configure" --help=recursive 942 case $ac_abs_builddir in 943 .) ac_abs_srcdir=$ac_srcdir;; 944 *) 945 case $ac_srcdir in 946 .) ac_abs_srcdir=$ac_abs_builddir;; 947 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; 948 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; 949 esac;; 950 esac 951 case $ac_abs_builddir in 952 .) ac_abs_top_srcdir=$ac_top_srcdir;; 953 *) 954 case $ac_top_srcdir in 955 .) ac_abs_top_srcdir=$ac_abs_builddir;; 956 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; 957 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; 958 esac;; 959 esac 960 961 cd $ac_dir 962 # Check for guested configure; otherwise get Cygnus style configure. 963 if test -f $ac_srcdir/configure.gnu; then 964 echo 965 $SHELL $ac_srcdir/configure.gnu --help=recursive 966 elif test -f $ac_srcdir/configure; then 967 echo 968 $SHELL $ac_srcdir/configure --help=recursive 969 elif test -f $ac_srcdir/configure.ac || 970 test -f $ac_srcdir/configure.in; then 971 echo 972 $ac_configure --help 1427 973 else 1428 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&21429 fi || ac_status=$?1430 cd "$ac_pwd" || { ac_status=$?; break; }974 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 975 fi 976 cd $ac_popdir 1431 977 done 1432 978 fi 1433 979 1434 test -n "$ac_init_help" && exit $ac_status980 test -n "$ac_init_help" && exit 0 1435 981 if $ac_init_version; then 1436 982 cat <<\_ACEOF 1437 configure 1438 generated by GNU Autoconf 2.67 1439 1440 Copyright (C) 2010 Free Software Foundation, Inc. 983 984 Copyright (C) 2003 Free Software Foundation, Inc. 1441 985 This configure script is free software; the Free Software Foundation 1442 986 gives unlimited permission to copy, distribute and modify it. 1443 987 _ACEOF 1444 exit 1445 fi 1446 1447 ## ------------------------ ## 1448 ## Autoconf initialization. ## 1449 ## ------------------------ ## 1450 1451 # ac_fn_c_try_compile LINENO 1452 # -------------------------- 1453 # Try to compile conftest.$ac_ext, and return whether this succeeded. 1454 ac_fn_c_try_compile () 1455 { 1456 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1457 rm -f conftest.$ac_objext 1458 if { { ac_try="$ac_compile" 1459 case "(($ac_try" in 1460 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 1461 *) ac_try_echo=$ac_try;; 1462 esac 1463 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 1464 $as_echo "$ac_try_echo"; } >&5 1465 (eval "$ac_compile") 2>conftest.err 1466 ac_status=$? 1467 if test -s conftest.err; then 1468 grep -v '^ *+' conftest.err >conftest.er1 1469 cat conftest.er1 >&5 1470 mv -f conftest.er1 conftest.err 1471 fi 1472 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1473 test $ac_status = 0; } && { 1474 test -z "$ac_c_werror_flag" || 1475 test ! -s conftest.err 1476 } && test -s conftest.$ac_objext; then : 1477 ac_retval=0 1478 else 1479 $as_echo "$as_me: failed program was:" >&5 1480 sed 's/^/| /' conftest.$ac_ext >&5 1481 1482 ac_retval=1 1483 fi 1484 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1485 as_fn_set_status $ac_retval 1486 1487 } # ac_fn_c_try_compile 1488 1489 # ac_fn_cxx_try_compile LINENO 1490 # ---------------------------- 1491 # Try to compile conftest.$ac_ext, and return whether this succeeded. 1492 ac_fn_cxx_try_compile () 1493 { 1494 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1495 rm -f conftest.$ac_objext 1496 if { { ac_try="$ac_compile" 1497 case "(($ac_try" in 1498 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 1499 *) ac_try_echo=$ac_try;; 1500 esac 1501 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 1502 $as_echo "$ac_try_echo"; } >&5 1503 (eval "$ac_compile") 2>conftest.err 1504 ac_status=$? 1505 if test -s conftest.err; then 1506 grep -v '^ *+' conftest.err >conftest.er1 1507 cat conftest.er1 >&5 1508 mv -f conftest.er1 conftest.err 1509 fi 1510 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1511 test $ac_status = 0; } && { 1512 test -z "$ac_cxx_werror_flag" || 1513 test ! -s conftest.err 1514 } && test -s conftest.$ac_objext; then : 1515 ac_retval=0 1516 else 1517 $as_echo "$as_me: failed program was:" >&5 1518 sed 's/^/| /' conftest.$ac_ext >&5 1519 1520 ac_retval=1 1521 fi 1522 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1523 as_fn_set_status $ac_retval 1524 1525 } # ac_fn_cxx_try_compile 1526 1527 # ac_fn_c_try_cpp LINENO 1528 # ---------------------- 1529 # Try to preprocess conftest.$ac_ext, and return whether this succeeded. 1530 ac_fn_c_try_cpp () 1531 { 1532 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1533 if { { ac_try="$ac_cpp conftest.$ac_ext" 1534 case "(($ac_try" in 1535 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 1536 *) ac_try_echo=$ac_try;; 1537 esac 1538 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 1539 $as_echo "$ac_try_echo"; } >&5 1540 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err 1541 ac_status=$? 1542 if test -s conftest.err; then 1543 grep -v '^ *+' conftest.err >conftest.er1 1544 cat conftest.er1 >&5 1545 mv -f conftest.er1 conftest.err 1546 fi 1547 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1548 test $ac_status = 0; } > conftest.i && { 1549 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 1550 test ! -s conftest.err 1551 }; then : 1552 ac_retval=0 1553 else 1554 $as_echo "$as_me: failed program was:" >&5 1555 sed 's/^/| /' conftest.$ac_ext >&5 1556 1557 ac_retval=1 1558 fi 1559 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1560 as_fn_set_status $ac_retval 1561 1562 } # ac_fn_c_try_cpp 1563 1564 # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES 1565 # ------------------------------------------------------- 1566 # Tests whether HEADER exists, giving a warning if it cannot be compiled using 1567 # the include files in INCLUDES and setting the cache variable VAR 1568 # accordingly. 1569 ac_fn_c_check_header_mongrel () 1570 { 1571 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1572 if eval "test \"\${$3+set}\"" = set; then : 1573 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1574 $as_echo_n "checking for $2... " >&6; } 1575 if eval "test \"\${$3+set}\"" = set; then : 1576 $as_echo_n "(cached) " >&6 1577 fi 1578 eval ac_res=\$$3 1579 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1580 $as_echo "$ac_res" >&6; } 1581 else 1582 # Is the header compilable? 1583 { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 1584 $as_echo_n "checking $2 usability... " >&6; } 1585 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 1586 /* end confdefs.h. */ 1587 $4 1588 #include <$2> 1589 _ACEOF 1590 if ac_fn_c_try_compile "$LINENO"; then : 1591 ac_header_compiler=yes 1592 else 1593 ac_header_compiler=no 1594 fi 1595 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 1596 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 1597 $as_echo "$ac_header_compiler" >&6; } 1598 1599 # Is the header present? 1600 { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 1601 $as_echo_n "checking $2 presence... " >&6; } 1602 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 1603 /* end confdefs.h. */ 1604 #include <$2> 1605 _ACEOF 1606 if ac_fn_c_try_cpp "$LINENO"; then : 1607 ac_header_preproc=yes 1608 else 1609 ac_header_preproc=no 1610 fi 1611 rm -f conftest.err conftest.i conftest.$ac_ext 1612 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 1613 $as_echo "$ac_header_preproc" >&6; } 1614 1615 # So? What about this header? 1616 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( 1617 yes:no: ) 1618 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 1619 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} 1620 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 1621 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} 1622 ;; 1623 no:yes:* ) 1624 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 1625 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} 1626 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 1627 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} 1628 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 1629 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} 1630 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 1631 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} 1632 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 1633 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} 1634 ;; 1635 esac 1636 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1637 $as_echo_n "checking for $2... " >&6; } 1638 if eval "test \"\${$3+set}\"" = set; then : 1639 $as_echo_n "(cached) " >&6 1640 else 1641 eval "$3=\$ac_header_compiler" 1642 fi 1643 eval ac_res=\$$3 1644 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1645 $as_echo "$ac_res" >&6; } 1646 fi 1647 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1648 1649 } # ac_fn_c_check_header_mongrel 1650 1651 # ac_fn_c_try_run LINENO 1652 # ---------------------- 1653 # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes 1654 # that executables *can* be run. 1655 ac_fn_c_try_run () 1656 { 1657 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1658 if { { ac_try="$ac_link" 1659 case "(($ac_try" in 1660 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 1661 *) ac_try_echo=$ac_try;; 1662 esac 1663 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 1664 $as_echo "$ac_try_echo"; } >&5 1665 (eval "$ac_link") 2>&5 1666 ac_status=$? 1667 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1668 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' 1669 { { case "(($ac_try" in 1670 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 1671 *) ac_try_echo=$ac_try;; 1672 esac 1673 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 1674 $as_echo "$ac_try_echo"; } >&5 1675 (eval "$ac_try") 2>&5 1676 ac_status=$? 1677 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1678 test $ac_status = 0; }; }; then : 1679 ac_retval=0 1680 else 1681 $as_echo "$as_me: program exited with status $ac_status" >&5 1682 $as_echo "$as_me: failed program was:" >&5 1683 sed 's/^/| /' conftest.$ac_ext >&5 1684 1685 ac_retval=$ac_status 1686 fi 1687 rm -rf conftest.dSYM conftest_ipa8_conftest.oo 1688 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1689 as_fn_set_status $ac_retval 1690 1691 } # ac_fn_c_try_run 1692 1693 # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES 1694 # ------------------------------------------------------- 1695 # Tests whether HEADER exists and can be compiled using the include files in 1696 # INCLUDES, setting the cache variable VAR accordingly. 1697 ac_fn_c_check_header_compile () 1698 { 1699 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1700 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1701 $as_echo_n "checking for $2... " >&6; } 1702 if eval "test \"\${$3+set}\"" = set; then : 1703 $as_echo_n "(cached) " >&6 1704 else 1705 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 1706 /* end confdefs.h. */ 1707 $4 1708 #include <$2> 1709 _ACEOF 1710 if ac_fn_c_try_compile "$LINENO"; then : 1711 eval "$3=yes" 1712 else 1713 eval "$3=no" 1714 fi 1715 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 1716 fi 1717 eval ac_res=\$$3 1718 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1719 $as_echo "$ac_res" >&6; } 1720 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1721 1722 } # ac_fn_c_check_header_compile 1723 1724 # ac_fn_c_try_link LINENO 1725 # ----------------------- 1726 # Try to link conftest.$ac_ext, and return whether this succeeded. 1727 ac_fn_c_try_link () 1728 { 1729 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1730 rm -f conftest.$ac_objext conftest$ac_exeext 1731 if { { ac_try="$ac_link" 1732 case "(($ac_try" in 1733 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 1734 *) ac_try_echo=$ac_try;; 1735 esac 1736 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 1737 $as_echo "$ac_try_echo"; } >&5 1738 (eval "$ac_link") 2>conftest.err 1739 ac_status=$? 1740 if test -s conftest.err; then 1741 grep -v '^ *+' conftest.err >conftest.er1 1742 cat conftest.er1 >&5 1743 mv -f conftest.er1 conftest.err 1744 fi 1745 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1746 test $ac_status = 0; } && { 1747 test -z "$ac_c_werror_flag" || 1748 test ! -s conftest.err 1749 } && test -s conftest$ac_exeext && { 1750 test "$cross_compiling" = yes || 1751 $as_test_x conftest$ac_exeext 1752 }; then : 1753 ac_retval=0 1754 else 1755 $as_echo "$as_me: failed program was:" >&5 1756 sed 's/^/| /' conftest.$ac_ext >&5 1757 1758 ac_retval=1 1759 fi 1760 # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information 1761 # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would 1762 # interfere with the next link command; also delete a directory that is 1763 # left behind by Apple's compiler. We do this before executing the actions. 1764 rm -rf conftest.dSYM conftest_ipa8_conftest.oo 1765 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1766 as_fn_set_status $ac_retval 1767 1768 } # ac_fn_c_try_link 1769 1770 # ac_fn_c_check_type LINENO TYPE VAR INCLUDES 1771 # ------------------------------------------- 1772 # Tests whether TYPE exists after having included INCLUDES, setting cache 1773 # variable VAR accordingly. 1774 ac_fn_c_check_type () 1775 { 1776 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1777 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1778 $as_echo_n "checking for $2... " >&6; } 1779 if eval "test \"\${$3+set}\"" = set; then : 1780 $as_echo_n "(cached) " >&6 1781 else 1782 eval "$3=no" 1783 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 1784 /* end confdefs.h. */ 1785 $4 1786 int 1787 main () 1788 { 1789 if (sizeof ($2)) 1790 return 0; 1791 ; 1792 return 0; 1793 } 1794 _ACEOF 1795 if ac_fn_c_try_compile "$LINENO"; then : 1796 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 1797 /* end confdefs.h. */ 1798 $4 1799 int 1800 main () 1801 { 1802 if (sizeof (($2))) 1803 return 0; 1804 ; 1805 return 0; 1806 } 1807 _ACEOF 1808 if ac_fn_c_try_compile "$LINENO"; then : 1809 1810 else 1811 eval "$3=yes" 1812 fi 1813 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 1814 fi 1815 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 1816 fi 1817 eval ac_res=\$$3 1818 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1819 $as_echo "$ac_res" >&6; } 1820 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1821 1822 } # ac_fn_c_check_type 1823 1824 # ac_fn_c_check_func LINENO FUNC VAR 1825 # ---------------------------------- 1826 # Tests whether FUNC exists, setting the cache variable VAR accordingly 1827 ac_fn_c_check_func () 1828 { 1829 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1830 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1831 $as_echo_n "checking for $2... " >&6; } 1832 if eval "test \"\${$3+set}\"" = set; then : 1833 $as_echo_n "(cached) " >&6 1834 else 1835 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 1836 /* end confdefs.h. */ 1837 /* Define $2 to an innocuous variant, in case <limits.h> declares $2. 1838 For example, HP-UX 11i <limits.h> declares gettimeofday. */ 1839 #define $2 innocuous_$2 1840 1841 /* System header to define __stub macros and hopefully few prototypes, 1842 which can conflict with char $2 (); below. 1843 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since 1844 <limits.h> exists even on freestanding compilers. */ 1845 1846 #ifdef __STDC__ 1847 # include <limits.h> 1848 #else 1849 # include <assert.h> 1850 #endif 1851 1852 #undef $2 1853 1854 /* Override any GCC internal prototype to avoid an error. 1855 Use char because int might match the return type of a GCC 1856 builtin and then its argument prototype would still apply. */ 1857 #ifdef __cplusplus 1858 extern "C" 1859 #endif 1860 char $2 (); 1861 /* The GNU C library defines this for functions which it implements 1862 to always fail with ENOSYS. Some functions are actually named 1863 something starting with __ and the normal name is an alias. */ 1864 #if defined __stub_$2 || defined __stub___$2 1865 choke me 1866 #endif 1867 1868 int 1869 main () 1870 { 1871 return $2 (); 1872 ; 1873 return 0; 1874 } 1875 _ACEOF 1876 if ac_fn_c_try_link "$LINENO"; then : 1877 eval "$3=yes" 1878 else 1879 eval "$3=no" 1880 fi 1881 rm -f core conftest.err conftest.$ac_objext \ 1882 conftest$ac_exeext conftest.$ac_ext 1883 fi 1884 eval ac_res=\$$3 1885 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1886 $as_echo "$ac_res" >&6; } 1887 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1888 1889 } # ac_fn_c_check_func 1890 1891 # ac_fn_cxx_try_run LINENO 1892 # ------------------------ 1893 # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes 1894 # that executables *can* be run. 1895 ac_fn_cxx_try_run () 1896 { 1897 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1898 if { { ac_try="$ac_link" 1899 case "(($ac_try" in 1900 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 1901 *) ac_try_echo=$ac_try;; 1902 esac 1903 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 1904 $as_echo "$ac_try_echo"; } >&5 1905 (eval "$ac_link") 2>&5 1906 ac_status=$? 1907 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1908 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' 1909 { { case "(($ac_try" in 1910 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 1911 *) ac_try_echo=$ac_try;; 1912 esac 1913 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 1914 $as_echo "$ac_try_echo"; } >&5 1915 (eval "$ac_try") 2>&5 1916 ac_status=$? 1917 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1918 test $ac_status = 0; }; }; then : 1919 ac_retval=0 1920 else 1921 $as_echo "$as_me: program exited with status $ac_status" >&5 1922 $as_echo "$as_me: failed program was:" >&5 1923 sed 's/^/| /' conftest.$ac_ext >&5 1924 1925 ac_retval=$ac_status 1926 fi 1927 rm -rf conftest.dSYM conftest_ipa8_conftest.oo 1928 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1929 as_fn_set_status $ac_retval 1930 1931 } # ac_fn_cxx_try_run 1932 cat >config.log <<_ACEOF 988 exit 0 989 fi 990 exec 5>config.log 991 cat >&5 <<_ACEOF 1933 992 This file contains any messages produced by compilers while 1934 993 running configure, to aid debugging if configure makes a mistake. 1935 994 1936 995 It was created by $as_me, which was 1937 generated by GNU Autoconf 2. 67. Invocation command line was996 generated by GNU Autoconf 2.59. Invocation command line was 1938 997 1939 998 $ $0 $@ 1940 999 1941 1000 _ACEOF 1942 exec 5>>config.log1943 1001 { 1944 1002 cat <<_ASUNAME … … 1959 1017 /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` 1960 1018 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` 1961 /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null|| echo unknown`1019 hostinfo = `(hostinfo) 2>/dev/null || echo unknown` 1962 1020 /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` 1963 1021 /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` … … 1971 1029 IFS=$as_save_IFS 1972 1030 test -z "$as_dir" && as_dir=. 1973 $as_echo "PATH: $as_dir" 1974 done 1975 IFS=$as_save_IFS 1031 echo "PATH: $as_dir" 1032 done 1976 1033 1977 1034 } >&5 … … 1995 1052 ac_configure_args0= 1996 1053 ac_configure_args1= 1054 ac_sep= 1997 1055 ac_must_keep_next=false 1998 1056 for ac_pass in 1 2 … … 2005 1063 | -silent | --silent | --silen | --sile | --sil) 2006 1064 continue ;; 2007 * \'*)2008 ac_arg=` $as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;1065 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) 1066 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; 2009 1067 esac 2010 1068 case $ac_pass in 2011 1) a s_fn_append ac_configure_args0 "'$ac_arg'" ;;1069 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; 2012 1070 2) 2013 a s_fn_append ac_configure_args1 "'$ac_arg'"1071 ac_configure_args1="$ac_configure_args1 '$ac_arg'" 2014 1072 if test $ac_must_keep_next = true; then 2015 1073 ac_must_keep_next=false # Got value, back to normal. … … 2027 1085 esac 2028 1086 fi 2029 as_fn_append ac_configure_args " '$ac_arg'" 1087 ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" 1088 # Get rid of the leading space. 1089 ac_sep=" " 2030 1090 ;; 2031 1091 esac 2032 1092 done 2033 1093 done 2034 { ac_configure_args0=; unset ac_configure_args0;}2035 { ac_configure_args1=; unset ac_configure_args1;}1094 $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } 1095 $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } 2036 1096 2037 1097 # When interrupted or exit'd, cleanup temporary files, and complete 2038 1098 # config.log. We remove comments because anyway the quotes in there 2039 1099 # would cause problems or look ugly. 2040 # WARNING: Use '\'' to represent an apostrophe within the trap.2041 # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.1100 # WARNING: Be sure not to use single quotes in there, as some shells, 1101 # such as our DU 5.0 friend, will then `close' the trap. 2042 1102 trap 'exit_status=$? 2043 1103 # Save into config.log some information that might help in debugging. … … 2045 1105 echo 2046 1106 2047 $as_echo "## ---------------- ## 1107 cat <<\_ASBOX 1108 ## ---------------- ## 2048 1109 ## Cache variables. ## 2049 ## ---------------- ##" 1110 ## ---------------- ## 1111 _ASBOX 2050 1112 echo 2051 1113 # The following way of writing the cache mishandles newlines in values, 2052 ( 2053 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do 2054 eval ac_val=\$$ac_var 2055 case $ac_val in #( 2056 *${as_nl}*) 2057 case $ac_var in #( 2058 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 2059 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; 2060 esac 2061 case $ac_var in #( 2062 _ | IFS | as_nl) ;; #( 2063 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( 2064 *) { eval $ac_var=; unset $ac_var;} ;; 2065 esac ;; 2066 esac 2067 done 1114 { 2068 1115 (set) 2>&1 | 2069 case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(2070 * ${as_nl}ac_space=\ *)1116 case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in 1117 *ac_space=\ *) 2071 1118 sed -n \ 2072 "s/' \''/'\''\\\\'\'''\''/g;2073 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=' \''\\2'\''/p"2074 ;; #(1119 "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; 1120 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" 1121 ;; 2075 1122 *) 2076 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" 1123 sed -n \ 1124 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" 2077 1125 ;; 2078 esac | 2079 sort 2080 ) 1126 esac; 1127 } 2081 1128 echo 2082 1129 2083 $as_echo "## ----------------- ## 1130 cat <<\_ASBOX 1131 ## ----------------- ## 2084 1132 ## Output variables. ## 2085 ## ----------------- ##" 1133 ## ----------------- ## 1134 _ASBOX 2086 1135 echo 2087 1136 for ac_var in $ac_subst_vars 2088 1137 do 2089 eval ac_val=\$$ac_var 2090 case $ac_val in 2091 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 2092 esac 2093 $as_echo "$ac_var='\''$ac_val'\''" 1138 eval ac_val=$`echo $ac_var` 1139 echo "$ac_var='"'"'$ac_val'"'"'" 2094 1140 done | sort 2095 1141 echo 2096 1142 2097 1143 if test -n "$ac_subst_files"; then 2098 $as_echo "## ------------------- ## 2099 ## File substitutions. ## 2100 ## ------------------- ##" 1144 cat <<\_ASBOX 1145 ## ------------- ## 1146 ## Output files. ## 1147 ## ------------- ## 1148 _ASBOX 2101 1149 echo 2102 1150 for ac_var in $ac_subst_files 2103 1151 do 2104 eval ac_val=\$$ac_var 2105 case $ac_val in 2106 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 2107 esac 2108 $as_echo "$ac_var='\''$ac_val'\''" 1152 eval ac_val=$`echo $ac_var` 1153 echo "$ac_var='"'"'$ac_val'"'"'" 2109 1154 done | sort 2110 1155 echo … … 2112 1157 2113 1158 if test -s confdefs.h; then 2114 $as_echo "## ----------- ## 1159 cat <<\_ASBOX 1160 ## ----------- ## 2115 1161 ## confdefs.h. ## 2116 ## ----------- ##" 1162 ## ----------- ## 1163 _ASBOX 2117 1164 echo 2118 cat confdefs.h1165 sed "/^$/d" confdefs.h | sort 2119 1166 echo 2120 1167 fi 2121 1168 test "$ac_signal" != 0 && 2122 $as_echo "$as_me: caught signal $ac_signal"2123 $as_echo "$as_me: exit $exit_status"1169 echo "$as_me: caught signal $ac_signal" 1170 echo "$as_me: exit $exit_status" 2124 1171 } >&5 2125 rm -f core *.core core.conftest.*&&2126 rm -f -rconftest* confdefs* conf$$* $ac_clean_files &&1172 rm -f core *.core && 1173 rm -rf conftest* confdefs* conf$$* $ac_clean_files && 2127 1174 exit $exit_status 2128 ' 01175 ' 0 2129 1176 for ac_signal in 1 2 13 15; do 2130 trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal1177 trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal 2131 1178 done 2132 1179 ac_signal=0 2133 1180 2134 1181 # confdefs.h avoids OS command line length limits that DEFS can exceed. 2135 rm - f -rconftest* confdefs.h2136 2137 $as_echo "/* confdefs.h */" >confdefs.h1182 rm -rf conftest* confdefs.h 1183 # AIX cpp loses on an empty file, so make sure it contains at least a newline. 1184 echo >confdefs.h 2138 1185 2139 1186 # Predefined preprocessor variables. … … 2143 1190 _ACEOF 2144 1191 1192 2145 1193 cat >>confdefs.h <<_ACEOF 2146 1194 #define PACKAGE_TARNAME "$PACKAGE_TARNAME" 2147 1195 _ACEOF 2148 1196 1197 2149 1198 cat >>confdefs.h <<_ACEOF 2150 1199 #define PACKAGE_VERSION "$PACKAGE_VERSION" 2151 1200 _ACEOF 2152 1201 1202 2153 1203 cat >>confdefs.h <<_ACEOF 2154 1204 #define PACKAGE_STRING "$PACKAGE_STRING" 2155 1205 _ACEOF 2156 1206 1207 2157 1208 cat >>confdefs.h <<_ACEOF 2158 1209 #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" 2159 1210 _ACEOF 2160 1211 2161 cat >>confdefs.h <<_ACEOF2162 #define PACKAGE_URL "$PACKAGE_URL"2163 _ACEOF2164 2165 1212 2166 1213 # Let the site file select an alternate cache file if it wants to. 2167 # Prefer an explicitly selected file to automatically selected ones. 2168 ac_site_file1=NONE 2169 ac_site_file2=NONE 2170 if test -n "$CONFIG_SITE"; then 2171 # We do not want a PATH search for config.site. 2172 case $CONFIG_SITE in #(( 2173 -*) ac_site_file1=./$CONFIG_SITE;; 2174 */*) ac_site_file1=$CONFIG_SITE;; 2175 *) ac_site_file1=./$CONFIG_SITE;; 2176 esac 2177 elif test "x$prefix" != xNONE; then 2178 ac_site_file1=$prefix/share/config.site 2179 ac_site_file2=$prefix/etc/config.site 2180 else 2181 ac_site_file1=$ac_default_prefix/share/config.site 2182 ac_site_file2=$ac_default_prefix/etc/config.site 2183 fi 2184 for ac_site_file in "$ac_site_file1" "$ac_site_file2" 2185 do 2186 test "x$ac_site_file" = xNONE && continue 2187 if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then 2188 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 2189 $as_echo "$as_me: loading site script $ac_site_file" >&6;} 1214 # Prefer explicitly selected file to automatically selected ones. 1215 if test -z "$CONFIG_SITE"; then 1216 if test "x$prefix" != xNONE; then 1217 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" 1218 else 1219 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" 1220 fi 1221 fi 1222 for ac_site_file in $CONFIG_SITE; do 1223 if test -r "$ac_site_file"; then 1224 { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 1225 echo "$as_me: loading site script $ac_site_file" >&6;} 2190 1226 sed 's/^/| /' "$ac_site_file" >&5 2191 . "$ac_site_file" \ 2192 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 2193 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2194 as_fn_error $? "failed to load site script $ac_site_file 2195 See \`config.log' for more details" "$LINENO" 5 ; } 1227 . "$ac_site_file" 2196 1228 fi 2197 1229 done 2198 1230 2199 1231 if test -r "$cache_file"; then 2200 # Some versions of bash will fail to source /dev/null (special files2201 # actually), so we avoid doing that. DJGPP emulates it as a regular file.2202 if test /dev/null != "$cache_file" && test-f "$cache_file"; then2203 { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&52204 $as_echo "$as_me: loading cache $cache_file" >&6;}1232 # Some versions of bash will fail to source /dev/null (special 1233 # files actually), so we avoid doing that. 1234 if test -f "$cache_file"; then 1235 { echo "$as_me:$LINENO: loading cache $cache_file" >&5 1236 echo "$as_me: loading cache $cache_file" >&6;} 2205 1237 case $cache_file in 2206 [\\/]* | ?:[\\/]* ) . "$cache_file";;2207 *) . "./$cache_file";;1238 [\\/]* | ?:[\\/]* ) . $cache_file;; 1239 *) . ./$cache_file;; 2208 1240 esac 2209 1241 fi 2210 1242 else 2211 { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&52212 $as_echo "$as_me: creating cache $cache_file" >&6;}1243 { echo "$as_me:$LINENO: creating cache $cache_file" >&5 1244 echo "$as_me: creating cache $cache_file" >&6;} 2213 1245 >$cache_file 2214 1246 fi … … 2217 1249 # value. 2218 1250 ac_cache_corrupted=false 2219 for ac_var in $ac_precious_vars; do 1251 for ac_var in `(set) 2>&1 | 1252 sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do 2220 1253 eval ac_old_set=\$ac_cv_env_${ac_var}_set 2221 1254 eval ac_new_set=\$ac_env_${ac_var}_set 2222 eval ac_old_val= \$ac_cv_env_${ac_var}_value2223 eval ac_new_val= \$ac_env_${ac_var}_value1255 eval ac_old_val="\$ac_cv_env_${ac_var}_value" 1256 eval ac_new_val="\$ac_env_${ac_var}_value" 2224 1257 case $ac_old_set,$ac_new_set in 2225 1258 set,) 2226 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&52227 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}1259 { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 1260 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} 2228 1261 ac_cache_corrupted=: ;; 2229 1262 ,set) 2230 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&52231 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}1263 { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 1264 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} 2232 1265 ac_cache_corrupted=: ;; 2233 1266 ,);; 2234 1267 *) 2235 1268 if test "x$ac_old_val" != "x$ac_new_val"; then 2236 # differences in whitespace do not lead to failure. 2237 ac_old_val_w=`echo x $ac_old_val` 2238 ac_new_val_w=`echo x $ac_new_val` 2239 if test "$ac_old_val_w" != "$ac_new_val_w"; then 2240 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 2241 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} 2242 ac_cache_corrupted=: 2243 else 2244 { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 2245 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} 2246 eval $ac_var=\$ac_old_val 2247 fi 2248 { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 2249 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} 2250 { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 2251 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} 1269 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 1270 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} 1271 { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 1272 echo "$as_me: former value: $ac_old_val" >&2;} 1273 { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 1274 echo "$as_me: current value: $ac_new_val" >&2;} 1275 ac_cache_corrupted=: 2252 1276 fi;; 2253 1277 esac … … 2255 1279 if test "$ac_new_set" = set; then 2256 1280 case $ac_new_val in 2257 *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; 1281 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) 1282 ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; 2258 1283 *) ac_arg=$ac_var=$ac_new_val ;; 2259 1284 esac 2260 1285 case " $ac_configure_args " in 2261 1286 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. 2262 *) a s_fn_append ac_configure_args "'$ac_arg'" ;;1287 *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; 2263 1288 esac 2264 1289 fi 2265 1290 done 2266 1291 if $ac_cache_corrupted; then 2267 { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 2268 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2269 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 2270 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} 2271 as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 2272 fi 2273 ## -------------------- ## 2274 ## Main body of script. ## 2275 ## -------------------- ## 1292 { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 1293 echo "$as_me: error: changes in the environment can compromise the build" >&2;} 1294 { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 1295 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} 1296 { (exit 1); exit 1; }; } 1297 fi 2276 1298 2277 1299 ac_ext=c … … 2282 1304 2283 1305 2284 ac_config_headers="$ac_config_headers config.h" 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 ac_config_headers="$ac_config_headers config.h" 2285 1324 2286 1325 … … 2301 1340 USE_FASTCGI=0 2302 1341 if test USE_FASTCGI = 1; then 2303 $as_echo "#define USE_FASTCGI 1" >>confdefs.h 1342 cat >>confdefs.h <<\_ACEOF 1343 #define USE_FASTCGI 1 1344 _ACEOF 2304 1345 2305 1346 … … 2307 1348 2308 1349 if test USE_LANGACTION = 1; then 2309 $as_echo "#define USE_LANGACTION 1" >>confdefs.h 2310 2311 2312 fi 2313 2314 # Check whether --enable-corba was given. 2315 if test "${enable_corba+set}" = set; then : 2316 enableval=$enable_corba; USE_CORBA=$enableval 1350 cat >>confdefs.h <<\_ACEOF 1351 #define USE_LANGACTION 1 1352 _ACEOF 1353 1354 1355 fi 1356 1357 # Check whether --enable-corba or --disable-corba was given. 1358 if test "${enable_corba+set}" = set; then 1359 enableval="$enable_corba" 1360 USE_CORBA=$enableval 2317 1361 else 2318 1362 USE_CORBA=no 2319 fi 2320 1363 fi; 2321 1364 if test $USE_CORBA = "yes" -o $USE_CORBA = "1" ; then 2322 1365 USE_CORBA=1 2323 $as_echo "#define USE_CORBA /**/" >>confdefs.h 1366 cat >>confdefs.h <<\_ACEOF 1367 #define USE_CORBA 1368 _ACEOF 2324 1369 2325 1370 else … … 2329 1374 2330 1375 2331 # Check whether --with-micodir was given. 2332 if test "${with_micodir+set}" = set; then : 2333 withval=$with_micodir; MICO_DIR=$withval 1376 # Check whether --with-micodir or --without-micodir was given. 1377 if test "${with_micodir+set}" = set; then 1378 withval="$with_micodir" 1379 MICO_DIR=$withval 2334 1380 else 2335 1381 MICO_DIR="default" 2336 fi 2337 1382 fi; 2338 1383 cat >>confdefs.h <<_ACEOF 2339 1384 #define MICO_DIR "$MICO_DIR" … … 2342 1387 2343 1388 2344 # Check whether --enable-z3950 was given. 2345 if test "${enable_z3950+set}" = set; then : 2346 enableval=$enable_z3950; USE_Z3950=$enableval 1389 # Check whether --enable-z3950 or --disable-z3950 was given. 1390 if test "${enable_z3950+set}" = set; then 1391 enableval="$enable_z3950" 1392 USE_Z3950=$enableval 2347 1393 else 2348 1394 USE_Z3950=no 2349 fi 2350 1395 fi; 2351 1396 if test $USE_Z3950 = "yes" -o $USE_Z3950 = "1" ; then 2352 1397 USE_Z3950=1 2353 $as_echo "#define USE_Z3950 /**/" >>confdefs.h 1398 cat >>confdefs.h <<\_ACEOF 1399 #define USE_Z3950 1400 _ACEOF 2354 1401 2355 1402 else … … 2358 1405 2359 1406 2360 # Check whether --enable-yaz was given. 2361 if test "${enable_yaz+set}" = set; then : 2362 enableval=$enable_yaz; USE_YAZ=$enableval 1407 # Check whether --enable-yaz or --disable-yaz was given. 1408 if test "${enable_yaz+set}" = set; then 1409 enableval="$enable_yaz" 1410 USE_YAZ=$enableval 2363 1411 else 2364 1412 USE_YAZ=yes 2365 fi 2366 1413 fi; 2367 1414 if test $USE_YAZ = "yes" -o $USE_YAZ = "1" ; then 2368 1415 USE_YAZ=1 2369 $as_echo "#define USE_YAZ /**/" >>confdefs.h 1416 cat >>confdefs.h <<\_ACEOF 1417 #define USE_YAZ 1418 _ACEOF 2370 1419 2371 1420 else … … 2374 1423 2375 1424 2376 # Check whether --enable-java was given. 2377 if test "${enable_java+set}" = set; then : 2378 enableval=$enable_java; ENABLE_JAVA=$enableval 1425 # Check whether --enable-java or --disable-java was given. 1426 if test "${enable_java+set}" = set; then 1427 enableval="$enable_java" 1428 ENABLE_JAVA=$enableval 2379 1429 else 2380 1430 ENABLE_JAVA=yes 2381 fi 2382 1431 fi; 2383 1432 if test $ENABLE_JAVA = "yes" -o $ENABLE_JAVA = "1" ; then 2384 1433 ENABLE_JAVA=1 … … 2394 1443 2395 1444 2396 # Check whether --enable-jdbm was given. 2397 if test "${enable_jdbm+set}" = set; then : 2398 enableval=$enable_jdbm; USE_JDBM=$enableval 1445 # Check whether --enable-wvware or --disable-wvware was given. 1446 if test "${enable_wvware+set}" = set; then 1447 enableval="$enable_wvware" 1448 USE_WVWARE=$enableval 1449 else 1450 USE_WVWARE=yes 1451 fi; 1452 if test $USE_WVWARE = "yes" -o $USE_WVWARE = "1" ; then 1453 USE_WVWARE=1 1454 cat >>confdefs.h <<\_ACEOF 1455 #define USE_WVWARE 1456 _ACEOF 1457 1458 else 1459 USE_WVWARE=0 1460 fi 1461 1462 1463 # Check whether --enable-jdbm or --disable-jdbm was given. 1464 if test "${enable_jdbm+set}" = set; then 1465 enableval="$enable_jdbm" 1466 USE_JDBM=$enableval 2399 1467 else 2400 1468 USE_JDBM=yes 2401 fi 2402 1469 fi; 2403 1470 if test $ENABLE_JAVA = "1" -a \( $USE_JDBM = "yes" -o $USE_JDBM = "1" \) ; then 2404 1471 USE_JDBM=1 2405 $as_echo "#define USE_JDBM /**/" >>confdefs.h 1472 cat >>confdefs.h <<\_ACEOF 1473 #define USE_JDBM 1474 _ACEOF 2406 1475 2407 1476 else … … 2410 1479 2411 1480 2412 # Check whether --enable-gdbm was given. 2413 if test "${enable_gdbm+set}" = set; then : 2414 enableval=$enable_gdbm; USE_GDBM=$enableval 1481 # Check whether --enable-gdbm or --disable-gdbm was given. 1482 if test "${enable_gdbm+set}" = set; then 1483 enableval="$enable_gdbm" 1484 USE_GDBM=$enableval 2415 1485 else 2416 1486 USE_GDBM=yes 2417 fi 2418 1487 fi; 2419 1488 if test $USE_GDBM = "yes" -o $USE_GDBM = "1" ; then 2420 1489 USE_GDBM=1 2421 $as_echo "#define USE_GDBM /**/" >>confdefs.h 1490 cat >>confdefs.h <<\_ACEOF 1491 #define USE_GDBM 1492 _ACEOF 2422 1493 2423 1494 else … … 2426 1497 2427 1498 2428 # Check whether --enable-accentfold was given. 2429 if test "${enable_accentfold+set}" = set; then : 2430 enableval=$enable_accentfold; ENABLE_ACCENTFOLD=$enableval 1499 # Check whether --enable-accentfold or --disable-accentfold was given. 1500 if test "${enable_accentfold+set}" = set; then 1501 enableval="$enable_accentfold" 1502 ENABLE_ACCENTFOLD=$enableval 2431 1503 else 2432 1504 ENABLE_ACCENTFOLD=yes 2433 fi 2434 1505 fi; 2435 1506 if test $ENABLE_ACCENTFOLD = "yes" -o $ENABLE_ACCENTFOLD = "1" ; then 2436 1507 ENABLE_ACCENTFOLD=1 2437 $as_echo "#define ENABLE_ACCENTFOLD /**/" >>confdefs.h 1508 cat >>confdefs.h <<\_ACEOF 1509 #define ENABLE_ACCENTFOLD 1510 _ACEOF 2438 1511 2439 1512 else … … 2442 1515 2443 1516 2444 # Check whether --enable-sqlite was given. 2445 if test "${enable_sqlite+set}" = set; then : 2446 enableval=$enable_sqlite; USE_SQLITE=$enableval 1517 # Check whether --enable-sqlite or --disable-sqlite was given. 1518 if test "${enable_sqlite+set}" = set; then 1519 enableval="$enable_sqlite" 1520 USE_SQLITE=$enableval 2447 1521 else 2448 1522 USE_SQLITE=yes 2449 fi 2450 1523 fi; 2451 1524 if test $USE_SQLITE = "yes" -o $USE_SQLITE = "1" ; then 2452 1525 USE_SQLITE=1 2453 $as_echo "#define USE_SQLITE /**/" >>confdefs.h 1526 cat >>confdefs.h <<\_ACEOF 1527 #define USE_SQLITE 1528 _ACEOF 2454 1529 2455 1530 else … … 2474 1549 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. 2475 1550 set dummy ${ac_tool_prefix}gcc; ac_word=$2 2476 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52477 $as_echo_n "checking for $ac_word... " >&6; } 2478 if test "${ac_cv_prog_CC+set}" = set; then :2479 $as_echo_n "(cached)" >&61551 echo "$as_me:$LINENO: checking for $ac_word" >&5 1552 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1553 if test "${ac_cv_prog_CC+set}" = set; then 1554 echo $ECHO_N "(cached) $ECHO_C" >&6 2480 1555 else 2481 1556 if test -n "$CC"; then … … 2487 1562 IFS=$as_save_IFS 2488 1563 test -z "$as_dir" && as_dir=. 2489 2490 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1564 for ac_exec_ext in '' $ac_executable_extensions; do 1565 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2491 1566 ac_cv_prog_CC="${ac_tool_prefix}gcc" 2492 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&51567 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2493 1568 break 2 2494 1569 fi 2495 1570 done 2496 done 2497 IFS=$as_save_IFS 1571 done 2498 1572 2499 1573 fi … … 2501 1575 CC=$ac_cv_prog_CC 2502 1576 if test -n "$CC"; then 2503 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 2504 $as_echo "$CC" >&6; } 2505 else 2506 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2507 $as_echo "no" >&6; } 2508 fi 2509 1577 echo "$as_me:$LINENO: result: $CC" >&5 1578 echo "${ECHO_T}$CC" >&6 1579 else 1580 echo "$as_me:$LINENO: result: no" >&5 1581 echo "${ECHO_T}no" >&6 1582 fi 2510 1583 2511 1584 fi … … 2514 1587 # Extract the first word of "gcc", so it can be a program name with args. 2515 1588 set dummy gcc; ac_word=$2 2516 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52517 $as_echo_n "checking for $ac_word... " >&6; } 2518 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :2519 $as_echo_n "(cached)" >&61589 echo "$as_me:$LINENO: checking for $ac_word" >&5 1590 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1591 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1592 echo $ECHO_N "(cached) $ECHO_C" >&6 2520 1593 else 2521 1594 if test -n "$ac_ct_CC"; then … … 2527 1600 IFS=$as_save_IFS 2528 1601 test -z "$as_dir" && as_dir=. 2529 2530 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1602 for ac_exec_ext in '' $ac_executable_extensions; do 1603 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2531 1604 ac_cv_prog_ac_ct_CC="gcc" 2532 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&51605 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2533 1606 break 2 2534 1607 fi 2535 1608 done 2536 done 2537 IFS=$as_save_IFS 1609 done 2538 1610 2539 1611 fi … … 2541 1613 ac_ct_CC=$ac_cv_prog_ac_ct_CC 2542 1614 if test -n "$ac_ct_CC"; then 2543 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 2544 $as_echo "$ac_ct_CC" >&6; } 2545 else 2546 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2547 $as_echo "no" >&6; } 2548 fi 2549 2550 if test "x$ac_ct_CC" = x; then 2551 CC="" 2552 else 2553 case $cross_compiling:$ac_tool_warned in 2554 yes:) 2555 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 2556 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 2557 ac_tool_warned=yes ;; 2558 esac 2559 CC=$ac_ct_CC 2560 fi 1615 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 1616 echo "${ECHO_T}$ac_ct_CC" >&6 1617 else 1618 echo "$as_me:$LINENO: result: no" >&5 1619 echo "${ECHO_T}no" >&6 1620 fi 1621 1622 CC=$ac_ct_CC 2561 1623 else 2562 1624 CC="$ac_cv_prog_CC" … … 2564 1626 2565 1627 if test -z "$CC"; then 2566 2567 1628 if test -n "$ac_tool_prefix"; then 1629 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. 2568 1630 set dummy ${ac_tool_prefix}cc; ac_word=$2 2569 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52570 $as_echo_n "checking for $ac_word... " >&6; } 2571 if test "${ac_cv_prog_CC+set}" = set; then :2572 $as_echo_n "(cached)" >&61631 echo "$as_me:$LINENO: checking for $ac_word" >&5 1632 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1633 if test "${ac_cv_prog_CC+set}" = set; then 1634 echo $ECHO_N "(cached) $ECHO_C" >&6 2573 1635 else 2574 1636 if test -n "$CC"; then … … 2580 1642 IFS=$as_save_IFS 2581 1643 test -z "$as_dir" && as_dir=. 2582 2583 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1644 for ac_exec_ext in '' $ac_executable_extensions; do 1645 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2584 1646 ac_cv_prog_CC="${ac_tool_prefix}cc" 2585 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&51647 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2586 1648 break 2 2587 1649 fi 2588 1650 done 2589 done 2590 IFS=$as_save_IFS 1651 done 2591 1652 2592 1653 fi … … 2594 1655 CC=$ac_cv_prog_CC 2595 1656 if test -n "$CC"; then 2596 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 2597 $as_echo "$CC" >&6; } 2598 else 2599 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2600 $as_echo "no" >&6; } 2601 fi 2602 2603 1657 echo "$as_me:$LINENO: result: $CC" >&5 1658 echo "${ECHO_T}$CC" >&6 1659 else 1660 echo "$as_me:$LINENO: result: no" >&5 1661 echo "${ECHO_T}no" >&6 1662 fi 1663 1664 fi 1665 if test -z "$ac_cv_prog_CC"; then 1666 ac_ct_CC=$CC 1667 # Extract the first word of "cc", so it can be a program name with args. 1668 set dummy cc; ac_word=$2 1669 echo "$as_me:$LINENO: checking for $ac_word" >&5 1670 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1671 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1672 echo $ECHO_N "(cached) $ECHO_C" >&6 1673 else 1674 if test -n "$ac_ct_CC"; then 1675 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. 1676 else 1677 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 1678 for as_dir in $PATH 1679 do 1680 IFS=$as_save_IFS 1681 test -z "$as_dir" && as_dir=. 1682 for ac_exec_ext in '' $ac_executable_extensions; do 1683 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 1684 ac_cv_prog_ac_ct_CC="cc" 1685 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 1686 break 2 2604 1687 fi 1688 done 1689 done 1690 1691 fi 1692 fi 1693 ac_ct_CC=$ac_cv_prog_ac_ct_CC 1694 if test -n "$ac_ct_CC"; then 1695 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 1696 echo "${ECHO_T}$ac_ct_CC" >&6 1697 else 1698 echo "$as_me:$LINENO: result: no" >&5 1699 echo "${ECHO_T}no" >&6 1700 fi 1701 1702 CC=$ac_ct_CC 1703 else 1704 CC="$ac_cv_prog_CC" 1705 fi 1706 2605 1707 fi 2606 1708 if test -z "$CC"; then 2607 1709 # Extract the first word of "cc", so it can be a program name with args. 2608 1710 set dummy cc; ac_word=$2 2609 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52610 $as_echo_n "checking for $ac_word... " >&6; } 2611 if test "${ac_cv_prog_CC+set}" = set; then :2612 $as_echo_n "(cached)" >&61711 echo "$as_me:$LINENO: checking for $ac_word" >&5 1712 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1713 if test "${ac_cv_prog_CC+set}" = set; then 1714 echo $ECHO_N "(cached) $ECHO_C" >&6 2613 1715 else 2614 1716 if test -n "$CC"; then … … 2621 1723 IFS=$as_save_IFS 2622 1724 test -z "$as_dir" && as_dir=. 2623 2624 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1725 for ac_exec_ext in '' $ac_executable_extensions; do 1726 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2625 1727 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then 2626 1728 ac_prog_rejected=yes … … 2628 1730 fi 2629 1731 ac_cv_prog_CC="cc" 2630 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&51732 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2631 1733 break 2 2632 1734 fi 2633 1735 done 2634 done 2635 IFS=$as_save_IFS 1736 done 2636 1737 2637 1738 if test $ac_prog_rejected = yes; then … … 2651 1752 CC=$ac_cv_prog_CC 2652 1753 if test -n "$CC"; then 2653 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 2654 $as_echo "$CC" >&6; } 2655 else 2656 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2657 $as_echo "no" >&6; } 2658 fi 2659 1754 echo "$as_me:$LINENO: result: $CC" >&5 1755 echo "${ECHO_T}$CC" >&6 1756 else 1757 echo "$as_me:$LINENO: result: no" >&5 1758 echo "${ECHO_T}no" >&6 1759 fi 2660 1760 2661 1761 fi 2662 1762 if test -z "$CC"; then 2663 1763 if test -n "$ac_tool_prefix"; then 2664 for ac_prog in cl .exe1764 for ac_prog in cl 2665 1765 do 2666 1766 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 2667 1767 set dummy $ac_tool_prefix$ac_prog; ac_word=$2 2668 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52669 $as_echo_n "checking for $ac_word... " >&6; } 2670 if test "${ac_cv_prog_CC+set}" = set; then :2671 $as_echo_n "(cached)" >&61768 echo "$as_me:$LINENO: checking for $ac_word" >&5 1769 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1770 if test "${ac_cv_prog_CC+set}" = set; then 1771 echo $ECHO_N "(cached) $ECHO_C" >&6 2672 1772 else 2673 1773 if test -n "$CC"; then … … 2679 1779 IFS=$as_save_IFS 2680 1780 test -z "$as_dir" && as_dir=. 2681 2682 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1781 for ac_exec_ext in '' $ac_executable_extensions; do 1782 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2683 1783 ac_cv_prog_CC="$ac_tool_prefix$ac_prog" 2684 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&51784 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2685 1785 break 2 2686 1786 fi 2687 1787 done 2688 done 2689 IFS=$as_save_IFS 1788 done 2690 1789 2691 1790 fi … … 2693 1792 CC=$ac_cv_prog_CC 2694 1793 if test -n "$CC"; then 2695 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 2696 $as_echo "$CC" >&6; } 2697 else 2698 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2699 $as_echo "no" >&6; } 2700 fi 2701 1794 echo "$as_me:$LINENO: result: $CC" >&5 1795 echo "${ECHO_T}$CC" >&6 1796 else 1797 echo "$as_me:$LINENO: result: no" >&5 1798 echo "${ECHO_T}no" >&6 1799 fi 2702 1800 2703 1801 test -n "$CC" && break … … 2706 1804 if test -z "$CC"; then 2707 1805 ac_ct_CC=$CC 2708 for ac_prog in cl .exe1806 for ac_prog in cl 2709 1807 do 2710 1808 # Extract the first word of "$ac_prog", so it can be a program name with args. 2711 1809 set dummy $ac_prog; ac_word=$2 2712 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52713 $as_echo_n "checking for $ac_word... " >&6; } 2714 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :2715 $as_echo_n "(cached)" >&61810 echo "$as_me:$LINENO: checking for $ac_word" >&5 1811 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1812 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1813 echo $ECHO_N "(cached) $ECHO_C" >&6 2716 1814 else 2717 1815 if test -n "$ac_ct_CC"; then … … 2723 1821 IFS=$as_save_IFS 2724 1822 test -z "$as_dir" && as_dir=. 2725 2726 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then1823 for ac_exec_ext in '' $ac_executable_extensions; do 1824 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2727 1825 ac_cv_prog_ac_ct_CC="$ac_prog" 2728 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&51826 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2729 1827 break 2 2730 1828 fi 2731 1829 done 2732 done 2733 IFS=$as_save_IFS 1830 done 2734 1831 2735 1832 fi … … 2737 1834 ac_ct_CC=$ac_cv_prog_ac_ct_CC 2738 1835 if test -n "$ac_ct_CC"; then 2739 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 2740 $as_echo "$ac_ct_CC" >&6; } 2741 else 2742 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2743 $as_echo "no" >&6; } 2744 fi 2745 1836 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 1837 echo "${ECHO_T}$ac_ct_CC" >&6 1838 else 1839 echo "$as_me:$LINENO: result: no" >&5 1840 echo "${ECHO_T}no" >&6 1841 fi 2746 1842 2747 1843 test -n "$ac_ct_CC" && break 2748 1844 done 2749 1845 2750 if test "x$ac_ct_CC" = x; then 2751 CC="" 2752 else 2753 case $cross_compiling:$ac_tool_warned in 2754 yes:) 2755 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 2756 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 2757 ac_tool_warned=yes ;; 2758 esac 2759 CC=$ac_ct_CC 2760 fi 2761 fi 2762 2763 fi 2764 2765 2766 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 2767 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2768 as_fn_error $? "no acceptable C compiler found in \$PATH 2769 See \`config.log' for more details" "$LINENO" 5 ; } 1846 CC=$ac_ct_CC 1847 fi 1848 1849 fi 1850 1851 1852 test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH 1853 See \`config.log' for more details." >&5 1854 echo "$as_me: error: no acceptable C compiler found in \$PATH 1855 See \`config.log' for more details." >&2;} 1856 { (exit 1); exit 1; }; } 2770 1857 2771 1858 # Provide some information about the compiler. 2772 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 2773 set X $ac_compile 2774 ac_compiler=$2 2775 for ac_option in --version -v -V -qversion; do 2776 { { ac_try="$ac_compiler $ac_option >&5" 2777 case "(($ac_try" in 2778 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2779 *) ac_try_echo=$ac_try;; 2780 esac 2781 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 2782 $as_echo "$ac_try_echo"; } >&5 2783 (eval "$ac_compiler $ac_option >&5") 2>conftest.err 2784 ac_status=$? 2785 if test -s conftest.err; then 2786 sed '10a\ 2787 ... rest of stderr output deleted ... 2788 10q' conftest.err >conftest.er1 2789 cat conftest.er1 >&5 2790 fi 2791 rm -f conftest.er1 conftest.err 2792 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 2793 test $ac_status = 0; } 2794 done 2795 2796 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 1859 echo "$as_me:$LINENO:" \ 1860 "checking for C compiler version" >&5 1861 ac_compiler=`set X $ac_compile; echo $2` 1862 { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 1863 (eval $ac_compiler --version </dev/null >&5) 2>&5 1864 ac_status=$? 1865 echo "$as_me:$LINENO: \$? = $ac_status" >&5 1866 (exit $ac_status); } 1867 { (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5 1868 (eval $ac_compiler -v </dev/null >&5) 2>&5 1869 ac_status=$? 1870 echo "$as_me:$LINENO: \$? = $ac_status" >&5 1871 (exit $ac_status); } 1872 { (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5 1873 (eval $ac_compiler -V </dev/null >&5) 2>&5 1874 ac_status=$? 1875 echo "$as_me:$LINENO: \$? = $ac_status" >&5 1876 (exit $ac_status); } 1877 1878 cat >conftest.$ac_ext <<_ACEOF 1879 /* confdefs.h. */ 1880 _ACEOF 1881 cat confdefs.h >>conftest.$ac_ext 1882 cat >>conftest.$ac_ext <<_ACEOF 2797 1883 /* end confdefs.h. */ 2798 1884 … … 2806 1892 _ACEOF 2807 1893 ac_clean_files_save=$ac_clean_files 2808 ac_clean_files="$ac_clean_files a.out a. out.dSYM a.exe b.out"1894 ac_clean_files="$ac_clean_files a.out a.exe b.out" 2809 1895 # Try to create an executable without -o first, disregard a.out. 2810 1896 # It will help us diagnose broken compilers, and finding out an intuition 2811 1897 # of exeext. 2812 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 2813 $as_echo_n "checking whether the C compiler works... " >&6; } 2814 ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` 2815 2816 # The possible output files: 2817 ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" 2818 2819 ac_rmfiles= 2820 for ac_file in $ac_files 2821 do 2822 case $ac_file in 2823 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; 2824 * ) ac_rmfiles="$ac_rmfiles $ac_file";; 2825 esac 2826 done 2827 rm -f $ac_rmfiles 2828 2829 if { { ac_try="$ac_link_default" 2830 case "(($ac_try" in 2831 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2832 *) ac_try_echo=$ac_try;; 2833 esac 2834 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 2835 $as_echo "$ac_try_echo"; } >&5 2836 (eval "$ac_link_default") 2>&5 2837 ac_status=$? 2838 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 2839 test $ac_status = 0; }; then : 2840 # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. 2841 # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' 2842 # in a Makefile. We should not override ac_cv_exeext if it was cached, 2843 # so that the user can short-circuit this test for compilers unknown to 2844 # Autoconf. 2845 for ac_file in $ac_files '' 1898 echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 1899 echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6 1900 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` 1901 if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 1902 (eval $ac_link_default) 2>&5 1903 ac_status=$? 1904 echo "$as_me:$LINENO: \$? = $ac_status" >&5 1905 (exit $ac_status); }; then 1906 # Find the output, starting from the most likely. This scheme is 1907 # not robust to junk in `.', hence go to wildcards (a.*) only as a last 1908 # resort. 1909 1910 # Be careful to initialize this variable, since it used to be cached. 1911 # Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. 1912 ac_cv_exeext= 1913 # b.out is created by i960 compilers. 1914 for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out 2846 1915 do 2847 1916 test -f "$ac_file" || continue 2848 1917 case $ac_file in 2849 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) 1918 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) 1919 ;; 1920 conftest.$ac_ext ) 1921 # This is the source file. 2850 1922 ;; 2851 1923 [ab].out ) … … 2854 1926 break;; 2855 1927 *.* ) 2856 if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; 2857 then :; else 2858 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 2859 fi 2860 # We set ac_cv_exeext here because the later test for it is not 2861 # safe: cross compilers may not add the suffix if given an `-o' 2862 # argument, so we may need to know it at that point already. 2863 # Even if this section looks crufty: it has the advantage of 2864 # actually working. 1928 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 1929 # FIXME: I believe we export ac_cv_exeext for Libtool, 1930 # but it would be cool to find out if it's true. Does anybody 1931 # maintain Libtool? --akim. 1932 export ac_cv_exeext 2865 1933 break;; 2866 1934 * ) … … 2868 1936 esac 2869 1937 done 2870 test "$ac_cv_exeext" = no && ac_cv_exeext= 2871 2872 else 2873 ac_file='' 2874 fi 2875 if test -z "$ac_file"; then : 2876 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 2877 $as_echo "no" >&6; } 2878 $as_echo "$as_me: failed program was:" >&5 1938 else 1939 echo "$as_me: failed program was:" >&5 2879 1940 sed 's/^/| /' conftest.$ac_ext >&5 2880 1941 2881 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 2882 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2883 as_fn_error 77 "C compiler cannot create executables 2884 See \`config.log' for more details" "$LINENO" 5 ; } 2885 else 2886 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 2887 $as_echo "yes" >&6; } 2888 fi 2889 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 2890 $as_echo_n "checking for C compiler default output file name... " >&6; } 2891 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 2892 $as_echo "$ac_file" >&6; } 1942 { { echo "$as_me:$LINENO: error: C compiler cannot create executables 1943 See \`config.log' for more details." >&5 1944 echo "$as_me: error: C compiler cannot create executables 1945 See \`config.log' for more details." >&2;} 1946 { (exit 77); exit 77; }; } 1947 fi 1948 2893 1949 ac_exeext=$ac_cv_exeext 2894 2895 rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out 1950 echo "$as_me:$LINENO: result: $ac_file" >&5 1951 echo "${ECHO_T}$ac_file" >&6 1952 1953 # Check the compiler produces executables we can run. If not, either 1954 # the compiler is broken, or we cross compile. 1955 echo "$as_me:$LINENO: checking whether the C compiler works" >&5 1956 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 1957 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 1958 # If not cross compiling, check that we can run a simple program. 1959 if test "$cross_compiling" != yes; then 1960 if { ac_try='./$ac_file' 1961 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 1962 (eval $ac_try) 2>&5 1963 ac_status=$? 1964 echo "$as_me:$LINENO: \$? = $ac_status" >&5 1965 (exit $ac_status); }; }; then 1966 cross_compiling=no 1967 else 1968 if test "$cross_compiling" = maybe; then 1969 cross_compiling=yes 1970 else 1971 { { echo "$as_me:$LINENO: error: cannot run C compiled programs. 1972 If you meant to cross compile, use \`--host'. 1973 See \`config.log' for more details." >&5 1974 echo "$as_me: error: cannot run C compiled programs. 1975 If you meant to cross compile, use \`--host'. 1976 See \`config.log' for more details." >&2;} 1977 { (exit 1); exit 1; }; } 1978 fi 1979 fi 1980 fi 1981 echo "$as_me:$LINENO: result: yes" >&5 1982 echo "${ECHO_T}yes" >&6 1983 1984 rm -f a.out a.exe conftest$ac_cv_exeext b.out 2896 1985 ac_clean_files=$ac_clean_files_save 2897 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 2898 $as_echo_n "checking for suffix of executables... " >&6; } 2899 if { { ac_try="$ac_link" 2900 case "(($ac_try" in 2901 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 2902 *) ac_try_echo=$ac_try;; 2903 esac 2904 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 2905 $as_echo "$ac_try_echo"; } >&5 2906 (eval "$ac_link") 2>&5 2907 ac_status=$? 2908 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 2909 test $ac_status = 0; }; then : 1986 # Check the compiler produces executables we can run. If not, either 1987 # the compiler is broken, or we cross compile. 1988 echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 1989 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 1990 echo "$as_me:$LINENO: result: $cross_compiling" >&5 1991 echo "${ECHO_T}$cross_compiling" >&6 1992 1993 echo "$as_me:$LINENO: checking for suffix of executables" >&5 1994 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 1995 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 1996 (eval $ac_link) 2>&5 1997 ac_status=$? 1998 echo "$as_me:$LINENO: \$? = $ac_status" >&5 1999 (exit $ac_status); }; then 2910 2000 # If both `conftest.exe' and `conftest' are `present' (well, observable) 2911 2001 # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will … … 2915 2005 test -f "$ac_file" || continue 2916 2006 case $ac_file in 2917 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *. map | *.inf | *.dSYM | *.o | *.obj ) ;;2007 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; 2918 2008 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 2009 export ac_cv_exeext 2919 2010 break;; 2920 2011 * ) break;; … … 2922 2013 done 2923 2014 else 2924 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 2925 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2926 as_fn_error $? "cannot compute suffix of executables: cannot compile and link 2927 See \`config.log' for more details" "$LINENO" 5 ; } 2928 fi 2929 rm -f conftest conftest$ac_cv_exeext 2930 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 2931 $as_echo "$ac_cv_exeext" >&6; } 2015 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link 2016 See \`config.log' for more details." >&5 2017 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link 2018 See \`config.log' for more details." >&2;} 2019 { (exit 1); exit 1; }; } 2020 fi 2021 2022 rm -f conftest$ac_cv_exeext 2023 echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 2024 echo "${ECHO_T}$ac_cv_exeext" >&6 2932 2025 2933 2026 rm -f conftest.$ac_ext 2934 2027 EXEEXT=$ac_cv_exeext 2935 2028 ac_exeext=$EXEEXT 2936 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2029 echo "$as_me:$LINENO: checking for suffix of object files" >&5 2030 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 2031 if test "${ac_cv_objext+set}" = set; then 2032 echo $ECHO_N "(cached) $ECHO_C" >&6 2033 else 2034 cat >conftest.$ac_ext <<_ACEOF 2035 /* confdefs.h. */ 2036 _ACEOF 2037 cat confdefs.h >>conftest.$ac_ext 2038 cat >>conftest.$ac_ext <<_ACEOF 2937 2039 /* end confdefs.h. */ 2938 #include <stdio.h> 2040 2939 2041 int 2940 2042 main () 2941 2043 { 2942 FILE *f = fopen ("conftest.out", "w");2943 return ferror (f) || fclose (f) != 0;2944 2044 2945 2045 ; … … 2947 2047 } 2948 2048 _ACEOF 2949 ac_clean_files="$ac_clean_files conftest.out"2950 # Check that the compiler produces executables we can run. If not, either2951 # the compiler is broken, or we cross compile.2952 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&52953 $as_echo_n "checking whether we are cross compiling... " >&6; }2954 if test "$cross_compiling" != yes; then2955 { { ac_try="$ac_link"2956 case "(($ac_try" in2957 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;2958 *) ac_try_echo=$ac_try;;2959 esac2960 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""2961 $as_echo "$ac_try_echo"; } >&52962 (eval "$ac_link") 2>&52963 ac_status=$?2964 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&52965 test $ac_status = 0; }2966 if { ac_try='./conftest$ac_cv_exeext'2967 { { case "(($ac_try" in2968 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;2969 *) ac_try_echo=$ac_try;;2970 esac2971 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""2972 $as_echo "$ac_try_echo"; } >&52973 (eval "$ac_try") 2>&52974 ac_status=$?2975 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&52976 test $ac_status = 0; }; }; then2977 cross_compiling=no2978 else2979 if test "$cross_compiling" = maybe; then2980 cross_compiling=yes2981 else2982 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&52983 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}2984 as_fn_error $? "cannot run C compiled programs.2985 If you meant to cross compile, use \`--host'.2986 See \`config.log' for more details" "$LINENO" 5 ; }2987 fi2988 fi2989 fi2990 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&52991 $as_echo "$cross_compiling" >&6; }2992 2993 rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out2994 ac_clean_files=$ac_clean_files_save2995 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&52996 $as_echo_n "checking for suffix of object files... " >&6; }2997 if test "${ac_cv_objext+set}" = set; then :2998 $as_echo_n "(cached) " >&62999 else3000 cat confdefs.h - <<_ACEOF >conftest.$ac_ext3001 /* end confdefs.h. */3002 3003 int3004 main ()3005 {3006 3007 ;3008 return 0;3009 }3010 _ACEOF3011 2049 rm -f conftest.o conftest.obj 3012 if { { ac_try="$ac_compile" 3013 case "(($ac_try" in 3014 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3015 *) ac_try_echo=$ac_try;; 3016 esac 3017 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 3018 $as_echo "$ac_try_echo"; } >&5 3019 (eval "$ac_compile") 2>&5 3020 ac_status=$? 3021 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 3022 test $ac_status = 0; }; then : 3023 for ac_file in conftest.o conftest.obj conftest.*; do 3024 test -f "$ac_file" || continue; 2050 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2051 (eval $ac_compile) 2>&5 2052 ac_status=$? 2053 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2054 (exit $ac_status); }; then 2055 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do 3025 2056 case $ac_file in 3026 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM) ;;2057 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; 3027 2058 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` 3028 2059 break;; … … 3030 2061 done 3031 2062 else 3032 $as_echo "$as_me: failed program was:" >&52063 echo "$as_me: failed program was:" >&5 3033 2064 sed 's/^/| /' conftest.$ac_ext >&5 3034 2065 3035 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 3036 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3037 as_fn_error $? "cannot compute suffix of object files: cannot compile 3038 See \`config.log' for more details" "$LINENO" 5 ; } 3039 fi 2066 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile 2067 See \`config.log' for more details." >&5 2068 echo "$as_me: error: cannot compute suffix of object files: cannot compile 2069 See \`config.log' for more details." >&2;} 2070 { (exit 1); exit 1; }; } 2071 fi 2072 3040 2073 rm -f conftest.$ac_cv_objext conftest.$ac_ext 3041 2074 fi 3042 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&53043 $as_echo "$ac_cv_objext" >&6; } 2075 echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 2076 echo "${ECHO_T}$ac_cv_objext" >&6 3044 2077 OBJEXT=$ac_cv_objext 3045 2078 ac_objext=$OBJEXT 3046 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 3047 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } 3048 if test "${ac_cv_c_compiler_gnu+set}" = set; then : 3049 $as_echo_n "(cached) " >&6 3050 else 3051 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2079 echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 2080 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 2081 if test "${ac_cv_c_compiler_gnu+set}" = set; then 2082 echo $ECHO_N "(cached) $ECHO_C" >&6 2083 else 2084 cat >conftest.$ac_ext <<_ACEOF 2085 /* confdefs.h. */ 2086 _ACEOF 2087 cat confdefs.h >>conftest.$ac_ext 2088 cat >>conftest.$ac_ext <<_ACEOF 3052 2089 /* end confdefs.h. */ 3053 2090 … … 3063 2100 } 3064 2101 _ACEOF 3065 if ac_fn_c_try_compile "$LINENO"; then : 2102 rm -f conftest.$ac_objext 2103 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2104 (eval $ac_compile) 2>conftest.er1 2105 ac_status=$? 2106 grep -v '^ *+' conftest.er1 >conftest.err 2107 rm -f conftest.er1 2108 cat conftest.err >&5 2109 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2110 (exit $ac_status); } && 2111 { ac_try='test -z "$ac_c_werror_flag" 2112 || test ! -s conftest.err' 2113 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2114 (eval $ac_try) 2>&5 2115 ac_status=$? 2116 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2117 (exit $ac_status); }; } && 2118 { ac_try='test -s conftest.$ac_objext' 2119 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2120 (eval $ac_try) 2>&5 2121 ac_status=$? 2122 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2123 (exit $ac_status); }; }; then 3066 2124 ac_compiler_gnu=yes 3067 2125 else 3068 ac_compiler_gnu=no 3069 fi 3070 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2126 echo "$as_me: failed program was:" >&5 2127 sed 's/^/| /' conftest.$ac_ext >&5 2128 2129 ac_compiler_gnu=no 2130 fi 2131 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 3071 2132 ac_cv_c_compiler_gnu=$ac_compiler_gnu 3072 2133 3073 2134 fi 3074 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 3075 $as_echo "$ac_cv_c_compiler_gnu" >&6; } 3076 if test $ac_compiler_gnu = yes; then 3077 GCC=yes 3078 else 3079 GCC= 3080 fi 2135 echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 2136 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 2137 GCC=`test $ac_compiler_gnu = yes && echo yes` 3081 2138 ac_test_CFLAGS=${CFLAGS+set} 3082 2139 ac_save_CFLAGS=$CFLAGS 3083 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 3084 $as_echo_n "checking whether $CC accepts -g... " >&6; } 3085 if test "${ac_cv_prog_cc_g+set}" = set; then : 3086 $as_echo_n "(cached) " >&6 3087 else 3088 ac_save_c_werror_flag=$ac_c_werror_flag 3089 ac_c_werror_flag=yes 3090 ac_cv_prog_cc_g=no 3091 CFLAGS="-g" 3092 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2140 CFLAGS="-g" 2141 echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 2142 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 2143 if test "${ac_cv_prog_cc_g+set}" = set; then 2144 echo $ECHO_N "(cached) $ECHO_C" >&6 2145 else 2146 cat >conftest.$ac_ext <<_ACEOF 2147 /* confdefs.h. */ 2148 _ACEOF 2149 cat confdefs.h >>conftest.$ac_ext 2150 cat >>conftest.$ac_ext <<_ACEOF 3093 2151 /* end confdefs.h. */ 3094 2152 … … 3101 2159 } 3102 2160 _ACEOF 3103 if ac_fn_c_try_compile "$LINENO"; then : 2161 rm -f conftest.$ac_objext 2162 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2163 (eval $ac_compile) 2>conftest.er1 2164 ac_status=$? 2165 grep -v '^ *+' conftest.er1 >conftest.err 2166 rm -f conftest.er1 2167 cat conftest.err >&5 2168 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2169 (exit $ac_status); } && 2170 { ac_try='test -z "$ac_c_werror_flag" 2171 || test ! -s conftest.err' 2172 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2173 (eval $ac_try) 2>&5 2174 ac_status=$? 2175 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2176 (exit $ac_status); }; } && 2177 { ac_try='test -s conftest.$ac_objext' 2178 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2179 (eval $ac_try) 2>&5 2180 ac_status=$? 2181 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2182 (exit $ac_status); }; }; then 3104 2183 ac_cv_prog_cc_g=yes 3105 2184 else 3106 CFLAGS="" 3107 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3108 /* end confdefs.h. */ 3109 3110 int 3111 main () 3112 { 3113 3114 ; 3115 return 0; 3116 } 3117 _ACEOF 3118 if ac_fn_c_try_compile "$LINENO"; then : 3119 3120 else 3121 ac_c_werror_flag=$ac_save_c_werror_flag 3122 CFLAGS="-g" 3123 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3124 /* end confdefs.h. */ 3125 3126 int 3127 main () 3128 { 3129 3130 ; 3131 return 0; 3132 } 3133 _ACEOF 3134 if ac_fn_c_try_compile "$LINENO"; then : 3135 ac_cv_prog_cc_g=yes 3136 fi 3137 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 3138 fi 3139 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 3140 fi 3141 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 3142 ac_c_werror_flag=$ac_save_c_werror_flag 3143 fi 3144 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 3145 $as_echo "$ac_cv_prog_cc_g" >&6; } 2185 echo "$as_me: failed program was:" >&5 2186 sed 's/^/| /' conftest.$ac_ext >&5 2187 2188 ac_cv_prog_cc_g=no 2189 fi 2190 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2191 fi 2192 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 2193 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 3146 2194 if test "$ac_test_CFLAGS" = set; then 3147 2195 CFLAGS=$ac_save_CFLAGS … … 3159 2207 fi 3160 2208 fi 3161 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&53162 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } 3163 if test "${ac_cv_prog_cc_ c89+set}" = set; then :3164 $as_echo_n "(cached)" >&63165 else 3166 ac_cv_prog_cc_ c89=no2209 echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 2210 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 2211 if test "${ac_cv_prog_cc_stdc+set}" = set; then 2212 echo $ECHO_N "(cached) $ECHO_C" >&6 2213 else 2214 ac_cv_prog_cc_stdc=no 3167 2215 ac_save_CC=$CC 3168 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2216 cat >conftest.$ac_ext <<_ACEOF 2217 /* confdefs.h. */ 2218 _ACEOF 2219 cat confdefs.h >>conftest.$ac_ext 2220 cat >>conftest.$ac_ext <<_ACEOF 3169 2221 /* end confdefs.h. */ 3170 2222 #include <stdarg.h> … … 3194 2246 function prototypes and stuff, but not '\xHH' hex character constants. 3195 2247 These don't provoke an error unfortunately, instead are silently treated 3196 as 'x'. The following induces an error, until -std is added to get2248 as 'x'. The following induces an error, until -std1 is added to get 3197 2249 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an 3198 2250 array size at least. It's necessary to write '\x00'==0 to get something 3199 that's true only with -std . */2251 that's true only with -std1. */ 3200 2252 int osf4_cc_array ['\x00' == 0 ? 1 : -1]; 3201 3202 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters3203 inside strings and character constants. */3204 #define FOO(x) 'x'3205 int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];3206 2253 3207 2254 int test (int i, double x); … … 3219 2266 } 3220 2267 _ACEOF 3221 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ 3222 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" 2268 # Don't try gcc -ansi; that turns off useful extensions and 2269 # breaks some systems' header files. 2270 # AIX -qlanglvl=ansi 2271 # Ultrix and OSF/1 -std1 2272 # HP-UX 10.20 and later -Ae 2273 # HP-UX older versions -Aa -D_HPUX_SOURCE 2274 # SVR4 -Xc -D__EXTENSIONS__ 2275 for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" 3223 2276 do 3224 2277 CC="$ac_save_CC $ac_arg" 3225 if ac_fn_c_try_compile "$LINENO"; then : 3226 ac_cv_prog_cc_c89=$ac_arg 3227 fi 3228 rm -f core conftest.err conftest.$ac_objext 3229 test "x$ac_cv_prog_cc_c89" != "xno" && break 2278 rm -f conftest.$ac_objext 2279 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2280 (eval $ac_compile) 2>conftest.er1 2281 ac_status=$? 2282 grep -v '^ *+' conftest.er1 >conftest.err 2283 rm -f conftest.er1 2284 cat conftest.err >&5 2285 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2286 (exit $ac_status); } && 2287 { ac_try='test -z "$ac_c_werror_flag" 2288 || test ! -s conftest.err' 2289 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2290 (eval $ac_try) 2>&5 2291 ac_status=$? 2292 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2293 (exit $ac_status); }; } && 2294 { ac_try='test -s conftest.$ac_objext' 2295 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2296 (eval $ac_try) 2>&5 2297 ac_status=$? 2298 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2299 (exit $ac_status); }; }; then 2300 ac_cv_prog_cc_stdc=$ac_arg 2301 break 2302 else 2303 echo "$as_me: failed program was:" >&5 2304 sed 's/^/| /' conftest.$ac_ext >&5 2305 2306 fi 2307 rm -f conftest.err conftest.$ac_objext 3230 2308 done 3231 rm -f conftest.$ac_ext 2309 rm -f conftest.$ac_ext conftest.$ac_objext 3232 2310 CC=$ac_save_CC 3233 2311 3234 2312 fi 3235 # AC_CACHE_VAL 3236 case "x$ac_cv_prog_cc_c89" in 3237 x) 3238 { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 3239 $as_echo "none needed" >&6; } ;; 3240 xno) 3241 { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 3242 $as_echo "unsupported" >&6; } ;; 2313 2314 case "x$ac_cv_prog_cc_stdc" in 2315 x|xno) 2316 echo "$as_me:$LINENO: result: none needed" >&5 2317 echo "${ECHO_T}none needed" >&6 ;; 3243 2318 *) 3244 CC="$CC $ac_cv_prog_cc_c89"3245 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 3246 $as_echo "$ac_cv_prog_cc_c89" >&6; };;2319 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 2320 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 2321 CC="$CC $ac_cv_prog_cc_stdc" ;; 3247 2322 esac 3248 if test "x$ac_cv_prog_cc_c89" != xno; then : 3249 3250 fi 3251 2323 2324 # Some people use a C++ compiler to compile C. Since we use `exit', 2325 # in C++ we need to declare it. In case someone uses the same compiler 2326 # for both compiling C and C++ we need to have the C++ compiler decide 2327 # the declaration of exit, since it's the most demanding environment. 2328 cat >conftest.$ac_ext <<_ACEOF 2329 #ifndef __cplusplus 2330 choke me 2331 #endif 2332 _ACEOF 2333 rm -f conftest.$ac_objext 2334 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2335 (eval $ac_compile) 2>conftest.er1 2336 ac_status=$? 2337 grep -v '^ *+' conftest.er1 >conftest.err 2338 rm -f conftest.er1 2339 cat conftest.err >&5 2340 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2341 (exit $ac_status); } && 2342 { ac_try='test -z "$ac_c_werror_flag" 2343 || test ! -s conftest.err' 2344 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2345 (eval $ac_try) 2>&5 2346 ac_status=$? 2347 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2348 (exit $ac_status); }; } && 2349 { ac_try='test -s conftest.$ac_objext' 2350 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2351 (eval $ac_try) 2>&5 2352 ac_status=$? 2353 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2354 (exit $ac_status); }; }; then 2355 for ac_declaration in \ 2356 '' \ 2357 'extern "C" void std::exit (int) throw (); using std::exit;' \ 2358 'extern "C" void std::exit (int); using std::exit;' \ 2359 'extern "C" void exit (int) throw ();' \ 2360 'extern "C" void exit (int);' \ 2361 'void exit (int);' 2362 do 2363 cat >conftest.$ac_ext <<_ACEOF 2364 /* confdefs.h. */ 2365 _ACEOF 2366 cat confdefs.h >>conftest.$ac_ext 2367 cat >>conftest.$ac_ext <<_ACEOF 2368 /* end confdefs.h. */ 2369 $ac_declaration 2370 #include <stdlib.h> 2371 int 2372 main () 2373 { 2374 exit (42); 2375 ; 2376 return 0; 2377 } 2378 _ACEOF 2379 rm -f conftest.$ac_objext 2380 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2381 (eval $ac_compile) 2>conftest.er1 2382 ac_status=$? 2383 grep -v '^ *+' conftest.er1 >conftest.err 2384 rm -f conftest.er1 2385 cat conftest.err >&5 2386 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2387 (exit $ac_status); } && 2388 { ac_try='test -z "$ac_c_werror_flag" 2389 || test ! -s conftest.err' 2390 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2391 (eval $ac_try) 2>&5 2392 ac_status=$? 2393 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2394 (exit $ac_status); }; } && 2395 { ac_try='test -s conftest.$ac_objext' 2396 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2397 (eval $ac_try) 2>&5 2398 ac_status=$? 2399 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2400 (exit $ac_status); }; }; then 2401 : 2402 else 2403 echo "$as_me: failed program was:" >&5 2404 sed 's/^/| /' conftest.$ac_ext >&5 2405 2406 continue 2407 fi 2408 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2409 cat >conftest.$ac_ext <<_ACEOF 2410 /* confdefs.h. */ 2411 _ACEOF 2412 cat confdefs.h >>conftest.$ac_ext 2413 cat >>conftest.$ac_ext <<_ACEOF 2414 /* end confdefs.h. */ 2415 $ac_declaration 2416 int 2417 main () 2418 { 2419 exit (42); 2420 ; 2421 return 0; 2422 } 2423 _ACEOF 2424 rm -f conftest.$ac_objext 2425 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2426 (eval $ac_compile) 2>conftest.er1 2427 ac_status=$? 2428 grep -v '^ *+' conftest.er1 >conftest.err 2429 rm -f conftest.er1 2430 cat conftest.err >&5 2431 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2432 (exit $ac_status); } && 2433 { ac_try='test -z "$ac_c_werror_flag" 2434 || test ! -s conftest.err' 2435 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2436 (eval $ac_try) 2>&5 2437 ac_status=$? 2438 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2439 (exit $ac_status); }; } && 2440 { ac_try='test -s conftest.$ac_objext' 2441 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2442 (eval $ac_try) 2>&5 2443 ac_status=$? 2444 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2445 (exit $ac_status); }; }; then 2446 break 2447 else 2448 echo "$as_me: failed program was:" >&5 2449 sed 's/^/| /' conftest.$ac_ext >&5 2450 2451 fi 2452 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2453 done 2454 rm -f conftest* 2455 if test -n "$ac_declaration"; then 2456 echo '#ifdef __cplusplus' >>confdefs.h 2457 echo $ac_declaration >>confdefs.h 2458 echo '#endif' >>confdefs.h 2459 fi 2460 2461 else 2462 echo "$as_me: failed program was:" >&5 2463 sed 's/^/| /' conftest.$ac_ext >&5 2464 2465 fi 2466 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 3252 2467 ac_ext=c 3253 2468 ac_cpp='$CPP $CPPFLAGS' … … 3256 2471 ac_compiler_gnu=$ac_cv_c_compiler_gnu 3257 2472 3258 ac_ext=c pp2473 ac_ext=cc 3259 2474 ac_cpp='$CXXCPP $CPPFLAGS' 3260 2475 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' 3261 2476 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 3262 2477 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 3263 if test -z "$CXX"; then 3264 if test -n "$CCC"; then 3265 CXX=$CCC 3266 else 3267 if test -n "$ac_tool_prefix"; then 3268 for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC 2478 if test -n "$ac_tool_prefix"; then 2479 for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC 3269 2480 do 3270 2481 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 3271 2482 set dummy $ac_tool_prefix$ac_prog; ac_word=$2 3272 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&53273 $as_echo_n "checking for $ac_word... " >&6; } 3274 if test "${ac_cv_prog_CXX+set}" = set; then :3275 $as_echo_n "(cached)" >&62483 echo "$as_me:$LINENO: checking for $ac_word" >&5 2484 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2485 if test "${ac_cv_prog_CXX+set}" = set; then 2486 echo $ECHO_N "(cached) $ECHO_C" >&6 3276 2487 else 3277 2488 if test -n "$CXX"; then … … 3283 2494 IFS=$as_save_IFS 3284 2495 test -z "$as_dir" && as_dir=. 3285 3286 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then2496 for ac_exec_ext in '' $ac_executable_extensions; do 2497 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 3287 2498 ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" 3288 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&52499 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 3289 2500 break 2 3290 2501 fi 3291 2502 done 3292 done 3293 IFS=$as_save_IFS 2503 done 3294 2504 3295 2505 fi … … 3297 2507 CXX=$ac_cv_prog_CXX 3298 2508 if test -n "$CXX"; then 3299 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 3300 $as_echo "$CXX" >&6; } 3301 else 3302 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 3303 $as_echo "no" >&6; } 3304 fi 3305 2509 echo "$as_me:$LINENO: result: $CXX" >&5 2510 echo "${ECHO_T}$CXX" >&6 2511 else 2512 echo "$as_me:$LINENO: result: no" >&5 2513 echo "${ECHO_T}no" >&6 2514 fi 3306 2515 3307 2516 test -n "$CXX" && break … … 3310 2519 if test -z "$CXX"; then 3311 2520 ac_ct_CXX=$CXX 3312 for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exeFCC KCC RCC xlC_r xlC2521 for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC 3313 2522 do 3314 2523 # Extract the first word of "$ac_prog", so it can be a program name with args. 3315 2524 set dummy $ac_prog; ac_word=$2 3316 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&53317 $as_echo_n "checking for $ac_word... " >&6; } 3318 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then :3319 $as_echo_n "(cached)" >&62525 echo "$as_me:$LINENO: checking for $ac_word" >&5 2526 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2527 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then 2528 echo $ECHO_N "(cached) $ECHO_C" >&6 3320 2529 else 3321 2530 if test -n "$ac_ct_CXX"; then … … 3327 2536 IFS=$as_save_IFS 3328 2537 test -z "$as_dir" && as_dir=. 3329 3330 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then2538 for ac_exec_ext in '' $ac_executable_extensions; do 2539 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 3331 2540 ac_cv_prog_ac_ct_CXX="$ac_prog" 3332 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&52541 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 3333 2542 break 2 3334 2543 fi 3335 2544 done 3336 done 3337 IFS=$as_save_IFS 2545 done 3338 2546 3339 2547 fi … … 3341 2549 ac_ct_CXX=$ac_cv_prog_ac_ct_CXX 3342 2550 if test -n "$ac_ct_CXX"; then 3343 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 3344 $as_echo "$ac_ct_CXX" >&6; } 3345 else 3346 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 3347 $as_echo "no" >&6; } 3348 fi 3349 2551 echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 2552 echo "${ECHO_T}$ac_ct_CXX" >&6 2553 else 2554 echo "$as_me:$LINENO: result: no" >&5 2555 echo "${ECHO_T}no" >&6 2556 fi 3350 2557 3351 2558 test -n "$ac_ct_CXX" && break 3352 2559 done 3353 3354 if test "x$ac_ct_CXX" = x; then 3355 CXX="g++" 3356 else 3357 case $cross_compiling:$ac_tool_warned in 3358 yes:) 3359 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 3360 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 3361 ac_tool_warned=yes ;; 3362 esac 3363 CXX=$ac_ct_CXX 3364 fi 3365 fi 3366 3367 fi 3368 fi 2560 test -n "$ac_ct_CXX" || ac_ct_CXX="g++" 2561 2562 CXX=$ac_ct_CXX 2563 fi 2564 2565 3369 2566 # Provide some information about the compiler. 3370 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 3371 set X $ac_compile 3372 ac_compiler=$2 3373 for ac_option in --version -v -V -qversion; do 3374 { { ac_try="$ac_compiler $ac_option >&5" 3375 case "(($ac_try" in 3376 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 3377 *) ac_try_echo=$ac_try;; 3378 esac 3379 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" 3380 $as_echo "$ac_try_echo"; } >&5 3381 (eval "$ac_compiler $ac_option >&5") 2>conftest.err 3382 ac_status=$? 3383 if test -s conftest.err; then 3384 sed '10a\ 3385 ... rest of stderr output deleted ... 3386 10q' conftest.err >conftest.er1 3387 cat conftest.er1 >&5 3388 fi 3389 rm -f conftest.er1 conftest.err 3390 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 3391 test $ac_status = 0; } 3392 done 3393 3394 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 3395 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } 3396 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : 3397 $as_echo_n "(cached) " >&6 3398 else 3399 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2567 echo "$as_me:$LINENO:" \ 2568 "checking for C++ compiler version" >&5 2569 ac_compiler=`set X $ac_compile; echo $2` 2570 { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 2571 (eval $ac_compiler --version </dev/null >&5) 2>&5 2572 ac_status=$? 2573 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2574 (exit $ac_status); } 2575 { (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5 2576 (eval $ac_compiler -v </dev/null >&5) 2>&5 2577 ac_status=$? 2578 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2579 (exit $ac_status); } 2580 { (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5 2581 (eval $ac_compiler -V </dev/null >&5) 2>&5 2582 ac_status=$? 2583 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2584 (exit $ac_status); } 2585 2586 echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 2587 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 2588 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then 2589 echo $ECHO_N "(cached) $ECHO_C" >&6 2590 else 2591 cat >conftest.$ac_ext <<_ACEOF 2592 /* confdefs.h. */ 2593 _ACEOF 2594 cat confdefs.h >>conftest.$ac_ext 2595 cat >>conftest.$ac_ext <<_ACEOF 3400 2596 /* end confdefs.h. */ 3401 2597 … … 3411 2607 } 3412 2608 _ACEOF 3413 if ac_fn_cxx_try_compile "$LINENO"; then : 2609 rm -f conftest.$ac_objext 2610 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2611 (eval $ac_compile) 2>conftest.er1 2612 ac_status=$? 2613 grep -v '^ *+' conftest.er1 >conftest.err 2614 rm -f conftest.er1 2615 cat conftest.err >&5 2616 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2617 (exit $ac_status); } && 2618 { ac_try='test -z "$ac_cxx_werror_flag" 2619 || test ! -s conftest.err' 2620 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2621 (eval $ac_try) 2>&5 2622 ac_status=$? 2623 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2624 (exit $ac_status); }; } && 2625 { ac_try='test -s conftest.$ac_objext' 2626 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2627 (eval $ac_try) 2>&5 2628 ac_status=$? 2629 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2630 (exit $ac_status); }; }; then 3414 2631 ac_compiler_gnu=yes 3415 2632 else 3416 ac_compiler_gnu=no 3417 fi 3418 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2633 echo "$as_me: failed program was:" >&5 2634 sed 's/^/| /' conftest.$ac_ext >&5 2635 2636 ac_compiler_gnu=no 2637 fi 2638 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 3419 2639 ac_cv_cxx_compiler_gnu=$ac_compiler_gnu 3420 2640 3421 2641 fi 3422 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 3423 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } 3424 if test $ac_compiler_gnu = yes; then 3425 GXX=yes 3426 else 3427 GXX= 3428 fi 2642 echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 2643 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 2644 GXX=`test $ac_compiler_gnu = yes && echo yes` 3429 2645 ac_test_CXXFLAGS=${CXXFLAGS+set} 3430 2646 ac_save_CXXFLAGS=$CXXFLAGS 3431 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 3432 $as_echo_n "checking whether $CXX accepts -g... " >&6; } 3433 if test "${ac_cv_prog_cxx_g+set}" = set; then : 3434 $as_echo_n "(cached) " >&6 3435 else 3436 ac_save_cxx_werror_flag=$ac_cxx_werror_flag 3437 ac_cxx_werror_flag=yes 3438 ac_cv_prog_cxx_g=no 3439 CXXFLAGS="-g" 3440 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2647 CXXFLAGS="-g" 2648 echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 2649 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 2650 if test "${ac_cv_prog_cxx_g+set}" = set; then 2651 echo $ECHO_N "(cached) $ECHO_C" >&6 2652 else 2653 cat >conftest.$ac_ext <<_ACEOF 2654 /* confdefs.h. */ 2655 _ACEOF 2656 cat confdefs.h >>conftest.$ac_ext 2657 cat >>conftest.$ac_ext <<_ACEOF 3441 2658 /* end confdefs.h. */ 3442 2659 … … 3449 2666 } 3450 2667 _ACEOF 3451 if ac_fn_cxx_try_compile "$LINENO"; then : 2668 rm -f conftest.$ac_objext 2669 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2670 (eval $ac_compile) 2>conftest.er1 2671 ac_status=$? 2672 grep -v '^ *+' conftest.er1 >conftest.err 2673 rm -f conftest.er1 2674 cat conftest.err >&5 2675 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2676 (exit $ac_status); } && 2677 { ac_try='test -z "$ac_cxx_werror_flag" 2678 || test ! -s conftest.err' 2679 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2680 (eval $ac_try) 2>&5 2681 ac_status=$? 2682 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2683 (exit $ac_status); }; } && 2684 { ac_try='test -s conftest.$ac_objext' 2685 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2686 (eval $ac_try) 2>&5 2687 ac_status=$? 2688 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2689 (exit $ac_status); }; }; then 3452 2690 ac_cv_prog_cxx_g=yes 3453 2691 else 3454 CXXFLAGS="" 3455 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3456 /* end confdefs.h. */ 3457 3458 int 3459 main () 3460 { 3461 3462 ; 3463 return 0; 3464 } 3465 _ACEOF 3466 if ac_fn_cxx_try_compile "$LINENO"; then : 3467 3468 else 3469 ac_cxx_werror_flag=$ac_save_cxx_werror_flag 3470 CXXFLAGS="-g" 3471 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3472 /* end confdefs.h. */ 3473 3474 int 3475 main () 3476 { 3477 3478 ; 3479 return 0; 3480 } 3481 _ACEOF 3482 if ac_fn_cxx_try_compile "$LINENO"; then : 3483 ac_cv_prog_cxx_g=yes 3484 fi 3485 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 3486 fi 3487 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 3488 fi 3489 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 3490 ac_cxx_werror_flag=$ac_save_cxx_werror_flag 3491 fi 3492 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 3493 $as_echo "$ac_cv_prog_cxx_g" >&6; } 2692 echo "$as_me: failed program was:" >&5 2693 sed 's/^/| /' conftest.$ac_ext >&5 2694 2695 ac_cv_prog_cxx_g=no 2696 fi 2697 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2698 fi 2699 echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 2700 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 3494 2701 if test "$ac_test_CXXFLAGS" = set; then 3495 2702 CXXFLAGS=$ac_save_CXXFLAGS … … 3507 2714 fi 3508 2715 fi 2716 for ac_declaration in \ 2717 '' \ 2718 'extern "C" void std::exit (int) throw (); using std::exit;' \ 2719 'extern "C" void std::exit (int); using std::exit;' \ 2720 'extern "C" void exit (int) throw ();' \ 2721 'extern "C" void exit (int);' \ 2722 'void exit (int);' 2723 do 2724 cat >conftest.$ac_ext <<_ACEOF 2725 /* confdefs.h. */ 2726 _ACEOF 2727 cat confdefs.h >>conftest.$ac_ext 2728 cat >>conftest.$ac_ext <<_ACEOF 2729 /* end confdefs.h. */ 2730 $ac_declaration 2731 #include <stdlib.h> 2732 int 2733 main () 2734 { 2735 exit (42); 2736 ; 2737 return 0; 2738 } 2739 _ACEOF 2740 rm -f conftest.$ac_objext 2741 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2742 (eval $ac_compile) 2>conftest.er1 2743 ac_status=$? 2744 grep -v '^ *+' conftest.er1 >conftest.err 2745 rm -f conftest.er1 2746 cat conftest.err >&5 2747 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2748 (exit $ac_status); } && 2749 { ac_try='test -z "$ac_cxx_werror_flag" 2750 || test ! -s conftest.err' 2751 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2752 (eval $ac_try) 2>&5 2753 ac_status=$? 2754 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2755 (exit $ac_status); }; } && 2756 { ac_try='test -s conftest.$ac_objext' 2757 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2758 (eval $ac_try) 2>&5 2759 ac_status=$? 2760 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2761 (exit $ac_status); }; }; then 2762 : 2763 else 2764 echo "$as_me: failed program was:" >&5 2765 sed 's/^/| /' conftest.$ac_ext >&5 2766 2767 continue 2768 fi 2769 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2770 cat >conftest.$ac_ext <<_ACEOF 2771 /* confdefs.h. */ 2772 _ACEOF 2773 cat confdefs.h >>conftest.$ac_ext 2774 cat >>conftest.$ac_ext <<_ACEOF 2775 /* end confdefs.h. */ 2776 $ac_declaration 2777 int 2778 main () 2779 { 2780 exit (42); 2781 ; 2782 return 0; 2783 } 2784 _ACEOF 2785 rm -f conftest.$ac_objext 2786 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 2787 (eval $ac_compile) 2>conftest.er1 2788 ac_status=$? 2789 grep -v '^ *+' conftest.er1 >conftest.err 2790 rm -f conftest.er1 2791 cat conftest.err >&5 2792 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2793 (exit $ac_status); } && 2794 { ac_try='test -z "$ac_cxx_werror_flag" 2795 || test ! -s conftest.err' 2796 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2797 (eval $ac_try) 2>&5 2798 ac_status=$? 2799 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2800 (exit $ac_status); }; } && 2801 { ac_try='test -s conftest.$ac_objext' 2802 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2803 (eval $ac_try) 2>&5 2804 ac_status=$? 2805 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2806 (exit $ac_status); }; }; then 2807 break 2808 else 2809 echo "$as_me: failed program was:" >&5 2810 sed 's/^/| /' conftest.$ac_ext >&5 2811 2812 fi 2813 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 2814 done 2815 rm -f conftest* 2816 if test -n "$ac_declaration"; then 2817 echo '#ifdef __cplusplus' >>confdefs.h 2818 echo $ac_declaration >>confdefs.h 2819 echo '#endif' >>confdefs.h 2820 fi 2821 3509 2822 ac_ext=c 3510 2823 ac_cpp='$CPP $CPPFLAGS' … … 3522 2835 # Extract the first word of "$ac_prog", so it can be a program name with args. 3523 2836 set dummy $ac_prog; ac_word=$2 3524 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&53525 $as_echo_n "checking for $ac_word... " >&6; } 3526 if test "${ac_cv_prog_JAVAC+set}" = set; then :3527 $as_echo_n "(cached)" >&62837 echo "$as_me:$LINENO: checking for $ac_word" >&5 2838 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2839 if test "${ac_cv_prog_JAVAC+set}" = set; then 2840 echo $ECHO_N "(cached) $ECHO_C" >&6 3528 2841 else 3529 2842 if test -n "$JAVAC"; then … … 3535 2848 IFS=$as_save_IFS 3536 2849 test -z "$as_dir" && as_dir=. 3537 3538 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then2850 for ac_exec_ext in '' $ac_executable_extensions; do 2851 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 3539 2852 ac_cv_prog_JAVAC="$ac_prog" 3540 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&52853 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 3541 2854 break 2 3542 2855 fi 3543 2856 done 3544 done 3545 IFS=$as_save_IFS 2857 done 3546 2858 3547 2859 fi … … 3549 2861 JAVAC=$ac_cv_prog_JAVAC 3550 2862 if test -n "$JAVAC"; then 3551 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVAC" >&5 3552 $as_echo "$JAVAC" >&6; } 3553 else 3554 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 3555 $as_echo "no" >&6; } 3556 fi 3557 2863 echo "$as_me:$LINENO: result: $JAVAC" >&5 2864 echo "${ECHO_T}$JAVAC" >&6 2865 else 2866 echo "$as_me:$LINENO: result: no" >&5 2867 echo "${ECHO_T}no" >&6 2868 fi 3558 2869 3559 2870 test -n "$JAVAC" && break … … 3565 2876 # Extract the first word of "$ac_prog", so it can be a program name with args. 3566 2877 set dummy $ac_prog; ac_word=$2 3567 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&53568 $as_echo_n "checking for $ac_word... " >&6; } 3569 if test "${ac_cv_prog_JAVAC+set}" = set; then :3570 $as_echo_n "(cached)" >&62878 echo "$as_me:$LINENO: checking for $ac_word" >&5 2879 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2880 if test "${ac_cv_prog_JAVAC+set}" = set; then 2881 echo $ECHO_N "(cached) $ECHO_C" >&6 3571 2882 else 3572 2883 if test -n "$JAVAC"; then … … 3578 2889 IFS=$as_save_IFS 3579 2890 test -z "$as_dir" && as_dir=. 3580 3581 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then2891 for ac_exec_ext in '' $ac_executable_extensions; do 2892 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 3582 2893 ac_cv_prog_JAVAC="$ac_prog" 3583 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&52894 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 3584 2895 break 2 3585 2896 fi 3586 2897 done 3587 done 3588 IFS=$as_save_IFS 2898 done 3589 2899 3590 2900 fi … … 3592 2902 JAVAC=$ac_cv_prog_JAVAC 3593 2903 if test -n "$JAVAC"; then 3594 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVAC" >&5 3595 $as_echo "$JAVAC" >&6; } 3596 else 3597 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 3598 $as_echo "no" >&6; } 3599 fi 3600 2904 echo "$as_me:$LINENO: result: $JAVAC" >&5 2905 echo "${ECHO_T}$JAVAC" >&6 2906 else 2907 echo "$as_me:$LINENO: result: no" >&5 2908 echo "${ECHO_T}no" >&6 2909 fi 3601 2910 3602 2911 test -n "$JAVAC" && break … … 3605 2914 3606 2915 fi 3607 test "x$JAVAC" = x && as_fn_error $? "no acceptable Java compiler found in \$PATH" "$LINENO" 5 2916 test "x$JAVAC" = x && { { echo "$as_me:$LINENO: error: no acceptable Java compiler found in \$PATH" >&5 2917 echo "$as_me: error: no acceptable Java compiler found in \$PATH" >&2;} 2918 { (exit 1); exit 1; }; } 3608 2919 else 3609 2920 echo "Checking for javac... $JAVAC" … … 3612 2923 3613 2924 3614 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $JAVAC works" >&53615 $as_echo_n "checking if $JAVAC works... " >&6; } 3616 if test "${ac_cv_prog_javac_works+set}" = set; then :3617 $as_echo_n "(cached)" >&62925 echo "$as_me:$LINENO: checking if $JAVAC works" >&5 2926 echo $ECHO_N "checking if $JAVAC works... $ECHO_C" >&6 2927 if test "${ac_cv_prog_javac_works+set}" = set; then 2928 echo $ECHO_N "(cached) $ECHO_C" >&6 3618 2929 else 3619 2930 … … 3621 2932 CLASS_TEST=Test.class 3622 2933 cat << \EOF > $JAVA_TEST 3623 /* #line 3623"configure" */2934 /* #line 2934 "configure" */ 3624 2935 public class Test { 3625 2936 } 3626 2937 EOF 3627 2938 if { ac_try='$JAVAC $JAVACFLAGS $JAVA_TEST' 3628 { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; }>&53629 (eval $ac_try) 2>&5 3630 ac_status=$? 3631 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&53632 test $ac_status = 0; }; } >/dev/null 2>&1; then2939 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2940 (eval $ac_try) 2>&5 2941 ac_status=$? 2942 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2943 (exit $ac_status); }; } >/dev/null 2>&1; then 3633 2944 ac_cv_prog_javac_works=yes 3634 2945 else 3635 as_fn_error $? "The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" "$LINENO" 5 2946 { { echo "$as_me:$LINENO: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&5 2947 echo "$as_me: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&2;} 2948 { (exit 1); exit 1; }; } 3636 2949 echo "configure: failed program was:" >&5 3637 2950 cat $JAVA_TEST >&5 … … 3640 2953 3641 2954 fi 3642 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_javac_works" >&53643 $as_echo "$ac_cv_prog_javac_works" >&6; } 2955 echo "$as_me:$LINENO: result: $ac_cv_prog_javac_works" >&5 2956 echo "${ECHO_T}$ac_cv_prog_javac_works" >&6 3644 2957 if test "x$JAVACFLAGS" = x ; then 3645 2958 JAVACFLAGS="-source 1.4 -target 1.4" … … 3655 2968 # Extract the first word of "$ac_prog", so it can be a program name with args. 3656 2969 set dummy $ac_prog; ac_word=$2 3657 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&53658 $as_echo_n "checking for $ac_word... " >&6; } 3659 if test "${ac_cv_prog_JAVA+set}" = set; then :3660 $as_echo_n "(cached)" >&62970 echo "$as_me:$LINENO: checking for $ac_word" >&5 2971 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2972 if test "${ac_cv_prog_JAVA+set}" = set; then 2973 echo $ECHO_N "(cached) $ECHO_C" >&6 3661 2974 else 3662 2975 if test -n "$JAVA"; then … … 3668 2981 IFS=$as_save_IFS 3669 2982 test -z "$as_dir" && as_dir=. 3670 3671 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then2983 for ac_exec_ext in '' $ac_executable_extensions; do 2984 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 3672 2985 ac_cv_prog_JAVA="$ac_prog" 3673 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&52986 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 3674 2987 break 2 3675 2988 fi 3676 2989 done 3677 done 3678 IFS=$as_save_IFS 2990 done 3679 2991 3680 2992 fi … … 3682 2994 JAVA=$ac_cv_prog_JAVA 3683 2995 if test -n "$JAVA"; then 3684 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVA" >&5 3685 $as_echo "$JAVA" >&6; } 3686 else 3687 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 3688 $as_echo "no" >&6; } 3689 fi 3690 2996 echo "$as_me:$LINENO: result: $JAVA" >&5 2997 echo "${ECHO_T}$JAVA" >&6 2998 else 2999 echo "$as_me:$LINENO: result: no" >&5 3000 echo "${ECHO_T}no" >&6 3001 fi 3691 3002 3692 3003 test -n "$JAVA" && break … … 3698 3009 # Extract the first word of "$ac_prog", so it can be a program name with args. 3699 3010 set dummy $ac_prog; ac_word=$2 3700 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&53701 $as_echo_n "checking for $ac_word... " >&6; } 3702 if test "${ac_cv_prog_JAVA+set}" = set; then :3703 $as_echo_n "(cached)" >&63011 echo "$as_me:$LINENO: checking for $ac_word" >&5 3012 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 3013 if test "${ac_cv_prog_JAVA+set}" = set; then 3014 echo $ECHO_N "(cached) $ECHO_C" >&6 3704 3015 else 3705 3016 if test -n "$JAVA"; then … … 3711 3022 IFS=$as_save_IFS 3712 3023 test -z "$as_dir" && as_dir=. 3713 3714 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then3024 for ac_exec_ext in '' $ac_executable_extensions; do 3025 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 3715 3026 ac_cv_prog_JAVA="$ac_prog" 3716 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&53027 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 3717 3028 break 2 3718 3029 fi 3719 3030 done 3720 done 3721 IFS=$as_save_IFS 3031 done 3722 3032 3723 3033 fi … … 3725 3035 JAVA=$ac_cv_prog_JAVA 3726 3036 if test -n "$JAVA"; then 3727 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVA" >&5 3728 $as_echo "$JAVA" >&6; } 3729 else 3730 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 3731 $as_echo "no" >&6; } 3732 fi 3733 3037 echo "$as_me:$LINENO: result: $JAVA" >&5 3038 echo "${ECHO_T}$JAVA" >&6 3039 else 3040 echo "$as_me:$LINENO: result: no" >&5 3041 echo "${ECHO_T}no" >&6 3042 fi 3734 3043 3735 3044 test -n "$JAVA" && break … … 3738 3047 3739 3048 fi 3740 test x$JAVA = x && as_fn_error $? "no acceptable Java virtual machine found in \$PATH" "$LINENO" 5 3049 test x$JAVA = x && { { echo "$as_me:$LINENO: error: no acceptable Java virtual machine found in \$PATH" >&5 3050 echo "$as_me: error: no acceptable Java virtual machine found in \$PATH" >&2;} 3051 { (exit 1); exit 1; }; } 3741 3052 fi 3742 3053 … … 3744 3055 # Extract the first word of "uudecode$EXEEXT", so it can be a program name with args. 3745 3056 set dummy uudecode$EXEEXT; ac_word=$2 3746 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&53747 $as_echo_n "checking for $ac_word... " >&6; } 3748 if test "${ac_cv_prog_uudecode+set}" = set; then :3749 $as_echo_n "(cached)" >&63057 echo "$as_me:$LINENO: checking for $ac_word" >&5 3058 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 3059 if test "${ac_cv_prog_uudecode+set}" = set; then 3060 echo $ECHO_N "(cached) $ECHO_C" >&6 3750 3061 else 3751 3062 if test -n "$uudecode"; then … … 3757 3068 IFS=$as_save_IFS 3758 3069 test -z "$as_dir" && as_dir=. 3759 3760 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then3070 for ac_exec_ext in '' $ac_executable_extensions; do 3071 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 3761 3072 ac_cv_prog_uudecode="yes" 3762 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&53073 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 3763 3074 break 2 3764 3075 fi 3765 3076 done 3766 done 3767 IFS=$as_save_IFS 3077 done 3768 3078 3769 3079 fi … … 3771 3081 uudecode=$ac_cv_prog_uudecode 3772 3082 if test -n "$uudecode"; then 3773 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $uudecode" >&5 3774 $as_echo "$uudecode" >&6; } 3775 else 3776 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 3777 $as_echo "no" >&6; } 3778 fi 3779 3083 echo "$as_me:$LINENO: result: $uudecode" >&5 3084 echo "${ECHO_T}$uudecode" >&6 3085 else 3086 echo "$as_me:$LINENO: result: no" >&5 3087 echo "${ECHO_T}no" >&6 3088 fi 3780 3089 3781 3090 if test x$uudecode = xyes; then 3782 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if uudecode can decode base 64 file" >&53783 $as_echo_n "checking if uudecode can decode base 64 file... " >&6; } 3784 if test "${ac_cv_prog_uudecode_base64+set}" = set; then :3785 $as_echo_n "(cached)" >&63091 echo "$as_me:$LINENO: checking if uudecode can decode base 64 file" >&5 3092 echo $ECHO_N "checking if uudecode can decode base 64 file... $ECHO_C" >&6 3093 if test "${ac_cv_prog_uudecode_base64+set}" = set; then 3094 echo $ECHO_N "(cached) $ECHO_C" >&6 3786 3095 else 3787 3096 … … 3800 3109 ac_cv_prog_uudecode_base64=yes 3801 3110 else 3802 echo "configure: 3 802: uudecode had trouble decoding base 64 file 'Test.uue'" >&53111 echo "configure: 3111: uudecode had trouble decoding base 64 file 'Test.uue'" >&5 3803 3112 echo "configure: failed file was:" >&5 3804 3113 cat Test.uue >&5 … … 3807 3116 rm -f Test.uue 3808 3117 fi 3809 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_uudecode_base64" >&53810 $as_echo "$ac_cv_prog_uudecode_base64" >&6; } 3118 echo "$as_me:$LINENO: result: $ac_cv_prog_uudecode_base64" >&5 3119 echo "${ECHO_T}$ac_cv_prog_uudecode_base64" >&6 3811 3120 fi 3812 3121 if test x$ac_cv_prog_uudecode_base64 != xyes; then 3813 3122 rm -f Test.class 3814 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: I have to compile Test.class from scratch" >&53815 $as_echo "$as_me: WARNING: I have to compile Test.class from scratch" >&2;}3123 { echo "$as_me:$LINENO: WARNING: I have to compile Test.class from scratch" >&5 3124 echo "$as_me: WARNING: I have to compile Test.class from scratch" >&2;} 3816 3125 if test x$ac_cv_prog_javac_works = xno; then 3817 as_fn_error $? "Cannot compile java source. $JAVAC does not work properly" "$LINENO" 5 3126 { { echo "$as_me:$LINENO: error: Cannot compile java source. $JAVAC does not work properly" >&5 3127 echo "$as_me: error: Cannot compile java source. $JAVAC does not work properly" >&2;} 3128 { (exit 1); exit 1; }; } 3818 3129 fi 3819 3130 if test x$ac_cv_prog_javac_works = x; then … … 3825 3136 # Extract the first word of "$ac_prog", so it can be a program name with args. 3826 3137 set dummy $ac_prog; ac_word=$2 3827 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&53828 $as_echo_n "checking for $ac_word... " >&6; } 3829 if test "${ac_cv_prog_JAVAC+set}" = set; then :3830 $as_echo_n "(cached)" >&63138 echo "$as_me:$LINENO: checking for $ac_word" >&5 3139 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 3140 if test "${ac_cv_prog_JAVAC+set}" = set; then 3141 echo $ECHO_N "(cached) $ECHO_C" >&6 3831 3142 else 3832 3143 if test -n "$JAVAC"; then … … 3838 3149 IFS=$as_save_IFS 3839 3150 test -z "$as_dir" && as_dir=. 3840 3841 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then3151 for ac_exec_ext in '' $ac_executable_extensions; do 3152 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 3842 3153 ac_cv_prog_JAVAC="$ac_prog" 3843 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&53154 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 3844 3155 break 2 3845 3156 fi 3846 3157 done 3847 done 3848 IFS=$as_save_IFS 3158 done 3849 3159 3850 3160 fi … … 3852 3162 JAVAC=$ac_cv_prog_JAVAC 3853 3163 if test -n "$JAVAC"; then 3854 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVAC" >&5 3855 $as_echo "$JAVAC" >&6; } 3856 else 3857 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 3858 $as_echo "no" >&6; } 3859 fi 3860 3164 echo "$as_me:$LINENO: result: $JAVAC" >&5 3165 echo "${ECHO_T}$JAVAC" >&6 3166 else 3167 echo "$as_me:$LINENO: result: no" >&5 3168 echo "${ECHO_T}no" >&6 3169 fi 3861 3170 3862 3171 test -n "$JAVAC" && break … … 3868 3177 # Extract the first word of "$ac_prog", so it can be a program name with args. 3869 3178 set dummy $ac_prog; ac_word=$2 3870 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&53871 $as_echo_n "checking for $ac_word... " >&6; } 3872 if test "${ac_cv_prog_JAVAC+set}" = set; then :3873 $as_echo_n "(cached)" >&63179 echo "$as_me:$LINENO: checking for $ac_word" >&5 3180 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 3181 if test "${ac_cv_prog_JAVAC+set}" = set; then 3182 echo $ECHO_N "(cached) $ECHO_C" >&6 3874 3183 else 3875 3184 if test -n "$JAVAC"; then … … 3881 3190 IFS=$as_save_IFS 3882 3191 test -z "$as_dir" && as_dir=. 3883 3884 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then3192 for ac_exec_ext in '' $ac_executable_extensions; do 3193 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 3885 3194 ac_cv_prog_JAVAC="$ac_prog" 3886 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&53195 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 3887 3196 break 2 3888 3197 fi 3889 3198 done 3890 done 3891 IFS=$as_save_IFS 3199 done 3892 3200 3893 3201 fi … … 3895 3203 JAVAC=$ac_cv_prog_JAVAC 3896 3204 if test -n "$JAVAC"; then 3897 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVAC" >&5 3898 $as_echo "$JAVAC" >&6; } 3899 else 3900 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 3901 $as_echo "no" >&6; } 3902 fi 3903 3205 echo "$as_me:$LINENO: result: $JAVAC" >&5 3206 echo "${ECHO_T}$JAVAC" >&6 3207 else 3208 echo "$as_me:$LINENO: result: no" >&5 3209 echo "${ECHO_T}no" >&6 3210 fi 3904 3211 3905 3212 test -n "$JAVAC" && break … … 3908 3215 3909 3216 fi 3910 test "x$JAVAC" = x && as_fn_error $? "no acceptable Java compiler found in \$PATH" "$LINENO" 5 3217 test "x$JAVAC" = x && { { echo "$as_me:$LINENO: error: no acceptable Java compiler found in \$PATH" >&5 3218 echo "$as_me: error: no acceptable Java compiler found in \$PATH" >&2;} 3219 { (exit 1); exit 1; }; } 3911 3220 else 3912 3221 echo "Checking for javac... $JAVAC" … … 3915 3224 3916 3225 3917 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $JAVAC works" >&53918 $as_echo_n "checking if $JAVAC works... " >&6; } 3919 if test "${ac_cv_prog_javac_works+set}" = set; then :3920 $as_echo_n "(cached)" >&63226 echo "$as_me:$LINENO: checking if $JAVAC works" >&5 3227 echo $ECHO_N "checking if $JAVAC works... $ECHO_C" >&6 3228 if test "${ac_cv_prog_javac_works+set}" = set; then 3229 echo $ECHO_N "(cached) $ECHO_C" >&6 3921 3230 else 3922 3231 … … 3924 3233 CLASS_TEST=Test.class 3925 3234 cat << \EOF > $JAVA_TEST 3926 /* #line 3 926"configure" */3235 /* #line 3235 "configure" */ 3927 3236 public class Test { 3928 3237 } 3929 3238 EOF 3930 3239 if { ac_try='$JAVAC $JAVACFLAGS $JAVA_TEST' 3931 { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; }>&53932 (eval $ac_try) 2>&5 3933 ac_status=$? 3934 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&53935 test $ac_status = 0; }; } >/dev/null 2>&1; then3240 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3241 (eval $ac_try) 2>&5 3242 ac_status=$? 3243 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3244 (exit $ac_status); }; } >/dev/null 2>&1; then 3936 3245 ac_cv_prog_javac_works=yes 3937 3246 else 3938 as_fn_error $? "The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" "$LINENO" 5 3247 { { echo "$as_me:$LINENO: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&5 3248 echo "$as_me: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&2;} 3249 { (exit 1); exit 1; }; } 3939 3250 echo "configure: failed program was:" >&5 3940 3251 cat $JAVA_TEST >&5 … … 3943 3254 3944 3255 fi 3945 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_javac_works" >&53946 $as_echo "$ac_cv_prog_javac_works" >&6; } 3256 echo "$as_me:$LINENO: result: $ac_cv_prog_javac_works" >&5 3257 echo "${ECHO_T}$ac_cv_prog_javac_works" >&6 3947 3258 if test "x$JAVACFLAGS" = x ; then 3948 3259 JAVACFLAGS="-source 1.4 -target 1.4" … … 3953 3264 fi 3954 3265 fi 3955 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $JAVA works" >&53956 $as_echo_n "checking if $JAVA works... " >&6; } 3957 if test "${ac_cv_prog_java_works+set}" = set; then :3958 $as_echo_n "(cached)" >&63266 echo "$as_me:$LINENO: checking if $JAVA works" >&5 3267 echo $ECHO_N "checking if $JAVA works... $ECHO_C" >&6 3268 if test "${ac_cv_prog_java_works+set}" = set; then 3269 echo $ECHO_N "(cached) $ECHO_C" >&6 3959 3270 else 3960 3271 … … 3963 3274 TEST=Test 3964 3275 cat << \EOF > $JAVA_TEST 3965 /* [#]line 3 965"configure" */3276 /* [#]line 3276 "configure" */ 3966 3277 public class Test { 3967 3278 public static void main (String args[]) { … … 3971 3282 if test x$ac_cv_prog_uudecode_base64 != xyes; then 3972 3283 if { ac_try='$JAVAC $JAVACFLAGS $JAVA_TEST' 3973 { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; }>&53974 (eval $ac_try) 2>&5 3975 ac_status=$? 3976 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&53977 test $ac_status = 0; }; } && test -s $CLASS_TEST; then3284 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3285 (eval $ac_try) 2>&5 3286 ac_status=$? 3287 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3288 (exit $ac_status); }; } && test -s $CLASS_TEST; then 3978 3289 : 3979 3290 else 3980 3291 echo "configure: failed program was:" >&5 3981 3292 cat $JAVA_TEST >&5 3982 as_fn_error $? "The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" "$LINENO" 5 3293 { { echo "$as_me:$LINENO: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&5 3294 echo "$as_me: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&2;} 3295 { (exit 1); exit 1; }; } 3983 3296 fi 3984 3297 fi 3985 3298 if { ac_try='$JAVA $JAVAFLAGS $TEST' 3986 { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; }>&53987 (eval $ac_try) 2>&5 3988 ac_status=$? 3989 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&53990 test $ac_status = 0; }; } >/dev/null 2>&1; then3299 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 3300 (eval $ac_try) 2>&5 3301 ac_status=$? 3302 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3303 (exit $ac_status); }; } >/dev/null 2>&1; then 3991 3304 ac_cv_prog_java_works=yes 3992 3305 else 3993 3306 echo "configure: failed program was:" >&5 3994 3307 cat $JAVA_TEST >&5 3995 as_fn_error $? "The Java VM $JAVA failed (see config.log, check the CLASSPATH?)" "$LINENO" 5 3308 { { echo "$as_me:$LINENO: error: The Java VM $JAVA failed (see config.log, check the CLASSPATH?)" >&5 3309 echo "$as_me: error: The Java VM $JAVA failed (see config.log, check the CLASSPATH?)" >&2;} 3310 { (exit 1); exit 1; }; } 3996 3311 fi 3997 3312 rm -fr $JAVA_TEST $CLASS_TEST Test.uue 3998 3313 3999 3314 fi 4000 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_java_works" >&54001 $as_echo "$ac_cv_prog_java_works" >&6; } 3315 echo "$as_me:$LINENO: result: $ac_cv_prog_java_works" >&5 3316 echo "${ECHO_T}$ac_cv_prog_java_works" >&6 4002 3317 4003 3318 … … 4008 3323 # Extract the first word of "$ac_prog", so it can be a program name with args. 4009 3324 set dummy $ac_prog; ac_word=$2 4010 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&54011 $as_echo_n "checking for $ac_word... " >&6; } 4012 if test "${ac_cv_prog_AWK+set}" = set; then :4013 $as_echo_n "(cached)" >&63325 echo "$as_me:$LINENO: checking for $ac_word" >&5 3326 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 3327 if test "${ac_cv_prog_AWK+set}" = set; then 3328 echo $ECHO_N "(cached) $ECHO_C" >&6 4014 3329 else 4015 3330 if test -n "$AWK"; then … … 4021 3336 IFS=$as_save_IFS 4022 3337 test -z "$as_dir" && as_dir=. 4023 4024 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then3338 for ac_exec_ext in '' $ac_executable_extensions; do 3339 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 4025 3340 ac_cv_prog_AWK="$ac_prog" 4026 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&53341 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 4027 3342 break 2 4028 3343 fi 4029 3344 done 4030 done 4031 IFS=$as_save_IFS 3345 done 4032 3346 4033 3347 fi … … 4035 3349 AWK=$ac_cv_prog_AWK 4036 3350 if test -n "$AWK"; then 4037 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 4038 $as_echo "$AWK" >&6; } 4039 else 4040 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 4041 $as_echo "no" >&6; } 4042 fi 4043 3351 echo "$as_me:$LINENO: result: $AWK" >&5 3352 echo "${ECHO_T}$AWK" >&6 3353 else 3354 echo "$as_me:$LINENO: result: no" >&5 3355 echo "${ECHO_T}no" >&6 3356 fi 4044 3357 4045 3358 test -n "$AWK" && break … … 4050 3363 # Extract the first word of "$ac_prog", so it can be a program name with args. 4051 3364 set dummy $ac_prog; ac_word=$2 4052 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&54053 $as_echo_n "checking for $ac_word... " >&6; } 4054 if test "${ac_cv_prog_YACC+set}" = set; then :4055 $as_echo_n "(cached)" >&63365 echo "$as_me:$LINENO: checking for $ac_word" >&5 3366 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 3367 if test "${ac_cv_prog_YACC+set}" = set; then 3368 echo $ECHO_N "(cached) $ECHO_C" >&6 4056 3369 else 4057 3370 if test -n "$YACC"; then … … 4063 3376 IFS=$as_save_IFS 4064 3377 test -z "$as_dir" && as_dir=. 4065 4066 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then3378 for ac_exec_ext in '' $ac_executable_extensions; do 3379 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 4067 3380 ac_cv_prog_YACC="$ac_prog" 4068 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&53381 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 4069 3382 break 2 4070 3383 fi 4071 3384 done 4072 done 4073 IFS=$as_save_IFS 3385 done 4074 3386 4075 3387 fi … … 4077 3389 YACC=$ac_cv_prog_YACC 4078 3390 if test -n "$YACC"; then 4079 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YACC" >&5 4080 $as_echo "$YACC" >&6; } 4081 else 4082 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 4083 $as_echo "no" >&6; } 4084 fi 4085 3391 echo "$as_me:$LINENO: result: $YACC" >&5 3392 echo "${ECHO_T}$YACC" >&6 3393 else 3394 echo "$as_me:$LINENO: result: no" >&5 3395 echo "${ECHO_T}no" >&6 3396 fi 4086 3397 4087 3398 test -n "$YACC" && break … … 4090 3401 4091 3402 ac_aux_dir= 4092 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do4093 if test -f "$ac_dir/install-sh"; then3403 for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do 3404 if test -f $ac_dir/install-sh; then 4094 3405 ac_aux_dir=$ac_dir 4095 3406 ac_install_sh="$ac_aux_dir/install-sh -c" 4096 3407 break 4097 elif test -f "$ac_dir/install.sh"; then3408 elif test -f $ac_dir/install.sh; then 4098 3409 ac_aux_dir=$ac_dir 4099 3410 ac_install_sh="$ac_aux_dir/install.sh -c" 4100 3411 break 4101 elif test -f "$ac_dir/shtool"; then3412 elif test -f $ac_dir/shtool; then 4102 3413 ac_aux_dir=$ac_dir 4103 3414 ac_install_sh="$ac_aux_dir/shtool install -c" … … 4106 3417 done 4107 3418 if test -z "$ac_aux_dir"; then 4108 as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 4109 fi 4110 4111 # These three variables are undocumented and unsupported, 4112 # and are intended to be withdrawn in a future Autoconf release. 4113 # They can cause serious problems if a builder's source tree is in a directory 4114 # whose full name contains unusual characters. 4115 ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. 4116 ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. 4117 ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. 4118 3419 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 3420 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} 3421 { (exit 1); exit 1; }; } 3422 fi 3423 ac_config_guess="$SHELL $ac_aux_dir/config.guess" 3424 ac_config_sub="$SHELL $ac_aux_dir/config.sub" 3425 ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. 4119 3426 4120 3427 # Make sure we can run config.sub. 4121 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || 4122 as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 4123 4124 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 4125 $as_echo_n "checking build system type... " >&6; } 4126 if test "${ac_cv_build+set}" = set; then : 4127 $as_echo_n "(cached) " >&6 4128 else 4129 ac_build_alias=$build_alias 4130 test "x$ac_build_alias" = x && 4131 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` 4132 test "x$ac_build_alias" = x && 4133 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 4134 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || 4135 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 4136 4137 fi 4138 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 4139 $as_echo "$ac_cv_build" >&6; } 4140 case $ac_cv_build in 4141 *-*-*) ;; 4142 *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5 ;; 4143 esac 3428 $ac_config_sub sun4 >/dev/null 2>&1 || 3429 { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 3430 echo "$as_me: error: cannot run $ac_config_sub" >&2;} 3431 { (exit 1); exit 1; }; } 3432 3433 echo "$as_me:$LINENO: checking build system type" >&5 3434 echo $ECHO_N "checking build system type... $ECHO_C" >&6 3435 if test "${ac_cv_build+set}" = set; then 3436 echo $ECHO_N "(cached) $ECHO_C" >&6 3437 else 3438 ac_cv_build_alias=$build_alias 3439 test -z "$ac_cv_build_alias" && 3440 ac_cv_build_alias=`$ac_config_guess` 3441 test -z "$ac_cv_build_alias" && 3442 { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 3443 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} 3444 { (exit 1); exit 1; }; } 3445 ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || 3446 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5 3447 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;} 3448 { (exit 1); exit 1; }; } 3449 3450 fi 3451 echo "$as_me:$LINENO: result: $ac_cv_build" >&5 3452 echo "${ECHO_T}$ac_cv_build" >&6 4144 3453 build=$ac_cv_build 4145 ac_save_IFS=$IFS; IFS='-' 4146 set x $ac_cv_build 4147 shift 4148 build_cpu=$1 4149 build_vendor=$2 4150 shift; shift 4151 # Remember, the first character of IFS is used to create $*, 4152 # except with old shells: 4153 build_os=$* 4154 IFS=$ac_save_IFS 4155 case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac 4156 4157 4158 { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 4159 $as_echo_n "checking host system type... " >&6; } 4160 if test "${ac_cv_host+set}" = set; then : 4161 $as_echo_n "(cached) " >&6 4162 else 4163 if test "x$host_alias" = x; then 4164 ac_cv_host=$ac_cv_build 4165 else 4166 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || 4167 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 4168 fi 4169 4170 fi 4171 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 4172 $as_echo "$ac_cv_host" >&6; } 4173 case $ac_cv_host in 4174 *-*-*) ;; 4175 *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5 ;; 4176 esac 3454 build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` 3455 build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` 3456 build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` 3457 3458 3459 echo "$as_me:$LINENO: checking host system type" >&5 3460 echo $ECHO_N "checking host system type... $ECHO_C" >&6 3461 if test "${ac_cv_host+set}" = set; then 3462 echo $ECHO_N "(cached) $ECHO_C" >&6 3463 else 3464 ac_cv_host_alias=$host_alias 3465 test -z "$ac_cv_host_alias" && 3466 ac_cv_host_alias=$ac_cv_build_alias 3467 ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || 3468 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5 3469 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} 3470 { (exit 1); exit 1; }; } 3471 3472 fi 3473 echo "$as_me:$LINENO: result: $ac_cv_host" >&5 3474 echo "${ECHO_T}$ac_cv_host" >&6 4177 3475 host=$ac_cv_host 4178 ac_save_IFS=$IFS; IFS='-' 4179 set x $ac_cv_host 4180 shift 4181 host_cpu=$1 4182 host_vendor=$2 4183 shift; shift 4184 # Remember, the first character of IFS is used to create $*, 4185 # except with old shells: 4186 host_os=$* 4187 IFS=$ac_save_IFS 4188 case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac 4189 4190 4191 { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 4192 $as_echo_n "checking target system type... " >&6; } 4193 if test "${ac_cv_target+set}" = set; then : 4194 $as_echo_n "(cached) " >&6 4195 else 4196 if test "x$target_alias" = x; then 4197 ac_cv_target=$ac_cv_host 4198 else 4199 ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || 4200 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 4201 fi 4202 4203 fi 4204 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 4205 $as_echo "$ac_cv_target" >&6; } 4206 case $ac_cv_target in 4207 *-*-*) ;; 4208 *) as_fn_error $? "invalid value of canonical target" "$LINENO" 5 ;; 4209 esac 3476 host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` 3477 host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` 3478 host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` 3479 3480 3481 echo "$as_me:$LINENO: checking target system type" >&5 3482 echo $ECHO_N "checking target system type... $ECHO_C" >&6 3483 if test "${ac_cv_target+set}" = set; then 3484 echo $ECHO_N "(cached) $ECHO_C" >&6 3485 else 3486 ac_cv_target_alias=$target_alias 3487 test "x$ac_cv_target_alias" = "x" && 3488 ac_cv_target_alias=$ac_cv_host_alias 3489 ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || 3490 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5 3491 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} 3492 { (exit 1); exit 1; }; } 3493 3494 fi 3495 echo "$as_me:$LINENO: result: $ac_cv_target" >&5 3496 echo "${ECHO_T}$ac_cv_target" >&6 4210 3497 target=$ac_cv_target 4211 ac_save_IFS=$IFS; IFS='-' 4212 set x $ac_cv_target 4213 shift 4214 target_cpu=$1 4215 target_vendor=$2 4216 shift; shift 4217 # Remember, the first character of IFS is used to create $*, 4218 # except with old shells: 4219 target_os=$* 4220 IFS=$ac_save_IFS 4221 case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac 3498 target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` 3499 target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` 3500 target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` 4222 3501 4223 3502 … … 4228 3507 NONENONEs,x,x, && 4229 3508 program_prefix=${target_alias}- 4230 4231 3509 # Find a good install program. We prefer a C program (faster), 4232 3510 # so one script is as good as another. But avoid the broken or … … 4242 3520 # OS/2's system install, which has a completely different semantic 4243 3521 # ./install, which can be erroneously created by make from ./install.sh. 4244 # Reject install programs that cannot install multiple files. 4245 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 4246 $as_echo_n "checking for a BSD-compatible install... " >&6; } 3522 echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 3523 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 4247 3524 if test -z "$INSTALL"; then 4248 if test "${ac_cv_path_install+set}" = set; then :4249 $as_echo_n "(cached)" >&63525 if test "${ac_cv_path_install+set}" = set; then 3526 echo $ECHO_N "(cached) $ECHO_C" >&6 4250 3527 else 4251 3528 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR … … 4254 3531 IFS=$as_save_IFS 4255 3532 test -z "$as_dir" && as_dir=. 4256 4257 case $as_dir/ in #((4258 ./ | .// | / [cC]/* | \3533 # Account for people who put trailing slashes in PATH elements. 3534 case $as_dir/ in 3535 ./ | .// | /cC/* | \ 4259 3536 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ 4260 ?: [\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \3537 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ 4261 3538 /usr/ucb/* ) ;; 4262 3539 *) … … 4266 3543 for ac_prog in ginstall scoinst install; do 4267 3544 for ac_exec_ext in '' $ac_executable_extensions; do 4268 if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then3545 if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then 4269 3546 if test $ac_prog = install && 4270 3547 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then … … 4276 3553 : 4277 3554 else 4278 rm -rf conftest.one conftest.two conftest.dir 4279 echo one > conftest.one 4280 echo two > conftest.two 4281 mkdir conftest.dir 4282 if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && 4283 test -s conftest.one && test -s conftest.two && 4284 test -s conftest.dir/conftest.one && 4285 test -s conftest.dir/conftest.two 4286 then 4287 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" 4288 break 3 4289 fi 3555 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" 3556 break 3 4290 3557 fi 4291 3558 fi … … 4294 3561 ;; 4295 3562 esac 4296 4297 done 4298 IFS=$as_save_IFS 4299 4300 rm -rf conftest.one conftest.two conftest.dir 3563 done 3564 4301 3565 4302 3566 fi … … 4304 3568 INSTALL=$ac_cv_path_install 4305 3569 else 4306 # As a last resort, use the slow shell script. Don't cache a4307 # valuefor INSTALL within a source directory, because that will3570 # As a last resort, use the slow shell script. We don't cache a 3571 # path for INSTALL within a source directory, because that will 4308 3572 # break other packages using the cache if that directory is 4309 # removed, or if the value is a relative name.3573 # removed, or if the path is relative. 4310 3574 INSTALL=$ac_install_sh 4311 3575 fi 4312 3576 fi 4313 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&54314 $as_echo "$INSTALL" >&6; } 3577 echo "$as_me:$LINENO: result: $INSTALL" >&5 3578 echo "${ECHO_T}$INSTALL" >&6 4315 3579 4316 3580 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. … … 4322 3586 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' 4323 3587 4324 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&54325 $as_echo_n "checking whether ln -s works... " >&6; } 3588 echo "$as_me:$LINENO: checking whether ln -s works" >&5 3589 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 4326 3590 LN_S=$as_ln_s 4327 3591 if test "$LN_S" = "ln -s"; then 4328 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 4329 $as_echo "yes" >&6; } 4330 else 4331 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 4332 $as_echo "no, using $LN_S" >&6; } 4333 fi 4334 4335 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 4336 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } 4337 set x ${MAKE-make} 4338 ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` 4339 if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\"" = set; then : 4340 $as_echo_n "(cached) " >&6 3592 echo "$as_me:$LINENO: result: yes" >&5 3593 echo "${ECHO_T}yes" >&6 3594 else 3595 echo "$as_me:$LINENO: result: no, using $LN_S" >&5 3596 echo "${ECHO_T}no, using $LN_S" >&6 3597 fi 3598 3599 echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 3600 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6 3601 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` 3602 if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then 3603 echo $ECHO_N "(cached) $ECHO_C" >&6 4341 3604 else 4342 3605 cat >conftest.make <<\_ACEOF 4343 SHELL = /bin/sh4344 3606 all: 4345 @echo ' @@@%%%=$(MAKE)=@@@%%%'4346 _ACEOF 4347 # GNU make sometimes prints "make[1]: Entering 4348 case `${MAKE-make} -f conftest.make 2>/dev/null` in 4349 *@@@%%%=?*=@@@%%%*) 4350 eval ac_cv_prog_make_${ac_make}_set=yes;;4351 *) 4352 eval ac_cv_prog_make_${ac_make}_set=no;;4353 esac 3607 @echo 'ac_maketemp="$(MAKE)"' 3608 _ACEOF 3609 # GNU make sometimes prints "make[1]: Entering...", which would confuse us. 3610 eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` 3611 if test -n "$ac_maketemp"; then 3612 eval ac_cv_prog_make_${ac_make}_set=yes 3613 else 3614 eval ac_cv_prog_make_${ac_make}_set=no 3615 fi 4354 3616 rm -f conftest.make 4355 3617 fi 4356 if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then4357 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&54358 $as_echo "yes" >&6; } 3618 if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then 3619 echo "$as_me:$LINENO: result: yes" >&5 3620 echo "${ECHO_T}yes" >&6 4359 3621 SET_MAKE= 4360 3622 else 4361 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&54362 $as_echo "no" >&6; } 3623 echo "$as_me:$LINENO: result: no" >&5 3624 echo "${ECHO_T}no" >&6 4363 3625 SET_MAKE="MAKE=${MAKE-make}" 4364 3626 fi … … 4367 3629 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. 4368 3630 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 4369 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&54370 $as_echo_n "checking for $ac_word... " >&6; } 4371 if test "${ac_cv_prog_RANLIB+set}" = set; then :4372 $as_echo_n "(cached)" >&63631 echo "$as_me:$LINENO: checking for $ac_word" >&5 3632 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 3633 if test "${ac_cv_prog_RANLIB+set}" = set; then 3634 echo $ECHO_N "(cached) $ECHO_C" >&6 4373 3635 else 4374 3636 if test -n "$RANLIB"; then … … 4380 3642 IFS=$as_save_IFS 4381 3643 test -z "$as_dir" && as_dir=. 4382 4383 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then3644 for ac_exec_ext in '' $ac_executable_extensions; do 3645 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 4384 3646 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 4385 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&53647 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 4386 3648 break 2 4387 3649 fi 4388 3650 done 4389 done 4390 IFS=$as_save_IFS 3651 done 4391 3652 4392 3653 fi … … 4394 3655 RANLIB=$ac_cv_prog_RANLIB 4395 3656 if test -n "$RANLIB"; then 4396 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 4397 $as_echo "$RANLIB" >&6; } 4398 else 4399 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 4400 $as_echo "no" >&6; } 4401 fi 4402 3657 echo "$as_me:$LINENO: result: $RANLIB" >&5 3658 echo "${ECHO_T}$RANLIB" >&6 3659 else 3660 echo "$as_me:$LINENO: result: no" >&5 3661 echo "${ECHO_T}no" >&6 3662 fi 4403 3663 4404 3664 fi … … 4407 3667 # Extract the first word of "ranlib", so it can be a program name with args. 4408 3668 set dummy ranlib; ac_word=$2 4409 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&54410 $as_echo_n "checking for $ac_word... " >&6; } 4411 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :4412 $as_echo_n "(cached)" >&63669 echo "$as_me:$LINENO: checking for $ac_word" >&5 3670 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 3671 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then 3672 echo $ECHO_N "(cached) $ECHO_C" >&6 4413 3673 else 4414 3674 if test -n "$ac_ct_RANLIB"; then … … 4420 3680 IFS=$as_save_IFS 4421 3681 test -z "$as_dir" && as_dir=. 4422 4423 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then3682 for ac_exec_ext in '' $ac_executable_extensions; do 3683 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 4424 3684 ac_cv_prog_ac_ct_RANLIB="ranlib" 4425 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&53685 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 4426 3686 break 2 4427 3687 fi 4428 3688 done 4429 4430 IFS=$as_save_IFS 4431 3689 done 3690 3691 test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":" 4432 3692 fi 4433 3693 fi 4434 3694 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB 4435 3695 if test -n "$ac_ct_RANLIB"; then 4436 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 4437 $as_echo "$ac_ct_RANLIB" >&6; } 4438 else 4439 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 4440 $as_echo "no" >&6; } 4441 fi 4442 4443 if test "x$ac_ct_RANLIB" = x; then 4444 RANLIB=":" 4445 else 4446 case $cross_compiling:$ac_tool_warned in 4447 yes:) 4448 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 4449 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 4450 ac_tool_warned=yes ;; 4451 esac 4452 RANLIB=$ac_ct_RANLIB 4453 fi 3696 echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 3697 echo "${ECHO_T}$ac_ct_RANLIB" >&6 3698 else 3699 echo "$as_me:$LINENO: result: no" >&5 3700 echo "${ECHO_T}no" >&6 3701 fi 3702 3703 RANLIB=$ac_ct_RANLIB 4454 3704 else 4455 3705 RANLIB="$ac_cv_prog_RANLIB" … … 4457 3707 4458 3708 4459 { $as_echo "$as_me:${as_lineno-$LINENO}: checking to see if architecture is 64-bit" >&54460 $as_echo_n "checking to see if architecture is 64-bit... " >&6; } 3709 echo "$as_me:$LINENO: checking to see if architecture is 64-bit" >&5 3710 echo $ECHO_N "checking to see if architecture is 64-bit... $ECHO_C" >&6 4461 3711 arch_64bit=no 4462 3712 case "$host_cpu" in … … 4465 3715 4466 3716 if test "$arch_64bit" = yes; then 4467 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&54468 $as_echo "yes" >&6; } 3717 echo "$as_me:$LINENO: result: yes" >&5 3718 echo "${ECHO_T}yes" >&6 4469 3719 if test -z "$COMPAT32BITFLAGS" ; then 4470 3720 COMPAT32BITFLAGS="-m32" 4471 3721 fi 4472 3722 else 4473 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&54474 $as_echo "no" >&6; } 3723 echo "$as_me:$LINENO: result: no" >&5 3724 echo "${ECHO_T}no" >&6 4475 3725 if test -z "$COMPAT32BITFLAGS" ; then 4476 3726 COMPAT32BITFLAGS= … … 4510 3760 #do test of MICO_VER 4511 3761 if test MICO_VER != 0; then 4512 $as_echo "#define MICO_VER 1" >>confdefs.h 3762 cat >>confdefs.h <<\_ACEOF 3763 #define MICO_VER 1 3764 _ACEOF 4513 3765 4514 3766 … … 4523 3775 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 4524 3776 ac_compiler_gnu=$ac_cv_c_compiler_gnu 4525 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&54526 $as_echo_n "checking how to run the C preprocessor... " >&6; } 3777 echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 3778 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 4527 3779 # On Suns, sometimes $CPP names a directory. 4528 3780 if test -n "$CPP" && test -d "$CPP"; then … … 4530 3782 fi 4531 3783 if test -z "$CPP"; then 4532 if test "${ac_cv_prog_CPP+set}" = set; then :4533 $as_echo_n "(cached)" >&63784 if test "${ac_cv_prog_CPP+set}" = set; then 3785 echo $ECHO_N "(cached) $ECHO_C" >&6 4534 3786 else 4535 3787 # Double quotes because CPP needs to be expanded … … 4545 3797 # On the NeXT, cc -E runs the code through the compiler's parser, 4546 3798 # not just through cpp. "Syntax error" is here to catch this case. 4547 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3799 cat >conftest.$ac_ext <<_ACEOF 3800 /* confdefs.h. */ 3801 _ACEOF 3802 cat confdefs.h >>conftest.$ac_ext 3803 cat >>conftest.$ac_ext <<_ACEOF 4548 3804 /* end confdefs.h. */ 4549 3805 #ifdef __STDC__ … … 4554 3810 Syntax error 4555 3811 _ACEOF 4556 if ac_fn_c_try_cpp "$LINENO"; then : 4557 4558 else 3812 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 3813 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 3814 ac_status=$? 3815 grep -v '^ *+' conftest.er1 >conftest.err 3816 rm -f conftest.er1 3817 cat conftest.err >&5 3818 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3819 (exit $ac_status); } >/dev/null; then 3820 if test -s conftest.err; then 3821 ac_cpp_err=$ac_c_preproc_warn_flag 3822 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 3823 else 3824 ac_cpp_err= 3825 fi 3826 else 3827 ac_cpp_err=yes 3828 fi 3829 if test -z "$ac_cpp_err"; then 3830 : 3831 else 3832 echo "$as_me: failed program was:" >&5 3833 sed 's/^/| /' conftest.$ac_ext >&5 3834 4559 3835 # Broken: fails on valid input. 4560 3836 continue 4561 3837 fi 4562 rm -f conftest.err conftest. i conftest.$ac_ext4563 4564 # OK, works on sane cases. Now check whether non existent headers3838 rm -f conftest.err conftest.$ac_ext 3839 3840 # OK, works on sane cases. Now check whether non-existent headers 4565 3841 # can be detected and how. 4566 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3842 cat >conftest.$ac_ext <<_ACEOF 3843 /* confdefs.h. */ 3844 _ACEOF 3845 cat confdefs.h >>conftest.$ac_ext 3846 cat >>conftest.$ac_ext <<_ACEOF 4567 3847 /* end confdefs.h. */ 4568 3848 #include <ac_nonexistent.h> 4569 3849 _ACEOF 4570 if ac_fn_c_try_cpp "$LINENO"; then : 3850 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 3851 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 3852 ac_status=$? 3853 grep -v '^ *+' conftest.er1 >conftest.err 3854 rm -f conftest.er1 3855 cat conftest.err >&5 3856 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3857 (exit $ac_status); } >/dev/null; then 3858 if test -s conftest.err; then 3859 ac_cpp_err=$ac_c_preproc_warn_flag 3860 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 3861 else 3862 ac_cpp_err= 3863 fi 3864 else 3865 ac_cpp_err=yes 3866 fi 3867 if test -z "$ac_cpp_err"; then 4571 3868 # Broken: success on invalid input. 4572 3869 continue 4573 3870 else 3871 echo "$as_me: failed program was:" >&5 3872 sed 's/^/| /' conftest.$ac_ext >&5 3873 4574 3874 # Passes both tests. 4575 3875 ac_preproc_ok=: 4576 3876 break 4577 3877 fi 4578 rm -f conftest.err conftest. i conftest.$ac_ext3878 rm -f conftest.err conftest.$ac_ext 4579 3879 4580 3880 done 4581 3881 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 4582 rm -f conftest. i conftest.err conftest.$ac_ext4583 if $ac_preproc_ok; then :3882 rm -f conftest.err conftest.$ac_ext 3883 if $ac_preproc_ok; then 4584 3884 break 4585 3885 fi … … 4593 3893 ac_cv_prog_CPP=$CPP 4594 3894 fi 4595 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&54596 $as_echo "$CPP" >&6; } 3895 echo "$as_me:$LINENO: result: $CPP" >&5 3896 echo "${ECHO_T}$CPP" >&6 4597 3897 ac_preproc_ok=false 4598 3898 for ac_c_preproc_warn_flag in '' yes … … 4604 3904 # On the NeXT, cc -E runs the code through the compiler's parser, 4605 3905 # not just through cpp. "Syntax error" is here to catch this case. 4606 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3906 cat >conftest.$ac_ext <<_ACEOF 3907 /* confdefs.h. */ 3908 _ACEOF 3909 cat confdefs.h >>conftest.$ac_ext 3910 cat >>conftest.$ac_ext <<_ACEOF 4607 3911 /* end confdefs.h. */ 4608 3912 #ifdef __STDC__ … … 4613 3917 Syntax error 4614 3918 _ACEOF 4615 if ac_fn_c_try_cpp "$LINENO"; then : 4616 4617 else 3919 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 3920 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 3921 ac_status=$? 3922 grep -v '^ *+' conftest.er1 >conftest.err 3923 rm -f conftest.er1 3924 cat conftest.err >&5 3925 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3926 (exit $ac_status); } >/dev/null; then 3927 if test -s conftest.err; then 3928 ac_cpp_err=$ac_c_preproc_warn_flag 3929 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 3930 else 3931 ac_cpp_err= 3932 fi 3933 else 3934 ac_cpp_err=yes 3935 fi 3936 if test -z "$ac_cpp_err"; then 3937 : 3938 else 3939 echo "$as_me: failed program was:" >&5 3940 sed 's/^/| /' conftest.$ac_ext >&5 3941 4618 3942 # Broken: fails on valid input. 4619 3943 continue 4620 3944 fi 4621 rm -f conftest.err conftest. i conftest.$ac_ext4622 4623 # OK, works on sane cases. Now check whether non existent headers3945 rm -f conftest.err conftest.$ac_ext 3946 3947 # OK, works on sane cases. Now check whether non-existent headers 4624 3948 # can be detected and how. 4625 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3949 cat >conftest.$ac_ext <<_ACEOF 3950 /* confdefs.h. */ 3951 _ACEOF 3952 cat confdefs.h >>conftest.$ac_ext 3953 cat >>conftest.$ac_ext <<_ACEOF 4626 3954 /* end confdefs.h. */ 4627 3955 #include <ac_nonexistent.h> 4628 3956 _ACEOF 4629 if ac_fn_c_try_cpp "$LINENO"; then : 3957 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 3958 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 3959 ac_status=$? 3960 grep -v '^ *+' conftest.er1 >conftest.err 3961 rm -f conftest.er1 3962 cat conftest.err >&5 3963 echo "$as_me:$LINENO: \$? = $ac_status" >&5 3964 (exit $ac_status); } >/dev/null; then 3965 if test -s conftest.err; then 3966 ac_cpp_err=$ac_c_preproc_warn_flag 3967 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 3968 else 3969 ac_cpp_err= 3970 fi 3971 else 3972 ac_cpp_err=yes 3973 fi 3974 if test -z "$ac_cpp_err"; then 4630 3975 # Broken: success on invalid input. 4631 3976 continue 4632 3977 else 3978 echo "$as_me: failed program was:" >&5 3979 sed 's/^/| /' conftest.$ac_ext >&5 3980 4633 3981 # Passes both tests. 4634 3982 ac_preproc_ok=: 4635 3983 break 4636 3984 fi 4637 rm -f conftest.err conftest. i conftest.$ac_ext3985 rm -f conftest.err conftest.$ac_ext 4638 3986 4639 3987 done 4640 3988 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 4641 rm -f conftest.i conftest.err conftest.$ac_ext 4642 if $ac_preproc_ok; then : 4643 4644 else 4645 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 4646 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4647 as_fn_error $? "C preprocessor \"$CPP\" fails sanity check 4648 See \`config.log' for more details" "$LINENO" 5 ; } 3989 rm -f conftest.err conftest.$ac_ext 3990 if $ac_preproc_ok; then 3991 : 3992 else 3993 { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check 3994 See \`config.log' for more details." >&5 3995 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check 3996 See \`config.log' for more details." >&2;} 3997 { (exit 1); exit 1; }; } 4649 3998 fi 4650 3999 … … 4656 4005 4657 4006 4658 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 4659 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } 4660 if test "${ac_cv_path_GREP+set}" = set; then : 4661 $as_echo_n "(cached) " >&6 4662 else 4663 if test -z "$GREP"; then 4664 ac_path_GREP_found=false 4665 # Loop through the user's path and test for each of PROGNAME-LIST 4666 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 4667 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin 4668 do 4669 IFS=$as_save_IFS 4670 test -z "$as_dir" && as_dir=. 4671 for ac_prog in grep ggrep; do 4672 for ac_exec_ext in '' $ac_executable_extensions; do 4673 ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" 4674 { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue 4675 # Check for GNU ac_path_GREP and select it if it is found. 4676 # Check for GNU $ac_path_GREP 4677 case `"$ac_path_GREP" --version 2>&1` in 4678 *GNU*) 4679 ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; 4680 *) 4681 ac_count=0 4682 $as_echo_n 0123456789 >"conftest.in" 4683 while : 4684 do 4685 cat "conftest.in" "conftest.in" >"conftest.tmp" 4686 mv "conftest.tmp" "conftest.in" 4687 cp "conftest.in" "conftest.nl" 4688 $as_echo 'GREP' >> "conftest.nl" 4689 "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break 4690 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break 4691 as_fn_arith $ac_count + 1 && ac_count=$as_val 4692 if test $ac_count -gt ${ac_path_GREP_max-0}; then 4693 # Best one so far, save it but keep looking for a better one 4694 ac_cv_path_GREP="$ac_path_GREP" 4695 ac_path_GREP_max=$ac_count 4007 echo "$as_me:$LINENO: checking for egrep" >&5 4008 echo $ECHO_N "checking for egrep... $ECHO_C" >&6 4009 if test "${ac_cv_prog_egrep+set}" = set; then 4010 echo $ECHO_N "(cached) $ECHO_C" >&6 4011 else 4012 if echo a | (grep -E '(a|b)') >/dev/null 2>&1 4013 then ac_cv_prog_egrep='grep -E' 4014 else ac_cv_prog_egrep='egrep' 4696 4015 fi 4697 # 10*(2^10) chars as input seems more than enough 4698 test $ac_count -gt 10 && break 4016 fi 4017 echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 4018 echo "${ECHO_T}$ac_cv_prog_egrep" >&6 4019 EGREP=$ac_cv_prog_egrep 4020 4021 4022 4023 echo "$as_me:$LINENO: checking for AIX" >&5 4024 echo $ECHO_N "checking for AIX... $ECHO_C" >&6 4025 cat >conftest.$ac_ext <<_ACEOF 4026 /* confdefs.h. */ 4027 _ACEOF 4028 cat confdefs.h >>conftest.$ac_ext 4029 cat >>conftest.$ac_ext <<_ACEOF 4030 /* end confdefs.h. */ 4031 #ifdef _AIX 4032 yes 4033 #endif 4034 4035 _ACEOF 4036 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 4037 $EGREP "yes" >/dev/null 2>&1; then 4038 echo "$as_me:$LINENO: result: yes" >&5 4039 echo "${ECHO_T}yes" >&6 4040 cat >>confdefs.h <<\_ACEOF 4041 #define _ALL_SOURCE 1 4042 _ACEOF 4043 4044 else 4045 echo "$as_me:$LINENO: result: no" >&5 4046 echo "${ECHO_T}no" >&6 4047 fi 4048 rm -f conftest* 4049 4050 4051 echo "$as_me:$LINENO: checking for library containing strerror" >&5 4052 echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6 4053 if test "${ac_cv_search_strerror+set}" = set; then 4054 echo $ECHO_N "(cached) $ECHO_C" >&6 4055 else 4056 ac_func_search_save_LIBS=$LIBS 4057 ac_cv_search_strerror=no 4058 cat >conftest.$ac_ext <<_ACEOF 4059 /* confdefs.h. */ 4060 _ACEOF 4061 cat confdefs.h >>conftest.$ac_ext 4062 cat >>conftest.$ac_ext <<_ACEOF 4063 /* end confdefs.h. */ 4064 4065 /* Override any gcc2 internal prototype to avoid an error. */ 4066 #ifdef __cplusplus 4067 extern "C" 4068 #endif 4069 /* We use char because int might match the return type of a gcc2 4070 builtin and then its argument prototype would still apply. */ 4071 char strerror (); 4072 int 4073 main () 4074 { 4075 strerror (); 4076 ; 4077 return 0; 4078 } 4079 _ACEOF 4080 rm -f conftest.$ac_objext conftest$ac_exeext 4081 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 4082 (eval $ac_link) 2>conftest.er1 4083 ac_status=$? 4084 grep -v '^ *+' conftest.er1 >conftest.err 4085 rm -f conftest.er1 4086 cat conftest.err >&5 4087 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4088 (exit $ac_status); } && 4089 { ac_try='test -z "$ac_c_werror_flag" 4090 || test ! -s conftest.err' 4091 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4092 (eval $ac_try) 2>&5 4093 ac_status=$? 4094 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4095 (exit $ac_status); }; } && 4096 { ac_try='test -s conftest$ac_exeext' 4097 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4098 (eval $ac_try) 2>&5 4099 ac_status=$? 4100 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4101 (exit $ac_status); }; }; then 4102 ac_cv_search_strerror="none required" 4103 else 4104 echo "$as_me: failed program was:" >&5 4105 sed 's/^/| /' conftest.$ac_ext >&5 4106 4107 fi 4108 rm -f conftest.err conftest.$ac_objext \ 4109 conftest$ac_exeext conftest.$ac_ext 4110 if test "$ac_cv_search_strerror" = no; then 4111 for ac_lib in cposix; do 4112 LIBS="-l$ac_lib $ac_func_search_save_LIBS" 4113 cat >conftest.$ac_ext <<_ACEOF 4114 /* confdefs.h. */ 4115 _ACEOF 4116 cat confdefs.h >>conftest.$ac_ext 4117 cat >>conftest.$ac_ext <<_ACEOF 4118 /* end confdefs.h. */ 4119 4120 /* Override any gcc2 internal prototype to avoid an error. */ 4121 #ifdef __cplusplus 4122 extern "C" 4123 #endif 4124 /* We use char because int might match the return type of a gcc2 4125 builtin and then its argument prototype would still apply. */ 4126 char strerror (); 4127 int 4128 main () 4129 { 4130 strerror (); 4131 ; 4132 return 0; 4133 } 4134 _ACEOF 4135 rm -f conftest.$ac_objext conftest$ac_exeext 4136 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 4137 (eval $ac_link) 2>conftest.er1 4138 ac_status=$? 4139 grep -v '^ *+' conftest.er1 >conftest.err 4140 rm -f conftest.er1 4141 cat conftest.err >&5 4142 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4143 (exit $ac_status); } && 4144 { ac_try='test -z "$ac_c_werror_flag" 4145 || test ! -s conftest.err' 4146 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4147 (eval $ac_try) 2>&5 4148 ac_status=$? 4149 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4150 (exit $ac_status); }; } && 4151 { ac_try='test -s conftest$ac_exeext' 4152 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4153 (eval $ac_try) 2>&5 4154 ac_status=$? 4155 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4156 (exit $ac_status); }; }; then 4157 ac_cv_search_strerror="-l$ac_lib" 4158 break 4159 else 4160 echo "$as_me: failed program was:" >&5 4161 sed 's/^/| /' conftest.$ac_ext >&5 4162 4163 fi 4164 rm -f conftest.err conftest.$ac_objext \ 4165 conftest$ac_exeext conftest.$ac_ext 4699 4166 done 4700 rm -f conftest.in conftest.tmp conftest.nl conftest.out;; 4701 esac 4702 4703 $ac_path_GREP_found && break 3 4704 done 4705 done 4706 done 4707 IFS=$as_save_IFS 4708 if test -z "$ac_cv_path_GREP"; then 4709 as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 4710 fi 4711 else 4712 ac_cv_path_GREP=$GREP 4713 fi 4714 4715 fi 4716 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 4717 $as_echo "$ac_cv_path_GREP" >&6; } 4718 GREP="$ac_cv_path_GREP" 4719 4720 4721 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 4722 $as_echo_n "checking for egrep... " >&6; } 4723 if test "${ac_cv_path_EGREP+set}" = set; then : 4724 $as_echo_n "(cached) " >&6 4725 else 4726 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 4727 then ac_cv_path_EGREP="$GREP -E" 4728 else 4729 if test -z "$EGREP"; then 4730 ac_path_EGREP_found=false 4731 # Loop through the user's path and test for each of PROGNAME-LIST 4732 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 4733 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin 4734 do 4735 IFS=$as_save_IFS 4736 test -z "$as_dir" && as_dir=. 4737 for ac_prog in egrep; do 4738 for ac_exec_ext in '' $ac_executable_extensions; do 4739 ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" 4740 { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue 4741 # Check for GNU ac_path_EGREP and select it if it is found. 4742 # Check for GNU $ac_path_EGREP 4743 case `"$ac_path_EGREP" --version 2>&1` in 4744 *GNU*) 4745 ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; 4746 *) 4747 ac_count=0 4748 $as_echo_n 0123456789 >"conftest.in" 4749 while : 4750 do 4751 cat "conftest.in" "conftest.in" >"conftest.tmp" 4752 mv "conftest.tmp" "conftest.in" 4753 cp "conftest.in" "conftest.nl" 4754 $as_echo 'EGREP' >> "conftest.nl" 4755 "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break 4756 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break 4757 as_fn_arith $ac_count + 1 && ac_count=$as_val 4758 if test $ac_count -gt ${ac_path_EGREP_max-0}; then 4759 # Best one so far, save it but keep looking for a better one 4760 ac_cv_path_EGREP="$ac_path_EGREP" 4761 ac_path_EGREP_max=$ac_count 4762 fi 4763 # 10*(2^10) chars as input seems more than enough 4764 test $ac_count -gt 10 && break 4765 done 4766 rm -f conftest.in conftest.tmp conftest.nl conftest.out;; 4767 esac 4768 4769 $ac_path_EGREP_found && break 3 4770 done 4771 done 4772 done 4773 IFS=$as_save_IFS 4774 if test -z "$ac_cv_path_EGREP"; then 4775 as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 4776 fi 4777 else 4778 ac_cv_path_EGREP=$EGREP 4779 fi 4780 4781 fi 4782 fi 4783 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 4784 $as_echo "$ac_cv_path_EGREP" >&6; } 4785 EGREP="$ac_cv_path_EGREP" 4786 4787 4788 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 4789 $as_echo_n "checking for ANSI C header files... " >&6; } 4790 if test "${ac_cv_header_stdc+set}" = set; then : 4791 $as_echo_n "(cached) " >&6 4792 else 4793 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4167 fi 4168 LIBS=$ac_func_search_save_LIBS 4169 fi 4170 echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 4171 echo "${ECHO_T}$ac_cv_search_strerror" >&6 4172 if test "$ac_cv_search_strerror" != no; then 4173 test "$ac_cv_search_strerror" = "none required" || LIBS="$ac_cv_search_strerror $LIBS" 4174 4175 fi 4176 4177 echo "$as_me:$LINENO: checking for ANSI C header files" >&5 4178 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 4179 if test "${ac_cv_header_stdc+set}" = set; then 4180 echo $ECHO_N "(cached) $ECHO_C" >&6 4181 else 4182 cat >conftest.$ac_ext <<_ACEOF 4183 /* confdefs.h. */ 4184 _ACEOF 4185 cat confdefs.h >>conftest.$ac_ext 4186 cat >>conftest.$ac_ext <<_ACEOF 4794 4187 /* end confdefs.h. */ 4795 4188 #include <stdlib.h> … … 4806 4199 } 4807 4200 _ACEOF 4808 if ac_fn_c_try_compile "$LINENO"; then : 4201 rm -f conftest.$ac_objext 4202 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4203 (eval $ac_compile) 2>conftest.er1 4204 ac_status=$? 4205 grep -v '^ *+' conftest.er1 >conftest.err 4206 rm -f conftest.er1 4207 cat conftest.err >&5 4208 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4209 (exit $ac_status); } && 4210 { ac_try='test -z "$ac_c_werror_flag" 4211 || test ! -s conftest.err' 4212 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4213 (eval $ac_try) 2>&5 4214 ac_status=$? 4215 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4216 (exit $ac_status); }; } && 4217 { ac_try='test -s conftest.$ac_objext' 4218 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4219 (eval $ac_try) 2>&5 4220 ac_status=$? 4221 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4222 (exit $ac_status); }; }; then 4809 4223 ac_cv_header_stdc=yes 4810 4224 else 4811 ac_cv_header_stdc=no 4812 fi 4813 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4225 echo "$as_me: failed program was:" >&5 4226 sed 's/^/| /' conftest.$ac_ext >&5 4227 4228 ac_cv_header_stdc=no 4229 fi 4230 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 4814 4231 4815 4232 if test $ac_cv_header_stdc = yes; then 4816 4233 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 4817 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4234 cat >conftest.$ac_ext <<_ACEOF 4235 /* confdefs.h. */ 4236 _ACEOF 4237 cat confdefs.h >>conftest.$ac_ext 4238 cat >>conftest.$ac_ext <<_ACEOF 4818 4239 /* end confdefs.h. */ 4819 4240 #include <string.h> … … 4821 4242 _ACEOF 4822 4243 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 4823 $EGREP "memchr" >/dev/null 2>&1; then :4824 4244 $EGREP "memchr" >/dev/null 2>&1; then 4245 : 4825 4246 else 4826 4247 ac_cv_header_stdc=no … … 4832 4253 if test $ac_cv_header_stdc = yes; then 4833 4254 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 4834 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4255 cat >conftest.$ac_ext <<_ACEOF 4256 /* confdefs.h. */ 4257 _ACEOF 4258 cat confdefs.h >>conftest.$ac_ext 4259 cat >>conftest.$ac_ext <<_ACEOF 4835 4260 /* end confdefs.h. */ 4836 4261 #include <stdlib.h> … … 4838 4263 _ACEOF 4839 4264 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | 4840 $EGREP "free" >/dev/null 2>&1; then :4841 4265 $EGREP "free" >/dev/null 2>&1; then 4266 : 4842 4267 else 4843 4268 ac_cv_header_stdc=no … … 4849 4274 if test $ac_cv_header_stdc = yes; then 4850 4275 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. 4851 if test "$cross_compiling" = yes; then :4276 if test "$cross_compiling" = yes; then 4852 4277 : 4853 4278 else 4854 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4279 cat >conftest.$ac_ext <<_ACEOF 4280 /* confdefs.h. */ 4281 _ACEOF 4282 cat confdefs.h >>conftest.$ac_ext 4283 cat >>conftest.$ac_ext <<_ACEOF 4855 4284 /* end confdefs.h. */ 4856 4285 #include <ctype.h> 4857 #include <stdlib.h>4858 4286 #if ((' ' & 0x0FF) == 0x020) 4859 4287 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') … … 4875 4303 if (XOR (islower (i), ISLOWER (i)) 4876 4304 || toupper (i) != TOUPPER (i)) 4877 return 2;4878 return 0;4305 exit(2); 4306 exit (0); 4879 4307 } 4880 4308 _ACEOF 4881 if ac_fn_c_try_run "$LINENO"; then : 4882 4883 else 4884 ac_cv_header_stdc=no 4885 fi 4886 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ 4887 conftest.$ac_objext conftest.beam conftest.$ac_ext 4888 fi 4889 4890 fi 4891 fi 4892 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 4893 $as_echo "$ac_cv_header_stdc" >&6; } 4309 rm -f conftest$ac_exeext 4310 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 4311 (eval $ac_link) 2>&5 4312 ac_status=$? 4313 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4314 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 4315 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4316 (eval $ac_try) 2>&5 4317 ac_status=$? 4318 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4319 (exit $ac_status); }; }; then 4320 : 4321 else 4322 echo "$as_me: program exited with status $ac_status" >&5 4323 echo "$as_me: failed program was:" >&5 4324 sed 's/^/| /' conftest.$ac_ext >&5 4325 4326 ( exit $ac_status ) 4327 ac_cv_header_stdc=no 4328 fi 4329 rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 4330 fi 4331 fi 4332 fi 4333 echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 4334 echo "${ECHO_T}$ac_cv_header_stdc" >&6 4894 4335 if test $ac_cv_header_stdc = yes; then 4895 4336 4896 $as_echo "#define STDC_HEADERS 1" >>confdefs.h 4337 cat >>confdefs.h <<\_ACEOF 4338 #define STDC_HEADERS 1 4339 _ACEOF 4897 4340 4898 4341 fi 4899 4342 4900 4343 # On IRIX 5.3, sys/types and inttypes.h are conflicting. 4344 4345 4346 4347 4348 4349 4350 4351 4352 4901 4353 for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ 4902 4354 inttypes.h stdint.h unistd.h 4903 do : 4904 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 4905 ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default 4906 " 4907 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : 4355 do 4356 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 4357 echo "$as_me:$LINENO: checking for $ac_header" >&5 4358 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 4359 if eval "test \"\${$as_ac_Header+set}\" = set"; then 4360 echo $ECHO_N "(cached) $ECHO_C" >&6 4361 else 4362 cat >conftest.$ac_ext <<_ACEOF 4363 /* confdefs.h. */ 4364 _ACEOF 4365 cat confdefs.h >>conftest.$ac_ext 4366 cat >>conftest.$ac_ext <<_ACEOF 4367 /* end confdefs.h. */ 4368 $ac_includes_default 4369 4370 #include <$ac_header> 4371 _ACEOF 4372 rm -f conftest.$ac_objext 4373 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4374 (eval $ac_compile) 2>conftest.er1 4375 ac_status=$? 4376 grep -v '^ *+' conftest.er1 >conftest.err 4377 rm -f conftest.er1 4378 cat conftest.err >&5 4379 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4380 (exit $ac_status); } && 4381 { ac_try='test -z "$ac_c_werror_flag" 4382 || test ! -s conftest.err' 4383 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4384 (eval $ac_try) 2>&5 4385 ac_status=$? 4386 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4387 (exit $ac_status); }; } && 4388 { ac_try='test -s conftest.$ac_objext' 4389 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4390 (eval $ac_try) 2>&5 4391 ac_status=$? 4392 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4393 (exit $ac_status); }; }; then 4394 eval "$as_ac_Header=yes" 4395 else 4396 echo "$as_me: failed program was:" >&5 4397 sed 's/^/| /' conftest.$ac_ext >&5 4398 4399 eval "$as_ac_Header=no" 4400 fi 4401 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 4402 fi 4403 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 4404 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 4405 if test `eval echo '${'$as_ac_Header'}'` = yes; then 4908 4406 cat >>confdefs.h <<_ACEOF 4909 #define ` $as_echo "HAVE_$ac_header" | $as_tr_cpp` 14407 #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 4910 4408 _ACEOF 4911 4409 … … 4915 4413 4916 4414 4917 4918 ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" 4919 if test "x$ac_cv_header_minix_config_h" = x""yes; then : 4415 if test "${ac_cv_header_minix_config_h+set}" = set; then 4416 echo "$as_me:$LINENO: checking for minix/config.h" >&5 4417 echo $ECHO_N "checking for minix/config.h... $ECHO_C" >&6 4418 if test "${ac_cv_header_minix_config_h+set}" = set; then 4419 echo $ECHO_N "(cached) $ECHO_C" >&6 4420 fi 4421 echo "$as_me:$LINENO: result: $ac_cv_header_minix_config_h" >&5 4422 echo "${ECHO_T}$ac_cv_header_minix_config_h" >&6 4423 else 4424 # Is the header compilable? 4425 echo "$as_me:$LINENO: checking minix/config.h usability" >&5 4426 echo $ECHO_N "checking minix/config.h usability... $ECHO_C" >&6 4427 cat >conftest.$ac_ext <<_ACEOF 4428 /* confdefs.h. */ 4429 _ACEOF 4430 cat confdefs.h >>conftest.$ac_ext 4431 cat >>conftest.$ac_ext <<_ACEOF 4432 /* end confdefs.h. */ 4433 $ac_includes_default 4434 #include <minix/config.h> 4435 _ACEOF 4436 rm -f conftest.$ac_objext 4437 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4438 (eval $ac_compile) 2>conftest.er1 4439 ac_status=$? 4440 grep -v '^ *+' conftest.er1 >conftest.err 4441 rm -f conftest.er1 4442 cat conftest.err >&5 4443 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4444 (exit $ac_status); } && 4445 { ac_try='test -z "$ac_c_werror_flag" 4446 || test ! -s conftest.err' 4447 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4448 (eval $ac_try) 2>&5 4449 ac_status=$? 4450 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4451 (exit $ac_status); }; } && 4452 { ac_try='test -s conftest.$ac_objext' 4453 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 4454 (eval $ac_try) 2>&5 4455 ac_status=$? 4456 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4457 (exit $ac_status); }; }; then 4458 ac_header_compiler=yes 4459 else 4460 echo "$as_me: failed program was:" >&5 4461 sed 's/^/| /' conftest.$ac_ext >&5 4462 4463 ac_header_compiler=no 4464 fi 4465 rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 4466 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 4467 echo "${ECHO_T}$ac_header_compiler" >&6 4468 4469 # Is the header present? 4470 echo "$as_me:$LINENO: checking minix/config.h presence" >&5 4471 echo $ECHO_N "checking minix/config.h presence... $ECHO_C" >&6 4472 cat >conftest.$ac_ext <<_ACEOF 4473 /* confdefs.h. */ 4474 _ACEOF 4475 cat confdefs.h >>conftest.$ac_ext 4476 cat >>conftest.$ac_ext <<_ACEOF 4477 /* end confdefs.h. */ 4478 #include <minix/config.h> 4479 _ACEOF 4480 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 4481 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 4482 ac_status=$? 4483 grep -v '^ *+' conftest.er1 >conftest.err 4484 rm -f conftest.er1 4485 cat conftest.err >&5 4486 echo "$as_me:$LINENO: \$? = $ac_status" >&5 4487 (exit $ac_status); } >/dev/null; then 4488 if test -s conftest.err; then 4489 ac_cpp_err=$ac_c_preproc_warn_flag 4490 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag 4491 else 4492 ac_cpp_err= 4493 fi 4494 else 4495 ac_cpp_err=yes 4496 fi 4497 if test -z "$ac_cpp_err"; then 4498 ac_header_preproc=yes 4499 else 4500 echo "$as_me: failed program was:" >&5 4501 sed 's/^/| /' conftest.$ac_ext >&5 4502 4503 ac_header_preproc=no 4504 fi 4505 rm -f conftest.err conftest.$ac_ext 4506 echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 4507 echo "${ECHO_T}$ac_header_preproc" >&6 4508 4509 # So? What about this header? 4510 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in 4511 yes:no: ) 4512 { echo "$as_me:$LINENO: WARNING: minix/config.h: accepted by the compiler, rejected by the preprocessor!" >&5 4513 echo "$as_me: WARNING: minix/config.h: accepted by the compiler, rejected by the preprocessor!" >&2;} 4514 { echo "$as_me:$LINENO: WARNING: minix/config.h: proceeding with the compiler's result" >&5 4515 echo "$as_me: WARNING: minix/config.h: proceeding with the compiler's result" >&2;} 4516 ac_header_preproc=yes 4517 ;; 4518 no:yes:* ) 4519 { echo "$as_me:$LINENO: WARNING: minix/config.h: present but cannot be compiled" >&5 4520 echo "$as_me: WARNING: minix/config.h: present but cannot be compiled" >&2;} 4521 { echo "$as_me:$LINENO: WARNING: minix/config.h: check for missing prerequisite headers?" >&5 4522 echo "$as_me: WARNING: minix/config.h: check for missing prerequisite headers?" >&2;} 4523 { echo "$as_me:$LINENO: WARNING: minix/config.h: see the Autoconf documentation" >&5 4524 echo "$as_me: WARNING: minix/config.h: see the Autoconf documentation" >&2;} 4525 { echo "$as_me:$LINENO: WARNING: minix/config.h: section \"Present But Cannot Be Compiled\"" >&5 4526 echo "$as_me: WARNING: minix/config.h: section \"Present But Cannot Be Compiled\"" >&2;} 4527 { echo "$as_me:$LINENO: WARNING: minix/config.h: proceeding with the preprocessor's result" >&5 4528 echo "$as_me: WARNING: minix/config.h: proceeding with the preprocessor's result" >&2;} 4529 { echo "$as_me:$LINENO: WARNING: minix/config.h: in the future, the compiler will take precedence" >&5 4530 echo "$as_me: WARNING: minix/config.h: in the future, the compiler will take precedence" >&2;} 4531 ( 4532 cat <<\_ASBOX 4533 ## ------------------------------------------ ## 4534 ## Report this to the AC_PACKAGE_NAME lists. ## 4535 ## ------------------------------------------ ## 4536 _ASBOX 4537 ) | 4538 sed "s/^/$as_me: WARNING: /" >&2 4539 ;; 4540 esac 4541 echo "$as_me:$LINENO: checking for minix/config.h" >&5 4542 echo $ECHO_N "checking for minix/config.h... $ECHO_C" >&6 4543 if test "${ac_cv_header_minix_config_h+set}" = set; then 4544 echo $ECHO_N "(cached) $ECHO_C" >&6 4545 else 4546 ac_cv_header_minix_config_h=$ac_header_preproc 4547 fi 4548 echo "$as_me:$LINENO: result: $ac_cv_header_minix_config_h" >&5 4549 echo "${ECHO_T}$ac_cv_header_minix_config_h" >&6 4550 4551 fi 4552 if test $ac_cv_header_minix_config_h = yes; then 4920 4553 MINIX=yes 4921 4554 else … … 4924 4557 4925 4558 4926 if test "$MINIX" = yes; then 4927 4928 $as_echo "#define _POSIX_SOURCE 1" >>confdefs.h 4929 4930 4931 $as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h 4932 4933 4934 $as_echo "#define _MINIX 1" >>confdefs.h 4935 4936 fi 4937 4938 4939 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 4940 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } 4941 if test "${ac_cv_safe_to_define___extensions__+set}" = set; then : 4942 $as_echo_n "(cached) " >&6 4943 else 4944 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4945 /* end confdefs.h. */ 4946 4947 # define __EXTENSIONS__ 1 4948 $ac_includes_default 4949 int 4950 main () 4951 { 4952 4953 ; 4954 return 0; 4955 } 4956 _ACEOF 4957 if ac_fn_c_try_compile "$LINENO"; then : 4958 ac_cv_safe_to_define___extensions__=yes 4959 else 4960 ac_cv_safe_to_define___extensions__=no 4961 fi 4962 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4963 fi 4964 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_