annotate configure @ 20:dd5b333a7960

Regenerate Autotools files myself with Ron's patch
author Adam Chlipala <adam@chlipala.net>
date Sat, 23 Jun 2012 09:58:31 -0400
parents a40cf9c8d615
children
rev   line source
adam@0 1 #! /bin/sh
adam@0 2 # Guess values for system-dependent variables and create Makefiles.
adam@20 3 # Generated by GNU Autoconf 2.69 for urweb_feed 1.0.
adam@0 4 #
adam@0 5 #
adam@20 6 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
adam@0 7 #
adam@0 8 #
adam@0 9 # This configure script is free software; the Free Software Foundation
adam@0 10 # gives unlimited permission to copy, distribute and modify it.
adam@0 11 ## -------------------- ##
adam@0 12 ## M4sh Initialization. ##
adam@0 13 ## -------------------- ##
adam@0 14
adam@0 15 # Be more Bourne compatible
adam@0 16 DUALCASE=1; export DUALCASE # for MKS sh
adam@0 17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
adam@0 18 emulate sh
adam@0 19 NULLCMD=:
adam@0 20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
adam@0 21 # is contrary to our usage. Disable this feature.
adam@0 22 alias -g '${1+"$@"}'='"$@"'
adam@0 23 setopt NO_GLOB_SUBST
adam@0 24 else
adam@0 25 case `(set -o) 2>/dev/null` in #(
adam@0 26 *posix*) :
adam@0 27 set -o posix ;; #(
adam@0 28 *) :
adam@0 29 ;;
adam@0 30 esac
adam@0 31 fi
adam@0 32
adam@0 33
adam@0 34 as_nl='
adam@0 35 '
adam@0 36 export as_nl
adam@0 37 # Printing a long string crashes Solaris 7 /usr/bin/printf.
adam@0 38 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
adam@0 39 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
adam@0 40 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
adam@0 41 # Prefer a ksh shell builtin over an external printf program on Solaris,
adam@0 42 # but without wasting forks for bash or zsh.
adam@0 43 if test -z "$BASH_VERSION$ZSH_VERSION" \
adam@0 44 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
adam@0 45 as_echo='print -r --'
adam@0 46 as_echo_n='print -rn --'
adam@0 47 elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
adam@0 48 as_echo='printf %s\n'
adam@0 49 as_echo_n='printf %s'
adam@0 50 else
adam@0 51 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
adam@0 52 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
adam@0 53 as_echo_n='/usr/ucb/echo -n'
adam@0 54 else
adam@0 55 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
adam@0 56 as_echo_n_body='eval
adam@0 57 arg=$1;
adam@0 58 case $arg in #(
adam@0 59 *"$as_nl"*)
adam@0 60 expr "X$arg" : "X\\(.*\\)$as_nl";
adam@0 61 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
adam@0 62 esac;
adam@0 63 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
adam@0 64 '
adam@0 65 export as_echo_n_body
adam@0 66 as_echo_n='sh -c $as_echo_n_body as_echo'
adam@0 67 fi
adam@0 68 export as_echo_body
adam@0 69 as_echo='sh -c $as_echo_body as_echo'
adam@0 70 fi
adam@0 71
adam@0 72 # The user is always right.
adam@0 73 if test "${PATH_SEPARATOR+set}" != set; then
adam@0 74 PATH_SEPARATOR=:
adam@0 75 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
adam@0 76 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
adam@0 77 PATH_SEPARATOR=';'
adam@0 78 }
adam@0 79 fi
adam@0 80
adam@0 81
adam@0 82 # IFS
adam@0 83 # We need space, tab and new line, in precisely that order. Quoting is
adam@0 84 # there to prevent editors from complaining about space-tab.
adam@0 85 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
adam@0 86 # splitting by setting IFS to empty value.)
adam@0 87 IFS=" "" $as_nl"
adam@0 88
adam@0 89 # Find who we are. Look in the path if we contain no directory separator.
adam@12 90 as_myself=
adam@0 91 case $0 in #((
adam@0 92 *[\\/]* ) as_myself=$0 ;;
adam@0 93 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 94 for as_dir in $PATH
adam@0 95 do
adam@0 96 IFS=$as_save_IFS
adam@0 97 test -z "$as_dir" && as_dir=.
adam@0 98 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
adam@0 99 done
adam@0 100 IFS=$as_save_IFS
adam@0 101
adam@0 102 ;;
adam@0 103 esac
adam@0 104 # We did not find ourselves, most probably we were run as `sh COMMAND'
adam@0 105 # in which case we are not to be found in the path.
adam@0 106 if test "x$as_myself" = x; then
adam@0 107 as_myself=$0
adam@0 108 fi
adam@0 109 if test ! -f "$as_myself"; then
adam@0 110 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
adam@0 111 exit 1
adam@0 112 fi
adam@0 113
adam@0 114 # Unset variables that we do not need and which cause bugs (e.g. in
adam@0 115 # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
adam@0 116 # suppresses any "Segmentation fault" message there. '((' could
adam@0 117 # trigger a bug in pdksh 5.2.14.
adam@0 118 for as_var in BASH_ENV ENV MAIL MAILPATH
adam@0 119 do eval test x\${$as_var+set} = xset \
adam@0 120 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
adam@0 121 done
adam@0 122 PS1='$ '
adam@0 123 PS2='> '
adam@0 124 PS4='+ '
adam@0 125
adam@0 126 # NLS nuisances.
adam@0 127 LC_ALL=C
adam@0 128 export LC_ALL
adam@0 129 LANGUAGE=C
adam@0 130 export LANGUAGE
adam@0 131
adam@0 132 # CDPATH.
adam@0 133 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
adam@0 134
adam@20 135 # Use a proper internal environment variable to ensure we don't fall
adam@20 136 # into an infinite loop, continuously re-executing ourselves.
adam@20 137 if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
adam@20 138 _as_can_reexec=no; export _as_can_reexec;
adam@20 139 # We cannot yet assume a decent shell, so we have to provide a
adam@20 140 # neutralization value for shells without unset; and this also
adam@20 141 # works around shells that cannot unset nonexistent variables.
adam@20 142 # Preserve -v and -x to the replacement shell.
adam@20 143 BASH_ENV=/dev/null
adam@20 144 ENV=/dev/null
adam@20 145 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
adam@20 146 case $- in # ((((
adam@20 147 *v*x* | *x*v* ) as_opts=-vx ;;
adam@20 148 *v* ) as_opts=-v ;;
adam@20 149 *x* ) as_opts=-x ;;
adam@20 150 * ) as_opts= ;;
adam@20 151 esac
adam@20 152 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
adam@20 153 # Admittedly, this is quite paranoid, since all the known shells bail
adam@20 154 # out after a failed `exec'.
adam@20 155 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
adam@20 156 as_fn_exit 255
adam@20 157 fi
adam@20 158 # We don't want this to propagate to other subprocesses.
adam@20 159 { _as_can_reexec=; unset _as_can_reexec;}
adam@0 160 if test "x$CONFIG_SHELL" = x; then
adam@0 161 as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
adam@0 162 emulate sh
adam@0 163 NULLCMD=:
adam@0 164 # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
adam@0 165 # is contrary to our usage. Disable this feature.
adam@0 166 alias -g '\${1+\"\$@\"}'='\"\$@\"'
adam@0 167 setopt NO_GLOB_SUBST
adam@0 168 else
adam@0 169 case \`(set -o) 2>/dev/null\` in #(
adam@0 170 *posix*) :
adam@0 171 set -o posix ;; #(
adam@0 172 *) :
adam@0 173 ;;
adam@0 174 esac
adam@0 175 fi
adam@0 176 "
adam@0 177 as_required="as_fn_return () { (exit \$1); }
adam@0 178 as_fn_success () { as_fn_return 0; }
adam@0 179 as_fn_failure () { as_fn_return 1; }
adam@0 180 as_fn_ret_success () { return 0; }
adam@0 181 as_fn_ret_failure () { return 1; }
adam@0 182
adam@0 183 exitcode=0
adam@0 184 as_fn_success || { exitcode=1; echo as_fn_success failed.; }
adam@0 185 as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
adam@0 186 as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
adam@0 187 as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
adam@0 188 if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
adam@0 189
adam@0 190 else
adam@0 191 exitcode=1; echo positional parameters were not saved.
adam@0 192 fi
adam@20 193 test x\$exitcode = x0 || exit 1
adam@20 194 test -x / || exit 1"
adam@0 195 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
adam@0 196 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
adam@0 197 eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
adam@0 198 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
adam@12 199 test \$(( 1 + 1 )) = 2 || exit 1
adam@12 200
adam@12 201 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || (
adam@12 202 ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
adam@12 203 ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO
adam@12 204 ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO
adam@12 205 PATH=/empty FPATH=/empty; export PATH FPATH
adam@12 206 test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\
adam@12 207 || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1"
adam@0 208 if (eval "$as_required") 2>/dev/null; then :
adam@0 209 as_have_required=yes
adam@0 210 else
adam@0 211 as_have_required=no
adam@0 212 fi
adam@0 213 if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
adam@0 214
adam@0 215 else
adam@0 216 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 217 as_found=false
adam@0 218 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
adam@0 219 do
adam@0 220 IFS=$as_save_IFS
adam@0 221 test -z "$as_dir" && as_dir=.
adam@0 222 as_found=:
adam@0 223 case $as_dir in #(
adam@0 224 /*)
adam@0 225 for as_base in sh bash ksh sh5; do
adam@0 226 # Try only shells that exist, to save several forks.
adam@0 227 as_shell=$as_dir/$as_base
adam@0 228 if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
adam@0 229 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
adam@0 230 CONFIG_SHELL=$as_shell as_have_required=yes
adam@0 231 if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
adam@0 232 break 2
adam@0 233 fi
adam@0 234 fi
adam@0 235 done;;
adam@0 236 esac
adam@0 237 as_found=false
adam@0 238 done
adam@0 239 $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
adam@0 240 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
adam@0 241 CONFIG_SHELL=$SHELL as_have_required=yes
adam@0 242 fi; }
adam@0 243 IFS=$as_save_IFS
adam@0 244
adam@0 245
adam@0 246 if test "x$CONFIG_SHELL" != x; then :
adam@20 247 export CONFIG_SHELL
adam@20 248 # We cannot yet assume a decent shell, so we have to provide a
adam@20 249 # neutralization value for shells without unset; and this also
adam@20 250 # works around shells that cannot unset nonexistent variables.
adam@20 251 # Preserve -v and -x to the replacement shell.
adam@20 252 BASH_ENV=/dev/null
adam@20 253 ENV=/dev/null
adam@20 254 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
adam@20 255 case $- in # ((((
adam@20 256 *v*x* | *x*v* ) as_opts=-vx ;;
adam@20 257 *v* ) as_opts=-v ;;
adam@20 258 *x* ) as_opts=-x ;;
adam@20 259 * ) as_opts= ;;
adam@20 260 esac
adam@20 261 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
adam@20 262 # Admittedly, this is quite paranoid, since all the known shells bail
adam@20 263 # out after a failed `exec'.
adam@20 264 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
adam@20 265 exit 255
adam@0 266 fi
adam@0 267
adam@0 268 if test x$as_have_required = xno; then :
adam@0 269 $as_echo "$0: This script requires a shell more modern than all"
adam@0 270 $as_echo "$0: the shells that I found on your system."
adam@0 271 if test x${ZSH_VERSION+set} = xset ; then
adam@0 272 $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
adam@0 273 $as_echo "$0: be upgraded to zsh 4.3.4 or later."
adam@0 274 else
adam@0 275 $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
adam@0 276 $0: including any error possibly output before this
adam@0 277 $0: message. Then install a modern shell, or manually run
adam@0 278 $0: the script under such a shell if you do have one."
adam@0 279 fi
adam@0 280 exit 1
adam@0 281 fi
adam@0 282 fi
adam@0 283 fi
adam@0 284 SHELL=${CONFIG_SHELL-/bin/sh}
adam@0 285 export SHELL
adam@0 286 # Unset more variables known to interfere with behavior of common tools.
adam@0 287 CLICOLOR_FORCE= GREP_OPTIONS=
adam@0 288 unset CLICOLOR_FORCE GREP_OPTIONS
adam@0 289
adam@0 290 ## --------------------- ##
adam@0 291 ## M4sh Shell Functions. ##
adam@0 292 ## --------------------- ##
adam@0 293 # as_fn_unset VAR
adam@0 294 # ---------------
adam@0 295 # Portably unset VAR.
adam@0 296 as_fn_unset ()
adam@0 297 {
adam@0 298 { eval $1=; unset $1;}
adam@0 299 }
adam@0 300 as_unset=as_fn_unset
adam@0 301
adam@0 302 # as_fn_set_status STATUS
adam@0 303 # -----------------------
adam@0 304 # Set $? to STATUS, without forking.
adam@0 305 as_fn_set_status ()
adam@0 306 {
adam@0 307 return $1
adam@0 308 } # as_fn_set_status
adam@0 309
adam@0 310 # as_fn_exit STATUS
adam@0 311 # -----------------
adam@0 312 # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
adam@0 313 as_fn_exit ()
adam@0 314 {
adam@0 315 set +e
adam@0 316 as_fn_set_status $1
adam@0 317 exit $1
adam@0 318 } # as_fn_exit
adam@0 319
adam@0 320 # as_fn_mkdir_p
adam@0 321 # -------------
adam@0 322 # Create "$as_dir" as a directory, including parents if necessary.
adam@0 323 as_fn_mkdir_p ()
adam@0 324 {
adam@0 325
adam@0 326 case $as_dir in #(
adam@0 327 -*) as_dir=./$as_dir;;
adam@0 328 esac
adam@0 329 test -d "$as_dir" || eval $as_mkdir_p || {
adam@0 330 as_dirs=
adam@0 331 while :; do
adam@0 332 case $as_dir in #(
adam@0 333 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
adam@0 334 *) as_qdir=$as_dir;;
adam@0 335 esac
adam@0 336 as_dirs="'$as_qdir' $as_dirs"
adam@0 337 as_dir=`$as_dirname -- "$as_dir" ||
adam@0 338 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
adam@0 339 X"$as_dir" : 'X\(//\)[^/]' \| \
adam@0 340 X"$as_dir" : 'X\(//\)$' \| \
adam@0 341 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
adam@0 342 $as_echo X"$as_dir" |
adam@0 343 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
adam@0 344 s//\1/
adam@0 345 q
adam@0 346 }
adam@0 347 /^X\(\/\/\)[^/].*/{
adam@0 348 s//\1/
adam@0 349 q
adam@0 350 }
adam@0 351 /^X\(\/\/\)$/{
adam@0 352 s//\1/
adam@0 353 q
adam@0 354 }
adam@0 355 /^X\(\/\).*/{
adam@0 356 s//\1/
adam@0 357 q
adam@0 358 }
adam@0 359 s/.*/./; q'`
adam@0 360 test -d "$as_dir" && break
adam@0 361 done
adam@0 362 test -z "$as_dirs" || eval "mkdir $as_dirs"
adam@0 363 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
adam@0 364
adam@0 365
adam@0 366 } # as_fn_mkdir_p
adam@20 367
adam@20 368 # as_fn_executable_p FILE
adam@20 369 # -----------------------
adam@20 370 # Test if FILE is an executable regular file.
adam@20 371 as_fn_executable_p ()
adam@20 372 {
adam@20 373 test -f "$1" && test -x "$1"
adam@20 374 } # as_fn_executable_p
adam@0 375 # as_fn_append VAR VALUE
adam@0 376 # ----------------------
adam@0 377 # Append the text in VALUE to the end of the definition contained in VAR. Take
adam@0 378 # advantage of any shell optimizations that allow amortized linear growth over
adam@0 379 # repeated appends, instead of the typical quadratic growth present in naive
adam@0 380 # implementations.
adam@0 381 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
adam@0 382 eval 'as_fn_append ()
adam@0 383 {
adam@0 384 eval $1+=\$2
adam@0 385 }'
adam@0 386 else
adam@0 387 as_fn_append ()
adam@0 388 {
adam@0 389 eval $1=\$$1\$2
adam@0 390 }
adam@0 391 fi # as_fn_append
adam@0 392
adam@0 393 # as_fn_arith ARG...
adam@0 394 # ------------------
adam@0 395 # Perform arithmetic evaluation on the ARGs, and store the result in the
adam@0 396 # global $as_val. Take advantage of shells that can avoid forks. The arguments
adam@0 397 # must be portable across $(()) and expr.
adam@0 398 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
adam@0 399 eval 'as_fn_arith ()
adam@0 400 {
adam@0 401 as_val=$(( $* ))
adam@0 402 }'
adam@0 403 else
adam@0 404 as_fn_arith ()
adam@0 405 {
adam@0 406 as_val=`expr "$@" || test $? -eq 1`
adam@0 407 }
adam@0 408 fi # as_fn_arith
adam@0 409
adam@0 410
adam@0 411 # as_fn_error STATUS ERROR [LINENO LOG_FD]
adam@0 412 # ----------------------------------------
adam@0 413 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
adam@0 414 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
adam@0 415 # script with STATUS, using 1 if that was 0.
adam@0 416 as_fn_error ()
adam@0 417 {
adam@0 418 as_status=$1; test $as_status -eq 0 && as_status=1
adam@0 419 if test "$4"; then
adam@0 420 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
adam@0 421 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
adam@0 422 fi
adam@0 423 $as_echo "$as_me: error: $2" >&2
adam@0 424 as_fn_exit $as_status
adam@0 425 } # as_fn_error
adam@0 426
adam@0 427 if expr a : '\(a\)' >/dev/null 2>&1 &&
adam@0 428 test "X`expr 00001 : '.*\(...\)'`" = X001; then
adam@0 429 as_expr=expr
adam@0 430 else
adam@0 431 as_expr=false
adam@0 432 fi
adam@0 433
adam@0 434 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
adam@0 435 as_basename=basename
adam@0 436 else
adam@0 437 as_basename=false
adam@0 438 fi
adam@0 439
adam@0 440 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
adam@0 441 as_dirname=dirname
adam@0 442 else
adam@0 443 as_dirname=false
adam@0 444 fi
adam@0 445
adam@0 446 as_me=`$as_basename -- "$0" ||
adam@0 447 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
adam@0 448 X"$0" : 'X\(//\)$' \| \
adam@0 449 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
adam@0 450 $as_echo X/"$0" |
adam@0 451 sed '/^.*\/\([^/][^/]*\)\/*$/{
adam@0 452 s//\1/
adam@0 453 q
adam@0 454 }
adam@0 455 /^X\/\(\/\/\)$/{
adam@0 456 s//\1/
adam@0 457 q
adam@0 458 }
adam@0 459 /^X\/\(\/\).*/{
adam@0 460 s//\1/
adam@0 461 q
adam@0 462 }
adam@0 463 s/.*/./; q'`
adam@0 464
adam@0 465 # Avoid depending upon Character Ranges.
adam@0 466 as_cr_letters='abcdefghijklmnopqrstuvwxyz'
adam@0 467 as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
adam@0 468 as_cr_Letters=$as_cr_letters$as_cr_LETTERS
adam@0 469 as_cr_digits='0123456789'
adam@0 470 as_cr_alnum=$as_cr_Letters$as_cr_digits
adam@0 471
adam@0 472
adam@0 473 as_lineno_1=$LINENO as_lineno_1a=$LINENO
adam@0 474 as_lineno_2=$LINENO as_lineno_2a=$LINENO
adam@0 475 eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
adam@0 476 test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
adam@0 477 # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-)
adam@0 478 sed -n '
adam@0 479 p
adam@0 480 /[$]LINENO/=
adam@0 481 ' <$as_myself |
adam@0 482 sed '
adam@0 483 s/[$]LINENO.*/&-/
adam@0 484 t lineno
adam@0 485 b
adam@0 486 :lineno
adam@0 487 N
adam@0 488 :loop
adam@0 489 s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
adam@0 490 t loop
adam@0 491 s/-\n.*//
adam@0 492 ' >$as_me.lineno &&
adam@0 493 chmod +x "$as_me.lineno" ||
adam@0 494 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
adam@0 495
adam@20 496 # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
adam@20 497 # already done that, so ensure we don't try to do so again and fall
adam@20 498 # in an infinite loop. This has already happened in practice.
adam@20 499 _as_can_reexec=no; export _as_can_reexec
adam@0 500 # Don't try to exec as it changes $[0], causing all sort of problems
adam@0 501 # (the dirname of $[0] is not the place where we might find the
adam@0 502 # original and so on. Autoconf is especially sensitive to this).
adam@0 503 . "./$as_me.lineno"
adam@0 504 # Exit status is that of the last command.
adam@0 505 exit
adam@0 506 }
adam@0 507
adam@0 508 ECHO_C= ECHO_N= ECHO_T=
adam@0 509 case `echo -n x` in #(((((
adam@0 510 -n*)
adam@0 511 case `echo 'xy\c'` in
adam@0 512 *c*) ECHO_T=' ';; # ECHO_T is single tab character.
adam@0 513 xy) ECHO_C='\c';;
adam@0 514 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
adam@0 515 ECHO_T=' ';;
adam@0 516 esac;;
adam@0 517 *)
adam@0 518 ECHO_N='-n';;
adam@0 519 esac
adam@0 520
adam@0 521 rm -f conf$$ conf$$.exe conf$$.file
adam@0 522 if test -d conf$$.dir; then
adam@0 523 rm -f conf$$.dir/conf$$.file
adam@0 524 else
adam@0 525 rm -f conf$$.dir
adam@0 526 mkdir conf$$.dir 2>/dev/null
adam@0 527 fi
adam@0 528 if (echo >conf$$.file) 2>/dev/null; then
adam@0 529 if ln -s conf$$.file conf$$ 2>/dev/null; then
adam@0 530 as_ln_s='ln -s'
adam@0 531 # ... but there are two gotchas:
adam@0 532 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
adam@0 533 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
adam@20 534 # In both cases, we have to default to `cp -pR'.
adam@0 535 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
adam@20 536 as_ln_s='cp -pR'
adam@0 537 elif ln conf$$.file conf$$ 2>/dev/null; then
adam@0 538 as_ln_s=ln
adam@0 539 else
adam@20 540 as_ln_s='cp -pR'
adam@20 541 fi
adam@20 542 else
adam@20 543 as_ln_s='cp -pR'
adam@0 544 fi
adam@0 545 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
adam@0 546 rmdir conf$$.dir 2>/dev/null
adam@0 547
adam@0 548 if mkdir -p . 2>/dev/null; then
adam@0 549 as_mkdir_p='mkdir -p "$as_dir"'
adam@0 550 else
adam@0 551 test -d ./-p && rmdir ./-p
adam@0 552 as_mkdir_p=false
adam@0 553 fi
adam@0 554
adam@20 555 as_test_x='test -x'
adam@20 556 as_executable_p=as_fn_executable_p
adam@0 557
adam@0 558 # Sed expression to map a string onto a valid CPP name.
adam@0 559 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
adam@0 560
adam@0 561 # Sed expression to map a string onto a valid variable name.
adam@0 562 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
adam@0 563
adam@0 564 SHELL=${CONFIG_SHELL-/bin/sh}
adam@0 565
adam@0 566
adam@0 567 test -n "$DJDIR" || exec 7<&0 </dev/null
adam@0 568 exec 6>&1
adam@0 569
adam@0 570 # Name of the host.
adam@0 571 # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
adam@0 572 # so uname gets run too.
adam@0 573 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
adam@0 574
adam@0 575 #
adam@0 576 # Initializations.
adam@0 577 #
adam@0 578 ac_default_prefix=/usr/local
adam@0 579 ac_clean_files=
adam@0 580 ac_config_libobj_dir=.
adam@0 581 LIBOBJS=
adam@0 582 cross_compiling=no
adam@0 583 subdirs=
adam@0 584 MFLAGS=
adam@0 585 MAKEFLAGS=
adam@0 586
adam@0 587 # Identity of this package.
adam@0 588 PACKAGE_NAME='urweb_feed'
adam@0 589 PACKAGE_TARNAME='urweb_feed'
adam@0 590 PACKAGE_VERSION='1.0'
adam@0 591 PACKAGE_STRING='urweb_feed 1.0'
adam@0 592 PACKAGE_BUGREPORT=''
adam@0 593 PACKAGE_URL=''
adam@0 594
adam@0 595 # Factoring default headers for most tests.
adam@0 596 ac_includes_default="\
adam@0 597 #include <stdio.h>
adam@0 598 #ifdef HAVE_SYS_TYPES_H
adam@0 599 # include <sys/types.h>
adam@0 600 #endif
adam@0 601 #ifdef HAVE_SYS_STAT_H
adam@0 602 # include <sys/stat.h>
adam@0 603 #endif
adam@0 604 #ifdef STDC_HEADERS
adam@0 605 # include <stdlib.h>
adam@0 606 # include <stddef.h>
adam@0 607 #else
adam@0 608 # ifdef HAVE_STDLIB_H
adam@0 609 # include <stdlib.h>
adam@0 610 # endif
adam@0 611 #endif
adam@0 612 #ifdef HAVE_STRING_H
adam@0 613 # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
adam@0 614 # include <memory.h>
adam@0 615 # endif
adam@0 616 # include <string.h>
adam@0 617 #endif
adam@0 618 #ifdef HAVE_STRINGS_H
adam@0 619 # include <strings.h>
adam@0 620 #endif
adam@0 621 #ifdef HAVE_INTTYPES_H
adam@0 622 # include <inttypes.h>
adam@0 623 #endif
adam@0 624 #ifdef HAVE_STDINT_H
adam@0 625 # include <stdint.h>
adam@0 626 #endif
adam@0 627 #ifdef HAVE_UNISTD_H
adam@0 628 # include <unistd.h>
adam@0 629 #endif"
adam@0 630
adam@0 631 ac_subst_vars='am__EXEEXT_FALSE
adam@0 632 am__EXEEXT_TRUE
adam@0 633 LTLIBOBJS
adam@0 634 LIBOBJS
adam@0 635 INCLUDE
adam@0 636 LIB
adam@0 637 LIBCURL
adam@0 638 LIBCURL_CPPFLAGS
adam@0 639 _libcurl_config
adam@0 640 OTOOL64
adam@0 641 OTOOL
adam@0 642 LIPO
adam@0 643 NMEDIT
adam@0 644 DSYMUTIL
adam@12 645 MANIFEST_TOOL
adam@0 646 RANLIB
adam@12 647 ac_ct_AR
adam@0 648 AR
adam@12 649 DLLTOOL
adam@0 650 OBJDUMP
adam@0 651 LN_S
adam@0 652 NM
adam@0 653 ac_ct_DUMPBIN
adam@0 654 DUMPBIN
adam@0 655 LD
adam@0 656 FGREP
adam@0 657 SED
adam@0 658 host_os
adam@0 659 host_vendor
adam@0 660 host_cpu
adam@0 661 host
adam@0 662 build_os
adam@0 663 build_vendor
adam@0 664 build_cpu
adam@0 665 build
adam@0 666 LIBTOOL
adam@0 667 am__fastdepCC_FALSE
adam@0 668 am__fastdepCC_TRUE
adam@0 669 CCDEPMODE
adam@20 670 am__nodep
adam@0 671 AMDEPBACKSLASH
adam@0 672 AMDEP_FALSE
adam@0 673 AMDEP_TRUE
adam@0 674 am__quote
adam@0 675 am__include
adam@0 676 DEPDIR
adam@0 677 am__untar
adam@0 678 am__tar
adam@0 679 AMTAR
adam@0 680 am__leading_dot
adam@0 681 SET_MAKE
adam@0 682 AWK
adam@0 683 mkdir_p
adam@0 684 MKDIR_P
adam@0 685 INSTALL_STRIP_PROGRAM
adam@0 686 STRIP
adam@0 687 install_sh
adam@0 688 MAKEINFO
adam@0 689 AUTOHEADER
adam@0 690 AUTOMAKE
adam@0 691 AUTOCONF
adam@0 692 ACLOCAL
adam@0 693 VERSION
adam@0 694 PACKAGE
adam@0 695 CYGPATH_W
adam@0 696 am__isrc
adam@0 697 INSTALL_DATA
adam@0 698 INSTALL_SCRIPT
adam@0 699 INSTALL_PROGRAM
adam@0 700 EGREP
adam@0 701 GREP
adam@0 702 CPP
adam@0 703 OBJEXT
adam@0 704 EXEEXT
adam@0 705 ac_ct_CC
adam@0 706 CPPFLAGS
adam@0 707 LDFLAGS
adam@0 708 CFLAGS
adam@0 709 CC
adam@0 710 target_alias
adam@0 711 host_alias
adam@0 712 build_alias
adam@0 713 LIBS
adam@0 714 ECHO_T
adam@0 715 ECHO_N
adam@0 716 ECHO_C
adam@0 717 DEFS
adam@0 718 mandir
adam@0 719 localedir
adam@0 720 libdir
adam@0 721 psdir
adam@0 722 pdfdir
adam@0 723 dvidir
adam@0 724 htmldir
adam@0 725 infodir
adam@0 726 docdir
adam@0 727 oldincludedir
adam@0 728 includedir
adam@0 729 localstatedir
adam@0 730 sharedstatedir
adam@0 731 sysconfdir
adam@0 732 datadir
adam@0 733 datarootdir
adam@0 734 libexecdir
adam@0 735 sbindir
adam@0 736 bindir
adam@0 737 program_transform_name
adam@0 738 prefix
adam@0 739 exec_prefix
adam@0 740 PACKAGE_URL
adam@0 741 PACKAGE_BUGREPORT
adam@0 742 PACKAGE_STRING
adam@0 743 PACKAGE_VERSION
adam@0 744 PACKAGE_TARNAME
adam@0 745 PACKAGE_NAME
adam@0 746 PATH_SEPARATOR
adam@0 747 SHELL'
adam@0 748 ac_subst_files=''
adam@0 749 ac_user_opts='
adam@0 750 enable_option_checking
adam@0 751 enable_dependency_tracking
adam@0 752 enable_shared
adam@0 753 enable_static
adam@0 754 with_pic
adam@0 755 enable_fast_install
adam@0 756 with_gnu_ld
adam@12 757 with_sysroot
adam@0 758 enable_libtool_lock
adam@0 759 with_libcurl
adam@0 760 '
adam@0 761 ac_precious_vars='build_alias
adam@0 762 host_alias
adam@0 763 target_alias
adam@0 764 CC
adam@0 765 CFLAGS
adam@0 766 LDFLAGS
adam@0 767 LIBS
adam@0 768 CPPFLAGS
adam@0 769 CPP'
adam@0 770
adam@0 771
adam@0 772 # Initialize some variables set by options.
adam@0 773 ac_init_help=
adam@0 774 ac_init_version=false
adam@0 775 ac_unrecognized_opts=
adam@0 776 ac_unrecognized_sep=
adam@0 777 # The variables have the same names as the options, with
adam@0 778 # dashes changed to underlines.
adam@0 779 cache_file=/dev/null
adam@0 780 exec_prefix=NONE
adam@0 781 no_create=
adam@0 782 no_recursion=
adam@0 783 prefix=NONE
adam@0 784 program_prefix=NONE
adam@0 785 program_suffix=NONE
adam@0 786 program_transform_name=s,x,x,
adam@0 787 silent=
adam@0 788 site=
adam@0 789 srcdir=
adam@0 790 verbose=
adam@0 791 x_includes=NONE
adam@0 792 x_libraries=NONE
adam@0 793
adam@0 794 # Installation directory options.
adam@0 795 # These are left unexpanded so users can "make install exec_prefix=/foo"
adam@0 796 # and all the variables that are supposed to be based on exec_prefix
adam@0 797 # by default will actually change.
adam@0 798 # Use braces instead of parens because sh, perl, etc. also accept them.
adam@0 799 # (The list follows the same order as the GNU Coding Standards.)
adam@0 800 bindir='${exec_prefix}/bin'
adam@0 801 sbindir='${exec_prefix}/sbin'
adam@0 802 libexecdir='${exec_prefix}/libexec'
adam@0 803 datarootdir='${prefix}/share'
adam@0 804 datadir='${datarootdir}'
adam@0 805 sysconfdir='${prefix}/etc'
adam@0 806 sharedstatedir='${prefix}/com'
adam@0 807 localstatedir='${prefix}/var'
adam@0 808 includedir='${prefix}/include'
adam@0 809 oldincludedir='/usr/include'
adam@0 810 docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
adam@0 811 infodir='${datarootdir}/info'
adam@0 812 htmldir='${docdir}'
adam@0 813 dvidir='${docdir}'
adam@0 814 pdfdir='${docdir}'
adam@0 815 psdir='${docdir}'
adam@0 816 libdir='${exec_prefix}/lib'
adam@0 817 localedir='${datarootdir}/locale'
adam@0 818 mandir='${datarootdir}/man'
adam@0 819
adam@0 820 ac_prev=
adam@0 821 ac_dashdash=
adam@0 822 for ac_option
adam@0 823 do
adam@0 824 # If the previous option needs an argument, assign it.
adam@0 825 if test -n "$ac_prev"; then
adam@0 826 eval $ac_prev=\$ac_option
adam@0 827 ac_prev=
adam@0 828 continue
adam@0 829 fi
adam@0 830
adam@0 831 case $ac_option in
adam@0 832 *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
adam@0 833 *=) ac_optarg= ;;
adam@0 834 *) ac_optarg=yes ;;
adam@0 835 esac
adam@0 836
adam@0 837 # Accept the important Cygnus configure options, so we can diagnose typos.
adam@0 838
adam@0 839 case $ac_dashdash$ac_option in
adam@0 840 --)
adam@0 841 ac_dashdash=yes ;;
adam@0 842
adam@0 843 -bindir | --bindir | --bindi | --bind | --bin | --bi)
adam@0 844 ac_prev=bindir ;;
adam@0 845 -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
adam@0 846 bindir=$ac_optarg ;;
adam@0 847
adam@0 848 -build | --build | --buil | --bui | --bu)
adam@0 849 ac_prev=build_alias ;;
adam@0 850 -build=* | --build=* | --buil=* | --bui=* | --bu=*)
adam@0 851 build_alias=$ac_optarg ;;
adam@0 852
adam@0 853 -cache-file | --cache-file | --cache-fil | --cache-fi \
adam@0 854 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
adam@0 855 ac_prev=cache_file ;;
adam@0 856 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
adam@0 857 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
adam@0 858 cache_file=$ac_optarg ;;
adam@0 859
adam@0 860 --config-cache | -C)
adam@0 861 cache_file=config.cache ;;
adam@0 862
adam@0 863 -datadir | --datadir | --datadi | --datad)
adam@0 864 ac_prev=datadir ;;
adam@0 865 -datadir=* | --datadir=* | --datadi=* | --datad=*)
adam@0 866 datadir=$ac_optarg ;;
adam@0 867
adam@0 868 -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
adam@0 869 | --dataroo | --dataro | --datar)
adam@0 870 ac_prev=datarootdir ;;
adam@0 871 -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
adam@0 872 | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
adam@0 873 datarootdir=$ac_optarg ;;
adam@0 874
adam@0 875 -disable-* | --disable-*)
adam@0 876 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
adam@0 877 # Reject names that are not valid shell variable names.
adam@0 878 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
adam@0 879 as_fn_error $? "invalid feature name: $ac_useropt"
adam@0 880 ac_useropt_orig=$ac_useropt
adam@0 881 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
adam@0 882 case $ac_user_opts in
adam@0 883 *"
adam@0 884 "enable_$ac_useropt"
adam@0 885 "*) ;;
adam@0 886 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
adam@0 887 ac_unrecognized_sep=', ';;
adam@0 888 esac
adam@0 889 eval enable_$ac_useropt=no ;;
adam@0 890
adam@0 891 -docdir | --docdir | --docdi | --doc | --do)
adam@0 892 ac_prev=docdir ;;
adam@0 893 -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
adam@0 894 docdir=$ac_optarg ;;
adam@0 895
adam@0 896 -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
adam@0 897 ac_prev=dvidir ;;
adam@0 898 -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
adam@0 899 dvidir=$ac_optarg ;;
adam@0 900
adam@0 901 -enable-* | --enable-*)
adam@0 902 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
adam@0 903 # Reject names that are not valid shell variable names.
adam@0 904 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
adam@0 905 as_fn_error $? "invalid feature name: $ac_useropt"
adam@0 906 ac_useropt_orig=$ac_useropt
adam@0 907 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
adam@0 908 case $ac_user_opts in
adam@0 909 *"
adam@0 910 "enable_$ac_useropt"
adam@0 911 "*) ;;
adam@0 912 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
adam@0 913 ac_unrecognized_sep=', ';;
adam@0 914 esac
adam@0 915 eval enable_$ac_useropt=\$ac_optarg ;;
adam@0 916
adam@0 917 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
adam@0 918 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
adam@0 919 | --exec | --exe | --ex)
adam@0 920 ac_prev=exec_prefix ;;
adam@0 921 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
adam@0 922 | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
adam@0 923 | --exec=* | --exe=* | --ex=*)
adam@0 924 exec_prefix=$ac_optarg ;;
adam@0 925
adam@0 926 -gas | --gas | --ga | --g)
adam@0 927 # Obsolete; use --with-gas.
adam@0 928 with_gas=yes ;;
adam@0 929
adam@0 930 -help | --help | --hel | --he | -h)
adam@0 931 ac_init_help=long ;;
adam@0 932 -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
adam@0 933 ac_init_help=recursive ;;
adam@0 934 -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
adam@0 935 ac_init_help=short ;;
adam@0 936
adam@0 937 -host | --host | --hos | --ho)
adam@0 938 ac_prev=host_alias ;;
adam@0 939 -host=* | --host=* | --hos=* | --ho=*)
adam@0 940 host_alias=$ac_optarg ;;
adam@0 941
adam@0 942 -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
adam@0 943 ac_prev=htmldir ;;
adam@0 944 -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
adam@0 945 | --ht=*)
adam@0 946 htmldir=$ac_optarg ;;
adam@0 947
adam@0 948 -includedir | --includedir | --includedi | --included | --include \
adam@0 949 | --includ | --inclu | --incl | --inc)
adam@0 950 ac_prev=includedir ;;
adam@0 951 -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
adam@0 952 | --includ=* | --inclu=* | --incl=* | --inc=*)
adam@0 953 includedir=$ac_optarg ;;
adam@0 954
adam@0 955 -infodir | --infodir | --infodi | --infod | --info | --inf)
adam@0 956 ac_prev=infodir ;;
adam@0 957 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
adam@0 958 infodir=$ac_optarg ;;
adam@0 959
adam@0 960 -libdir | --libdir | --libdi | --libd)
adam@0 961 ac_prev=libdir ;;
adam@0 962 -libdir=* | --libdir=* | --libdi=* | --libd=*)
adam@0 963 libdir=$ac_optarg ;;
adam@0 964
adam@0 965 -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
adam@0 966 | --libexe | --libex | --libe)
adam@0 967 ac_prev=libexecdir ;;
adam@0 968 -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
adam@0 969 | --libexe=* | --libex=* | --libe=*)
adam@0 970 libexecdir=$ac_optarg ;;
adam@0 971
adam@0 972 -localedir | --localedir | --localedi | --localed | --locale)
adam@0 973 ac_prev=localedir ;;
adam@0 974 -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
adam@0 975 localedir=$ac_optarg ;;
adam@0 976
adam@0 977 -localstatedir | --localstatedir | --localstatedi | --localstated \
adam@0 978 | --localstate | --localstat | --localsta | --localst | --locals)
adam@0 979 ac_prev=localstatedir ;;
adam@0 980 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
adam@0 981 | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
adam@0 982 localstatedir=$ac_optarg ;;
adam@0 983
adam@0 984 -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
adam@0 985 ac_prev=mandir ;;
adam@0 986 -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
adam@0 987 mandir=$ac_optarg ;;
adam@0 988
adam@0 989 -nfp | --nfp | --nf)
adam@0 990 # Obsolete; use --without-fp.
adam@0 991 with_fp=no ;;
adam@0 992
adam@0 993 -no-create | --no-create | --no-creat | --no-crea | --no-cre \
adam@0 994 | --no-cr | --no-c | -n)
adam@0 995 no_create=yes ;;
adam@0 996
adam@0 997 -no-recursion | --no-recursion | --no-recursio | --no-recursi \
adam@0 998 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
adam@0 999 no_recursion=yes ;;
adam@0 1000
adam@0 1001 -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
adam@0 1002 | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
adam@0 1003 | --oldin | --oldi | --old | --ol | --o)
adam@0 1004 ac_prev=oldincludedir ;;
adam@0 1005 -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
adam@0 1006 | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
adam@0 1007 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
adam@0 1008 oldincludedir=$ac_optarg ;;
adam@0 1009
adam@0 1010 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
adam@0 1011 ac_prev=prefix ;;
adam@0 1012 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
adam@0 1013 prefix=$ac_optarg ;;
adam@0 1014
adam@0 1015 -program-prefix | --program-prefix | --program-prefi | --program-pref \
adam@0 1016 | --program-pre | --program-pr | --program-p)
adam@0 1017 ac_prev=program_prefix ;;
adam@0 1018 -program-prefix=* | --program-prefix=* | --program-prefi=* \
adam@0 1019 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
adam@0 1020 program_prefix=$ac_optarg ;;
adam@0 1021
adam@0 1022 -program-suffix | --program-suffix | --program-suffi | --program-suff \
adam@0 1023 | --program-suf | --program-su | --program-s)
adam@0 1024 ac_prev=program_suffix ;;
adam@0 1025 -program-suffix=* | --program-suffix=* | --program-suffi=* \
adam@0 1026 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
adam@0 1027 program_suffix=$ac_optarg ;;
adam@0 1028
adam@0 1029 -program-transform-name | --program-transform-name \
adam@0 1030 | --program-transform-nam | --program-transform-na \
adam@0 1031 | --program-transform-n | --program-transform- \
adam@0 1032 | --program-transform | --program-transfor \
adam@0 1033 | --program-transfo | --program-transf \
adam@0 1034 | --program-trans | --program-tran \
adam@0 1035 | --progr-tra | --program-tr | --program-t)
adam@0 1036 ac_prev=program_transform_name ;;
adam@0 1037 -program-transform-name=* | --program-transform-name=* \
adam@0 1038 | --program-transform-nam=* | --program-transform-na=* \
adam@0 1039 | --program-transform-n=* | --program-transform-=* \
adam@0 1040 | --program-transform=* | --program-transfor=* \
adam@0 1041 | --program-transfo=* | --program-transf=* \
adam@0 1042 | --program-trans=* | --program-tran=* \
adam@0 1043 | --progr-tra=* | --program-tr=* | --program-t=*)
adam@0 1044 program_transform_name=$ac_optarg ;;
adam@0 1045
adam@0 1046 -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
adam@0 1047 ac_prev=pdfdir ;;
adam@0 1048 -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
adam@0 1049 pdfdir=$ac_optarg ;;
adam@0 1050
adam@0 1051 -psdir | --psdir | --psdi | --psd | --ps)
adam@0 1052 ac_prev=psdir ;;
adam@0 1053 -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
adam@0 1054 psdir=$ac_optarg ;;
adam@0 1055
adam@0 1056 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
adam@0 1057 | -silent | --silent | --silen | --sile | --sil)
adam@0 1058 silent=yes ;;
adam@0 1059
adam@0 1060 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
adam@0 1061 ac_prev=sbindir ;;
adam@0 1062 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
adam@0 1063 | --sbi=* | --sb=*)
adam@0 1064 sbindir=$ac_optarg ;;
adam@0 1065
adam@0 1066 -sharedstatedir | --sharedstatedir | --sharedstatedi \
adam@0 1067 | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
adam@0 1068 | --sharedst | --shareds | --shared | --share | --shar \
adam@0 1069 | --sha | --sh)
adam@0 1070 ac_prev=sharedstatedir ;;
adam@0 1071 -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
adam@0 1072 | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
adam@0 1073 | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
adam@0 1074 | --sha=* | --sh=*)
adam@0 1075 sharedstatedir=$ac_optarg ;;
adam@0 1076
adam@0 1077 -site | --site | --sit)
adam@0 1078 ac_prev=site ;;
adam@0 1079 -site=* | --site=* | --sit=*)
adam@0 1080 site=$ac_optarg ;;
adam@0 1081
adam@0 1082 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
adam@0 1083 ac_prev=srcdir ;;
adam@0 1084 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
adam@0 1085 srcdir=$ac_optarg ;;
adam@0 1086
adam@0 1087 -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
adam@0 1088 | --syscon | --sysco | --sysc | --sys | --sy)
adam@0 1089 ac_prev=sysconfdir ;;
adam@0 1090 -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
adam@0 1091 | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
adam@0 1092 sysconfdir=$ac_optarg ;;
adam@0 1093
adam@0 1094 -target | --target | --targe | --targ | --tar | --ta | --t)
adam@0 1095 ac_prev=target_alias ;;
adam@0 1096 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
adam@0 1097 target_alias=$ac_optarg ;;
adam@0 1098
adam@0 1099 -v | -verbose | --verbose | --verbos | --verbo | --verb)
adam@0 1100 verbose=yes ;;
adam@0 1101
adam@0 1102 -version | --version | --versio | --versi | --vers | -V)
adam@0 1103 ac_init_version=: ;;
adam@0 1104
adam@0 1105 -with-* | --with-*)
adam@0 1106 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
adam@0 1107 # Reject names that are not valid shell variable names.
adam@0 1108 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
adam@0 1109 as_fn_error $? "invalid package name: $ac_useropt"
adam@0 1110 ac_useropt_orig=$ac_useropt
adam@0 1111 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
adam@0 1112 case $ac_user_opts in
adam@0 1113 *"
adam@0 1114 "with_$ac_useropt"
adam@0 1115 "*) ;;
adam@0 1116 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
adam@0 1117 ac_unrecognized_sep=', ';;
adam@0 1118 esac
adam@0 1119 eval with_$ac_useropt=\$ac_optarg ;;
adam@0 1120
adam@0 1121 -without-* | --without-*)
adam@0 1122 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
adam@0 1123 # Reject names that are not valid shell variable names.
adam@0 1124 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
adam@0 1125 as_fn_error $? "invalid package name: $ac_useropt"
adam@0 1126 ac_useropt_orig=$ac_useropt
adam@0 1127 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
adam@0 1128 case $ac_user_opts in
adam@0 1129 *"
adam@0 1130 "with_$ac_useropt"
adam@0 1131 "*) ;;
adam@0 1132 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
adam@0 1133 ac_unrecognized_sep=', ';;
adam@0 1134 esac
adam@0 1135 eval with_$ac_useropt=no ;;
adam@0 1136
adam@0 1137 --x)
adam@0 1138 # Obsolete; use --with-x.
adam@0 1139 with_x=yes ;;
adam@0 1140
adam@0 1141 -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
adam@0 1142 | --x-incl | --x-inc | --x-in | --x-i)
adam@0 1143 ac_prev=x_includes ;;
adam@0 1144 -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
adam@0 1145 | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
adam@0 1146 x_includes=$ac_optarg ;;
adam@0 1147
adam@0 1148 -x-libraries | --x-libraries | --x-librarie | --x-librari \
adam@0 1149 | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
adam@0 1150 ac_prev=x_libraries ;;
adam@0 1151 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
adam@0 1152 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
adam@0 1153 x_libraries=$ac_optarg ;;
adam@0 1154
adam@0 1155 -*) as_fn_error $? "unrecognized option: \`$ac_option'
adam@0 1156 Try \`$0 --help' for more information"
adam@0 1157 ;;
adam@0 1158
adam@0 1159 *=*)
adam@0 1160 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
adam@0 1161 # Reject names that are not valid shell variable names.
adam@0 1162 case $ac_envvar in #(
adam@0 1163 '' | [0-9]* | *[!_$as_cr_alnum]* )
adam@0 1164 as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
adam@0 1165 esac
adam@0 1166 eval $ac_envvar=\$ac_optarg
adam@0 1167 export $ac_envvar ;;
adam@0 1168
adam@0 1169 *)
adam@0 1170 # FIXME: should be removed in autoconf 3.0.
adam@0 1171 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
adam@0 1172 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
adam@0 1173 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
adam@12 1174 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
adam@0 1175 ;;
adam@0 1176
adam@0 1177 esac
adam@0 1178 done
adam@0 1179
adam@0 1180 if test -n "$ac_prev"; then
adam@0 1181 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
adam@0 1182 as_fn_error $? "missing argument to $ac_option"
adam@0 1183 fi
adam@0 1184
adam@0 1185 if test -n "$ac_unrecognized_opts"; then
adam@0 1186 case $enable_option_checking in
adam@0 1187 no) ;;
adam@0 1188 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
adam@0 1189 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
adam@0 1190 esac
adam@0 1191 fi
adam@0 1192
adam@0 1193 # Check all directory arguments for consistency.
adam@0 1194 for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
adam@0 1195 datadir sysconfdir sharedstatedir localstatedir includedir \
adam@0 1196 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
adam@0 1197 libdir localedir mandir
adam@0 1198 do
adam@0 1199 eval ac_val=\$$ac_var
adam@0 1200 # Remove trailing slashes.
adam@0 1201 case $ac_val in
adam@0 1202 */ )
adam@0 1203 ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
adam@0 1204 eval $ac_var=\$ac_val;;
adam@0 1205 esac
adam@0 1206 # Be sure to have absolute directory names.
adam@0 1207 case $ac_val in
adam@0 1208 [\\/$]* | ?:[\\/]* ) continue;;
adam@0 1209 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
adam@0 1210 esac
adam@0 1211 as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
adam@0 1212 done
adam@0 1213
adam@0 1214 # There might be people who depend on the old broken behavior: `$host'
adam@0 1215 # used to hold the argument of --host etc.
adam@0 1216 # FIXME: To remove some day.
adam@0 1217 build=$build_alias
adam@0 1218 host=$host_alias
adam@0 1219 target=$target_alias
adam@0 1220
adam@0 1221 # FIXME: To remove some day.
adam@0 1222 if test "x$host_alias" != x; then
adam@0 1223 if test "x$build_alias" = x; then
adam@0 1224 cross_compiling=maybe
adam@0 1225 elif test "x$build_alias" != "x$host_alias"; then
adam@0 1226 cross_compiling=yes
adam@0 1227 fi
adam@0 1228 fi
adam@0 1229
adam@0 1230 ac_tool_prefix=
adam@0 1231 test -n "$host_alias" && ac_tool_prefix=$host_alias-
adam@0 1232
adam@0 1233 test "$silent" = yes && exec 6>/dev/null
adam@0 1234
adam@0 1235
adam@0 1236 ac_pwd=`pwd` && test -n "$ac_pwd" &&
adam@0 1237 ac_ls_di=`ls -di .` &&
adam@0 1238 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
adam@0 1239 as_fn_error $? "working directory cannot be determined"
adam@0 1240 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
adam@0 1241 as_fn_error $? "pwd does not report name of working directory"
adam@0 1242
adam@0 1243
adam@0 1244 # Find the source files, if location was not specified.
adam@0 1245 if test -z "$srcdir"; then
adam@0 1246 ac_srcdir_defaulted=yes
adam@0 1247 # Try the directory containing this script, then the parent directory.
adam@0 1248 ac_confdir=`$as_dirname -- "$as_myself" ||
adam@0 1249 $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
adam@0 1250 X"$as_myself" : 'X\(//\)[^/]' \| \
adam@0 1251 X"$as_myself" : 'X\(//\)$' \| \
adam@0 1252 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
adam@0 1253 $as_echo X"$as_myself" |
adam@0 1254 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
adam@0 1255 s//\1/
adam@0 1256 q
adam@0 1257 }
adam@0 1258 /^X\(\/\/\)[^/].*/{
adam@0 1259 s//\1/
adam@0 1260 q
adam@0 1261 }
adam@0 1262 /^X\(\/\/\)$/{
adam@0 1263 s//\1/
adam@0 1264 q
adam@0 1265 }
adam@0 1266 /^X\(\/\).*/{
adam@0 1267 s//\1/
adam@0 1268 q
adam@0 1269 }
adam@0 1270 s/.*/./; q'`
adam@0 1271 srcdir=$ac_confdir
adam@0 1272 if test ! -r "$srcdir/$ac_unique_file"; then
adam@0 1273 srcdir=..
adam@0 1274 fi
adam@0 1275 else
adam@0 1276 ac_srcdir_defaulted=no
adam@0 1277 fi
adam@0 1278 if test ! -r "$srcdir/$ac_unique_file"; then
adam@0 1279 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
adam@0 1280 as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
adam@0 1281 fi
adam@0 1282 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
adam@0 1283 ac_abs_confdir=`(
adam@0 1284 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
adam@0 1285 pwd)`
adam@0 1286 # When building in place, set srcdir=.
adam@0 1287 if test "$ac_abs_confdir" = "$ac_pwd"; then
adam@0 1288 srcdir=.
adam@0 1289 fi
adam@0 1290 # Remove unnecessary trailing slashes from srcdir.
adam@0 1291 # Double slashes in file names in object file debugging info
adam@0 1292 # mess up M-x gdb in Emacs.
adam@0 1293 case $srcdir in
adam@0 1294 */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
adam@0 1295 esac
adam@0 1296 for ac_var in $ac_precious_vars; do
adam@0 1297 eval ac_env_${ac_var}_set=\${${ac_var}+set}
adam@0 1298 eval ac_env_${ac_var}_value=\$${ac_var}
adam@0 1299 eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
adam@0 1300 eval ac_cv_env_${ac_var}_value=\$${ac_var}
adam@0 1301 done
adam@0 1302
adam@0 1303 #
adam@0 1304 # Report the --help message.
adam@0 1305 #
adam@0 1306 if test "$ac_init_help" = "long"; then
adam@0 1307 # Omit some internal or obsolete options to make the list less imposing.
adam@0 1308 # This message is too long to be a string in the A/UX 3.1 sh.
adam@0 1309 cat <<_ACEOF
adam@0 1310 \`configure' configures urweb_feed 1.0 to adapt to many kinds of systems.
adam@0 1311
adam@0 1312 Usage: $0 [OPTION]... [VAR=VALUE]...
adam@0 1313
adam@0 1314 To assign environment variables (e.g., CC, CFLAGS...), specify them as
adam@0 1315 VAR=VALUE. See below for descriptions of some of the useful variables.
adam@0 1316
adam@0 1317 Defaults for the options are specified in brackets.
adam@0 1318
adam@0 1319 Configuration:
adam@0 1320 -h, --help display this help and exit
adam@0 1321 --help=short display options specific to this package
adam@0 1322 --help=recursive display the short help of all the included packages
adam@0 1323 -V, --version display version information and exit
adam@0 1324 -q, --quiet, --silent do not print \`checking ...' messages
adam@0 1325 --cache-file=FILE cache test results in FILE [disabled]
adam@0 1326 -C, --config-cache alias for \`--cache-file=config.cache'
adam@0 1327 -n, --no-create do not create output files
adam@0 1328 --srcdir=DIR find the sources in DIR [configure dir or \`..']
adam@0 1329
adam@0 1330 Installation directories:
adam@0 1331 --prefix=PREFIX install architecture-independent files in PREFIX
adam@0 1332 [$ac_default_prefix]
adam@0 1333 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
adam@0 1334 [PREFIX]
adam@0 1335
adam@0 1336 By default, \`make install' will install all the files in
adam@0 1337 \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
adam@0 1338 an installation prefix other than \`$ac_default_prefix' using \`--prefix',
adam@0 1339 for instance \`--prefix=\$HOME'.
adam@0 1340
adam@0 1341 For better control, use the options below.
adam@0 1342
adam@0 1343 Fine tuning of the installation directories:
adam@0 1344 --bindir=DIR user executables [EPREFIX/bin]
adam@0 1345 --sbindir=DIR system admin executables [EPREFIX/sbin]
adam@0 1346 --libexecdir=DIR program executables [EPREFIX/libexec]
adam@0 1347 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
adam@0 1348 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
adam@0 1349 --localstatedir=DIR modifiable single-machine data [PREFIX/var]
adam@0 1350 --libdir=DIR object code libraries [EPREFIX/lib]
adam@0 1351 --includedir=DIR C header files [PREFIX/include]
adam@0 1352 --oldincludedir=DIR C header files for non-gcc [/usr/include]
adam@0 1353 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
adam@0 1354 --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
adam@0 1355 --infodir=DIR info documentation [DATAROOTDIR/info]
adam@0 1356 --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
adam@0 1357 --mandir=DIR man documentation [DATAROOTDIR/man]
adam@0 1358 --docdir=DIR documentation root [DATAROOTDIR/doc/urweb_feed]
adam@0 1359 --htmldir=DIR html documentation [DOCDIR]
adam@0 1360 --dvidir=DIR dvi documentation [DOCDIR]
adam@0 1361 --pdfdir=DIR pdf documentation [DOCDIR]
adam@0 1362 --psdir=DIR ps documentation [DOCDIR]
adam@0 1363 _ACEOF
adam@0 1364
adam@0 1365 cat <<\_ACEOF
adam@0 1366
adam@0 1367 Program names:
adam@0 1368 --program-prefix=PREFIX prepend PREFIX to installed program names
adam@0 1369 --program-suffix=SUFFIX append SUFFIX to installed program names
adam@0 1370 --program-transform-name=PROGRAM run sed PROGRAM on installed program names
adam@0 1371
adam@0 1372 System types:
adam@0 1373 --build=BUILD configure for building on BUILD [guessed]
adam@0 1374 --host=HOST cross-compile to build programs to run on HOST [BUILD]
adam@0 1375 _ACEOF
adam@0 1376 fi
adam@0 1377
adam@0 1378 if test -n "$ac_init_help"; then
adam@0 1379 case $ac_init_help in
adam@0 1380 short | recursive ) echo "Configuration of urweb_feed 1.0:";;
adam@0 1381 esac
adam@0 1382 cat <<\_ACEOF
adam@0 1383
adam@0 1384 Optional Features:
adam@0 1385 --disable-option-checking ignore unrecognized --enable/--with options
adam@0 1386 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
adam@0 1387 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
adam@0 1388 --disable-dependency-tracking speeds up one-time build
adam@0 1389 --enable-dependency-tracking do not reject slow dependency extractors
adam@0 1390 --enable-shared[=PKGS] build shared libraries [default=yes]
adam@0 1391 --enable-static[=PKGS] build static libraries [default=yes]
adam@0 1392 --enable-fast-install[=PKGS]
adam@0 1393 optimize for fast installation [default=yes]
adam@0 1394 --disable-libtool-lock avoid locking (might break parallel builds)
adam@0 1395
adam@0 1396 Optional Packages:
adam@0 1397 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
adam@0 1398 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
adam@20 1399 --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use
adam@0 1400 both]
adam@0 1401 --with-gnu-ld assume the C compiler uses GNU ld [default=no]
adam@12 1402 --with-sysroot=DIR Search for dependent libraries within DIR
adam@12 1403 (or the compiler's sysroot if not specified).
adam@0 1404 --with-libcurl=DIR look for the curl library in DIR
adam@0 1405
adam@0 1406 Some influential environment variables:
adam@0 1407 CC C compiler command
adam@0 1408 CFLAGS C compiler flags
adam@0 1409 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
adam@0 1410 nonstandard directory <lib dir>
adam@0 1411 LIBS libraries to pass to the linker, e.g. -l<library>
adam@0 1412 CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
adam@0 1413 you have headers in a nonstandard directory <include dir>
adam@0 1414 CPP C preprocessor
adam@0 1415
adam@0 1416 Use these variables to override the choices made by `configure' or to help
adam@0 1417 it to find libraries and programs with nonstandard names/locations.
adam@0 1418
adam@0 1419 Report bugs to the package provider.
adam@0 1420 _ACEOF
adam@0 1421 ac_status=$?
adam@0 1422 fi
adam@0 1423
adam@0 1424 if test "$ac_init_help" = "recursive"; then
adam@0 1425 # If there are subdirs, report their specific --help.
adam@0 1426 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
adam@0 1427 test -d "$ac_dir" ||
adam@0 1428 { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
adam@0 1429 continue
adam@0 1430 ac_builddir=.
adam@0 1431
adam@0 1432 case "$ac_dir" in
adam@0 1433 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
adam@0 1434 *)
adam@0 1435 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
adam@0 1436 # A ".." for each directory in $ac_dir_suffix.
adam@0 1437 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
adam@0 1438 case $ac_top_builddir_sub in
adam@0 1439 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
adam@0 1440 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
adam@0 1441 esac ;;
adam@0 1442 esac
adam@0 1443 ac_abs_top_builddir=$ac_pwd
adam@0 1444 ac_abs_builddir=$ac_pwd$ac_dir_suffix
adam@0 1445 # for backward compatibility:
adam@0 1446 ac_top_builddir=$ac_top_build_prefix
adam@0 1447
adam@0 1448 case $srcdir in
adam@0 1449 .) # We are building in place.
adam@0 1450 ac_srcdir=.
adam@0 1451 ac_top_srcdir=$ac_top_builddir_sub
adam@0 1452 ac_abs_top_srcdir=$ac_pwd ;;
adam@0 1453 [\\/]* | ?:[\\/]* ) # Absolute name.
adam@0 1454 ac_srcdir=$srcdir$ac_dir_suffix;
adam@0 1455 ac_top_srcdir=$srcdir
adam@0 1456 ac_abs_top_srcdir=$srcdir ;;
adam@0 1457 *) # Relative name.
adam@0 1458 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
adam@0 1459 ac_top_srcdir=$ac_top_build_prefix$srcdir
adam@0 1460 ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
adam@0 1461 esac
adam@0 1462 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
adam@0 1463
adam@0 1464 cd "$ac_dir" || { ac_status=$?; continue; }
adam@0 1465 # Check for guested configure.
adam@0 1466 if test -f "$ac_srcdir/configure.gnu"; then
adam@0 1467 echo &&
adam@0 1468 $SHELL "$ac_srcdir/configure.gnu" --help=recursive
adam@0 1469 elif test -f "$ac_srcdir/configure"; then
adam@0 1470 echo &&
adam@0 1471 $SHELL "$ac_srcdir/configure" --help=recursive
adam@0 1472 else
adam@0 1473 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
adam@0 1474 fi || ac_status=$?
adam@0 1475 cd "$ac_pwd" || { ac_status=$?; break; }
adam@0 1476 done
adam@0 1477 fi
adam@0 1478
adam@0 1479 test -n "$ac_init_help" && exit $ac_status
adam@0 1480 if $ac_init_version; then
adam@0 1481 cat <<\_ACEOF
adam@0 1482 urweb_feed configure 1.0
adam@20 1483 generated by GNU Autoconf 2.69
adam@20 1484
adam@20 1485 Copyright (C) 2012 Free Software Foundation, Inc.
adam@0 1486 This configure script is free software; the Free Software Foundation
adam@0 1487 gives unlimited permission to copy, distribute and modify it.
adam@0 1488 _ACEOF
adam@0 1489 exit
adam@0 1490 fi
adam@0 1491
adam@0 1492 ## ------------------------ ##
adam@0 1493 ## Autoconf initialization. ##
adam@0 1494 ## ------------------------ ##
adam@0 1495
adam@0 1496 # ac_fn_c_try_compile LINENO
adam@0 1497 # --------------------------
adam@0 1498 # Try to compile conftest.$ac_ext, and return whether this succeeded.
adam@0 1499 ac_fn_c_try_compile ()
adam@0 1500 {
adam@0 1501 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
adam@0 1502 rm -f conftest.$ac_objext
adam@0 1503 if { { ac_try="$ac_compile"
adam@0 1504 case "(($ac_try" in
adam@0 1505 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 1506 *) ac_try_echo=$ac_try;;
adam@0 1507 esac
adam@0 1508 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 1509 $as_echo "$ac_try_echo"; } >&5
adam@0 1510 (eval "$ac_compile") 2>conftest.err
adam@0 1511 ac_status=$?
adam@0 1512 if test -s conftest.err; then
adam@0 1513 grep -v '^ *+' conftest.err >conftest.er1
adam@0 1514 cat conftest.er1 >&5
adam@0 1515 mv -f conftest.er1 conftest.err
adam@0 1516 fi
adam@0 1517 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 1518 test $ac_status = 0; } && {
adam@0 1519 test -z "$ac_c_werror_flag" ||
adam@0 1520 test ! -s conftest.err
adam@0 1521 } && test -s conftest.$ac_objext; then :
adam@0 1522 ac_retval=0
adam@0 1523 else
adam@0 1524 $as_echo "$as_me: failed program was:" >&5
adam@0 1525 sed 's/^/| /' conftest.$ac_ext >&5
adam@0 1526
adam@0 1527 ac_retval=1
adam@0 1528 fi
adam@12 1529 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
adam@0 1530 as_fn_set_status $ac_retval
adam@0 1531
adam@0 1532 } # ac_fn_c_try_compile
adam@0 1533
adam@0 1534 # ac_fn_c_try_cpp LINENO
adam@0 1535 # ----------------------
adam@0 1536 # Try to preprocess conftest.$ac_ext, and return whether this succeeded.
adam@0 1537 ac_fn_c_try_cpp ()
adam@0 1538 {
adam@0 1539 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
adam@0 1540 if { { ac_try="$ac_cpp conftest.$ac_ext"
adam@0 1541 case "(($ac_try" in
adam@0 1542 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 1543 *) ac_try_echo=$ac_try;;
adam@0 1544 esac
adam@0 1545 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 1546 $as_echo "$ac_try_echo"; } >&5
adam@0 1547 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
adam@0 1548 ac_status=$?
adam@0 1549 if test -s conftest.err; then
adam@0 1550 grep -v '^ *+' conftest.err >conftest.er1
adam@0 1551 cat conftest.er1 >&5
adam@0 1552 mv -f conftest.er1 conftest.err
adam@0 1553 fi
adam@0 1554 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 1555 test $ac_status = 0; } > conftest.i && {
adam@0 1556 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
adam@0 1557 test ! -s conftest.err
adam@0 1558 }; then :
adam@0 1559 ac_retval=0
adam@0 1560 else
adam@0 1561 $as_echo "$as_me: failed program was:" >&5
adam@0 1562 sed 's/^/| /' conftest.$ac_ext >&5
adam@0 1563
adam@0 1564 ac_retval=1
adam@0 1565 fi
adam@12 1566 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
adam@0 1567 as_fn_set_status $ac_retval
adam@0 1568
adam@0 1569 } # ac_fn_c_try_cpp
adam@0 1570
adam@0 1571 # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
adam@0 1572 # -------------------------------------------------------
adam@0 1573 # Tests whether HEADER exists, giving a warning if it cannot be compiled using
adam@0 1574 # the include files in INCLUDES and setting the cache variable VAR
adam@0 1575 # accordingly.
adam@0 1576 ac_fn_c_check_header_mongrel ()
adam@0 1577 {
adam@0 1578 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
adam@12 1579 if eval \${$3+:} false; then :
adam@0 1580 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
adam@0 1581 $as_echo_n "checking for $2... " >&6; }
adam@12 1582 if eval \${$3+:} false; then :
adam@0 1583 $as_echo_n "(cached) " >&6
adam@0 1584 fi
adam@0 1585 eval ac_res=\$$3
adam@0 1586 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
adam@0 1587 $as_echo "$ac_res" >&6; }
adam@0 1588 else
adam@0 1589 # Is the header compilable?
adam@0 1590 { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
adam@0 1591 $as_echo_n "checking $2 usability... " >&6; }
adam@0 1592 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 1593 /* end confdefs.h. */
adam@0 1594 $4
adam@0 1595 #include <$2>
adam@0 1596 _ACEOF
adam@0 1597 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 1598 ac_header_compiler=yes
adam@0 1599 else
adam@0 1600 ac_header_compiler=no
adam@0 1601 fi
adam@0 1602 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 1603 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
adam@0 1604 $as_echo "$ac_header_compiler" >&6; }
adam@0 1605
adam@0 1606 # Is the header present?
adam@0 1607 { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
adam@0 1608 $as_echo_n "checking $2 presence... " >&6; }
adam@0 1609 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 1610 /* end confdefs.h. */
adam@0 1611 #include <$2>
adam@0 1612 _ACEOF
adam@0 1613 if ac_fn_c_try_cpp "$LINENO"; then :
adam@0 1614 ac_header_preproc=yes
adam@0 1615 else
adam@0 1616 ac_header_preproc=no
adam@0 1617 fi
adam@0 1618 rm -f conftest.err conftest.i conftest.$ac_ext
adam@0 1619 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
adam@0 1620 $as_echo "$ac_header_preproc" >&6; }
adam@0 1621
adam@0 1622 # So? What about this header?
adam@0 1623 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
adam@0 1624 yes:no: )
adam@0 1625 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
adam@0 1626 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
adam@0 1627 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
adam@0 1628 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
adam@0 1629 ;;
adam@0 1630 no:yes:* )
adam@0 1631 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
adam@0 1632 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
adam@0 1633 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
adam@0 1634 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
adam@0 1635 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
adam@0 1636 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
adam@0 1637 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5
adam@0 1638 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
adam@0 1639 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
adam@0 1640 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
adam@0 1641 ;;
adam@0 1642 esac
adam@0 1643 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
adam@0 1644 $as_echo_n "checking for $2... " >&6; }
adam@12 1645 if eval \${$3+:} false; then :
adam@0 1646 $as_echo_n "(cached) " >&6
adam@0 1647 else
adam@0 1648 eval "$3=\$ac_header_compiler"
adam@0 1649 fi
adam@0 1650 eval ac_res=\$$3
adam@0 1651 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
adam@0 1652 $as_echo "$ac_res" >&6; }
adam@0 1653 fi
adam@12 1654 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
adam@0 1655
adam@0 1656 } # ac_fn_c_check_header_mongrel
adam@0 1657
adam@0 1658 # ac_fn_c_try_run LINENO
adam@0 1659 # ----------------------
adam@0 1660 # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes
adam@0 1661 # that executables *can* be run.
adam@0 1662 ac_fn_c_try_run ()
adam@0 1663 {
adam@0 1664 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
adam@0 1665 if { { ac_try="$ac_link"
adam@0 1666 case "(($ac_try" in
adam@0 1667 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 1668 *) ac_try_echo=$ac_try;;
adam@0 1669 esac
adam@0 1670 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 1671 $as_echo "$ac_try_echo"; } >&5
adam@0 1672 (eval "$ac_link") 2>&5
adam@0 1673 ac_status=$?
adam@0 1674 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 1675 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
adam@0 1676 { { case "(($ac_try" in
adam@0 1677 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 1678 *) ac_try_echo=$ac_try;;
adam@0 1679 esac
adam@0 1680 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 1681 $as_echo "$ac_try_echo"; } >&5
adam@0 1682 (eval "$ac_try") 2>&5
adam@0 1683 ac_status=$?
adam@0 1684 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 1685 test $ac_status = 0; }; }; then :
adam@0 1686 ac_retval=0
adam@0 1687 else
adam@0 1688 $as_echo "$as_me: program exited with status $ac_status" >&5
adam@0 1689 $as_echo "$as_me: failed program was:" >&5
adam@0 1690 sed 's/^/| /' conftest.$ac_ext >&5
adam@0 1691
adam@0 1692 ac_retval=$ac_status
adam@0 1693 fi
adam@0 1694 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
adam@12 1695 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
adam@0 1696 as_fn_set_status $ac_retval
adam@0 1697
adam@0 1698 } # ac_fn_c_try_run
adam@0 1699
adam@0 1700 # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES
adam@0 1701 # -------------------------------------------------------
adam@0 1702 # Tests whether HEADER exists and can be compiled using the include files in
adam@0 1703 # INCLUDES, setting the cache variable VAR accordingly.
adam@0 1704 ac_fn_c_check_header_compile ()
adam@0 1705 {
adam@0 1706 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
adam@0 1707 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
adam@0 1708 $as_echo_n "checking for $2... " >&6; }
adam@12 1709 if eval \${$3+:} false; then :
adam@0 1710 $as_echo_n "(cached) " >&6
adam@0 1711 else
adam@0 1712 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 1713 /* end confdefs.h. */
adam@0 1714 $4
adam@0 1715 #include <$2>
adam@0 1716 _ACEOF
adam@0 1717 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 1718 eval "$3=yes"
adam@0 1719 else
adam@0 1720 eval "$3=no"
adam@0 1721 fi
adam@0 1722 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 1723 fi
adam@0 1724 eval ac_res=\$$3
adam@0 1725 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
adam@0 1726 $as_echo "$ac_res" >&6; }
adam@12 1727 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
adam@0 1728
adam@0 1729 } # ac_fn_c_check_header_compile
adam@0 1730
adam@0 1731 # ac_fn_c_try_link LINENO
adam@0 1732 # -----------------------
adam@0 1733 # Try to link conftest.$ac_ext, and return whether this succeeded.
adam@0 1734 ac_fn_c_try_link ()
adam@0 1735 {
adam@0 1736 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
adam@0 1737 rm -f conftest.$ac_objext conftest$ac_exeext
adam@0 1738 if { { ac_try="$ac_link"
adam@0 1739 case "(($ac_try" in
adam@0 1740 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 1741 *) ac_try_echo=$ac_try;;
adam@0 1742 esac
adam@0 1743 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 1744 $as_echo "$ac_try_echo"; } >&5
adam@0 1745 (eval "$ac_link") 2>conftest.err
adam@0 1746 ac_status=$?
adam@0 1747 if test -s conftest.err; then
adam@0 1748 grep -v '^ *+' conftest.err >conftest.er1
adam@0 1749 cat conftest.er1 >&5
adam@0 1750 mv -f conftest.er1 conftest.err
adam@0 1751 fi
adam@0 1752 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 1753 test $ac_status = 0; } && {
adam@0 1754 test -z "$ac_c_werror_flag" ||
adam@0 1755 test ! -s conftest.err
adam@0 1756 } && test -s conftest$ac_exeext && {
adam@0 1757 test "$cross_compiling" = yes ||
adam@20 1758 test -x conftest$ac_exeext
adam@0 1759 }; then :
adam@0 1760 ac_retval=0
adam@0 1761 else
adam@0 1762 $as_echo "$as_me: failed program was:" >&5
adam@0 1763 sed 's/^/| /' conftest.$ac_ext >&5
adam@0 1764
adam@0 1765 ac_retval=1
adam@0 1766 fi
adam@0 1767 # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
adam@0 1768 # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
adam@0 1769 # interfere with the next link command; also delete a directory that is
adam@0 1770 # left behind by Apple's compiler. We do this before executing the actions.
adam@0 1771 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
adam@12 1772 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
adam@0 1773 as_fn_set_status $ac_retval
adam@0 1774
adam@0 1775 } # ac_fn_c_try_link
adam@0 1776
adam@0 1777 # ac_fn_c_check_func LINENO FUNC VAR
adam@0 1778 # ----------------------------------
adam@0 1779 # Tests whether FUNC exists, setting the cache variable VAR accordingly
adam@0 1780 ac_fn_c_check_func ()
adam@0 1781 {
adam@0 1782 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
adam@0 1783 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
adam@0 1784 $as_echo_n "checking for $2... " >&6; }
adam@12 1785 if eval \${$3+:} false; then :
adam@0 1786 $as_echo_n "(cached) " >&6
adam@0 1787 else
adam@0 1788 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 1789 /* end confdefs.h. */
adam@0 1790 /* Define $2 to an innocuous variant, in case <limits.h> declares $2.
adam@0 1791 For example, HP-UX 11i <limits.h> declares gettimeofday. */
adam@0 1792 #define $2 innocuous_$2
adam@0 1793
adam@0 1794 /* System header to define __stub macros and hopefully few prototypes,
adam@0 1795 which can conflict with char $2 (); below.
adam@0 1796 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
adam@0 1797 <limits.h> exists even on freestanding compilers. */
adam@0 1798
adam@0 1799 #ifdef __STDC__
adam@0 1800 # include <limits.h>
adam@0 1801 #else
adam@0 1802 # include <assert.h>
adam@0 1803 #endif
adam@0 1804
adam@0 1805 #undef $2
adam@0 1806
adam@0 1807 /* Override any GCC internal prototype to avoid an error.
adam@0 1808 Use char because int might match the return type of a GCC
adam@0 1809 builtin and then its argument prototype would still apply. */
adam@0 1810 #ifdef __cplusplus
adam@0 1811 extern "C"
adam@0 1812 #endif
adam@0 1813 char $2 ();
adam@0 1814 /* The GNU C library defines this for functions which it implements
adam@0 1815 to always fail with ENOSYS. Some functions are actually named
adam@0 1816 something starting with __ and the normal name is an alias. */
adam@0 1817 #if defined __stub_$2 || defined __stub___$2
adam@0 1818 choke me
adam@0 1819 #endif
adam@0 1820
adam@0 1821 int
adam@0 1822 main ()
adam@0 1823 {
adam@0 1824 return $2 ();
adam@0 1825 ;
adam@0 1826 return 0;
adam@0 1827 }
adam@0 1828 _ACEOF
adam@0 1829 if ac_fn_c_try_link "$LINENO"; then :
adam@0 1830 eval "$3=yes"
adam@0 1831 else
adam@0 1832 eval "$3=no"
adam@0 1833 fi
adam@0 1834 rm -f core conftest.err conftest.$ac_objext \
adam@0 1835 conftest$ac_exeext conftest.$ac_ext
adam@0 1836 fi
adam@0 1837 eval ac_res=\$$3
adam@0 1838 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
adam@0 1839 $as_echo "$ac_res" >&6; }
adam@12 1840 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
adam@0 1841
adam@0 1842 } # ac_fn_c_check_func
adam@0 1843 cat >config.log <<_ACEOF
adam@0 1844 This file contains any messages produced by compilers while
adam@0 1845 running configure, to aid debugging if configure makes a mistake.
adam@0 1846
adam@0 1847 It was created by urweb_feed $as_me 1.0, which was
adam@20 1848 generated by GNU Autoconf 2.69. Invocation command line was
adam@0 1849
adam@0 1850 $ $0 $@
adam@0 1851
adam@0 1852 _ACEOF
adam@0 1853 exec 5>>config.log
adam@0 1854 {
adam@0 1855 cat <<_ASUNAME
adam@0 1856 ## --------- ##
adam@0 1857 ## Platform. ##
adam@0 1858 ## --------- ##
adam@0 1859
adam@0 1860 hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
adam@0 1861 uname -m = `(uname -m) 2>/dev/null || echo unknown`
adam@0 1862 uname -r = `(uname -r) 2>/dev/null || echo unknown`
adam@0 1863 uname -s = `(uname -s) 2>/dev/null || echo unknown`
adam@0 1864 uname -v = `(uname -v) 2>/dev/null || echo unknown`
adam@0 1865
adam@0 1866 /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
adam@0 1867 /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
adam@0 1868
adam@0 1869 /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
adam@0 1870 /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
adam@0 1871 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
adam@0 1872 /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
adam@0 1873 /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
adam@0 1874 /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
adam@0 1875 /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
adam@0 1876
adam@0 1877 _ASUNAME
adam@0 1878
adam@0 1879 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 1880 for as_dir in $PATH
adam@0 1881 do
adam@0 1882 IFS=$as_save_IFS
adam@0 1883 test -z "$as_dir" && as_dir=.
adam@0 1884 $as_echo "PATH: $as_dir"
adam@0 1885 done
adam@0 1886 IFS=$as_save_IFS
adam@0 1887
adam@0 1888 } >&5
adam@0 1889
adam@0 1890 cat >&5 <<_ACEOF
adam@0 1891
adam@0 1892
adam@0 1893 ## ----------- ##
adam@0 1894 ## Core tests. ##
adam@0 1895 ## ----------- ##
adam@0 1896
adam@0 1897 _ACEOF
adam@0 1898
adam@0 1899
adam@0 1900 # Keep a trace of the command line.
adam@0 1901 # Strip out --no-create and --no-recursion so they do not pile up.
adam@0 1902 # Strip out --silent because we don't want to record it for future runs.
adam@0 1903 # Also quote any args containing shell meta-characters.
adam@0 1904 # Make two passes to allow for proper duplicate-argument suppression.
adam@0 1905 ac_configure_args=
adam@0 1906 ac_configure_args0=
adam@0 1907 ac_configure_args1=
adam@0 1908 ac_must_keep_next=false
adam@0 1909 for ac_pass in 1 2
adam@0 1910 do
adam@0 1911 for ac_arg
adam@0 1912 do
adam@0 1913 case $ac_arg in
adam@0 1914 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
adam@0 1915 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
adam@0 1916 | -silent | --silent | --silen | --sile | --sil)
adam@0 1917 continue ;;
adam@0 1918 *\'*)
adam@0 1919 ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
adam@0 1920 esac
adam@0 1921 case $ac_pass in
adam@0 1922 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
adam@0 1923 2)
adam@0 1924 as_fn_append ac_configure_args1 " '$ac_arg'"
adam@0 1925 if test $ac_must_keep_next = true; then
adam@0 1926 ac_must_keep_next=false # Got value, back to normal.
adam@0 1927 else
adam@0 1928 case $ac_arg in
adam@0 1929 *=* | --config-cache | -C | -disable-* | --disable-* \
adam@0 1930 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
adam@0 1931 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
adam@0 1932 | -with-* | --with-* | -without-* | --without-* | --x)
adam@0 1933 case "$ac_configure_args0 " in
adam@0 1934 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
adam@0 1935 esac
adam@0 1936 ;;
adam@0 1937 -* ) ac_must_keep_next=true ;;
adam@0 1938 esac
adam@0 1939 fi
adam@0 1940 as_fn_append ac_configure_args " '$ac_arg'"
adam@0 1941 ;;
adam@0 1942 esac
adam@0 1943 done
adam@0 1944 done
adam@0 1945 { ac_configure_args0=; unset ac_configure_args0;}
adam@0 1946 { ac_configure_args1=; unset ac_configure_args1;}
adam@0 1947
adam@0 1948 # When interrupted or exit'd, cleanup temporary files, and complete
adam@0 1949 # config.log. We remove comments because anyway the quotes in there
adam@0 1950 # would cause problems or look ugly.
adam@0 1951 # WARNING: Use '\'' to represent an apostrophe within the trap.
adam@0 1952 # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
adam@0 1953 trap 'exit_status=$?
adam@0 1954 # Save into config.log some information that might help in debugging.
adam@0 1955 {
adam@0 1956 echo
adam@0 1957
adam@0 1958 $as_echo "## ---------------- ##
adam@0 1959 ## Cache variables. ##
adam@0 1960 ## ---------------- ##"
adam@0 1961 echo
adam@0 1962 # The following way of writing the cache mishandles newlines in values,
adam@0 1963 (
adam@0 1964 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
adam@0 1965 eval ac_val=\$$ac_var
adam@0 1966 case $ac_val in #(
adam@0 1967 *${as_nl}*)
adam@0 1968 case $ac_var in #(
adam@0 1969 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
adam@0 1970 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
adam@0 1971 esac
adam@0 1972 case $ac_var in #(
adam@0 1973 _ | IFS | as_nl) ;; #(
adam@0 1974 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
adam@0 1975 *) { eval $ac_var=; unset $ac_var;} ;;
adam@0 1976 esac ;;
adam@0 1977 esac
adam@0 1978 done
adam@0 1979 (set) 2>&1 |
adam@0 1980 case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
adam@0 1981 *${as_nl}ac_space=\ *)
adam@0 1982 sed -n \
adam@0 1983 "s/'\''/'\''\\\\'\'''\''/g;
adam@0 1984 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
adam@0 1985 ;; #(
adam@0 1986 *)
adam@0 1987 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
adam@0 1988 ;;
adam@0 1989 esac |
adam@0 1990 sort
adam@0 1991 )
adam@0 1992 echo
adam@0 1993
adam@0 1994 $as_echo "## ----------------- ##
adam@0 1995 ## Output variables. ##
adam@0 1996 ## ----------------- ##"
adam@0 1997 echo
adam@0 1998 for ac_var in $ac_subst_vars
adam@0 1999 do
adam@0 2000 eval ac_val=\$$ac_var
adam@0 2001 case $ac_val in
adam@0 2002 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
adam@0 2003 esac
adam@0 2004 $as_echo "$ac_var='\''$ac_val'\''"
adam@0 2005 done | sort
adam@0 2006 echo
adam@0 2007
adam@0 2008 if test -n "$ac_subst_files"; then
adam@0 2009 $as_echo "## ------------------- ##
adam@0 2010 ## File substitutions. ##
adam@0 2011 ## ------------------- ##"
adam@0 2012 echo
adam@0 2013 for ac_var in $ac_subst_files
adam@0 2014 do
adam@0 2015 eval ac_val=\$$ac_var
adam@0 2016 case $ac_val in
adam@0 2017 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
adam@0 2018 esac
adam@0 2019 $as_echo "$ac_var='\''$ac_val'\''"
adam@0 2020 done | sort
adam@0 2021 echo
adam@0 2022 fi
adam@0 2023
adam@0 2024 if test -s confdefs.h; then
adam@0 2025 $as_echo "## ----------- ##
adam@0 2026 ## confdefs.h. ##
adam@0 2027 ## ----------- ##"
adam@0 2028 echo
adam@0 2029 cat confdefs.h
adam@0 2030 echo
adam@0 2031 fi
adam@0 2032 test "$ac_signal" != 0 &&
adam@0 2033 $as_echo "$as_me: caught signal $ac_signal"
adam@0 2034 $as_echo "$as_me: exit $exit_status"
adam@0 2035 } >&5
adam@0 2036 rm -f core *.core core.conftest.* &&
adam@0 2037 rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
adam@0 2038 exit $exit_status
adam@0 2039 ' 0
adam@0 2040 for ac_signal in 1 2 13 15; do
adam@0 2041 trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
adam@0 2042 done
adam@0 2043 ac_signal=0
adam@0 2044
adam@0 2045 # confdefs.h avoids OS command line length limits that DEFS can exceed.
adam@0 2046 rm -f -r conftest* confdefs.h
adam@0 2047
adam@0 2048 $as_echo "/* confdefs.h */" > confdefs.h
adam@0 2049
adam@0 2050 # Predefined preprocessor variables.
adam@0 2051
adam@0 2052 cat >>confdefs.h <<_ACEOF
adam@0 2053 #define PACKAGE_NAME "$PACKAGE_NAME"
adam@0 2054 _ACEOF
adam@0 2055
adam@0 2056 cat >>confdefs.h <<_ACEOF
adam@0 2057 #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
adam@0 2058 _ACEOF
adam@0 2059
adam@0 2060 cat >>confdefs.h <<_ACEOF
adam@0 2061 #define PACKAGE_VERSION "$PACKAGE_VERSION"
adam@0 2062 _ACEOF
adam@0 2063
adam@0 2064 cat >>confdefs.h <<_ACEOF
adam@0 2065 #define PACKAGE_STRING "$PACKAGE_STRING"
adam@0 2066 _ACEOF
adam@0 2067
adam@0 2068 cat >>confdefs.h <<_ACEOF
adam@0 2069 #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
adam@0 2070 _ACEOF
adam@0 2071
adam@0 2072 cat >>confdefs.h <<_ACEOF
adam@0 2073 #define PACKAGE_URL "$PACKAGE_URL"
adam@0 2074 _ACEOF
adam@0 2075
adam@0 2076
adam@0 2077 # Let the site file select an alternate cache file if it wants to.
adam@0 2078 # Prefer an explicitly selected file to automatically selected ones.
adam@0 2079 ac_site_file1=NONE
adam@0 2080 ac_site_file2=NONE
adam@0 2081 if test -n "$CONFIG_SITE"; then
adam@0 2082 # We do not want a PATH search for config.site.
adam@0 2083 case $CONFIG_SITE in #((
adam@0 2084 -*) ac_site_file1=./$CONFIG_SITE;;
adam@0 2085 */*) ac_site_file1=$CONFIG_SITE;;
adam@0 2086 *) ac_site_file1=./$CONFIG_SITE;;
adam@0 2087 esac
adam@0 2088 elif test "x$prefix" != xNONE; then
adam@0 2089 ac_site_file1=$prefix/share/config.site
adam@0 2090 ac_site_file2=$prefix/etc/config.site
adam@0 2091 else
adam@0 2092 ac_site_file1=$ac_default_prefix/share/config.site
adam@0 2093 ac_site_file2=$ac_default_prefix/etc/config.site
adam@0 2094 fi
adam@0 2095 for ac_site_file in "$ac_site_file1" "$ac_site_file2"
adam@0 2096 do
adam@0 2097 test "x$ac_site_file" = xNONE && continue
adam@0 2098 if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
adam@0 2099 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
adam@0 2100 $as_echo "$as_me: loading site script $ac_site_file" >&6;}
adam@0 2101 sed 's/^/| /' "$ac_site_file" >&5
adam@0 2102 . "$ac_site_file" \
adam@0 2103 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
adam@0 2104 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
adam@0 2105 as_fn_error $? "failed to load site script $ac_site_file
adam@12 2106 See \`config.log' for more details" "$LINENO" 5; }
adam@0 2107 fi
adam@0 2108 done
adam@0 2109
adam@0 2110 if test -r "$cache_file"; then
adam@0 2111 # Some versions of bash will fail to source /dev/null (special files
adam@0 2112 # actually), so we avoid doing that. DJGPP emulates it as a regular file.
adam@0 2113 if test /dev/null != "$cache_file" && test -f "$cache_file"; then
adam@0 2114 { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
adam@0 2115 $as_echo "$as_me: loading cache $cache_file" >&6;}
adam@0 2116 case $cache_file in
adam@0 2117 [\\/]* | ?:[\\/]* ) . "$cache_file";;
adam@0 2118 *) . "./$cache_file";;
adam@0 2119 esac
adam@0 2120 fi
adam@0 2121 else
adam@0 2122 { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
adam@0 2123 $as_echo "$as_me: creating cache $cache_file" >&6;}
adam@0 2124 >$cache_file
adam@0 2125 fi
adam@0 2126
adam@0 2127 # Check that the precious variables saved in the cache have kept the same
adam@0 2128 # value.
adam@0 2129 ac_cache_corrupted=false
adam@0 2130 for ac_var in $ac_precious_vars; do
adam@0 2131 eval ac_old_set=\$ac_cv_env_${ac_var}_set
adam@0 2132 eval ac_new_set=\$ac_env_${ac_var}_set
adam@0 2133 eval ac_old_val=\$ac_cv_env_${ac_var}_value
adam@0 2134 eval ac_new_val=\$ac_env_${ac_var}_value
adam@0 2135 case $ac_old_set,$ac_new_set in
adam@0 2136 set,)
adam@0 2137 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
adam@0 2138 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
adam@0 2139 ac_cache_corrupted=: ;;
adam@0 2140 ,set)
adam@0 2141 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
adam@0 2142 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
adam@0 2143 ac_cache_corrupted=: ;;
adam@0 2144 ,);;
adam@0 2145 *)
adam@0 2146 if test "x$ac_old_val" != "x$ac_new_val"; then
adam@0 2147 # differences in whitespace do not lead to failure.
adam@0 2148 ac_old_val_w=`echo x $ac_old_val`
adam@0 2149 ac_new_val_w=`echo x $ac_new_val`
adam@0 2150 if test "$ac_old_val_w" != "$ac_new_val_w"; then
adam@0 2151 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
adam@0 2152 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
adam@0 2153 ac_cache_corrupted=:
adam@0 2154 else
adam@0 2155 { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
adam@0 2156 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
adam@0 2157 eval $ac_var=\$ac_old_val
adam@0 2158 fi
adam@0 2159 { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
adam@0 2160 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
adam@0 2161 { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
adam@0 2162 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
adam@0 2163 fi;;
adam@0 2164 esac
adam@0 2165 # Pass precious variables to config.status.
adam@0 2166 if test "$ac_new_set" = set; then
adam@0 2167 case $ac_new_val in
adam@0 2168 *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
adam@0 2169 *) ac_arg=$ac_var=$ac_new_val ;;
adam@0 2170 esac
adam@0 2171 case " $ac_configure_args " in
adam@0 2172 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
adam@0 2173 *) as_fn_append ac_configure_args " '$ac_arg'" ;;
adam@0 2174 esac
adam@0 2175 fi
adam@0 2176 done
adam@0 2177 if $ac_cache_corrupted; then
adam@0 2178 { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
adam@0 2179 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
adam@0 2180 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
adam@0 2181 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
adam@0 2182 as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
adam@0 2183 fi
adam@0 2184 ## -------------------- ##
adam@0 2185 ## Main body of script. ##
adam@0 2186 ## -------------------- ##
adam@0 2187
adam@0 2188 ac_ext=c
adam@0 2189 ac_cpp='$CPP $CPPFLAGS'
adam@0 2190 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
adam@0 2191 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
adam@0 2192 ac_compiler_gnu=$ac_cv_c_compiler_gnu
adam@0 2193
adam@0 2194
adam@0 2195 ac_ext=c
adam@0 2196 ac_cpp='$CPP $CPPFLAGS'
adam@0 2197 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
adam@0 2198 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
adam@0 2199 ac_compiler_gnu=$ac_cv_c_compiler_gnu
adam@0 2200 if test -n "$ac_tool_prefix"; then
adam@0 2201 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
adam@0 2202 set dummy ${ac_tool_prefix}gcc; ac_word=$2
adam@0 2203 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 2204 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 2205 if ${ac_cv_prog_CC+:} false; then :
adam@0 2206 $as_echo_n "(cached) " >&6
adam@0 2207 else
adam@0 2208 if test -n "$CC"; then
adam@0 2209 ac_cv_prog_CC="$CC" # Let the user override the test.
adam@0 2210 else
adam@0 2211 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 2212 for as_dir in $PATH
adam@0 2213 do
adam@0 2214 IFS=$as_save_IFS
adam@0 2215 test -z "$as_dir" && as_dir=.
adam@0 2216 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 2217 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 2218 ac_cv_prog_CC="${ac_tool_prefix}gcc"
adam@0 2219 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 2220 break 2
adam@0 2221 fi
adam@0 2222 done
adam@0 2223 done
adam@0 2224 IFS=$as_save_IFS
adam@0 2225
adam@0 2226 fi
adam@0 2227 fi
adam@0 2228 CC=$ac_cv_prog_CC
adam@0 2229 if test -n "$CC"; then
adam@0 2230 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
adam@0 2231 $as_echo "$CC" >&6; }
adam@0 2232 else
adam@0 2233 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 2234 $as_echo "no" >&6; }
adam@0 2235 fi
adam@0 2236
adam@0 2237
adam@0 2238 fi
adam@0 2239 if test -z "$ac_cv_prog_CC"; then
adam@0 2240 ac_ct_CC=$CC
adam@0 2241 # Extract the first word of "gcc", so it can be a program name with args.
adam@0 2242 set dummy gcc; ac_word=$2
adam@0 2243 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 2244 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 2245 if ${ac_cv_prog_ac_ct_CC+:} false; then :
adam@0 2246 $as_echo_n "(cached) " >&6
adam@0 2247 else
adam@0 2248 if test -n "$ac_ct_CC"; then
adam@0 2249 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
adam@0 2250 else
adam@0 2251 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 2252 for as_dir in $PATH
adam@0 2253 do
adam@0 2254 IFS=$as_save_IFS
adam@0 2255 test -z "$as_dir" && as_dir=.
adam@0 2256 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 2257 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 2258 ac_cv_prog_ac_ct_CC="gcc"
adam@0 2259 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 2260 break 2
adam@0 2261 fi
adam@0 2262 done
adam@0 2263 done
adam@0 2264 IFS=$as_save_IFS
adam@0 2265
adam@0 2266 fi
adam@0 2267 fi
adam@0 2268 ac_ct_CC=$ac_cv_prog_ac_ct_CC
adam@0 2269 if test -n "$ac_ct_CC"; then
adam@0 2270 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
adam@0 2271 $as_echo "$ac_ct_CC" >&6; }
adam@0 2272 else
adam@0 2273 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 2274 $as_echo "no" >&6; }
adam@0 2275 fi
adam@0 2276
adam@0 2277 if test "x$ac_ct_CC" = x; then
adam@0 2278 CC=""
adam@0 2279 else
adam@0 2280 case $cross_compiling:$ac_tool_warned in
adam@0 2281 yes:)
adam@0 2282 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 2283 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 2284 ac_tool_warned=yes ;;
adam@0 2285 esac
adam@0 2286 CC=$ac_ct_CC
adam@0 2287 fi
adam@0 2288 else
adam@0 2289 CC="$ac_cv_prog_CC"
adam@0 2290 fi
adam@0 2291
adam@0 2292 if test -z "$CC"; then
adam@0 2293 if test -n "$ac_tool_prefix"; then
adam@0 2294 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
adam@0 2295 set dummy ${ac_tool_prefix}cc; ac_word=$2
adam@0 2296 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 2297 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 2298 if ${ac_cv_prog_CC+:} false; then :
adam@0 2299 $as_echo_n "(cached) " >&6
adam@0 2300 else
adam@0 2301 if test -n "$CC"; then
adam@0 2302 ac_cv_prog_CC="$CC" # Let the user override the test.
adam@0 2303 else
adam@0 2304 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 2305 for as_dir in $PATH
adam@0 2306 do
adam@0 2307 IFS=$as_save_IFS
adam@0 2308 test -z "$as_dir" && as_dir=.
adam@0 2309 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 2310 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 2311 ac_cv_prog_CC="${ac_tool_prefix}cc"
adam@0 2312 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 2313 break 2
adam@0 2314 fi
adam@0 2315 done
adam@0 2316 done
adam@0 2317 IFS=$as_save_IFS
adam@0 2318
adam@0 2319 fi
adam@0 2320 fi
adam@0 2321 CC=$ac_cv_prog_CC
adam@0 2322 if test -n "$CC"; then
adam@0 2323 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
adam@0 2324 $as_echo "$CC" >&6; }
adam@0 2325 else
adam@0 2326 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 2327 $as_echo "no" >&6; }
adam@0 2328 fi
adam@0 2329
adam@0 2330
adam@0 2331 fi
adam@0 2332 fi
adam@0 2333 if test -z "$CC"; then
adam@0 2334 # Extract the first word of "cc", so it can be a program name with args.
adam@0 2335 set dummy cc; ac_word=$2
adam@0 2336 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 2337 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 2338 if ${ac_cv_prog_CC+:} false; then :
adam@0 2339 $as_echo_n "(cached) " >&6
adam@0 2340 else
adam@0 2341 if test -n "$CC"; then
adam@0 2342 ac_cv_prog_CC="$CC" # Let the user override the test.
adam@0 2343 else
adam@0 2344 ac_prog_rejected=no
adam@0 2345 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 2346 for as_dir in $PATH
adam@0 2347 do
adam@0 2348 IFS=$as_save_IFS
adam@0 2349 test -z "$as_dir" && as_dir=.
adam@0 2350 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 2351 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 2352 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
adam@0 2353 ac_prog_rejected=yes
adam@0 2354 continue
adam@0 2355 fi
adam@0 2356 ac_cv_prog_CC="cc"
adam@0 2357 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 2358 break 2
adam@0 2359 fi
adam@0 2360 done
adam@0 2361 done
adam@0 2362 IFS=$as_save_IFS
adam@0 2363
adam@0 2364 if test $ac_prog_rejected = yes; then
adam@0 2365 # We found a bogon in the path, so make sure we never use it.
adam@0 2366 set dummy $ac_cv_prog_CC
adam@0 2367 shift
adam@0 2368 if test $# != 0; then
adam@0 2369 # We chose a different compiler from the bogus one.
adam@0 2370 # However, it has the same basename, so the bogon will be chosen
adam@0 2371 # first if we set CC to just the basename; use the full file name.
adam@0 2372 shift
adam@0 2373 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
adam@0 2374 fi
adam@0 2375 fi
adam@0 2376 fi
adam@0 2377 fi
adam@0 2378 CC=$ac_cv_prog_CC
adam@0 2379 if test -n "$CC"; then
adam@0 2380 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
adam@0 2381 $as_echo "$CC" >&6; }
adam@0 2382 else
adam@0 2383 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 2384 $as_echo "no" >&6; }
adam@0 2385 fi
adam@0 2386
adam@0 2387
adam@0 2388 fi
adam@0 2389 if test -z "$CC"; then
adam@0 2390 if test -n "$ac_tool_prefix"; then
adam@0 2391 for ac_prog in cl.exe
adam@0 2392 do
adam@0 2393 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
adam@0 2394 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
adam@0 2395 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 2396 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 2397 if ${ac_cv_prog_CC+:} false; then :
adam@0 2398 $as_echo_n "(cached) " >&6
adam@0 2399 else
adam@0 2400 if test -n "$CC"; then
adam@0 2401 ac_cv_prog_CC="$CC" # Let the user override the test.
adam@0 2402 else
adam@0 2403 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 2404 for as_dir in $PATH
adam@0 2405 do
adam@0 2406 IFS=$as_save_IFS
adam@0 2407 test -z "$as_dir" && as_dir=.
adam@0 2408 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 2409 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 2410 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
adam@0 2411 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 2412 break 2
adam@0 2413 fi
adam@0 2414 done
adam@0 2415 done
adam@0 2416 IFS=$as_save_IFS
adam@0 2417
adam@0 2418 fi
adam@0 2419 fi
adam@0 2420 CC=$ac_cv_prog_CC
adam@0 2421 if test -n "$CC"; then
adam@0 2422 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
adam@0 2423 $as_echo "$CC" >&6; }
adam@0 2424 else
adam@0 2425 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 2426 $as_echo "no" >&6; }
adam@0 2427 fi
adam@0 2428
adam@0 2429
adam@0 2430 test -n "$CC" && break
adam@0 2431 done
adam@0 2432 fi
adam@0 2433 if test -z "$CC"; then
adam@0 2434 ac_ct_CC=$CC
adam@0 2435 for ac_prog in cl.exe
adam@0 2436 do
adam@0 2437 # Extract the first word of "$ac_prog", so it can be a program name with args.
adam@0 2438 set dummy $ac_prog; ac_word=$2
adam@0 2439 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 2440 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 2441 if ${ac_cv_prog_ac_ct_CC+:} false; then :
adam@0 2442 $as_echo_n "(cached) " >&6
adam@0 2443 else
adam@0 2444 if test -n "$ac_ct_CC"; then
adam@0 2445 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
adam@0 2446 else
adam@0 2447 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 2448 for as_dir in $PATH
adam@0 2449 do
adam@0 2450 IFS=$as_save_IFS
adam@0 2451 test -z "$as_dir" && as_dir=.
adam@0 2452 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 2453 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 2454 ac_cv_prog_ac_ct_CC="$ac_prog"
adam@0 2455 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 2456 break 2
adam@0 2457 fi
adam@0 2458 done
adam@0 2459 done
adam@0 2460 IFS=$as_save_IFS
adam@0 2461
adam@0 2462 fi
adam@0 2463 fi
adam@0 2464 ac_ct_CC=$ac_cv_prog_ac_ct_CC
adam@0 2465 if test -n "$ac_ct_CC"; then
adam@0 2466 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
adam@0 2467 $as_echo "$ac_ct_CC" >&6; }
adam@0 2468 else
adam@0 2469 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 2470 $as_echo "no" >&6; }
adam@0 2471 fi
adam@0 2472
adam@0 2473
adam@0 2474 test -n "$ac_ct_CC" && break
adam@0 2475 done
adam@0 2476
adam@0 2477 if test "x$ac_ct_CC" = x; then
adam@0 2478 CC=""
adam@0 2479 else
adam@0 2480 case $cross_compiling:$ac_tool_warned in
adam@0 2481 yes:)
adam@0 2482 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 2483 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 2484 ac_tool_warned=yes ;;
adam@0 2485 esac
adam@0 2486 CC=$ac_ct_CC
adam@0 2487 fi
adam@0 2488 fi
adam@0 2489
adam@0 2490 fi
adam@0 2491
adam@0 2492
adam@0 2493 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
adam@0 2494 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
adam@0 2495 as_fn_error $? "no acceptable C compiler found in \$PATH
adam@12 2496 See \`config.log' for more details" "$LINENO" 5; }
adam@0 2497
adam@0 2498 # Provide some information about the compiler.
adam@0 2499 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
adam@0 2500 set X $ac_compile
adam@0 2501 ac_compiler=$2
adam@0 2502 for ac_option in --version -v -V -qversion; do
adam@0 2503 { { ac_try="$ac_compiler $ac_option >&5"
adam@0 2504 case "(($ac_try" in
adam@0 2505 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 2506 *) ac_try_echo=$ac_try;;
adam@0 2507 esac
adam@0 2508 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 2509 $as_echo "$ac_try_echo"; } >&5
adam@0 2510 (eval "$ac_compiler $ac_option >&5") 2>conftest.err
adam@0 2511 ac_status=$?
adam@0 2512 if test -s conftest.err; then
adam@0 2513 sed '10a\
adam@0 2514 ... rest of stderr output deleted ...
adam@0 2515 10q' conftest.err >conftest.er1
adam@0 2516 cat conftest.er1 >&5
adam@0 2517 fi
adam@0 2518 rm -f conftest.er1 conftest.err
adam@0 2519 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 2520 test $ac_status = 0; }
adam@0 2521 done
adam@0 2522
adam@0 2523 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 2524 /* end confdefs.h. */
adam@0 2525
adam@0 2526 int
adam@0 2527 main ()
adam@0 2528 {
adam@0 2529
adam@0 2530 ;
adam@0 2531 return 0;
adam@0 2532 }
adam@0 2533 _ACEOF
adam@0 2534 ac_clean_files_save=$ac_clean_files
adam@0 2535 ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
adam@0 2536 # Try to create an executable without -o first, disregard a.out.
adam@0 2537 # It will help us diagnose broken compilers, and finding out an intuition
adam@0 2538 # of exeext.
adam@0 2539 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
adam@0 2540 $as_echo_n "checking whether the C compiler works... " >&6; }
adam@0 2541 ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
adam@0 2542
adam@0 2543 # The possible output files:
adam@0 2544 ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
adam@0 2545
adam@0 2546 ac_rmfiles=
adam@0 2547 for ac_file in $ac_files
adam@0 2548 do
adam@0 2549 case $ac_file in
adam@0 2550 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
adam@0 2551 * ) ac_rmfiles="$ac_rmfiles $ac_file";;
adam@0 2552 esac
adam@0 2553 done
adam@0 2554 rm -f $ac_rmfiles
adam@0 2555
adam@0 2556 if { { ac_try="$ac_link_default"
adam@0 2557 case "(($ac_try" in
adam@0 2558 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 2559 *) ac_try_echo=$ac_try;;
adam@0 2560 esac
adam@0 2561 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 2562 $as_echo "$ac_try_echo"; } >&5
adam@0 2563 (eval "$ac_link_default") 2>&5
adam@0 2564 ac_status=$?
adam@0 2565 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 2566 test $ac_status = 0; }; then :
adam@0 2567 # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
adam@0 2568 # So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
adam@0 2569 # in a Makefile. We should not override ac_cv_exeext if it was cached,
adam@0 2570 # so that the user can short-circuit this test for compilers unknown to
adam@0 2571 # Autoconf.
adam@0 2572 for ac_file in $ac_files ''
adam@0 2573 do
adam@0 2574 test -f "$ac_file" || continue
adam@0 2575 case $ac_file in
adam@0 2576 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
adam@0 2577 ;;
adam@0 2578 [ab].out )
adam@0 2579 # We found the default executable, but exeext='' is most
adam@0 2580 # certainly right.
adam@0 2581 break;;
adam@0 2582 *.* )
adam@0 2583 if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
adam@0 2584 then :; else
adam@0 2585 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
adam@0 2586 fi
adam@0 2587 # We set ac_cv_exeext here because the later test for it is not
adam@0 2588 # safe: cross compilers may not add the suffix if given an `-o'
adam@0 2589 # argument, so we may need to know it at that point already.
adam@0 2590 # Even if this section looks crufty: it has the advantage of
adam@0 2591 # actually working.
adam@0 2592 break;;
adam@0 2593 * )
adam@0 2594 break;;
adam@0 2595 esac
adam@0 2596 done
adam@0 2597 test "$ac_cv_exeext" = no && ac_cv_exeext=
adam@0 2598
adam@0 2599 else
adam@0 2600 ac_file=''
adam@0 2601 fi
adam@0 2602 if test -z "$ac_file"; then :
adam@0 2603 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 2604 $as_echo "no" >&6; }
adam@0 2605 $as_echo "$as_me: failed program was:" >&5
adam@0 2606 sed 's/^/| /' conftest.$ac_ext >&5
adam@0 2607
adam@0 2608 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
adam@0 2609 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
adam@0 2610 as_fn_error 77 "C compiler cannot create executables
adam@12 2611 See \`config.log' for more details" "$LINENO" 5; }
adam@0 2612 else
adam@0 2613 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
adam@0 2614 $as_echo "yes" >&6; }
adam@0 2615 fi
adam@0 2616 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
adam@0 2617 $as_echo_n "checking for C compiler default output file name... " >&6; }
adam@0 2618 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
adam@0 2619 $as_echo "$ac_file" >&6; }
adam@0 2620 ac_exeext=$ac_cv_exeext
adam@0 2621
adam@0 2622 rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
adam@0 2623 ac_clean_files=$ac_clean_files_save
adam@0 2624 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
adam@0 2625 $as_echo_n "checking for suffix of executables... " >&6; }
adam@0 2626 if { { ac_try="$ac_link"
adam@0 2627 case "(($ac_try" in
adam@0 2628 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 2629 *) ac_try_echo=$ac_try;;
adam@0 2630 esac
adam@0 2631 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 2632 $as_echo "$ac_try_echo"; } >&5
adam@0 2633 (eval "$ac_link") 2>&5
adam@0 2634 ac_status=$?
adam@0 2635 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 2636 test $ac_status = 0; }; then :
adam@0 2637 # If both `conftest.exe' and `conftest' are `present' (well, observable)
adam@0 2638 # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
adam@0 2639 # work properly (i.e., refer to `conftest.exe'), while it won't with
adam@0 2640 # `rm'.
adam@0 2641 for ac_file in conftest.exe conftest conftest.*; do
adam@0 2642 test -f "$ac_file" || continue
adam@0 2643 case $ac_file in
adam@0 2644 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
adam@0 2645 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
adam@0 2646 break;;
adam@0 2647 * ) break;;
adam@0 2648 esac
adam@0 2649 done
adam@0 2650 else
adam@0 2651 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
adam@0 2652 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
adam@0 2653 as_fn_error $? "cannot compute suffix of executables: cannot compile and link
adam@12 2654 See \`config.log' for more details" "$LINENO" 5; }
adam@0 2655 fi
adam@0 2656 rm -f conftest conftest$ac_cv_exeext
adam@0 2657 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
adam@0 2658 $as_echo "$ac_cv_exeext" >&6; }
adam@0 2659
adam@0 2660 rm -f conftest.$ac_ext
adam@0 2661 EXEEXT=$ac_cv_exeext
adam@0 2662 ac_exeext=$EXEEXT
adam@0 2663 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 2664 /* end confdefs.h. */
adam@0 2665 #include <stdio.h>
adam@0 2666 int
adam@0 2667 main ()
adam@0 2668 {
adam@0 2669 FILE *f = fopen ("conftest.out", "w");
adam@0 2670 return ferror (f) || fclose (f) != 0;
adam@0 2671
adam@0 2672 ;
adam@0 2673 return 0;
adam@0 2674 }
adam@0 2675 _ACEOF
adam@0 2676 ac_clean_files="$ac_clean_files conftest.out"
adam@0 2677 # Check that the compiler produces executables we can run. If not, either
adam@0 2678 # the compiler is broken, or we cross compile.
adam@0 2679 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
adam@0 2680 $as_echo_n "checking whether we are cross compiling... " >&6; }
adam@0 2681 if test "$cross_compiling" != yes; then
adam@0 2682 { { ac_try="$ac_link"
adam@0 2683 case "(($ac_try" in
adam@0 2684 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 2685 *) ac_try_echo=$ac_try;;
adam@0 2686 esac
adam@0 2687 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 2688 $as_echo "$ac_try_echo"; } >&5
adam@0 2689 (eval "$ac_link") 2>&5
adam@0 2690 ac_status=$?
adam@0 2691 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 2692 test $ac_status = 0; }
adam@0 2693 if { ac_try='./conftest$ac_cv_exeext'
adam@0 2694 { { case "(($ac_try" in
adam@0 2695 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 2696 *) ac_try_echo=$ac_try;;
adam@0 2697 esac
adam@0 2698 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 2699 $as_echo "$ac_try_echo"; } >&5
adam@0 2700 (eval "$ac_try") 2>&5
adam@0 2701 ac_status=$?
adam@0 2702 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 2703 test $ac_status = 0; }; }; then
adam@0 2704 cross_compiling=no
adam@0 2705 else
adam@0 2706 if test "$cross_compiling" = maybe; then
adam@0 2707 cross_compiling=yes
adam@0 2708 else
adam@0 2709 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
adam@0 2710 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
adam@0 2711 as_fn_error $? "cannot run C compiled programs.
adam@0 2712 If you meant to cross compile, use \`--host'.
adam@12 2713 See \`config.log' for more details" "$LINENO" 5; }
adam@0 2714 fi
adam@0 2715 fi
adam@0 2716 fi
adam@0 2717 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
adam@0 2718 $as_echo "$cross_compiling" >&6; }
adam@0 2719
adam@0 2720 rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
adam@0 2721 ac_clean_files=$ac_clean_files_save
adam@0 2722 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
adam@0 2723 $as_echo_n "checking for suffix of object files... " >&6; }
adam@12 2724 if ${ac_cv_objext+:} false; then :
adam@0 2725 $as_echo_n "(cached) " >&6
adam@0 2726 else
adam@0 2727 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 2728 /* end confdefs.h. */
adam@0 2729
adam@0 2730 int
adam@0 2731 main ()
adam@0 2732 {
adam@0 2733
adam@0 2734 ;
adam@0 2735 return 0;
adam@0 2736 }
adam@0 2737 _ACEOF
adam@0 2738 rm -f conftest.o conftest.obj
adam@0 2739 if { { ac_try="$ac_compile"
adam@0 2740 case "(($ac_try" in
adam@0 2741 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 2742 *) ac_try_echo=$ac_try;;
adam@0 2743 esac
adam@0 2744 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 2745 $as_echo "$ac_try_echo"; } >&5
adam@0 2746 (eval "$ac_compile") 2>&5
adam@0 2747 ac_status=$?
adam@0 2748 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 2749 test $ac_status = 0; }; then :
adam@0 2750 for ac_file in conftest.o conftest.obj conftest.*; do
adam@0 2751 test -f "$ac_file" || continue;
adam@0 2752 case $ac_file in
adam@0 2753 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
adam@0 2754 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
adam@0 2755 break;;
adam@0 2756 esac
adam@0 2757 done
adam@0 2758 else
adam@0 2759 $as_echo "$as_me: failed program was:" >&5
adam@0 2760 sed 's/^/| /' conftest.$ac_ext >&5
adam@0 2761
adam@0 2762 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
adam@0 2763 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
adam@0 2764 as_fn_error $? "cannot compute suffix of object files: cannot compile
adam@12 2765 See \`config.log' for more details" "$LINENO" 5; }
adam@0 2766 fi
adam@0 2767 rm -f conftest.$ac_cv_objext conftest.$ac_ext
adam@0 2768 fi
adam@0 2769 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
adam@0 2770 $as_echo "$ac_cv_objext" >&6; }
adam@0 2771 OBJEXT=$ac_cv_objext
adam@0 2772 ac_objext=$OBJEXT
adam@0 2773 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
adam@0 2774 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
adam@12 2775 if ${ac_cv_c_compiler_gnu+:} false; then :
adam@0 2776 $as_echo_n "(cached) " >&6
adam@0 2777 else
adam@0 2778 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 2779 /* end confdefs.h. */
adam@0 2780
adam@0 2781 int
adam@0 2782 main ()
adam@0 2783 {
adam@0 2784 #ifndef __GNUC__
adam@0 2785 choke me
adam@0 2786 #endif
adam@0 2787
adam@0 2788 ;
adam@0 2789 return 0;
adam@0 2790 }
adam@0 2791 _ACEOF
adam@0 2792 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 2793 ac_compiler_gnu=yes
adam@0 2794 else
adam@0 2795 ac_compiler_gnu=no
adam@0 2796 fi
adam@0 2797 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 2798 ac_cv_c_compiler_gnu=$ac_compiler_gnu
adam@0 2799
adam@0 2800 fi
adam@0 2801 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
adam@0 2802 $as_echo "$ac_cv_c_compiler_gnu" >&6; }
adam@0 2803 if test $ac_compiler_gnu = yes; then
adam@0 2804 GCC=yes
adam@0 2805 else
adam@0 2806 GCC=
adam@0 2807 fi
adam@0 2808 ac_test_CFLAGS=${CFLAGS+set}
adam@0 2809 ac_save_CFLAGS=$CFLAGS
adam@0 2810 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
adam@0 2811 $as_echo_n "checking whether $CC accepts -g... " >&6; }
adam@12 2812 if ${ac_cv_prog_cc_g+:} false; then :
adam@0 2813 $as_echo_n "(cached) " >&6
adam@0 2814 else
adam@0 2815 ac_save_c_werror_flag=$ac_c_werror_flag
adam@0 2816 ac_c_werror_flag=yes
adam@0 2817 ac_cv_prog_cc_g=no
adam@0 2818 CFLAGS="-g"
adam@0 2819 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 2820 /* end confdefs.h. */
adam@0 2821
adam@0 2822 int
adam@0 2823 main ()
adam@0 2824 {
adam@0 2825
adam@0 2826 ;
adam@0 2827 return 0;
adam@0 2828 }
adam@0 2829 _ACEOF
adam@0 2830 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 2831 ac_cv_prog_cc_g=yes
adam@0 2832 else
adam@0 2833 CFLAGS=""
adam@0 2834 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 2835 /* end confdefs.h. */
adam@0 2836
adam@0 2837 int
adam@0 2838 main ()
adam@0 2839 {
adam@0 2840
adam@0 2841 ;
adam@0 2842 return 0;
adam@0 2843 }
adam@0 2844 _ACEOF
adam@0 2845 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 2846
adam@0 2847 else
adam@0 2848 ac_c_werror_flag=$ac_save_c_werror_flag
adam@0 2849 CFLAGS="-g"
adam@0 2850 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 2851 /* end confdefs.h. */
adam@0 2852
adam@0 2853 int
adam@0 2854 main ()
adam@0 2855 {
adam@0 2856
adam@0 2857 ;
adam@0 2858 return 0;
adam@0 2859 }
adam@0 2860 _ACEOF
adam@0 2861 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 2862 ac_cv_prog_cc_g=yes
adam@0 2863 fi
adam@0 2864 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 2865 fi
adam@0 2866 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 2867 fi
adam@0 2868 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 2869 ac_c_werror_flag=$ac_save_c_werror_flag
adam@0 2870 fi
adam@0 2871 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
adam@0 2872 $as_echo "$ac_cv_prog_cc_g" >&6; }
adam@0 2873 if test "$ac_test_CFLAGS" = set; then
adam@0 2874 CFLAGS=$ac_save_CFLAGS
adam@0 2875 elif test $ac_cv_prog_cc_g = yes; then
adam@0 2876 if test "$GCC" = yes; then
adam@0 2877 CFLAGS="-g -O2"
adam@0 2878 else
adam@0 2879 CFLAGS="-g"
adam@0 2880 fi
adam@0 2881 else
adam@0 2882 if test "$GCC" = yes; then
adam@0 2883 CFLAGS="-O2"
adam@0 2884 else
adam@0 2885 CFLAGS=
adam@0 2886 fi
adam@0 2887 fi
adam@0 2888 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
adam@0 2889 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
adam@12 2890 if ${ac_cv_prog_cc_c89+:} false; then :
adam@0 2891 $as_echo_n "(cached) " >&6
adam@0 2892 else
adam@0 2893 ac_cv_prog_cc_c89=no
adam@0 2894 ac_save_CC=$CC
adam@0 2895 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 2896 /* end confdefs.h. */
adam@0 2897 #include <stdarg.h>
adam@0 2898 #include <stdio.h>
adam@20 2899 struct stat;
adam@0 2900 /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
adam@0 2901 struct buf { int x; };
adam@0 2902 FILE * (*rcsopen) (struct buf *, struct stat *, int);
adam@0 2903 static char *e (p, i)
adam@0 2904 char **p;
adam@0 2905 int i;
adam@0 2906 {
adam@0 2907 return p[i];
adam@0 2908 }
adam@0 2909 static char *f (char * (*g) (char **, int), char **p, ...)
adam@0 2910 {
adam@0 2911 char *s;
adam@0 2912 va_list v;
adam@0 2913 va_start (v,p);
adam@0 2914 s = g (p, va_arg (v,int));
adam@0 2915 va_end (v);
adam@0 2916 return s;
adam@0 2917 }
adam@0 2918
adam@0 2919 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
adam@0 2920 function prototypes and stuff, but not '\xHH' hex character constants.
adam@0 2921 These don't provoke an error unfortunately, instead are silently treated
adam@0 2922 as 'x'. The following induces an error, until -std is added to get
adam@0 2923 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
adam@0 2924 array size at least. It's necessary to write '\x00'==0 to get something
adam@0 2925 that's true only with -std. */
adam@0 2926 int osf4_cc_array ['\x00' == 0 ? 1 : -1];
adam@0 2927
adam@0 2928 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
adam@0 2929 inside strings and character constants. */
adam@0 2930 #define FOO(x) 'x'
adam@0 2931 int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
adam@0 2932
adam@0 2933 int test (int i, double x);
adam@0 2934 struct s1 {int (*f) (int a);};
adam@0 2935 struct s2 {int (*f) (double a);};
adam@0 2936 int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
adam@0 2937 int argc;
adam@0 2938 char **argv;
adam@0 2939 int
adam@0 2940 main ()
adam@0 2941 {
adam@0 2942 return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
adam@0 2943 ;
adam@0 2944 return 0;
adam@0 2945 }
adam@0 2946 _ACEOF
adam@0 2947 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
adam@0 2948 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
adam@0 2949 do
adam@0 2950 CC="$ac_save_CC $ac_arg"
adam@0 2951 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 2952 ac_cv_prog_cc_c89=$ac_arg
adam@0 2953 fi
adam@0 2954 rm -f core conftest.err conftest.$ac_objext
adam@0 2955 test "x$ac_cv_prog_cc_c89" != "xno" && break
adam@0 2956 done
adam@0 2957 rm -f conftest.$ac_ext
adam@0 2958 CC=$ac_save_CC
adam@0 2959
adam@0 2960 fi
adam@0 2961 # AC_CACHE_VAL
adam@0 2962 case "x$ac_cv_prog_cc_c89" in
adam@0 2963 x)
adam@0 2964 { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
adam@0 2965 $as_echo "none needed" >&6; } ;;
adam@0 2966 xno)
adam@0 2967 { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
adam@0 2968 $as_echo "unsupported" >&6; } ;;
adam@0 2969 *)
adam@0 2970 CC="$CC $ac_cv_prog_cc_c89"
adam@0 2971 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
adam@0 2972 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
adam@0 2973 esac
adam@0 2974 if test "x$ac_cv_prog_cc_c89" != xno; then :
adam@0 2975
adam@0 2976 fi
adam@0 2977
adam@0 2978 ac_ext=c
adam@0 2979 ac_cpp='$CPP $CPPFLAGS'
adam@0 2980 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
adam@0 2981 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
adam@0 2982 ac_compiler_gnu=$ac_cv_c_compiler_gnu
adam@0 2983
adam@0 2984
adam@0 2985 ac_ext=c
adam@0 2986 ac_cpp='$CPP $CPPFLAGS'
adam@0 2987 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
adam@0 2988 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
adam@0 2989 ac_compiler_gnu=$ac_cv_c_compiler_gnu
adam@0 2990 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
adam@0 2991 $as_echo_n "checking how to run the C preprocessor... " >&6; }
adam@0 2992 # On Suns, sometimes $CPP names a directory.
adam@0 2993 if test -n "$CPP" && test -d "$CPP"; then
adam@0 2994 CPP=
adam@0 2995 fi
adam@0 2996 if test -z "$CPP"; then
adam@12 2997 if ${ac_cv_prog_CPP+:} false; then :
adam@0 2998 $as_echo_n "(cached) " >&6
adam@0 2999 else
adam@0 3000 # Double quotes because CPP needs to be expanded
adam@0 3001 for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
adam@0 3002 do
adam@0 3003 ac_preproc_ok=false
adam@0 3004 for ac_c_preproc_warn_flag in '' yes
adam@0 3005 do
adam@0 3006 # Use a header file that comes with gcc, so configuring glibc
adam@0 3007 # with a fresh cross-compiler works.
adam@0 3008 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
adam@0 3009 # <limits.h> exists even on freestanding compilers.
adam@0 3010 # On the NeXT, cc -E runs the code through the compiler's parser,
adam@0 3011 # not just through cpp. "Syntax error" is here to catch this case.
adam@0 3012 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 3013 /* end confdefs.h. */
adam@0 3014 #ifdef __STDC__
adam@0 3015 # include <limits.h>
adam@0 3016 #else
adam@0 3017 # include <assert.h>
adam@0 3018 #endif
adam@0 3019 Syntax error
adam@0 3020 _ACEOF
adam@0 3021 if ac_fn_c_try_cpp "$LINENO"; then :
adam@0 3022
adam@0 3023 else
adam@0 3024 # Broken: fails on valid input.
adam@0 3025 continue
adam@0 3026 fi
adam@0 3027 rm -f conftest.err conftest.i conftest.$ac_ext
adam@0 3028
adam@0 3029 # OK, works on sane cases. Now check whether nonexistent headers
adam@0 3030 # can be detected and how.
adam@0 3031 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 3032 /* end confdefs.h. */
adam@0 3033 #include <ac_nonexistent.h>
adam@0 3034 _ACEOF
adam@0 3035 if ac_fn_c_try_cpp "$LINENO"; then :
adam@0 3036 # Broken: success on invalid input.
adam@0 3037 continue
adam@0 3038 else
adam@0 3039 # Passes both tests.
adam@0 3040 ac_preproc_ok=:
adam@0 3041 break
adam@0 3042 fi
adam@0 3043 rm -f conftest.err conftest.i conftest.$ac_ext
adam@0 3044
adam@0 3045 done
adam@0 3046 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
adam@0 3047 rm -f conftest.i conftest.err conftest.$ac_ext
adam@0 3048 if $ac_preproc_ok; then :
adam@0 3049 break
adam@0 3050 fi
adam@0 3051
adam@0 3052 done
adam@0 3053 ac_cv_prog_CPP=$CPP
adam@0 3054
adam@0 3055 fi
adam@0 3056 CPP=$ac_cv_prog_CPP
adam@0 3057 else
adam@0 3058 ac_cv_prog_CPP=$CPP
adam@0 3059 fi
adam@0 3060 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
adam@0 3061 $as_echo "$CPP" >&6; }
adam@0 3062 ac_preproc_ok=false
adam@0 3063 for ac_c_preproc_warn_flag in '' yes
adam@0 3064 do
adam@0 3065 # Use a header file that comes with gcc, so configuring glibc
adam@0 3066 # with a fresh cross-compiler works.
adam@0 3067 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
adam@0 3068 # <limits.h> exists even on freestanding compilers.
adam@0 3069 # On the NeXT, cc -E runs the code through the compiler's parser,
adam@0 3070 # not just through cpp. "Syntax error" is here to catch this case.
adam@0 3071 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 3072 /* end confdefs.h. */
adam@0 3073 #ifdef __STDC__
adam@0 3074 # include <limits.h>
adam@0 3075 #else
adam@0 3076 # include <assert.h>
adam@0 3077 #endif
adam@0 3078 Syntax error
adam@0 3079 _ACEOF
adam@0 3080 if ac_fn_c_try_cpp "$LINENO"; then :
adam@0 3081
adam@0 3082 else
adam@0 3083 # Broken: fails on valid input.
adam@0 3084 continue
adam@0 3085 fi
adam@0 3086 rm -f conftest.err conftest.i conftest.$ac_ext
adam@0 3087
adam@0 3088 # OK, works on sane cases. Now check whether nonexistent headers
adam@0 3089 # can be detected and how.
adam@0 3090 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 3091 /* end confdefs.h. */
adam@0 3092 #include <ac_nonexistent.h>
adam@0 3093 _ACEOF
adam@0 3094 if ac_fn_c_try_cpp "$LINENO"; then :
adam@0 3095 # Broken: success on invalid input.
adam@0 3096 continue
adam@0 3097 else
adam@0 3098 # Passes both tests.
adam@0 3099 ac_preproc_ok=:
adam@0 3100 break
adam@0 3101 fi
adam@0 3102 rm -f conftest.err conftest.i conftest.$ac_ext
adam@0 3103
adam@0 3104 done
adam@0 3105 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
adam@0 3106 rm -f conftest.i conftest.err conftest.$ac_ext
adam@0 3107 if $ac_preproc_ok; then :
adam@0 3108
adam@0 3109 else
adam@0 3110 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
adam@0 3111 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
adam@0 3112 as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
adam@12 3113 See \`config.log' for more details" "$LINENO" 5; }
adam@0 3114 fi
adam@0 3115
adam@0 3116 ac_ext=c
adam@0 3117 ac_cpp='$CPP $CPPFLAGS'
adam@0 3118 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
adam@0 3119 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
adam@0 3120 ac_compiler_gnu=$ac_cv_c_compiler_gnu
adam@0 3121
adam@0 3122
adam@0 3123 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
adam@0 3124 $as_echo_n "checking for grep that handles long lines and -e... " >&6; }
adam@12 3125 if ${ac_cv_path_GREP+:} false; then :
adam@0 3126 $as_echo_n "(cached) " >&6
adam@0 3127 else
adam@0 3128 if test -z "$GREP"; then
adam@0 3129 ac_path_GREP_found=false
adam@0 3130 # Loop through the user's path and test for each of PROGNAME-LIST
adam@0 3131 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 3132 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
adam@0 3133 do
adam@0 3134 IFS=$as_save_IFS
adam@0 3135 test -z "$as_dir" && as_dir=.
adam@0 3136 for ac_prog in grep ggrep; do
adam@0 3137 for ac_exec_ext in '' $ac_executable_extensions; do
adam@0 3138 ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
adam@20 3139 as_fn_executable_p "$ac_path_GREP" || continue
adam@0 3140 # Check for GNU ac_path_GREP and select it if it is found.
adam@0 3141 # Check for GNU $ac_path_GREP
adam@0 3142 case `"$ac_path_GREP" --version 2>&1` in
adam@0 3143 *GNU*)
adam@0 3144 ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
adam@0 3145 *)
adam@0 3146 ac_count=0
adam@0 3147 $as_echo_n 0123456789 >"conftest.in"
adam@0 3148 while :
adam@0 3149 do
adam@0 3150 cat "conftest.in" "conftest.in" >"conftest.tmp"
adam@0 3151 mv "conftest.tmp" "conftest.in"
adam@0 3152 cp "conftest.in" "conftest.nl"
adam@0 3153 $as_echo 'GREP' >> "conftest.nl"
adam@0 3154 "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
adam@0 3155 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
adam@0 3156 as_fn_arith $ac_count + 1 && ac_count=$as_val
adam@0 3157 if test $ac_count -gt ${ac_path_GREP_max-0}; then
adam@0 3158 # Best one so far, save it but keep looking for a better one
adam@0 3159 ac_cv_path_GREP="$ac_path_GREP"
adam@0 3160 ac_path_GREP_max=$ac_count
adam@0 3161 fi
adam@0 3162 # 10*(2^10) chars as input seems more than enough
adam@0 3163 test $ac_count -gt 10 && break
adam@0 3164 done
adam@0 3165 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
adam@0 3166 esac
adam@0 3167
adam@0 3168 $ac_path_GREP_found && break 3
adam@0 3169 done
adam@0 3170 done
adam@0 3171 done
adam@0 3172 IFS=$as_save_IFS
adam@0 3173 if test -z "$ac_cv_path_GREP"; then
adam@0 3174 as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
adam@0 3175 fi
adam@0 3176 else
adam@0 3177 ac_cv_path_GREP=$GREP
adam@0 3178 fi
adam@0 3179
adam@0 3180 fi
adam@0 3181 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
adam@0 3182 $as_echo "$ac_cv_path_GREP" >&6; }
adam@0 3183 GREP="$ac_cv_path_GREP"
adam@0 3184
adam@0 3185
adam@0 3186 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
adam@0 3187 $as_echo_n "checking for egrep... " >&6; }
adam@12 3188 if ${ac_cv_path_EGREP+:} false; then :
adam@0 3189 $as_echo_n "(cached) " >&6
adam@0 3190 else
adam@0 3191 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
adam@0 3192 then ac_cv_path_EGREP="$GREP -E"
adam@0 3193 else
adam@0 3194 if test -z "$EGREP"; then
adam@0 3195 ac_path_EGREP_found=false
adam@0 3196 # Loop through the user's path and test for each of PROGNAME-LIST
adam@0 3197 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 3198 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
adam@0 3199 do
adam@0 3200 IFS=$as_save_IFS
adam@0 3201 test -z "$as_dir" && as_dir=.
adam@0 3202 for ac_prog in egrep; do
adam@0 3203 for ac_exec_ext in '' $ac_executable_extensions; do
adam@0 3204 ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
adam@20 3205 as_fn_executable_p "$ac_path_EGREP" || continue
adam@0 3206 # Check for GNU ac_path_EGREP and select it if it is found.
adam@0 3207 # Check for GNU $ac_path_EGREP
adam@0 3208 case `"$ac_path_EGREP" --version 2>&1` in
adam@0 3209 *GNU*)
adam@0 3210 ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
adam@0 3211 *)
adam@0 3212 ac_count=0
adam@0 3213 $as_echo_n 0123456789 >"conftest.in"
adam@0 3214 while :
adam@0 3215 do
adam@0 3216 cat "conftest.in" "conftest.in" >"conftest.tmp"
adam@0 3217 mv "conftest.tmp" "conftest.in"
adam@0 3218 cp "conftest.in" "conftest.nl"
adam@0 3219 $as_echo 'EGREP' >> "conftest.nl"
adam@0 3220 "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
adam@0 3221 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
adam@0 3222 as_fn_arith $ac_count + 1 && ac_count=$as_val
adam@0 3223 if test $ac_count -gt ${ac_path_EGREP_max-0}; then
adam@0 3224 # Best one so far, save it but keep looking for a better one
adam@0 3225 ac_cv_path_EGREP="$ac_path_EGREP"
adam@0 3226 ac_path_EGREP_max=$ac_count
adam@0 3227 fi
adam@0 3228 # 10*(2^10) chars as input seems more than enough
adam@0 3229 test $ac_count -gt 10 && break
adam@0 3230 done
adam@0 3231 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
adam@0 3232 esac
adam@0 3233
adam@0 3234 $ac_path_EGREP_found && break 3
adam@0 3235 done
adam@0 3236 done
adam@0 3237 done
adam@0 3238 IFS=$as_save_IFS
adam@0 3239 if test -z "$ac_cv_path_EGREP"; then
adam@0 3240 as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
adam@0 3241 fi
adam@0 3242 else
adam@0 3243 ac_cv_path_EGREP=$EGREP
adam@0 3244 fi
adam@0 3245
adam@0 3246 fi
adam@0 3247 fi
adam@0 3248 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
adam@0 3249 $as_echo "$ac_cv_path_EGREP" >&6; }
adam@0 3250 EGREP="$ac_cv_path_EGREP"
adam@0 3251
adam@0 3252
adam@0 3253 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
adam@0 3254 $as_echo_n "checking for ANSI C header files... " >&6; }
adam@12 3255 if ${ac_cv_header_stdc+:} false; then :
adam@0 3256 $as_echo_n "(cached) " >&6
adam@0 3257 else
adam@0 3258 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 3259 /* end confdefs.h. */
adam@0 3260 #include <stdlib.h>
adam@0 3261 #include <stdarg.h>
adam@0 3262 #include <string.h>
adam@0 3263 #include <float.h>
adam@0 3264
adam@0 3265 int
adam@0 3266 main ()
adam@0 3267 {
adam@0 3268
adam@0 3269 ;
adam@0 3270 return 0;
adam@0 3271 }
adam@0 3272 _ACEOF
adam@0 3273 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 3274 ac_cv_header_stdc=yes
adam@0 3275 else
adam@0 3276 ac_cv_header_stdc=no
adam@0 3277 fi
adam@0 3278 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 3279
adam@0 3280 if test $ac_cv_header_stdc = yes; then
adam@0 3281 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
adam@0 3282 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 3283 /* end confdefs.h. */
adam@0 3284 #include <string.h>
adam@0 3285
adam@0 3286 _ACEOF
adam@0 3287 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
adam@0 3288 $EGREP "memchr" >/dev/null 2>&1; then :
adam@0 3289
adam@0 3290 else
adam@0 3291 ac_cv_header_stdc=no
adam@0 3292 fi
adam@0 3293 rm -f conftest*
adam@0 3294
adam@0 3295 fi
adam@0 3296
adam@0 3297 if test $ac_cv_header_stdc = yes; then
adam@0 3298 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
adam@0 3299 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 3300 /* end confdefs.h. */
adam@0 3301 #include <stdlib.h>
adam@0 3302
adam@0 3303 _ACEOF
adam@0 3304 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
adam@0 3305 $EGREP "free" >/dev/null 2>&1; then :
adam@0 3306
adam@0 3307 else
adam@0 3308 ac_cv_header_stdc=no
adam@0 3309 fi
adam@0 3310 rm -f conftest*
adam@0 3311
adam@0 3312 fi
adam@0 3313
adam@0 3314 if test $ac_cv_header_stdc = yes; then
adam@0 3315 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
adam@0 3316 if test "$cross_compiling" = yes; then :
adam@0 3317 :
adam@0 3318 else
adam@0 3319 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 3320 /* end confdefs.h. */
adam@0 3321 #include <ctype.h>
adam@0 3322 #include <stdlib.h>
adam@0 3323 #if ((' ' & 0x0FF) == 0x020)
adam@0 3324 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
adam@0 3325 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
adam@0 3326 #else
adam@0 3327 # define ISLOWER(c) \
adam@0 3328 (('a' <= (c) && (c) <= 'i') \
adam@0 3329 || ('j' <= (c) && (c) <= 'r') \
adam@0 3330 || ('s' <= (c) && (c) <= 'z'))
adam@0 3331 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
adam@0 3332 #endif
adam@0 3333
adam@0 3334 #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
adam@0 3335 int
adam@0 3336 main ()
adam@0 3337 {
adam@0 3338 int i;
adam@0 3339 for (i = 0; i < 256; i++)
adam@0 3340 if (XOR (islower (i), ISLOWER (i))
adam@0 3341 || toupper (i) != TOUPPER (i))
adam@0 3342 return 2;
adam@0 3343 return 0;
adam@0 3344 }
adam@0 3345 _ACEOF
adam@0 3346 if ac_fn_c_try_run "$LINENO"; then :
adam@0 3347
adam@0 3348 else
adam@0 3349 ac_cv_header_stdc=no
adam@0 3350 fi
adam@0 3351 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
adam@0 3352 conftest.$ac_objext conftest.beam conftest.$ac_ext
adam@0 3353 fi
adam@0 3354
adam@0 3355 fi
adam@0 3356 fi
adam@0 3357 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5
adam@0 3358 $as_echo "$ac_cv_header_stdc" >&6; }
adam@0 3359 if test $ac_cv_header_stdc = yes; then
adam@0 3360
adam@0 3361 $as_echo "#define STDC_HEADERS 1" >>confdefs.h
adam@0 3362
adam@0 3363 fi
adam@0 3364
adam@0 3365 # On IRIX 5.3, sys/types and inttypes.h are conflicting.
adam@0 3366 for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
adam@0 3367 inttypes.h stdint.h unistd.h
adam@0 3368 do :
adam@0 3369 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
adam@0 3370 ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
adam@0 3371 "
adam@0 3372 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
adam@0 3373 cat >>confdefs.h <<_ACEOF
adam@0 3374 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
adam@0 3375 _ACEOF
adam@0 3376
adam@0 3377 fi
adam@0 3378
adam@0 3379 done
adam@0 3380
adam@0 3381
adam@0 3382
adam@0 3383 ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default"
adam@12 3384 if test "x$ac_cv_header_minix_config_h" = xyes; then :
adam@0 3385 MINIX=yes
adam@0 3386 else
adam@0 3387 MINIX=
adam@0 3388 fi
adam@0 3389
adam@0 3390
adam@0 3391 if test "$MINIX" = yes; then
adam@0 3392
adam@0 3393 $as_echo "#define _POSIX_SOURCE 1" >>confdefs.h
adam@0 3394
adam@0 3395
adam@0 3396 $as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h
adam@0 3397
adam@0 3398
adam@0 3399 $as_echo "#define _MINIX 1" >>confdefs.h
adam@0 3400
adam@0 3401 fi
adam@0 3402
adam@0 3403
adam@0 3404 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5
adam@0 3405 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; }
adam@12 3406 if ${ac_cv_safe_to_define___extensions__+:} false; then :
adam@0 3407 $as_echo_n "(cached) " >&6
adam@0 3408 else
adam@0 3409 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 3410 /* end confdefs.h. */
adam@0 3411
adam@20 3412 # define __EXTENSIONS__ 1
adam@20 3413 $ac_includes_default
adam@0 3414 int
adam@0 3415 main ()
adam@0 3416 {
adam@0 3417
adam@0 3418 ;
adam@0 3419 return 0;
adam@0 3420 }
adam@0 3421 _ACEOF
adam@0 3422 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 3423 ac_cv_safe_to_define___extensions__=yes
adam@0 3424 else
adam@0 3425 ac_cv_safe_to_define___extensions__=no
adam@0 3426 fi
adam@0 3427 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 3428 fi
adam@0 3429 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5
adam@0 3430 $as_echo "$ac_cv_safe_to_define___extensions__" >&6; }
adam@0 3431 test $ac_cv_safe_to_define___extensions__ = yes &&
adam@0 3432 $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h
adam@0 3433
adam@0 3434 $as_echo "#define _ALL_SOURCE 1" >>confdefs.h
adam@0 3435
adam@0 3436 $as_echo "#define _GNU_SOURCE 1" >>confdefs.h
adam@0 3437
adam@0 3438 $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h
adam@0 3439
adam@0 3440 $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h
adam@0 3441
adam@0 3442
adam@0 3443 am__api_version='1.11'
adam@0 3444
adam@0 3445 ac_aux_dir=
adam@0 3446 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
adam@0 3447 if test -f "$ac_dir/install-sh"; then
adam@0 3448 ac_aux_dir=$ac_dir
adam@0 3449 ac_install_sh="$ac_aux_dir/install-sh -c"
adam@0 3450 break
adam@0 3451 elif test -f "$ac_dir/install.sh"; then
adam@0 3452 ac_aux_dir=$ac_dir
adam@0 3453 ac_install_sh="$ac_aux_dir/install.sh -c"
adam@0 3454 break
adam@0 3455 elif test -f "$ac_dir/shtool"; then
adam@0 3456 ac_aux_dir=$ac_dir
adam@0 3457 ac_install_sh="$ac_aux_dir/shtool install -c"
adam@0 3458 break
adam@0 3459 fi
adam@0 3460 done
adam@0 3461 if test -z "$ac_aux_dir"; then
adam@0 3462 as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
adam@0 3463 fi
adam@0 3464
adam@0 3465 # These three variables are undocumented and unsupported,
adam@0 3466 # and are intended to be withdrawn in a future Autoconf release.
adam@0 3467 # They can cause serious problems if a builder's source tree is in a directory
adam@0 3468 # whose full name contains unusual characters.
adam@0 3469 ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
adam@0 3470 ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
adam@0 3471 ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
adam@0 3472
adam@0 3473
adam@0 3474 # Find a good install program. We prefer a C program (faster),
adam@0 3475 # so one script is as good as another. But avoid the broken or
adam@0 3476 # incompatible versions:
adam@0 3477 # SysV /etc/install, /usr/sbin/install
adam@0 3478 # SunOS /usr/etc/install
adam@0 3479 # IRIX /sbin/install
adam@0 3480 # AIX /bin/install
adam@0 3481 # AmigaOS /C/install, which installs bootblocks on floppy discs
adam@0 3482 # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
adam@0 3483 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
adam@0 3484 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
adam@0 3485 # OS/2's system install, which has a completely different semantic
adam@0 3486 # ./install, which can be erroneously created by make from ./install.sh.
adam@0 3487 # Reject install programs that cannot install multiple files.
adam@0 3488 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
adam@0 3489 $as_echo_n "checking for a BSD-compatible install... " >&6; }
adam@0 3490 if test -z "$INSTALL"; then
adam@12 3491 if ${ac_cv_path_install+:} false; then :
adam@0 3492 $as_echo_n "(cached) " >&6
adam@0 3493 else
adam@0 3494 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 3495 for as_dir in $PATH
adam@0 3496 do
adam@0 3497 IFS=$as_save_IFS
adam@0 3498 test -z "$as_dir" && as_dir=.
adam@0 3499 # Account for people who put trailing slashes in PATH elements.
adam@0 3500 case $as_dir/ in #((
adam@0 3501 ./ | .// | /[cC]/* | \
adam@0 3502 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
adam@0 3503 ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
adam@0 3504 /usr/ucb/* ) ;;
adam@0 3505 *)
adam@0 3506 # OSF1 and SCO ODT 3.0 have their own names for install.
adam@0 3507 # Don't use installbsd from OSF since it installs stuff as root
adam@0 3508 # by default.
adam@0 3509 for ac_prog in ginstall scoinst install; do
adam@0 3510 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 3511 if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
adam@0 3512 if test $ac_prog = install &&
adam@0 3513 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
adam@0 3514 # AIX install. It has an incompatible calling convention.
adam@0 3515 :
adam@0 3516 elif test $ac_prog = install &&
adam@0 3517 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
adam@0 3518 # program-specific install script used by HP pwplus--don't use.
adam@0 3519 :
adam@0 3520 else
adam@0 3521 rm -rf conftest.one conftest.two conftest.dir
adam@0 3522 echo one > conftest.one
adam@0 3523 echo two > conftest.two
adam@0 3524 mkdir conftest.dir
adam@0 3525 if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
adam@0 3526 test -s conftest.one && test -s conftest.two &&
adam@0 3527 test -s conftest.dir/conftest.one &&
adam@0 3528 test -s conftest.dir/conftest.two
adam@0 3529 then
adam@0 3530 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
adam@0 3531 break 3
adam@0 3532 fi
adam@0 3533 fi
adam@0 3534 fi
adam@0 3535 done
adam@0 3536 done
adam@0 3537 ;;
adam@0 3538 esac
adam@0 3539
adam@0 3540 done
adam@0 3541 IFS=$as_save_IFS
adam@0 3542
adam@0 3543 rm -rf conftest.one conftest.two conftest.dir
adam@0 3544
adam@0 3545 fi
adam@0 3546 if test "${ac_cv_path_install+set}" = set; then
adam@0 3547 INSTALL=$ac_cv_path_install
adam@0 3548 else
adam@0 3549 # As a last resort, use the slow shell script. Don't cache a
adam@0 3550 # value for INSTALL within a source directory, because that will
adam@0 3551 # break other packages using the cache if that directory is
adam@0 3552 # removed, or if the value is a relative name.
adam@0 3553 INSTALL=$ac_install_sh
adam@0 3554 fi
adam@0 3555 fi
adam@0 3556 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
adam@0 3557 $as_echo "$INSTALL" >&6; }
adam@0 3558
adam@0 3559 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
adam@0 3560 # It thinks the first close brace ends the variable substitution.
adam@0 3561 test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
adam@0 3562
adam@0 3563 test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
adam@0 3564
adam@0 3565 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
adam@0 3566
adam@0 3567 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
adam@0 3568 $as_echo_n "checking whether build environment is sane... " >&6; }
adam@0 3569 # Just in case
adam@0 3570 sleep 1
adam@0 3571 echo timestamp > conftest.file
adam@0 3572 # Reject unsafe characters in $srcdir or the absolute working directory
adam@0 3573 # name. Accept space and tab only in the latter.
adam@0 3574 am_lf='
adam@0 3575 '
adam@0 3576 case `pwd` in
adam@0 3577 *[\\\"\#\$\&\'\`$am_lf]*)
adam@12 3578 as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
adam@0 3579 esac
adam@0 3580 case $srcdir in
adam@0 3581 *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
adam@12 3582 as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
adam@0 3583 esac
adam@0 3584
adam@0 3585 # Do `set' in a subshell so we don't clobber the current shell's
adam@0 3586 # arguments. Must try -L first in case configure is actually a
adam@0 3587 # symlink; some systems play weird games with the mod time of symlinks
adam@0 3588 # (eg FreeBSD returns the mod time of the symlink's containing
adam@0 3589 # directory).
adam@0 3590 if (
adam@0 3591 set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
adam@0 3592 if test "$*" = "X"; then
adam@0 3593 # -L didn't work.
adam@0 3594 set X `ls -t "$srcdir/configure" conftest.file`
adam@0 3595 fi
adam@0 3596 rm -f conftest.file
adam@0 3597 if test "$*" != "X $srcdir/configure conftest.file" \
adam@0 3598 && test "$*" != "X conftest.file $srcdir/configure"; then
adam@0 3599
adam@0 3600 # If neither matched, then we have a broken ls. This can happen
adam@0 3601 # if, for instance, CONFIG_SHELL is bash and it inherits a
adam@0 3602 # broken ls alias from the environment. This has actually
adam@0 3603 # happened. Such a system could not be considered "sane".
adam@0 3604 as_fn_error $? "ls -t appears to fail. Make sure there is not a broken
adam@0 3605 alias in your environment" "$LINENO" 5
adam@0 3606 fi
adam@0 3607
adam@0 3608 test "$2" = conftest.file
adam@0 3609 )
adam@0 3610 then
adam@0 3611 # Ok.
adam@0 3612 :
adam@0 3613 else
adam@0 3614 as_fn_error $? "newly created file is older than distributed files!
adam@0 3615 Check your system clock" "$LINENO" 5
adam@0 3616 fi
adam@0 3617 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
adam@0 3618 $as_echo "yes" >&6; }
adam@0 3619 test "$program_prefix" != NONE &&
adam@0 3620 program_transform_name="s&^&$program_prefix&;$program_transform_name"
adam@0 3621 # Use a double $ so make ignores it.
adam@0 3622 test "$program_suffix" != NONE &&
adam@0 3623 program_transform_name="s&\$&$program_suffix&;$program_transform_name"
adam@0 3624 # Double any \ or $.
adam@0 3625 # By default was `s,x,x', remove it if useless.
adam@0 3626 ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
adam@0 3627 program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
adam@0 3628
adam@0 3629 # expand $ac_aux_dir to an absolute path
adam@0 3630 am_aux_dir=`cd $ac_aux_dir && pwd`
adam@0 3631
adam@0 3632 if test x"${MISSING+set}" != xset; then
adam@0 3633 case $am_aux_dir in
adam@0 3634 *\ * | *\ *)
adam@0 3635 MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
adam@0 3636 *)
adam@0 3637 MISSING="\${SHELL} $am_aux_dir/missing" ;;
adam@0 3638 esac
adam@0 3639 fi
adam@0 3640 # Use eval to expand $SHELL
adam@0 3641 if eval "$MISSING --run true"; then
adam@0 3642 am_missing_run="$MISSING --run "
adam@0 3643 else
adam@0 3644 am_missing_run=
adam@0 3645 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5
adam@0 3646 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
adam@0 3647 fi
adam@0 3648
adam@0 3649 if test x"${install_sh}" != xset; then
adam@0 3650 case $am_aux_dir in
adam@0 3651 *\ * | *\ *)
adam@0 3652 install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
adam@0 3653 *)
adam@0 3654 install_sh="\${SHELL} $am_aux_dir/install-sh"
adam@0 3655 esac
adam@0 3656 fi
adam@0 3657
adam@0 3658 # Installed binaries are usually stripped using `strip' when the user
adam@0 3659 # run `make install-strip'. However `strip' might not be the right
adam@0 3660 # tool to use in cross-compilation environments, therefore Automake
adam@0 3661 # will honor the `STRIP' environment variable to overrule this program.
adam@0 3662 if test "$cross_compiling" != no; then
adam@0 3663 if test -n "$ac_tool_prefix"; then
adam@0 3664 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
adam@0 3665 set dummy ${ac_tool_prefix}strip; ac_word=$2
adam@0 3666 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 3667 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 3668 if ${ac_cv_prog_STRIP+:} false; then :
adam@0 3669 $as_echo_n "(cached) " >&6
adam@0 3670 else
adam@0 3671 if test -n "$STRIP"; then
adam@0 3672 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
adam@0 3673 else
adam@0 3674 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 3675 for as_dir in $PATH
adam@0 3676 do
adam@0 3677 IFS=$as_save_IFS
adam@0 3678 test -z "$as_dir" && as_dir=.
adam@0 3679 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 3680 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 3681 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
adam@0 3682 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 3683 break 2
adam@0 3684 fi
adam@0 3685 done
adam@0 3686 done
adam@0 3687 IFS=$as_save_IFS
adam@0 3688
adam@0 3689 fi
adam@0 3690 fi
adam@0 3691 STRIP=$ac_cv_prog_STRIP
adam@0 3692 if test -n "$STRIP"; then
adam@0 3693 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
adam@0 3694 $as_echo "$STRIP" >&6; }
adam@0 3695 else
adam@0 3696 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 3697 $as_echo "no" >&6; }
adam@0 3698 fi
adam@0 3699
adam@0 3700
adam@0 3701 fi
adam@0 3702 if test -z "$ac_cv_prog_STRIP"; then
adam@0 3703 ac_ct_STRIP=$STRIP
adam@0 3704 # Extract the first word of "strip", so it can be a program name with args.
adam@0 3705 set dummy strip; ac_word=$2
adam@0 3706 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 3707 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 3708 if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
adam@0 3709 $as_echo_n "(cached) " >&6
adam@0 3710 else
adam@0 3711 if test -n "$ac_ct_STRIP"; then
adam@0 3712 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
adam@0 3713 else
adam@0 3714 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 3715 for as_dir in $PATH
adam@0 3716 do
adam@0 3717 IFS=$as_save_IFS
adam@0 3718 test -z "$as_dir" && as_dir=.
adam@0 3719 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 3720 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 3721 ac_cv_prog_ac_ct_STRIP="strip"
adam@0 3722 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 3723 break 2
adam@0 3724 fi
adam@0 3725 done
adam@0 3726 done
adam@0 3727 IFS=$as_save_IFS
adam@0 3728
adam@0 3729 fi
adam@0 3730 fi
adam@0 3731 ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
adam@0 3732 if test -n "$ac_ct_STRIP"; then
adam@0 3733 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
adam@0 3734 $as_echo "$ac_ct_STRIP" >&6; }
adam@0 3735 else
adam@0 3736 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 3737 $as_echo "no" >&6; }
adam@0 3738 fi
adam@0 3739
adam@0 3740 if test "x$ac_ct_STRIP" = x; then
adam@0 3741 STRIP=":"
adam@0 3742 else
adam@0 3743 case $cross_compiling:$ac_tool_warned in
adam@0 3744 yes:)
adam@0 3745 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 3746 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 3747 ac_tool_warned=yes ;;
adam@0 3748 esac
adam@0 3749 STRIP=$ac_ct_STRIP
adam@0 3750 fi
adam@0 3751 else
adam@0 3752 STRIP="$ac_cv_prog_STRIP"
adam@0 3753 fi
adam@0 3754
adam@0 3755 fi
adam@0 3756 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
adam@0 3757
adam@0 3758 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
adam@0 3759 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
adam@0 3760 if test -z "$MKDIR_P"; then
adam@12 3761 if ${ac_cv_path_mkdir+:} false; then :
adam@0 3762 $as_echo_n "(cached) " >&6
adam@0 3763 else
adam@0 3764 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 3765 for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
adam@0 3766 do
adam@0 3767 IFS=$as_save_IFS
adam@0 3768 test -z "$as_dir" && as_dir=.
adam@0 3769 for ac_prog in mkdir gmkdir; do
adam@0 3770 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 3771 as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
adam@0 3772 case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
adam@0 3773 'mkdir (GNU coreutils) '* | \
adam@0 3774 'mkdir (coreutils) '* | \
adam@0 3775 'mkdir (fileutils) '4.1*)
adam@0 3776 ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
adam@0 3777 break 3;;
adam@0 3778 esac
adam@0 3779 done
adam@0 3780 done
adam@0 3781 done
adam@0 3782 IFS=$as_save_IFS
adam@0 3783
adam@0 3784 fi
adam@0 3785
adam@0 3786 test -d ./--version && rmdir ./--version
adam@0 3787 if test "${ac_cv_path_mkdir+set}" = set; then
adam@0 3788 MKDIR_P="$ac_cv_path_mkdir -p"
adam@0 3789 else
adam@0 3790 # As a last resort, use the slow shell script. Don't cache a
adam@0 3791 # value for MKDIR_P within a source directory, because that will
adam@0 3792 # break other packages using the cache if that directory is
adam@0 3793 # removed, or if the value is a relative name.
adam@0 3794 MKDIR_P="$ac_install_sh -d"
adam@0 3795 fi
adam@0 3796 fi
adam@0 3797 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
adam@0 3798 $as_echo "$MKDIR_P" >&6; }
adam@0 3799
adam@0 3800 mkdir_p="$MKDIR_P"
adam@0 3801 case $mkdir_p in
adam@0 3802 [\\/$]* | ?:[\\/]*) ;;
adam@0 3803 */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
adam@0 3804 esac
adam@0 3805
adam@0 3806 for ac_prog in gawk mawk nawk awk
adam@0 3807 do
adam@0 3808 # Extract the first word of "$ac_prog", so it can be a program name with args.
adam@0 3809 set dummy $ac_prog; ac_word=$2
adam@0 3810 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 3811 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 3812 if ${ac_cv_prog_AWK+:} false; then :
adam@0 3813 $as_echo_n "(cached) " >&6
adam@0 3814 else
adam@0 3815 if test -n "$AWK"; then
adam@0 3816 ac_cv_prog_AWK="$AWK" # Let the user override the test.
adam@0 3817 else
adam@0 3818 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 3819 for as_dir in $PATH
adam@0 3820 do
adam@0 3821 IFS=$as_save_IFS
adam@0 3822 test -z "$as_dir" && as_dir=.
adam@0 3823 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 3824 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 3825 ac_cv_prog_AWK="$ac_prog"
adam@0 3826 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 3827 break 2
adam@0 3828 fi
adam@0 3829 done
adam@0 3830 done
adam@0 3831 IFS=$as_save_IFS
adam@0 3832
adam@0 3833 fi
adam@0 3834 fi
adam@0 3835 AWK=$ac_cv_prog_AWK
adam@0 3836 if test -n "$AWK"; then
adam@0 3837 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
adam@0 3838 $as_echo "$AWK" >&6; }
adam@0 3839 else
adam@0 3840 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 3841 $as_echo "no" >&6; }
adam@0 3842 fi
adam@0 3843
adam@0 3844
adam@0 3845 test -n "$AWK" && break
adam@0 3846 done
adam@0 3847
adam@0 3848 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
adam@0 3849 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
adam@0 3850 set x ${MAKE-make}
adam@0 3851 ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
adam@12 3852 if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
adam@0 3853 $as_echo_n "(cached) " >&6
adam@0 3854 else
adam@0 3855 cat >conftest.make <<\_ACEOF
adam@0 3856 SHELL = /bin/sh
adam@0 3857 all:
adam@0 3858 @echo '@@@%%%=$(MAKE)=@@@%%%'
adam@0 3859 _ACEOF
adam@0 3860 # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
adam@0 3861 case `${MAKE-make} -f conftest.make 2>/dev/null` in
adam@0 3862 *@@@%%%=?*=@@@%%%*)
adam@0 3863 eval ac_cv_prog_make_${ac_make}_set=yes;;
adam@0 3864 *)
adam@0 3865 eval ac_cv_prog_make_${ac_make}_set=no;;
adam@0 3866 esac
adam@0 3867 rm -f conftest.make
adam@0 3868 fi
adam@0 3869 if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
adam@0 3870 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
adam@0 3871 $as_echo "yes" >&6; }
adam@0 3872 SET_MAKE=
adam@0 3873 else
adam@0 3874 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 3875 $as_echo "no" >&6; }
adam@0 3876 SET_MAKE="MAKE=${MAKE-make}"
adam@0 3877 fi
adam@0 3878
adam@0 3879 rm -rf .tst 2>/dev/null
adam@0 3880 mkdir .tst 2>/dev/null
adam@0 3881 if test -d .tst; then
adam@0 3882 am__leading_dot=.
adam@0 3883 else
adam@0 3884 am__leading_dot=_
adam@0 3885 fi
adam@0 3886 rmdir .tst 2>/dev/null
adam@0 3887
adam@0 3888 DEPDIR="${am__leading_dot}deps"
adam@0 3889
adam@0 3890 ac_config_commands="$ac_config_commands depfiles"
adam@0 3891
adam@0 3892
adam@0 3893 am_make=${MAKE-make}
adam@0 3894 cat > confinc << 'END'
adam@0 3895 am__doit:
adam@0 3896 @echo this is the am__doit target
adam@0 3897 .PHONY: am__doit
adam@0 3898 END
adam@0 3899 # If we don't find an include directive, just comment out the code.
adam@0 3900 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
adam@0 3901 $as_echo_n "checking for style of include used by $am_make... " >&6; }
adam@0 3902 am__include="#"
adam@0 3903 am__quote=
adam@0 3904 _am_result=none
adam@0 3905 # First try GNU make style include.
adam@0 3906 echo "include confinc" > confmf
adam@0 3907 # Ignore all kinds of additional output from `make'.
adam@0 3908 case `$am_make -s -f confmf 2> /dev/null` in #(
adam@0 3909 *the\ am__doit\ target*)
adam@0 3910 am__include=include
adam@0 3911 am__quote=
adam@0 3912 _am_result=GNU
adam@0 3913 ;;
adam@0 3914 esac
adam@0 3915 # Now try BSD make style include.
adam@0 3916 if test "$am__include" = "#"; then
adam@0 3917 echo '.include "confinc"' > confmf
adam@0 3918 case `$am_make -s -f confmf 2> /dev/null` in #(
adam@0 3919 *the\ am__doit\ target*)
adam@0 3920 am__include=.include
adam@0 3921 am__quote="\""
adam@0 3922 _am_result=BSD
adam@0 3923 ;;
adam@0 3924 esac
adam@0 3925 fi
adam@0 3926
adam@0 3927
adam@0 3928 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
adam@0 3929 $as_echo "$_am_result" >&6; }
adam@0 3930 rm -f confinc confmf
adam@0 3931
adam@0 3932 # Check whether --enable-dependency-tracking was given.
adam@0 3933 if test "${enable_dependency_tracking+set}" = set; then :
adam@0 3934 enableval=$enable_dependency_tracking;
adam@0 3935 fi
adam@0 3936
adam@0 3937 if test "x$enable_dependency_tracking" != xno; then
adam@0 3938 am_depcomp="$ac_aux_dir/depcomp"
adam@0 3939 AMDEPBACKSLASH='\'
adam@20 3940 am__nodep='_no'
adam@0 3941 fi
adam@0 3942 if test "x$enable_dependency_tracking" != xno; then
adam@0 3943 AMDEP_TRUE=
adam@0 3944 AMDEP_FALSE='#'
adam@0 3945 else
adam@0 3946 AMDEP_TRUE='#'
adam@0 3947 AMDEP_FALSE=
adam@0 3948 fi
adam@0 3949
adam@0 3950
adam@0 3951 if test "`cd $srcdir && pwd`" != "`pwd`"; then
adam@0 3952 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
adam@0 3953 # is not polluted with repeated "-I."
adam@0 3954 am__isrc=' -I$(srcdir)'
adam@0 3955 # test to see if srcdir already configured
adam@0 3956 if test -f $srcdir/config.status; then
adam@0 3957 as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
adam@0 3958 fi
adam@0 3959 fi
adam@0 3960
adam@0 3961 # test whether we have cygpath
adam@0 3962 if test -z "$CYGPATH_W"; then
adam@0 3963 if (cygpath --version) >/dev/null 2>/dev/null; then
adam@0 3964 CYGPATH_W='cygpath -w'
adam@0 3965 else
adam@0 3966 CYGPATH_W=echo
adam@0 3967 fi
adam@0 3968 fi
adam@0 3969
adam@0 3970
adam@0 3971 # Define the identity of the package.
adam@0 3972 PACKAGE='urweb_feed'
adam@0 3973 VERSION='1.0'
adam@0 3974
adam@0 3975
adam@0 3976 # Some tools Automake needs.
adam@0 3977
adam@0 3978 ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
adam@0 3979
adam@0 3980
adam@0 3981 AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
adam@0 3982
adam@0 3983
adam@0 3984 AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
adam@0 3985
adam@0 3986
adam@0 3987 AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
adam@0 3988
adam@0 3989
adam@0 3990 MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
adam@0 3991
adam@0 3992 # We need awk for the "check" target. The system "awk" is bad on
adam@0 3993 # some platforms.
adam@20 3994 # Always define AMTAR for backward compatibility. Yes, it's still used
adam@20 3995 # in the wild :-( We should find a proper way to deprecate it ...
adam@20 3996 AMTAR='$${TAR-tar}'
adam@20 3997
adam@20 3998 am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
adam@0 3999
adam@0 4000
adam@0 4001
adam@0 4002
adam@0 4003 depcc="$CC" am_compiler_list=
adam@0 4004
adam@0 4005 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
adam@0 4006 $as_echo_n "checking dependency style of $depcc... " >&6; }
adam@12 4007 if ${am_cv_CC_dependencies_compiler_type+:} false; then :
adam@0 4008 $as_echo_n "(cached) " >&6
adam@0 4009 else
adam@0 4010 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
adam@0 4011 # We make a subdir and do the tests there. Otherwise we can end up
adam@0 4012 # making bogus files that we don't know about and never remove. For
adam@0 4013 # instance it was reported that on HP-UX the gcc test will end up
adam@0 4014 # making a dummy file named `D' -- because `-MD' means `put the output
adam@0 4015 # in D'.
adam@20 4016 rm -rf conftest.dir
adam@0 4017 mkdir conftest.dir
adam@0 4018 # Copy depcomp to subdir because otherwise we won't find it if we're
adam@0 4019 # using a relative directory.
adam@0 4020 cp "$am_depcomp" conftest.dir
adam@0 4021 cd conftest.dir
adam@0 4022 # We will build objects and dependencies in a subdirectory because
adam@0 4023 # it helps to detect inapplicable dependency modes. For instance
adam@0 4024 # both Tru64's cc and ICC support -MD to output dependencies as a
adam@0 4025 # side effect of compilation, but ICC will put the dependencies in
adam@0 4026 # the current directory while Tru64 will put them in the object
adam@0 4027 # directory.
adam@0 4028 mkdir sub
adam@0 4029
adam@0 4030 am_cv_CC_dependencies_compiler_type=none
adam@0 4031 if test "$am_compiler_list" = ""; then
adam@0 4032 am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
adam@0 4033 fi
adam@0 4034 am__universal=false
adam@0 4035 case " $depcc " in #(
adam@0 4036 *\ -arch\ *\ -arch\ *) am__universal=true ;;
adam@0 4037 esac
adam@0 4038
adam@0 4039 for depmode in $am_compiler_list; do
adam@0 4040 # Setup a source with many dependencies, because some compilers
adam@0 4041 # like to wrap large dependency lists on column 80 (with \), and
adam@0 4042 # we should not choose a depcomp mode which is confused by this.
adam@0 4043 #
adam@0 4044 # We need to recreate these files for each test, as the compiler may
adam@0 4045 # overwrite some of them when testing with obscure command lines.
adam@0 4046 # This happens at least with the AIX C compiler.
adam@0 4047 : > sub/conftest.c
adam@0 4048 for i in 1 2 3 4 5 6; do
adam@0 4049 echo '#include "conftst'$i'.h"' >> sub/conftest.c
adam@0 4050 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
adam@0 4051 # Solaris 8's {/usr,}/bin/sh.
adam@0 4052 touch sub/conftst$i.h
adam@0 4053 done
adam@0 4054 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
adam@0 4055
adam@0 4056 # We check with `-c' and `-o' for the sake of the "dashmstdout"
adam@0 4057 # mode. It turns out that the SunPro C++ compiler does not properly
adam@0 4058 # handle `-M -o', and we need to detect this. Also, some Intel
adam@0 4059 # versions had trouble with output in subdirs
adam@0 4060 am__obj=sub/conftest.${OBJEXT-o}
adam@0 4061 am__minus_obj="-o $am__obj"
adam@0 4062 case $depmode in
adam@0 4063 gcc)
adam@0 4064 # This depmode causes a compiler race in universal mode.
adam@0 4065 test "$am__universal" = false || continue
adam@0 4066 ;;
adam@0 4067 nosideeffect)
adam@0 4068 # after this tag, mechanisms are not by side-effect, so they'll
adam@0 4069 # only be used when explicitly requested
adam@0 4070 if test "x$enable_dependency_tracking" = xyes; then
adam@0 4071 continue
adam@0 4072 else
adam@0 4073 break
adam@0 4074 fi
adam@0 4075 ;;
adam@20 4076 msvc7 | msvc7msys | msvisualcpp | msvcmsys)
adam@0 4077 # This compiler won't grok `-c -o', but also, the minuso test has
adam@0 4078 # not run yet. These depmodes are late enough in the game, and
adam@0 4079 # so weak that their functioning should not be impacted.
adam@0 4080 am__obj=conftest.${OBJEXT-o}
adam@0 4081 am__minus_obj=
adam@0 4082 ;;
adam@0 4083 none) break ;;
adam@0 4084 esac
adam@0 4085 if depmode=$depmode \
adam@0 4086 source=sub/conftest.c object=$am__obj \
adam@0 4087 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
adam@0 4088 $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
adam@0 4089 >/dev/null 2>conftest.err &&
adam@0 4090 grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
adam@0 4091 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
adam@0 4092 grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
adam@0 4093 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
adam@0 4094 # icc doesn't choke on unknown options, it will just issue warnings
adam@0 4095 # or remarks (even with -Werror). So we grep stderr for any message
adam@0 4096 # that says an option was ignored or not supported.
adam@0 4097 # When given -MP, icc 7.0 and 7.1 complain thusly:
adam@0 4098 # icc: Command line warning: ignoring option '-M'; no argument required
adam@0 4099 # The diagnosis changed in icc 8.0:
adam@0 4100 # icc: Command line remark: option '-MP' not supported
adam@0 4101 if (grep 'ignoring option' conftest.err ||
adam@0 4102 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
adam@0 4103 am_cv_CC_dependencies_compiler_type=$depmode
adam@0 4104 break
adam@0 4105 fi
adam@0 4106 fi
adam@0 4107 done
adam@0 4108
adam@0 4109 cd ..
adam@0 4110 rm -rf conftest.dir
adam@0 4111 else
adam@0 4112 am_cv_CC_dependencies_compiler_type=none
adam@0 4113 fi
adam@0 4114
adam@0 4115 fi
adam@0 4116 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
adam@0 4117 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
adam@0 4118 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
adam@0 4119
adam@0 4120 if
adam@0 4121 test "x$enable_dependency_tracking" != xno \
adam@0 4122 && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
adam@0 4123 am__fastdepCC_TRUE=
adam@0 4124 am__fastdepCC_FALSE='#'
adam@0 4125 else
adam@0 4126 am__fastdepCC_TRUE='#'
adam@0 4127 am__fastdepCC_FALSE=
adam@0 4128 fi
adam@0 4129
adam@0 4130
adam@0 4131
adam@0 4132 ac_ext=c
adam@0 4133 ac_cpp='$CPP $CPPFLAGS'
adam@0 4134 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
adam@0 4135 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
adam@0 4136 ac_compiler_gnu=$ac_cv_c_compiler_gnu
adam@0 4137 if test -n "$ac_tool_prefix"; then
adam@0 4138 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
adam@0 4139 set dummy ${ac_tool_prefix}gcc; ac_word=$2
adam@0 4140 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 4141 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 4142 if ${ac_cv_prog_CC+:} false; then :
adam@0 4143 $as_echo_n "(cached) " >&6
adam@0 4144 else
adam@0 4145 if test -n "$CC"; then
adam@0 4146 ac_cv_prog_CC="$CC" # Let the user override the test.
adam@0 4147 else
adam@0 4148 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 4149 for as_dir in $PATH
adam@0 4150 do
adam@0 4151 IFS=$as_save_IFS
adam@0 4152 test -z "$as_dir" && as_dir=.
adam@0 4153 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 4154 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 4155 ac_cv_prog_CC="${ac_tool_prefix}gcc"
adam@0 4156 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 4157 break 2
adam@0 4158 fi
adam@0 4159 done
adam@0 4160 done
adam@0 4161 IFS=$as_save_IFS
adam@0 4162
adam@0 4163 fi
adam@0 4164 fi
adam@0 4165 CC=$ac_cv_prog_CC
adam@0 4166 if test -n "$CC"; then
adam@0 4167 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
adam@0 4168 $as_echo "$CC" >&6; }
adam@0 4169 else
adam@0 4170 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 4171 $as_echo "no" >&6; }
adam@0 4172 fi
adam@0 4173
adam@0 4174
adam@0 4175 fi
adam@0 4176 if test -z "$ac_cv_prog_CC"; then
adam@0 4177 ac_ct_CC=$CC
adam@0 4178 # Extract the first word of "gcc", so it can be a program name with args.
adam@0 4179 set dummy gcc; ac_word=$2
adam@0 4180 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 4181 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 4182 if ${ac_cv_prog_ac_ct_CC+:} false; then :
adam@0 4183 $as_echo_n "(cached) " >&6
adam@0 4184 else
adam@0 4185 if test -n "$ac_ct_CC"; then
adam@0 4186 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
adam@0 4187 else
adam@0 4188 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 4189 for as_dir in $PATH
adam@0 4190 do
adam@0 4191 IFS=$as_save_IFS
adam@0 4192 test -z "$as_dir" && as_dir=.
adam@0 4193 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 4194 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 4195 ac_cv_prog_ac_ct_CC="gcc"
adam@0 4196 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 4197 break 2
adam@0 4198 fi
adam@0 4199 done
adam@0 4200 done
adam@0 4201 IFS=$as_save_IFS
adam@0 4202
adam@0 4203 fi
adam@0 4204 fi
adam@0 4205 ac_ct_CC=$ac_cv_prog_ac_ct_CC
adam@0 4206 if test -n "$ac_ct_CC"; then
adam@0 4207 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
adam@0 4208 $as_echo "$ac_ct_CC" >&6; }
adam@0 4209 else
adam@0 4210 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 4211 $as_echo "no" >&6; }
adam@0 4212 fi
adam@0 4213
adam@0 4214 if test "x$ac_ct_CC" = x; then
adam@0 4215 CC=""
adam@0 4216 else
adam@0 4217 case $cross_compiling:$ac_tool_warned in
adam@0 4218 yes:)
adam@0 4219 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 4220 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 4221 ac_tool_warned=yes ;;
adam@0 4222 esac
adam@0 4223 CC=$ac_ct_CC
adam@0 4224 fi
adam@0 4225 else
adam@0 4226 CC="$ac_cv_prog_CC"
adam@0 4227 fi
adam@0 4228
adam@0 4229 if test -z "$CC"; then
adam@0 4230 if test -n "$ac_tool_prefix"; then
adam@0 4231 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
adam@0 4232 set dummy ${ac_tool_prefix}cc; ac_word=$2
adam@0 4233 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 4234 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 4235 if ${ac_cv_prog_CC+:} false; then :
adam@0 4236 $as_echo_n "(cached) " >&6
adam@0 4237 else
adam@0 4238 if test -n "$CC"; then
adam@0 4239 ac_cv_prog_CC="$CC" # Let the user override the test.
adam@0 4240 else
adam@0 4241 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 4242 for as_dir in $PATH
adam@0 4243 do
adam@0 4244 IFS=$as_save_IFS
adam@0 4245 test -z "$as_dir" && as_dir=.
adam@0 4246 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 4247 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 4248 ac_cv_prog_CC="${ac_tool_prefix}cc"
adam@0 4249 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 4250 break 2
adam@0 4251 fi
adam@0 4252 done
adam@0 4253 done
adam@0 4254 IFS=$as_save_IFS
adam@0 4255
adam@0 4256 fi
adam@0 4257 fi
adam@0 4258 CC=$ac_cv_prog_CC
adam@0 4259 if test -n "$CC"; then
adam@0 4260 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
adam@0 4261 $as_echo "$CC" >&6; }
adam@0 4262 else
adam@0 4263 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 4264 $as_echo "no" >&6; }
adam@0 4265 fi
adam@0 4266
adam@0 4267
adam@0 4268 fi
adam@0 4269 fi
adam@0 4270 if test -z "$CC"; then
adam@0 4271 # Extract the first word of "cc", so it can be a program name with args.
adam@0 4272 set dummy cc; ac_word=$2
adam@0 4273 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 4274 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 4275 if ${ac_cv_prog_CC+:} false; then :
adam@0 4276 $as_echo_n "(cached) " >&6
adam@0 4277 else
adam@0 4278 if test -n "$CC"; then
adam@0 4279 ac_cv_prog_CC="$CC" # Let the user override the test.
adam@0 4280 else
adam@0 4281 ac_prog_rejected=no
adam@0 4282 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 4283 for as_dir in $PATH
adam@0 4284 do
adam@0 4285 IFS=$as_save_IFS
adam@0 4286 test -z "$as_dir" && as_dir=.
adam@0 4287 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 4288 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 4289 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
adam@0 4290 ac_prog_rejected=yes
adam@0 4291 continue
adam@0 4292 fi
adam@0 4293 ac_cv_prog_CC="cc"
adam@0 4294 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 4295 break 2
adam@0 4296 fi
adam@0 4297 done
adam@0 4298 done
adam@0 4299 IFS=$as_save_IFS
adam@0 4300
adam@0 4301 if test $ac_prog_rejected = yes; then
adam@0 4302 # We found a bogon in the path, so make sure we never use it.
adam@0 4303 set dummy $ac_cv_prog_CC
adam@0 4304 shift
adam@0 4305 if test $# != 0; then
adam@0 4306 # We chose a different compiler from the bogus one.
adam@0 4307 # However, it has the same basename, so the bogon will be chosen
adam@0 4308 # first if we set CC to just the basename; use the full file name.
adam@0 4309 shift
adam@0 4310 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
adam@0 4311 fi
adam@0 4312 fi
adam@0 4313 fi
adam@0 4314 fi
adam@0 4315 CC=$ac_cv_prog_CC
adam@0 4316 if test -n "$CC"; then
adam@0 4317 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
adam@0 4318 $as_echo "$CC" >&6; }
adam@0 4319 else
adam@0 4320 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 4321 $as_echo "no" >&6; }
adam@0 4322 fi
adam@0 4323
adam@0 4324
adam@0 4325 fi
adam@0 4326 if test -z "$CC"; then
adam@0 4327 if test -n "$ac_tool_prefix"; then
adam@0 4328 for ac_prog in cl.exe
adam@0 4329 do
adam@0 4330 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
adam@0 4331 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
adam@0 4332 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 4333 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 4334 if ${ac_cv_prog_CC+:} false; then :
adam@0 4335 $as_echo_n "(cached) " >&6
adam@0 4336 else
adam@0 4337 if test -n "$CC"; then
adam@0 4338 ac_cv_prog_CC="$CC" # Let the user override the test.
adam@0 4339 else
adam@0 4340 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 4341 for as_dir in $PATH
adam@0 4342 do
adam@0 4343 IFS=$as_save_IFS
adam@0 4344 test -z "$as_dir" && as_dir=.
adam@0 4345 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 4346 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 4347 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
adam@0 4348 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 4349 break 2
adam@0 4350 fi
adam@0 4351 done
adam@0 4352 done
adam@0 4353 IFS=$as_save_IFS
adam@0 4354
adam@0 4355 fi
adam@0 4356 fi
adam@0 4357 CC=$ac_cv_prog_CC
adam@0 4358 if test -n "$CC"; then
adam@0 4359 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
adam@0 4360 $as_echo "$CC" >&6; }
adam@0 4361 else
adam@0 4362 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 4363 $as_echo "no" >&6; }
adam@0 4364 fi
adam@0 4365
adam@0 4366
adam@0 4367 test -n "$CC" && break
adam@0 4368 done
adam@0 4369 fi
adam@0 4370 if test -z "$CC"; then
adam@0 4371 ac_ct_CC=$CC
adam@0 4372 for ac_prog in cl.exe
adam@0 4373 do
adam@0 4374 # Extract the first word of "$ac_prog", so it can be a program name with args.
adam@0 4375 set dummy $ac_prog; ac_word=$2
adam@0 4376 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 4377 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 4378 if ${ac_cv_prog_ac_ct_CC+:} false; then :
adam@0 4379 $as_echo_n "(cached) " >&6
adam@0 4380 else
adam@0 4381 if test -n "$ac_ct_CC"; then
adam@0 4382 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
adam@0 4383 else
adam@0 4384 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 4385 for as_dir in $PATH
adam@0 4386 do
adam@0 4387 IFS=$as_save_IFS
adam@0 4388 test -z "$as_dir" && as_dir=.
adam@0 4389 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 4390 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 4391 ac_cv_prog_ac_ct_CC="$ac_prog"
adam@0 4392 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 4393 break 2
adam@0 4394 fi
adam@0 4395 done
adam@0 4396 done
adam@0 4397 IFS=$as_save_IFS
adam@0 4398
adam@0 4399 fi
adam@0 4400 fi
adam@0 4401 ac_ct_CC=$ac_cv_prog_ac_ct_CC
adam@0 4402 if test -n "$ac_ct_CC"; then
adam@0 4403 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
adam@0 4404 $as_echo "$ac_ct_CC" >&6; }
adam@0 4405 else
adam@0 4406 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 4407 $as_echo "no" >&6; }
adam@0 4408 fi
adam@0 4409
adam@0 4410
adam@0 4411 test -n "$ac_ct_CC" && break
adam@0 4412 done
adam@0 4413
adam@0 4414 if test "x$ac_ct_CC" = x; then
adam@0 4415 CC=""
adam@0 4416 else
adam@0 4417 case $cross_compiling:$ac_tool_warned in
adam@0 4418 yes:)
adam@0 4419 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 4420 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 4421 ac_tool_warned=yes ;;
adam@0 4422 esac
adam@0 4423 CC=$ac_ct_CC
adam@0 4424 fi
adam@0 4425 fi
adam@0 4426
adam@0 4427 fi
adam@0 4428
adam@0 4429
adam@0 4430 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
adam@0 4431 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
adam@0 4432 as_fn_error $? "no acceptable C compiler found in \$PATH
adam@12 4433 See \`config.log' for more details" "$LINENO" 5; }
adam@0 4434
adam@0 4435 # Provide some information about the compiler.
adam@0 4436 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
adam@0 4437 set X $ac_compile
adam@0 4438 ac_compiler=$2
adam@0 4439 for ac_option in --version -v -V -qversion; do
adam@0 4440 { { ac_try="$ac_compiler $ac_option >&5"
adam@0 4441 case "(($ac_try" in
adam@0 4442 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
adam@0 4443 *) ac_try_echo=$ac_try;;
adam@0 4444 esac
adam@0 4445 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
adam@0 4446 $as_echo "$ac_try_echo"; } >&5
adam@0 4447 (eval "$ac_compiler $ac_option >&5") 2>conftest.err
adam@0 4448 ac_status=$?
adam@0 4449 if test -s conftest.err; then
adam@0 4450 sed '10a\
adam@0 4451 ... rest of stderr output deleted ...
adam@0 4452 10q' conftest.err >conftest.er1
adam@0 4453 cat conftest.er1 >&5
adam@0 4454 fi
adam@0 4455 rm -f conftest.er1 conftest.err
adam@0 4456 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 4457 test $ac_status = 0; }
adam@0 4458 done
adam@0 4459
adam@0 4460 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
adam@0 4461 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
adam@12 4462 if ${ac_cv_c_compiler_gnu+:} false; then :
adam@0 4463 $as_echo_n "(cached) " >&6
adam@0 4464 else
adam@0 4465 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 4466 /* end confdefs.h. */
adam@0 4467
adam@0 4468 int
adam@0 4469 main ()
adam@0 4470 {
adam@0 4471 #ifndef __GNUC__
adam@0 4472 choke me
adam@0 4473 #endif
adam@0 4474
adam@0 4475 ;
adam@0 4476 return 0;
adam@0 4477 }
adam@0 4478 _ACEOF
adam@0 4479 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 4480 ac_compiler_gnu=yes
adam@0 4481 else
adam@0 4482 ac_compiler_gnu=no
adam@0 4483 fi
adam@0 4484 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 4485 ac_cv_c_compiler_gnu=$ac_compiler_gnu
adam@0 4486
adam@0 4487 fi
adam@0 4488 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
adam@0 4489 $as_echo "$ac_cv_c_compiler_gnu" >&6; }
adam@0 4490 if test $ac_compiler_gnu = yes; then
adam@0 4491 GCC=yes
adam@0 4492 else
adam@0 4493 GCC=
adam@0 4494 fi
adam@0 4495 ac_test_CFLAGS=${CFLAGS+set}
adam@0 4496 ac_save_CFLAGS=$CFLAGS
adam@0 4497 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
adam@0 4498 $as_echo_n "checking whether $CC accepts -g... " >&6; }
adam@12 4499 if ${ac_cv_prog_cc_g+:} false; then :
adam@0 4500 $as_echo_n "(cached) " >&6
adam@0 4501 else
adam@0 4502 ac_save_c_werror_flag=$ac_c_werror_flag
adam@0 4503 ac_c_werror_flag=yes
adam@0 4504 ac_cv_prog_cc_g=no
adam@0 4505 CFLAGS="-g"
adam@0 4506 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 4507 /* end confdefs.h. */
adam@0 4508
adam@0 4509 int
adam@0 4510 main ()
adam@0 4511 {
adam@0 4512
adam@0 4513 ;
adam@0 4514 return 0;
adam@0 4515 }
adam@0 4516 _ACEOF
adam@0 4517 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 4518 ac_cv_prog_cc_g=yes
adam@0 4519 else
adam@0 4520 CFLAGS=""
adam@0 4521 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 4522 /* end confdefs.h. */
adam@0 4523
adam@0 4524 int
adam@0 4525 main ()
adam@0 4526 {
adam@0 4527
adam@0 4528 ;
adam@0 4529 return 0;
adam@0 4530 }
adam@0 4531 _ACEOF
adam@0 4532 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 4533
adam@0 4534 else
adam@0 4535 ac_c_werror_flag=$ac_save_c_werror_flag
adam@0 4536 CFLAGS="-g"
adam@0 4537 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 4538 /* end confdefs.h. */
adam@0 4539
adam@0 4540 int
adam@0 4541 main ()
adam@0 4542 {
adam@0 4543
adam@0 4544 ;
adam@0 4545 return 0;
adam@0 4546 }
adam@0 4547 _ACEOF
adam@0 4548 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 4549 ac_cv_prog_cc_g=yes
adam@0 4550 fi
adam@0 4551 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 4552 fi
adam@0 4553 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 4554 fi
adam@0 4555 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@0 4556 ac_c_werror_flag=$ac_save_c_werror_flag
adam@0 4557 fi
adam@0 4558 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
adam@0 4559 $as_echo "$ac_cv_prog_cc_g" >&6; }
adam@0 4560 if test "$ac_test_CFLAGS" = set; then
adam@0 4561 CFLAGS=$ac_save_CFLAGS
adam@0 4562 elif test $ac_cv_prog_cc_g = yes; then
adam@0 4563 if test "$GCC" = yes; then
adam@0 4564 CFLAGS="-g -O2"
adam@0 4565 else
adam@0 4566 CFLAGS="-g"
adam@0 4567 fi
adam@0 4568 else
adam@0 4569 if test "$GCC" = yes; then
adam@0 4570 CFLAGS="-O2"
adam@0 4571 else
adam@0 4572 CFLAGS=
adam@0 4573 fi
adam@0 4574 fi
adam@0 4575 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
adam@0 4576 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
adam@12 4577 if ${ac_cv_prog_cc_c89+:} false; then :
adam@0 4578 $as_echo_n "(cached) " >&6
adam@0 4579 else
adam@0 4580 ac_cv_prog_cc_c89=no
adam@0 4581 ac_save_CC=$CC
adam@0 4582 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 4583 /* end confdefs.h. */
adam@0 4584 #include <stdarg.h>
adam@0 4585 #include <stdio.h>
adam@20 4586 struct stat;
adam@0 4587 /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
adam@0 4588 struct buf { int x; };
adam@0 4589 FILE * (*rcsopen) (struct buf *, struct stat *, int);
adam@0 4590 static char *e (p, i)
adam@0 4591 char **p;
adam@0 4592 int i;
adam@0 4593 {
adam@0 4594 return p[i];
adam@0 4595 }
adam@0 4596 static char *f (char * (*g) (char **, int), char **p, ...)
adam@0 4597 {
adam@0 4598 char *s;
adam@0 4599 va_list v;
adam@0 4600 va_start (v,p);
adam@0 4601 s = g (p, va_arg (v,int));
adam@0 4602 va_end (v);
adam@0 4603 return s;
adam@0 4604 }
adam@0 4605
adam@0 4606 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
adam@0 4607 function prototypes and stuff, but not '\xHH' hex character constants.
adam@0 4608 These don't provoke an error unfortunately, instead are silently treated
adam@0 4609 as 'x'. The following induces an error, until -std is added to get
adam@0 4610 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
adam@0 4611 array size at least. It's necessary to write '\x00'==0 to get something
adam@0 4612 that's true only with -std. */
adam@0 4613 int osf4_cc_array ['\x00' == 0 ? 1 : -1];
adam@0 4614
adam@0 4615 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
adam@0 4616 inside strings and character constants. */
adam@0 4617 #define FOO(x) 'x'
adam@0 4618 int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
adam@0 4619
adam@0 4620 int test (int i, double x);
adam@0 4621 struct s1 {int (*f) (int a);};
adam@0 4622 struct s2 {int (*f) (double a);};
adam@0 4623 int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
adam@0 4624 int argc;
adam@0 4625 char **argv;
adam@0 4626 int
adam@0 4627 main ()
adam@0 4628 {
adam@0 4629 return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
adam@0 4630 ;
adam@0 4631 return 0;
adam@0 4632 }
adam@0 4633 _ACEOF
adam@0 4634 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
adam@0 4635 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
adam@0 4636 do
adam@0 4637 CC="$ac_save_CC $ac_arg"
adam@0 4638 if ac_fn_c_try_compile "$LINENO"; then :
adam@0 4639 ac_cv_prog_cc_c89=$ac_arg
adam@0 4640 fi
adam@0 4641 rm -f core conftest.err conftest.$ac_objext
adam@0 4642 test "x$ac_cv_prog_cc_c89" != "xno" && break
adam@0 4643 done
adam@0 4644 rm -f conftest.$ac_ext
adam@0 4645 CC=$ac_save_CC
adam@0 4646
adam@0 4647 fi
adam@0 4648 # AC_CACHE_VAL
adam@0 4649 case "x$ac_cv_prog_cc_c89" in
adam@0 4650 x)
adam@0 4651 { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
adam@0 4652 $as_echo "none needed" >&6; } ;;
adam@0 4653 xno)
adam@0 4654 { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
adam@0 4655 $as_echo "unsupported" >&6; } ;;
adam@0 4656 *)
adam@0 4657 CC="$CC $ac_cv_prog_cc_c89"
adam@0 4658 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
adam@0 4659 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
adam@0 4660 esac
adam@0 4661 if test "x$ac_cv_prog_cc_c89" != xno; then :
adam@0 4662
adam@0 4663 fi
adam@0 4664
adam@0 4665 ac_ext=c
adam@0 4666 ac_cpp='$CPP $CPPFLAGS'
adam@0 4667 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
adam@0 4668 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
adam@0 4669 ac_compiler_gnu=$ac_cv_c_compiler_gnu
adam@0 4670
adam@0 4671 case `pwd` in
adam@0 4672 *\ * | *\ *)
adam@0 4673 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5
adam@0 4674 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;;
adam@0 4675 esac
adam@0 4676
adam@0 4677
adam@0 4678
adam@20 4679 macro_version='2.4.2'
adam@20 4680 macro_revision='1.3337'
adam@0 4681
adam@0 4682
adam@0 4683
adam@0 4684
adam@0 4685
adam@0 4686
adam@0 4687
adam@0 4688
adam@0 4689
adam@0 4690
adam@0 4691
adam@0 4692
adam@0 4693
adam@0 4694 ltmain="$ac_aux_dir/ltmain.sh"
adam@0 4695
adam@0 4696 # Make sure we can run config.sub.
adam@0 4697 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
adam@0 4698 as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
adam@0 4699
adam@0 4700 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
adam@0 4701 $as_echo_n "checking build system type... " >&6; }
adam@12 4702 if ${ac_cv_build+:} false; then :
adam@0 4703 $as_echo_n "(cached) " >&6
adam@0 4704 else
adam@0 4705 ac_build_alias=$build_alias
adam@0 4706 test "x$ac_build_alias" = x &&
adam@0 4707 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
adam@0 4708 test "x$ac_build_alias" = x &&
adam@0 4709 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
adam@0 4710 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
adam@0 4711 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
adam@0 4712
adam@0 4713 fi
adam@0 4714 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
adam@0 4715 $as_echo "$ac_cv_build" >&6; }
adam@0 4716 case $ac_cv_build in
adam@0 4717 *-*-*) ;;
adam@12 4718 *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
adam@0 4719 esac
adam@0 4720 build=$ac_cv_build
adam@0 4721 ac_save_IFS=$IFS; IFS='-'
adam@0 4722 set x $ac_cv_build
adam@0 4723 shift
adam@0 4724 build_cpu=$1
adam@0 4725 build_vendor=$2
adam@0 4726 shift; shift
adam@0 4727 # Remember, the first character of IFS is used to create $*,
adam@0 4728 # except with old shells:
adam@0 4729 build_os=$*
adam@0 4730 IFS=$ac_save_IFS
adam@0 4731 case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
adam@0 4732
adam@0 4733
adam@0 4734 { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
adam@0 4735 $as_echo_n "checking host system type... " >&6; }
adam@12 4736 if ${ac_cv_host+:} false; then :
adam@0 4737 $as_echo_n "(cached) " >&6
adam@0 4738 else
adam@0 4739 if test "x$host_alias" = x; then
adam@0 4740 ac_cv_host=$ac_cv_build
adam@0 4741 else
adam@0 4742 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
adam@0 4743 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
adam@0 4744 fi
adam@0 4745
adam@0 4746 fi
adam@0 4747 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
adam@0 4748 $as_echo "$ac_cv_host" >&6; }
adam@0 4749 case $ac_cv_host in
adam@0 4750 *-*-*) ;;
adam@12 4751 *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
adam@0 4752 esac
adam@0 4753 host=$ac_cv_host
adam@0 4754 ac_save_IFS=$IFS; IFS='-'
adam@0 4755 set x $ac_cv_host
adam@0 4756 shift
adam@0 4757 host_cpu=$1
adam@0 4758 host_vendor=$2
adam@0 4759 shift; shift
adam@0 4760 # Remember, the first character of IFS is used to create $*,
adam@0 4761 # except with old shells:
adam@0 4762 host_os=$*
adam@0 4763 IFS=$ac_save_IFS
adam@0 4764 case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
adam@0 4765
adam@0 4766
adam@12 4767 # Backslashify metacharacters that are still active within
adam@12 4768 # double-quoted strings.
adam@12 4769 sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
adam@12 4770
adam@12 4771 # Same as above, but do not quote variable references.
adam@12 4772 double_quote_subst='s/\(["`\\]\)/\\\1/g'
adam@12 4773
adam@12 4774 # Sed substitution to delay expansion of an escaped shell variable in a
adam@12 4775 # double_quote_subst'ed string.
adam@12 4776 delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
adam@12 4777
adam@12 4778 # Sed substitution to delay expansion of an escaped single quote.
adam@12 4779 delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g'
adam@12 4780
adam@12 4781 # Sed substitution to avoid accidental globbing in evaled expressions
adam@12 4782 no_glob_subst='s/\*/\\\*/g'
adam@12 4783
adam@12 4784 ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
adam@12 4785 ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
adam@12 4786 ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
adam@12 4787
adam@12 4788 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5
adam@12 4789 $as_echo_n "checking how to print strings... " >&6; }
adam@12 4790 # Test print first, because it will be a builtin if present.
adam@12 4791 if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \
adam@12 4792 test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then
adam@12 4793 ECHO='print -r --'
adam@12 4794 elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then
adam@12 4795 ECHO='printf %s\n'
adam@12 4796 else
adam@12 4797 # Use this function as a fallback that always works.
adam@12 4798 func_fallback_echo ()
adam@12 4799 {
adam@12 4800 eval 'cat <<_LTECHO_EOF
adam@12 4801 $1
adam@12 4802 _LTECHO_EOF'
adam@12 4803 }
adam@12 4804 ECHO='func_fallback_echo'
adam@12 4805 fi
adam@12 4806
adam@12 4807 # func_echo_all arg...
adam@12 4808 # Invoke $ECHO with all args, space-separated.
adam@12 4809 func_echo_all ()
adam@12 4810 {
adam@12 4811 $ECHO ""
adam@12 4812 }
adam@12 4813
adam@12 4814 case "$ECHO" in
adam@12 4815 printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5
adam@12 4816 $as_echo "printf" >&6; } ;;
adam@12 4817 print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5
adam@12 4818 $as_echo "print -r" >&6; } ;;
adam@12 4819 *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5
adam@12 4820 $as_echo "cat" >&6; } ;;
adam@12 4821 esac
adam@12 4822
adam@12 4823
adam@12 4824
adam@12 4825
adam@12 4826
adam@12 4827
adam@12 4828
adam@12 4829
adam@12 4830
adam@12 4831
adam@12 4832
adam@12 4833
adam@12 4834
adam@12 4835
adam@0 4836 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
adam@0 4837 $as_echo_n "checking for a sed that does not truncate output... " >&6; }
adam@12 4838 if ${ac_cv_path_SED+:} false; then :
adam@0 4839 $as_echo_n "(cached) " >&6
adam@0 4840 else
adam@0 4841 ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
adam@0 4842 for ac_i in 1 2 3 4 5 6 7; do
adam@0 4843 ac_script="$ac_script$as_nl$ac_script"
adam@0 4844 done
adam@0 4845 echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed
adam@0 4846 { ac_script=; unset ac_script;}
adam@0 4847 if test -z "$SED"; then
adam@0 4848 ac_path_SED_found=false
adam@0 4849 # Loop through the user's path and test for each of PROGNAME-LIST
adam@0 4850 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 4851 for as_dir in $PATH
adam@0 4852 do
adam@0 4853 IFS=$as_save_IFS
adam@0 4854 test -z "$as_dir" && as_dir=.
adam@0 4855 for ac_prog in sed gsed; do
adam@0 4856 for ac_exec_ext in '' $ac_executable_extensions; do
adam@0 4857 ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
adam@20 4858 as_fn_executable_p "$ac_path_SED" || continue
adam@0 4859 # Check for GNU ac_path_SED and select it if it is found.
adam@0 4860 # Check for GNU $ac_path_SED
adam@0 4861 case `"$ac_path_SED" --version 2>&1` in
adam@0 4862 *GNU*)
adam@0 4863 ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;;
adam@0 4864 *)
adam@0 4865 ac_count=0
adam@0 4866 $as_echo_n 0123456789 >"conftest.in"
adam@0 4867 while :
adam@0 4868 do
adam@0 4869 cat "conftest.in" "conftest.in" >"conftest.tmp"
adam@0 4870 mv "conftest.tmp" "conftest.in"
adam@0 4871 cp "conftest.in" "conftest.nl"
adam@0 4872 $as_echo '' >> "conftest.nl"
adam@0 4873 "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break
adam@0 4874 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
adam@0 4875 as_fn_arith $ac_count + 1 && ac_count=$as_val
adam@0 4876 if test $ac_count -gt ${ac_path_SED_max-0}; then
adam@0 4877 # Best one so far, save it but keep looking for a better one
adam@0 4878 ac_cv_path_SED="$ac_path_SED"
adam@0 4879 ac_path_SED_max=$ac_count
adam@0 4880 fi
adam@0 4881 # 10*(2^10) chars as input seems more than enough
adam@0 4882 test $ac_count -gt 10 && break
adam@0 4883 done
adam@0 4884 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
adam@0 4885 esac
adam@0 4886
adam@0 4887 $ac_path_SED_found && break 3
adam@0 4888 done
adam@0 4889 done
adam@0 4890 done
adam@0 4891 IFS=$as_save_IFS
adam@0 4892 if test -z "$ac_cv_path_SED"; then
adam@0 4893 as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5
adam@0 4894 fi
adam@0 4895 else
adam@0 4896 ac_cv_path_SED=$SED
adam@0 4897 fi
adam@0 4898
adam@0 4899 fi
adam@0 4900 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5
adam@0 4901 $as_echo "$ac_cv_path_SED" >&6; }
adam@0 4902 SED="$ac_cv_path_SED"
adam@0 4903 rm -f conftest.sed
adam@0 4904
adam@0 4905 test -z "$SED" && SED=sed
adam@0 4906 Xsed="$SED -e 1s/^X//"
adam@0 4907
adam@0 4908
adam@0 4909
adam@0 4910
adam@0 4911
adam@0 4912
adam@0 4913
adam@0 4914
adam@0 4915
adam@0 4916
adam@0 4917
adam@0 4918 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5
adam@0 4919 $as_echo_n "checking for fgrep... " >&6; }
adam@12 4920 if ${ac_cv_path_FGREP+:} false; then :
adam@0 4921 $as_echo_n "(cached) " >&6
adam@0 4922 else
adam@0 4923 if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1
adam@0 4924 then ac_cv_path_FGREP="$GREP -F"
adam@0 4925 else
adam@0 4926 if test -z "$FGREP"; then
adam@0 4927 ac_path_FGREP_found=false
adam@0 4928 # Loop through the user's path and test for each of PROGNAME-LIST
adam@0 4929 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 4930 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
adam@0 4931 do
adam@0 4932 IFS=$as_save_IFS
adam@0 4933 test -z "$as_dir" && as_dir=.
adam@0 4934 for ac_prog in fgrep; do
adam@0 4935 for ac_exec_ext in '' $ac_executable_extensions; do
adam@0 4936 ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext"
adam@20 4937 as_fn_executable_p "$ac_path_FGREP" || continue
adam@0 4938 # Check for GNU ac_path_FGREP and select it if it is found.
adam@0 4939 # Check for GNU $ac_path_FGREP
adam@0 4940 case `"$ac_path_FGREP" --version 2>&1` in
adam@0 4941 *GNU*)
adam@0 4942 ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;;
adam@0 4943 *)
adam@0 4944 ac_count=0
adam@0 4945 $as_echo_n 0123456789 >"conftest.in"
adam@0 4946 while :
adam@0 4947 do
adam@0 4948 cat "conftest.in" "conftest.in" >"conftest.tmp"
adam@0 4949 mv "conftest.tmp" "conftest.in"
adam@0 4950 cp "conftest.in" "conftest.nl"
adam@0 4951 $as_echo 'FGREP' >> "conftest.nl"
adam@0 4952 "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break
adam@0 4953 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
adam@0 4954 as_fn_arith $ac_count + 1 && ac_count=$as_val
adam@0 4955 if test $ac_count -gt ${ac_path_FGREP_max-0}; then
adam@0 4956 # Best one so far, save it but keep looking for a better one
adam@0 4957 ac_cv_path_FGREP="$ac_path_FGREP"
adam@0 4958 ac_path_FGREP_max=$ac_count
adam@0 4959 fi
adam@0 4960 # 10*(2^10) chars as input seems more than enough
adam@0 4961 test $ac_count -gt 10 && break
adam@0 4962 done
adam@0 4963 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
adam@0 4964 esac
adam@0 4965
adam@0 4966 $ac_path_FGREP_found && break 3
adam@0 4967 done
adam@0 4968 done
adam@0 4969 done
adam@0 4970 IFS=$as_save_IFS
adam@0 4971 if test -z "$ac_cv_path_FGREP"; then
adam@0 4972 as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
adam@0 4973 fi
adam@0 4974 else
adam@0 4975 ac_cv_path_FGREP=$FGREP
adam@0 4976 fi
adam@0 4977
adam@0 4978 fi
adam@0 4979 fi
adam@0 4980 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5
adam@0 4981 $as_echo "$ac_cv_path_FGREP" >&6; }
adam@0 4982 FGREP="$ac_cv_path_FGREP"
adam@0 4983
adam@0 4984
adam@0 4985 test -z "$GREP" && GREP=grep
adam@0 4986
adam@0 4987
adam@0 4988
adam@0 4989
adam@0 4990
adam@0 4991
adam@0 4992
adam@0 4993
adam@0 4994
adam@0 4995
adam@0 4996
adam@0 4997
adam@0 4998
adam@0 4999
adam@0 5000
adam@0 5001
adam@0 5002
adam@0 5003
adam@0 5004
adam@0 5005 # Check whether --with-gnu-ld was given.
adam@0 5006 if test "${with_gnu_ld+set}" = set; then :
adam@0 5007 withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
adam@0 5008 else
adam@0 5009 with_gnu_ld=no
adam@0 5010 fi
adam@0 5011
adam@0 5012 ac_prog=ld
adam@0 5013 if test "$GCC" = yes; then
adam@0 5014 # Check if gcc -print-prog-name=ld gives a path.
adam@0 5015 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5
adam@0 5016 $as_echo_n "checking for ld used by $CC... " >&6; }
adam@0 5017 case $host in
adam@0 5018 *-*-mingw*)
adam@0 5019 # gcc leaves a trailing carriage return which upsets mingw
adam@0 5020 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
adam@0 5021 *)
adam@0 5022 ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
adam@0 5023 esac
adam@0 5024 case $ac_prog in
adam@0 5025 # Accept absolute paths.
adam@0 5026 [\\/]* | ?:[\\/]*)
adam@0 5027 re_direlt='/[^/][^/]*/\.\./'
adam@0 5028 # Canonicalize the pathname of ld
adam@0 5029 ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
adam@0 5030 while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
adam@0 5031 ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
adam@0 5032 done
adam@0 5033 test -z "$LD" && LD="$ac_prog"
adam@0 5034 ;;
adam@0 5035 "")
adam@0 5036 # If it fails, then pretend we aren't using GCC.
adam@0 5037 ac_prog=ld
adam@0 5038 ;;
adam@0 5039 *)
adam@0 5040 # If it is relative, then search for the first ld in PATH.
adam@0 5041 with_gnu_ld=unknown
adam@0 5042 ;;
adam@0 5043 esac
adam@0 5044 elif test "$with_gnu_ld" = yes; then
adam@0 5045 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5
adam@0 5046 $as_echo_n "checking for GNU ld... " >&6; }
adam@0 5047 else
adam@0 5048 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
adam@0 5049 $as_echo_n "checking for non-GNU ld... " >&6; }
adam@0 5050 fi
adam@12 5051 if ${lt_cv_path_LD+:} false; then :
adam@0 5052 $as_echo_n "(cached) " >&6
adam@0 5053 else
adam@0 5054 if test -z "$LD"; then
adam@0 5055 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
adam@0 5056 for ac_dir in $PATH; do
adam@0 5057 IFS="$lt_save_ifs"
adam@0 5058 test -z "$ac_dir" && ac_dir=.
adam@0 5059 if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
adam@0 5060 lt_cv_path_LD="$ac_dir/$ac_prog"
adam@0 5061 # Check to see if the program is GNU ld. I'd rather use --version,
adam@0 5062 # but apparently some variants of GNU ld only accept -v.
adam@0 5063 # Break only if it was the GNU/non-GNU ld that we prefer.
adam@0 5064 case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
adam@0 5065 *GNU* | *'with BFD'*)
adam@0 5066 test "$with_gnu_ld" != no && break
adam@0 5067 ;;
adam@0 5068 *)
adam@0 5069 test "$with_gnu_ld" != yes && break
adam@0 5070 ;;
adam@0 5071 esac
adam@0 5072 fi
adam@0 5073 done
adam@0 5074 IFS="$lt_save_ifs"
adam@0 5075 else
adam@0 5076 lt_cv_path_LD="$LD" # Let the user override the test with a path.
adam@0 5077 fi
adam@0 5078 fi
adam@0 5079
adam@0 5080 LD="$lt_cv_path_LD"
adam@0 5081 if test -n "$LD"; then
adam@0 5082 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5
adam@0 5083 $as_echo "$LD" >&6; }
adam@0 5084 else
adam@0 5085 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 5086 $as_echo "no" >&6; }
adam@0 5087 fi
adam@0 5088 test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
adam@0 5089 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
adam@0 5090 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
adam@12 5091 if ${lt_cv_prog_gnu_ld+:} false; then :
adam@0 5092 $as_echo_n "(cached) " >&6
adam@0 5093 else
adam@0 5094 # I'd rather use --version here, but apparently some GNU lds only accept -v.
adam@0 5095 case `$LD -v 2>&1 </dev/null` in
adam@0 5096 *GNU* | *'with BFD'*)
adam@0 5097 lt_cv_prog_gnu_ld=yes
adam@0 5098 ;;
adam@0 5099 *)
adam@0 5100 lt_cv_prog_gnu_ld=no
adam@0 5101 ;;
adam@0 5102 esac
adam@0 5103 fi
adam@0 5104 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_gnu_ld" >&5
adam@0 5105 $as_echo "$lt_cv_prog_gnu_ld" >&6; }
adam@0 5106 with_gnu_ld=$lt_cv_prog_gnu_ld
adam@0 5107
adam@0 5108
adam@0 5109
adam@0 5110
adam@0 5111
adam@0 5112
adam@0 5113
adam@0 5114
adam@0 5115
adam@0 5116 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5
adam@0 5117 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; }
adam@12 5118 if ${lt_cv_path_NM+:} false; then :
adam@0 5119 $as_echo_n "(cached) " >&6
adam@0 5120 else
adam@0 5121 if test -n "$NM"; then
adam@0 5122 # Let the user override the test.
adam@0 5123 lt_cv_path_NM="$NM"
adam@0 5124 else
adam@0 5125 lt_nm_to_check="${ac_tool_prefix}nm"
adam@0 5126 if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
adam@0 5127 lt_nm_to_check="$lt_nm_to_check nm"
adam@0 5128 fi
adam@0 5129 for lt_tmp_nm in $lt_nm_to_check; do
adam@0 5130 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
adam@0 5131 for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
adam@0 5132 IFS="$lt_save_ifs"
adam@0 5133 test -z "$ac_dir" && ac_dir=.
adam@0 5134 tmp_nm="$ac_dir/$lt_tmp_nm"
adam@0 5135 if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
adam@0 5136 # Check to see if the nm accepts a BSD-compat flag.
adam@0 5137 # Adding the `sed 1q' prevents false positives on HP-UX, which says:
adam@0 5138 # nm: unknown option "B" ignored
adam@0 5139 # Tru64's nm complains that /dev/null is an invalid object file
adam@0 5140 case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
adam@0 5141 */dev/null* | *'Invalid file or object type'*)
adam@0 5142 lt_cv_path_NM="$tmp_nm -B"
adam@0 5143 break
adam@0 5144 ;;
adam@0 5145 *)
adam@0 5146 case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
adam@0 5147 */dev/null*)
adam@0 5148 lt_cv_path_NM="$tmp_nm -p"
adam@0 5149 break
adam@0 5150 ;;
adam@0 5151 *)
adam@0 5152 lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
adam@0 5153 continue # so that we can try to find one that supports BSD flags
adam@0 5154 ;;
adam@0 5155 esac
adam@0 5156 ;;
adam@0 5157 esac
adam@0 5158 fi
adam@0 5159 done
adam@0 5160 IFS="$lt_save_ifs"
adam@0 5161 done
adam@0 5162 : ${lt_cv_path_NM=no}
adam@0 5163 fi
adam@0 5164 fi
adam@0 5165 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5
adam@0 5166 $as_echo "$lt_cv_path_NM" >&6; }
adam@0 5167 if test "$lt_cv_path_NM" != "no"; then
adam@0 5168 NM="$lt_cv_path_NM"
adam@0 5169 else
adam@0 5170 # Didn't find any BSD compatible name lister, look for dumpbin.
adam@12 5171 if test -n "$DUMPBIN"; then :
adam@12 5172 # Let the user override the test.
adam@12 5173 else
adam@12 5174 if test -n "$ac_tool_prefix"; then
adam@12 5175 for ac_prog in dumpbin "link -dump"
adam@0 5176 do
adam@0 5177 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
adam@0 5178 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
adam@0 5179 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 5180 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 5181 if ${ac_cv_prog_DUMPBIN+:} false; then :
adam@0 5182 $as_echo_n "(cached) " >&6
adam@0 5183 else
adam@0 5184 if test -n "$DUMPBIN"; then
adam@0 5185 ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test.
adam@0 5186 else
adam@0 5187 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 5188 for as_dir in $PATH
adam@0 5189 do
adam@0 5190 IFS=$as_save_IFS
adam@0 5191 test -z "$as_dir" && as_dir=.
adam@0 5192 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 5193 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 5194 ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog"
adam@0 5195 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 5196 break 2
adam@0 5197 fi
adam@0 5198 done
adam@0 5199 done
adam@0 5200 IFS=$as_save_IFS
adam@0 5201
adam@0 5202 fi
adam@0 5203 fi
adam@0 5204 DUMPBIN=$ac_cv_prog_DUMPBIN
adam@0 5205 if test -n "$DUMPBIN"; then
adam@0 5206 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5
adam@0 5207 $as_echo "$DUMPBIN" >&6; }
adam@0 5208 else
adam@0 5209 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 5210 $as_echo "no" >&6; }
adam@0 5211 fi
adam@0 5212
adam@0 5213
adam@0 5214 test -n "$DUMPBIN" && break
adam@0 5215 done
adam@0 5216 fi
adam@0 5217 if test -z "$DUMPBIN"; then
adam@0 5218 ac_ct_DUMPBIN=$DUMPBIN
adam@12 5219 for ac_prog in dumpbin "link -dump"
adam@0 5220 do
adam@0 5221 # Extract the first word of "$ac_prog", so it can be a program name with args.
adam@0 5222 set dummy $ac_prog; ac_word=$2
adam@0 5223 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 5224 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 5225 if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then :
adam@0 5226 $as_echo_n "(cached) " >&6
adam@0 5227 else
adam@0 5228 if test -n "$ac_ct_DUMPBIN"; then
adam@0 5229 ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test.
adam@0 5230 else
adam@0 5231 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 5232 for as_dir in $PATH
adam@0 5233 do
adam@0 5234 IFS=$as_save_IFS
adam@0 5235 test -z "$as_dir" && as_dir=.
adam@0 5236 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 5237 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 5238 ac_cv_prog_ac_ct_DUMPBIN="$ac_prog"
adam@0 5239 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 5240 break 2
adam@0 5241 fi
adam@0 5242 done
adam@0 5243 done
adam@0 5244 IFS=$as_save_IFS
adam@0 5245
adam@0 5246 fi
adam@0 5247 fi
adam@0 5248 ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN
adam@0 5249 if test -n "$ac_ct_DUMPBIN"; then
adam@0 5250 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5
adam@0 5251 $as_echo "$ac_ct_DUMPBIN" >&6; }
adam@0 5252 else
adam@0 5253 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 5254 $as_echo "no" >&6; }
adam@0 5255 fi
adam@0 5256
adam@0 5257
adam@0 5258 test -n "$ac_ct_DUMPBIN" && break
adam@0 5259 done
adam@0 5260
adam@0 5261 if test "x$ac_ct_DUMPBIN" = x; then
adam@0 5262 DUMPBIN=":"
adam@0 5263 else
adam@0 5264 case $cross_compiling:$ac_tool_warned in
adam@0 5265 yes:)
adam@0 5266 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 5267 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 5268 ac_tool_warned=yes ;;
adam@0 5269 esac
adam@0 5270 DUMPBIN=$ac_ct_DUMPBIN
adam@0 5271 fi
adam@0 5272 fi
adam@0 5273
adam@12 5274 case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
adam@12 5275 *COFF*)
adam@12 5276 DUMPBIN="$DUMPBIN -symbols"
adam@12 5277 ;;
adam@12 5278 *)
adam@12 5279 DUMPBIN=:
adam@12 5280 ;;
adam@12 5281 esac
adam@12 5282 fi
adam@0 5283
adam@0 5284 if test "$DUMPBIN" != ":"; then
adam@0 5285 NM="$DUMPBIN"
adam@0 5286 fi
adam@0 5287 fi
adam@0 5288 test -z "$NM" && NM=nm
adam@0 5289
adam@0 5290
adam@0 5291
adam@0 5292
adam@0 5293
adam@0 5294
adam@0 5295 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5
adam@0 5296 $as_echo_n "checking the name lister ($NM) interface... " >&6; }
adam@12 5297 if ${lt_cv_nm_interface+:} false; then :
adam@0 5298 $as_echo_n "(cached) " >&6
adam@0 5299 else
adam@0 5300 lt_cv_nm_interface="BSD nm"
adam@0 5301 echo "int some_variable = 0;" > conftest.$ac_ext
adam@12 5302 (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5)
adam@0 5303 (eval "$ac_compile" 2>conftest.err)
adam@0 5304 cat conftest.err >&5
adam@12 5305 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
adam@0 5306 (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
adam@0 5307 cat conftest.err >&5
adam@12 5308 (eval echo "\"\$as_me:$LINENO: output\"" >&5)
adam@0 5309 cat conftest.out >&5
adam@0 5310 if $GREP 'External.*some_variable' conftest.out > /dev/null; then
adam@0 5311 lt_cv_nm_interface="MS dumpbin"
adam@0 5312 fi
adam@0 5313 rm -f conftest*
adam@0 5314 fi
adam@0 5315 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5
adam@0 5316 $as_echo "$lt_cv_nm_interface" >&6; }
adam@0 5317
adam@0 5318 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5
adam@0 5319 $as_echo_n "checking whether ln -s works... " >&6; }
adam@0 5320 LN_S=$as_ln_s
adam@0 5321 if test "$LN_S" = "ln -s"; then
adam@0 5322 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
adam@0 5323 $as_echo "yes" >&6; }
adam@0 5324 else
adam@0 5325 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5
adam@0 5326 $as_echo "no, using $LN_S" >&6; }
adam@0 5327 fi
adam@0 5328
adam@0 5329 # find the maximum length of command line arguments
adam@0 5330 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5
adam@0 5331 $as_echo_n "checking the maximum length of command line arguments... " >&6; }
adam@12 5332 if ${lt_cv_sys_max_cmd_len+:} false; then :
adam@0 5333 $as_echo_n "(cached) " >&6
adam@0 5334 else
adam@0 5335 i=0
adam@0 5336 teststring="ABCD"
adam@0 5337
adam@0 5338 case $build_os in
adam@0 5339 msdosdjgpp*)
adam@0 5340 # On DJGPP, this test can blow up pretty badly due to problems in libc
adam@0 5341 # (any single argument exceeding 2000 bytes causes a buffer overrun
adam@0 5342 # during glob expansion). Even if it were fixed, the result of this
adam@0 5343 # check would be larger than it should be.
adam@0 5344 lt_cv_sys_max_cmd_len=12288; # 12K is about right
adam@0 5345 ;;
adam@0 5346
adam@0 5347 gnu*)
adam@0 5348 # Under GNU Hurd, this test is not required because there is
adam@0 5349 # no limit to the length of command line arguments.
adam@0 5350 # Libtool will interpret -1 as no limit whatsoever
adam@0 5351 lt_cv_sys_max_cmd_len=-1;
adam@0 5352 ;;
adam@0 5353
adam@0 5354 cygwin* | mingw* | cegcc*)
adam@0 5355 # On Win9x/ME, this test blows up -- it succeeds, but takes
adam@0 5356 # about 5 minutes as the teststring grows exponentially.
adam@0 5357 # Worse, since 9x/ME are not pre-emptively multitasking,
adam@0 5358 # you end up with a "frozen" computer, even though with patience
adam@0 5359 # the test eventually succeeds (with a max line length of 256k).
adam@0 5360 # Instead, let's just punt: use the minimum linelength reported by
adam@0 5361 # all of the supported platforms: 8192 (on NT/2K/XP).
adam@0 5362 lt_cv_sys_max_cmd_len=8192;
adam@0 5363 ;;
adam@0 5364
adam@12 5365 mint*)
adam@12 5366 # On MiNT this can take a long time and run out of memory.
adam@12 5367 lt_cv_sys_max_cmd_len=8192;
adam@12 5368 ;;
adam@12 5369
adam@0 5370 amigaos*)
adam@0 5371 # On AmigaOS with pdksh, this test takes hours, literally.
adam@0 5372 # So we just punt and use a minimum line length of 8192.
adam@0 5373 lt_cv_sys_max_cmd_len=8192;
adam@0 5374 ;;
adam@0 5375
adam@0 5376 netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
adam@0 5377 # This has been around since 386BSD, at least. Likely further.
adam@0 5378 if test -x /sbin/sysctl; then
adam@0 5379 lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
adam@0 5380 elif test -x /usr/sbin/sysctl; then
adam@0 5381 lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
adam@0 5382 else
adam@0 5383 lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
adam@0 5384 fi
adam@0 5385 # And add a safety zone
adam@0 5386 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
adam@0 5387 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
adam@0 5388 ;;
adam@0 5389
adam@0 5390 interix*)
adam@0 5391 # We know the value 262144 and hardcode it with a safety zone (like BSD)
adam@0 5392 lt_cv_sys_max_cmd_len=196608
adam@0 5393 ;;
adam@0 5394
adam@20 5395 os2*)
adam@20 5396 # The test takes a long time on OS/2.
adam@20 5397 lt_cv_sys_max_cmd_len=8192
adam@20 5398 ;;
adam@20 5399
adam@0 5400 osf*)
adam@0 5401 # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
adam@0 5402 # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
adam@0 5403 # nice to cause kernel panics so lets avoid the loop below.
adam@0 5404 # First set a reasonable default.
adam@0 5405 lt_cv_sys_max_cmd_len=16384
adam@0 5406 #
adam@0 5407 if test -x /sbin/sysconfig; then
adam@0 5408 case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
adam@0 5409 *1*) lt_cv_sys_max_cmd_len=-1 ;;
adam@0 5410 esac
adam@0 5411 fi
adam@0 5412 ;;
adam@0 5413 sco3.2v5*)
adam@0 5414 lt_cv_sys_max_cmd_len=102400
adam@0 5415 ;;
adam@0 5416 sysv5* | sco5v6* | sysv4.2uw2*)
adam@0 5417 kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
adam@0 5418 if test -n "$kargmax"; then
adam@0 5419 lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'`
adam@0 5420 else
adam@0 5421 lt_cv_sys_max_cmd_len=32768
adam@0 5422 fi
adam@0 5423 ;;
adam@0 5424 *)
adam@0 5425 lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
adam@0 5426 if test -n "$lt_cv_sys_max_cmd_len"; then
adam@0 5427 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
adam@0 5428 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
adam@0 5429 else
adam@0 5430 # Make teststring a little bigger before we do anything with it.
adam@0 5431 # a 1K string should be a reasonable start.
adam@0 5432 for i in 1 2 3 4 5 6 7 8 ; do
adam@0 5433 teststring=$teststring$teststring
adam@0 5434 done
adam@0 5435 SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
adam@0 5436 # If test is not a shell built-in, we'll probably end up computing a
adam@0 5437 # maximum length that is only half of the actual maximum length, but
adam@0 5438 # we can't tell.
adam@20 5439 while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \
adam@12 5440 = "X$teststring$teststring"; } >/dev/null 2>&1 &&
adam@0 5441 test $i != 17 # 1/2 MB should be enough
adam@0 5442 do
adam@0 5443 i=`expr $i + 1`
adam@0 5444 teststring=$teststring$teststring
adam@0 5445 done
adam@0 5446 # Only check the string length outside the loop.
adam@0 5447 lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
adam@0 5448 teststring=
adam@0 5449 # Add a significant safety factor because C++ compilers can tack on
adam@0 5450 # massive amounts of additional arguments before passing them to the
adam@0 5451 # linker. It appears as though 1/2 is a usable value.
adam@0 5452 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
adam@0 5453 fi
adam@0 5454 ;;
adam@0 5455 esac
adam@0 5456
adam@0 5457 fi
adam@0 5458
adam@0 5459 if test -n $lt_cv_sys_max_cmd_len ; then
adam@0 5460 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5
adam@0 5461 $as_echo "$lt_cv_sys_max_cmd_len" >&6; }
adam@0 5462 else
adam@0 5463 { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5
adam@0 5464 $as_echo "none" >&6; }
adam@0 5465 fi
adam@0 5466 max_cmd_len=$lt_cv_sys_max_cmd_len
adam@0 5467
adam@0 5468
adam@0 5469
adam@0 5470
adam@0 5471
adam@0 5472
adam@0 5473 : ${CP="cp -f"}
adam@0 5474 : ${MV="mv -f"}
adam@0 5475 : ${RM="rm -f"}
adam@0 5476
adam@0 5477 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5
adam@0 5478 $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; }
adam@0 5479 # Try some XSI features
adam@0 5480 xsi_shell=no
adam@0 5481 ( _lt_dummy="a/b/c"
adam@12 5482 test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \
adam@12 5483 = c,a/b,b/c, \
adam@0 5484 && eval 'test $(( 1 + 1 )) -eq 2 \
adam@0 5485 && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \
adam@0 5486 && xsi_shell=yes
adam@0 5487 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5
adam@0 5488 $as_echo "$xsi_shell" >&6; }
adam@0 5489
adam@0 5490
adam@0 5491 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5
adam@0 5492 $as_echo_n "checking whether the shell understands \"+=\"... " >&6; }
adam@0 5493 lt_shell_append=no
adam@0 5494 ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \
adam@0 5495 >/dev/null 2>&1 \
adam@0 5496 && lt_shell_append=yes
adam@0 5497 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5
adam@0 5498 $as_echo "$lt_shell_append" >&6; }
adam@0 5499
adam@0 5500
adam@0 5501 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
adam@0 5502 lt_unset=unset
adam@0 5503 else
adam@0 5504 lt_unset=false
adam@0 5505 fi
adam@0 5506
adam@0 5507
adam@0 5508
adam@0 5509
adam@0 5510
adam@0 5511 # test EBCDIC or ASCII
adam@0 5512 case `echo X|tr X '\101'` in
adam@0 5513 A) # ASCII based system
adam@0 5514 # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
adam@0 5515 lt_SP2NL='tr \040 \012'
adam@0 5516 lt_NL2SP='tr \015\012 \040\040'
adam@0 5517 ;;
adam@0 5518 *) # EBCDIC based system
adam@0 5519 lt_SP2NL='tr \100 \n'
adam@0 5520 lt_NL2SP='tr \r\n \100\100'
adam@0 5521 ;;
adam@0 5522 esac
adam@0 5523
adam@0 5524
adam@0 5525
adam@0 5526
adam@0 5527
adam@0 5528
adam@0 5529
adam@0 5530
adam@0 5531
adam@12 5532 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5
adam@12 5533 $as_echo_n "checking how to convert $build file names to $host format... " >&6; }
adam@12 5534 if ${lt_cv_to_host_file_cmd+:} false; then :
adam@12 5535 $as_echo_n "(cached) " >&6
adam@12 5536 else
adam@12 5537 case $host in
adam@12 5538 *-*-mingw* )
adam@12 5539 case $build in
adam@12 5540 *-*-mingw* ) # actually msys
adam@12 5541 lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32
adam@12 5542 ;;
adam@12 5543 *-*-cygwin* )
adam@12 5544 lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32
adam@12 5545 ;;
adam@12 5546 * ) # otherwise, assume *nix
adam@12 5547 lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32
adam@12 5548 ;;
adam@12 5549 esac
adam@12 5550 ;;
adam@12 5551 *-*-cygwin* )
adam@12 5552 case $build in
adam@12 5553 *-*-mingw* ) # actually msys
adam@12 5554 lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin
adam@12 5555 ;;
adam@12 5556 *-*-cygwin* )
adam@12 5557 lt_cv_to_host_file_cmd=func_convert_file_noop
adam@12 5558 ;;
adam@12 5559 * ) # otherwise, assume *nix
adam@12 5560 lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin
adam@12 5561 ;;
adam@12 5562 esac
adam@12 5563 ;;
adam@12 5564 * ) # unhandled hosts (and "normal" native builds)
adam@12 5565 lt_cv_to_host_file_cmd=func_convert_file_noop
adam@12 5566 ;;
adam@12 5567 esac
adam@12 5568
adam@12 5569 fi
adam@12 5570
adam@12 5571 to_host_file_cmd=$lt_cv_to_host_file_cmd
adam@12 5572 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5
adam@12 5573 $as_echo "$lt_cv_to_host_file_cmd" >&6; }
adam@12 5574
adam@12 5575
adam@12 5576
adam@12 5577
adam@12 5578
adam@12 5579 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5
adam@12 5580 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; }
adam@12 5581 if ${lt_cv_to_tool_file_cmd+:} false; then :
adam@12 5582 $as_echo_n "(cached) " >&6
adam@12 5583 else
adam@12 5584 #assume ordinary cross tools, or native build.
adam@12 5585 lt_cv_to_tool_file_cmd=func_convert_file_noop
adam@12 5586 case $host in
adam@12 5587 *-*-mingw* )
adam@12 5588 case $build in
adam@12 5589 *-*-mingw* ) # actually msys
adam@12 5590 lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32
adam@12 5591 ;;
adam@12 5592 esac
adam@12 5593 ;;
adam@12 5594 esac
adam@12 5595
adam@12 5596 fi
adam@12 5597
adam@12 5598 to_tool_file_cmd=$lt_cv_to_tool_file_cmd
adam@12 5599 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5
adam@12 5600 $as_echo "$lt_cv_to_tool_file_cmd" >&6; }
adam@12 5601
adam@12 5602
adam@12 5603
adam@12 5604
adam@12 5605
adam@0 5606 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5
adam@0 5607 $as_echo_n "checking for $LD option to reload object files... " >&6; }
adam@12 5608 if ${lt_cv_ld_reload_flag+:} false; then :
adam@0 5609 $as_echo_n "(cached) " >&6
adam@0 5610 else
adam@0 5611 lt_cv_ld_reload_flag='-r'
adam@0 5612 fi
adam@0 5613 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5
adam@0 5614 $as_echo "$lt_cv_ld_reload_flag" >&6; }
adam@0 5615 reload_flag=$lt_cv_ld_reload_flag
adam@0 5616 case $reload_flag in
adam@0 5617 "" | " "*) ;;
adam@0 5618 *) reload_flag=" $reload_flag" ;;
adam@0 5619 esac
adam@0 5620 reload_cmds='$LD$reload_flag -o $output$reload_objs'
adam@0 5621 case $host_os in
adam@12 5622 cygwin* | mingw* | pw32* | cegcc*)
adam@12 5623 if test "$GCC" != yes; then
adam@12 5624 reload_cmds=false
adam@12 5625 fi
adam@12 5626 ;;
adam@0 5627 darwin*)
adam@0 5628 if test "$GCC" = yes; then
adam@0 5629 reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
adam@0 5630 else
adam@0 5631 reload_cmds='$LD$reload_flag -o $output$reload_objs'
adam@0 5632 fi
adam@0 5633 ;;
adam@0 5634 esac
adam@0 5635
adam@0 5636
adam@0 5637
adam@0 5638
adam@0 5639
adam@0 5640
adam@0 5641
adam@0 5642
adam@0 5643
adam@0 5644 if test -n "$ac_tool_prefix"; then
adam@0 5645 # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args.
adam@0 5646 set dummy ${ac_tool_prefix}objdump; ac_word=$2
adam@0 5647 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 5648 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 5649 if ${ac_cv_prog_OBJDUMP+:} false; then :
adam@0 5650 $as_echo_n "(cached) " >&6
adam@0 5651 else
adam@0 5652 if test -n "$OBJDUMP"; then
adam@0 5653 ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test.
adam@0 5654 else
adam@0 5655 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 5656 for as_dir in $PATH
adam@0 5657 do
adam@0 5658 IFS=$as_save_IFS
adam@0 5659 test -z "$as_dir" && as_dir=.
adam@0 5660 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 5661 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 5662 ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump"
adam@0 5663 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 5664 break 2
adam@0 5665 fi
adam@0 5666 done
adam@0 5667 done
adam@0 5668 IFS=$as_save_IFS
adam@0 5669
adam@0 5670 fi
adam@0 5671 fi
adam@0 5672 OBJDUMP=$ac_cv_prog_OBJDUMP
adam@0 5673 if test -n "$OBJDUMP"; then
adam@0 5674 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5
adam@0 5675 $as_echo "$OBJDUMP" >&6; }
adam@0 5676 else
adam@0 5677 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 5678 $as_echo "no" >&6; }
adam@0 5679 fi
adam@0 5680
adam@0 5681
adam@0 5682 fi
adam@0 5683 if test -z "$ac_cv_prog_OBJDUMP"; then
adam@0 5684 ac_ct_OBJDUMP=$OBJDUMP
adam@0 5685 # Extract the first word of "objdump", so it can be a program name with args.
adam@0 5686 set dummy objdump; ac_word=$2
adam@0 5687 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 5688 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 5689 if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :
adam@0 5690 $as_echo_n "(cached) " >&6
adam@0 5691 else
adam@0 5692 if test -n "$ac_ct_OBJDUMP"; then
adam@0 5693 ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test.
adam@0 5694 else
adam@0 5695 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 5696 for as_dir in $PATH
adam@0 5697 do
adam@0 5698 IFS=$as_save_IFS
adam@0 5699 test -z "$as_dir" && as_dir=.
adam@0 5700 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 5701 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 5702 ac_cv_prog_ac_ct_OBJDUMP="objdump"
adam@0 5703 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 5704 break 2
adam@0 5705 fi
adam@0 5706 done
adam@0 5707 done
adam@0 5708 IFS=$as_save_IFS
adam@0 5709
adam@0 5710 fi
adam@0 5711 fi
adam@0 5712 ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP
adam@0 5713 if test -n "$ac_ct_OBJDUMP"; then
adam@0 5714 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5
adam@0 5715 $as_echo "$ac_ct_OBJDUMP" >&6; }
adam@0 5716 else
adam@0 5717 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 5718 $as_echo "no" >&6; }
adam@0 5719 fi
adam@0 5720
adam@0 5721 if test "x$ac_ct_OBJDUMP" = x; then
adam@0 5722 OBJDUMP="false"
adam@0 5723 else
adam@0 5724 case $cross_compiling:$ac_tool_warned in
adam@0 5725 yes:)
adam@0 5726 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 5727 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 5728 ac_tool_warned=yes ;;
adam@0 5729 esac
adam@0 5730 OBJDUMP=$ac_ct_OBJDUMP
adam@0 5731 fi
adam@0 5732 else
adam@0 5733 OBJDUMP="$ac_cv_prog_OBJDUMP"
adam@0 5734 fi
adam@0 5735
adam@0 5736 test -z "$OBJDUMP" && OBJDUMP=objdump
adam@0 5737
adam@0 5738
adam@0 5739
adam@0 5740
adam@0 5741
adam@0 5742
adam@0 5743
adam@0 5744
adam@0 5745
adam@0 5746 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5
adam@0 5747 $as_echo_n "checking how to recognize dependent libraries... " >&6; }
adam@12 5748 if ${lt_cv_deplibs_check_method+:} false; then :
adam@0 5749 $as_echo_n "(cached) " >&6
adam@0 5750 else
adam@0 5751 lt_cv_file_magic_cmd='$MAGIC_CMD'
adam@0 5752 lt_cv_file_magic_test_file=
adam@0 5753 lt_cv_deplibs_check_method='unknown'
adam@0 5754 # Need to set the preceding variable on all platforms that support
adam@0 5755 # interlibrary dependencies.
adam@0 5756 # 'none' -- dependencies not supported.
adam@0 5757 # `unknown' -- same as none, but documents that we really don't know.
adam@0 5758 # 'pass_all' -- all dependencies passed with no checks.
adam@0 5759 # 'test_compile' -- check by making test program.
adam@0 5760 # 'file_magic [[regex]]' -- check by looking for files in library path
adam@0 5761 # which responds to the $file_magic_cmd with a given extended regex.
adam@0 5762 # If you have `file' or equivalent on your system and you're not sure
adam@0 5763 # whether `pass_all' will *always* work, you probably want this one.
adam@0 5764
adam@0 5765 case $host_os in
adam@0 5766 aix[4-9]*)
adam@0 5767 lt_cv_deplibs_check_method=pass_all
adam@0 5768 ;;
adam@0 5769
adam@0 5770 beos*)
adam@0 5771 lt_cv_deplibs_check_method=pass_all
adam@0 5772 ;;
adam@0 5773
adam@0 5774 bsdi[45]*)
adam@0 5775 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
adam@0 5776 lt_cv_file_magic_cmd='/usr/bin/file -L'
adam@0 5777 lt_cv_file_magic_test_file=/shlib/libc.so
adam@0 5778 ;;
adam@0 5779
adam@0 5780 cygwin*)
adam@0 5781 # func_win32_libid is a shell function defined in ltmain.sh
adam@0 5782 lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
adam@0 5783 lt_cv_file_magic_cmd='func_win32_libid'
adam@0 5784 ;;
adam@0 5785
adam@0 5786 mingw* | pw32*)
adam@0 5787 # Base MSYS/MinGW do not provide the 'file' command needed by
adam@0 5788 # func_win32_libid shell function, so use a weaker test based on 'objdump',
adam@0 5789 # unless we find 'file', for example because we are cross-compiling.
adam@12 5790 # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin.
adam@12 5791 if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then
adam@0 5792 lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
adam@0 5793 lt_cv_file_magic_cmd='func_win32_libid'
adam@0 5794 else
adam@12 5795 # Keep this pattern in sync with the one in func_win32_libid.
adam@12 5796 lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'
adam@0 5797 lt_cv_file_magic_cmd='$OBJDUMP -f'
adam@0 5798 fi
adam@0 5799 ;;
adam@0 5800
adam@12 5801 cegcc*)
adam@0 5802 # use the weaker test based on 'objdump'. See mingw*.
adam@0 5803 lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'
adam@0 5804 lt_cv_file_magic_cmd='$OBJDUMP -f'
adam@0 5805 ;;
adam@0 5806
adam@0 5807 darwin* | rhapsody*)
adam@0 5808 lt_cv_deplibs_check_method=pass_all
adam@0 5809 ;;
adam@0 5810
adam@0 5811 freebsd* | dragonfly*)
adam@0 5812 if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
adam@0 5813 case $host_cpu in
adam@0 5814 i*86 )
adam@0 5815 # Not sure whether the presence of OpenBSD here was a mistake.
adam@0 5816 # Let's accept both of them until this is cleared up.
adam@0 5817 lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library'
adam@0 5818 lt_cv_file_magic_cmd=/usr/bin/file
adam@0 5819 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
adam@0 5820 ;;
adam@0 5821 esac
adam@0 5822 else
adam@0 5823 lt_cv_deplibs_check_method=pass_all
adam@0 5824 fi
adam@0 5825 ;;
adam@0 5826
adam@0 5827 gnu*)
adam@0 5828 lt_cv_deplibs_check_method=pass_all
adam@0 5829 ;;
adam@0 5830
adam@12 5831 haiku*)
adam@12 5832 lt_cv_deplibs_check_method=pass_all
adam@12 5833 ;;
adam@12 5834
adam@0 5835 hpux10.20* | hpux11*)
adam@0 5836 lt_cv_file_magic_cmd=/usr/bin/file
adam@0 5837 case $host_cpu in
adam@0 5838 ia64*)
adam@0 5839 lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'
adam@0 5840 lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
adam@0 5841 ;;
adam@0 5842 hppa*64*)
adam@12 5843 lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'
adam@0 5844 lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
adam@0 5845 ;;
adam@0 5846 *)
adam@12 5847 lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library'
adam@0 5848 lt_cv_file_magic_test_file=/usr/lib/libc.sl
adam@0 5849 ;;
adam@0 5850 esac
adam@0 5851 ;;
adam@0 5852
adam@0 5853 interix[3-9]*)
adam@0 5854 # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
adam@0 5855 lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$'
adam@0 5856 ;;
adam@0 5857
adam@0 5858 irix5* | irix6* | nonstopux*)
adam@0 5859 case $LD in
adam@0 5860 *-32|*"-32 ") libmagic=32-bit;;
adam@0 5861 *-n32|*"-n32 ") libmagic=N32;;
adam@0 5862 *-64|*"-64 ") libmagic=64-bit;;
adam@0 5863 *) libmagic=never-match;;
adam@0 5864 esac
adam@0 5865 lt_cv_deplibs_check_method=pass_all
adam@0 5866 ;;
adam@0 5867
adam@20 5868 # This must be glibc/ELF.
adam@0 5869 linux* | k*bsd*-gnu | kopensolaris*-gnu)
adam@0 5870 lt_cv_deplibs_check_method=pass_all
adam@0 5871 ;;
adam@0 5872
adam@0 5873 netbsd* | netbsdelf*-gnu)
adam@0 5874 if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
adam@0 5875 lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
adam@0 5876 else
adam@0 5877 lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$'
adam@0 5878 fi
adam@0 5879 ;;
adam@0 5880
adam@0 5881 newos6*)
adam@0 5882 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)'
adam@0 5883 lt_cv_file_magic_cmd=/usr/bin/file
adam@0 5884 lt_cv_file_magic_test_file=/usr/lib/libnls.so
adam@0 5885 ;;
adam@0 5886
adam@0 5887 *nto* | *qnx*)
adam@0 5888 lt_cv_deplibs_check_method=pass_all
adam@0 5889 ;;
adam@0 5890
adam@0 5891 openbsd*)
adam@0 5892 if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
adam@0 5893 lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$'
adam@0 5894 else
adam@0 5895 lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
adam@0 5896 fi
adam@0 5897 ;;
adam@0 5898
adam@0 5899 osf3* | osf4* | osf5*)
adam@0 5900 lt_cv_deplibs_check_method=pass_all
adam@0 5901 ;;
adam@0 5902
adam@0 5903 rdos*)
adam@0 5904 lt_cv_deplibs_check_method=pass_all
adam@0 5905 ;;
adam@0 5906
adam@0 5907 solaris*)
adam@0 5908 lt_cv_deplibs_check_method=pass_all
adam@0 5909 ;;
adam@0 5910
adam@0 5911 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
adam@0 5912 lt_cv_deplibs_check_method=pass_all
adam@0 5913 ;;
adam@0 5914
adam@0 5915 sysv4 | sysv4.3*)
adam@0 5916 case $host_vendor in
adam@0 5917 motorola)
adam@0 5918 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]'
adam@0 5919 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
adam@0 5920 ;;
adam@0 5921 ncr)
adam@0 5922 lt_cv_deplibs_check_method=pass_all
adam@0 5923 ;;
adam@0 5924 sequent)
adam@0 5925 lt_cv_file_magic_cmd='/bin/file'
adam@0 5926 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )'
adam@0 5927 ;;
adam@0 5928 sni)
adam@0 5929 lt_cv_file_magic_cmd='/bin/file'
adam@0 5930 lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib"
adam@0 5931 lt_cv_file_magic_test_file=/lib/libc.so
adam@0 5932 ;;
adam@0 5933 siemens)
adam@0 5934 lt_cv_deplibs_check_method=pass_all
adam@0 5935 ;;
adam@0 5936 pc)
adam@0 5937 lt_cv_deplibs_check_method=pass_all
adam@0 5938 ;;
adam@0 5939 esac
adam@0 5940 ;;
adam@0 5941
adam@0 5942 tpf*)
adam@0 5943 lt_cv_deplibs_check_method=pass_all
adam@0 5944 ;;
adam@0 5945 esac
adam@0 5946
adam@0 5947 fi
adam@0 5948 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5
adam@0 5949 $as_echo "$lt_cv_deplibs_check_method" >&6; }
adam@12 5950
adam@12 5951 file_magic_glob=
adam@12 5952 want_nocaseglob=no
adam@12 5953 if test "$build" = "$host"; then
adam@12 5954 case $host_os in
adam@12 5955 mingw* | pw32*)
adam@12 5956 if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then
adam@12 5957 want_nocaseglob=yes
adam@12 5958 else
adam@12 5959 file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"`
adam@12 5960 fi
adam@12 5961 ;;
adam@12 5962 esac
adam@12 5963 fi
adam@12 5964
adam@0 5965 file_magic_cmd=$lt_cv_file_magic_cmd
adam@0 5966 deplibs_check_method=$lt_cv_deplibs_check_method
adam@0 5967 test -z "$deplibs_check_method" && deplibs_check_method=unknown
adam@0 5968
adam@0 5969
adam@0 5970
adam@0 5971
adam@0 5972
adam@0 5973
adam@0 5974
adam@0 5975
adam@0 5976
adam@0 5977
adam@0 5978
adam@0 5979
adam@12 5980
adam@12 5981
adam@12 5982
adam@12 5983
adam@12 5984
adam@12 5985
adam@12 5986
adam@12 5987
adam@12 5988
adam@12 5989
adam@0 5990 if test -n "$ac_tool_prefix"; then
adam@12 5991 # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args.
adam@12 5992 set dummy ${ac_tool_prefix}dlltool; ac_word=$2
adam@0 5993 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 5994 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 5995 if ${ac_cv_prog_DLLTOOL+:} false; then :
adam@12 5996 $as_echo_n "(cached) " >&6
adam@12 5997 else
adam@12 5998 if test -n "$DLLTOOL"; then
adam@12 5999 ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test.
adam@0 6000 else
adam@0 6001 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 6002 for as_dir in $PATH
adam@0 6003 do
adam@0 6004 IFS=$as_save_IFS
adam@0 6005 test -z "$as_dir" && as_dir=.
adam@0 6006 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 6007 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@12 6008 ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool"
adam@12 6009 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@12 6010 break 2
adam@12 6011 fi
adam@12 6012 done
adam@12 6013 done
adam@12 6014 IFS=$as_save_IFS
adam@12 6015
adam@12 6016 fi
adam@12 6017 fi
adam@12 6018 DLLTOOL=$ac_cv_prog_DLLTOOL
adam@12 6019 if test -n "$DLLTOOL"; then
adam@12 6020 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5
adam@12 6021 $as_echo "$DLLTOOL" >&6; }
adam@12 6022 else
adam@12 6023 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@12 6024 $as_echo "no" >&6; }
adam@12 6025 fi
adam@12 6026
adam@12 6027
adam@12 6028 fi
adam@12 6029 if test -z "$ac_cv_prog_DLLTOOL"; then
adam@12 6030 ac_ct_DLLTOOL=$DLLTOOL
adam@12 6031 # Extract the first word of "dlltool", so it can be a program name with args.
adam@12 6032 set dummy dlltool; ac_word=$2
adam@12 6033 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@12 6034 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 6035 if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :
adam@12 6036 $as_echo_n "(cached) " >&6
adam@12 6037 else
adam@12 6038 if test -n "$ac_ct_DLLTOOL"; then
adam@12 6039 ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test.
adam@12 6040 else
adam@12 6041 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@12 6042 for as_dir in $PATH
adam@12 6043 do
adam@12 6044 IFS=$as_save_IFS
adam@12 6045 test -z "$as_dir" && as_dir=.
adam@12 6046 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 6047 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@12 6048 ac_cv_prog_ac_ct_DLLTOOL="dlltool"
adam@12 6049 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@12 6050 break 2
adam@12 6051 fi
adam@12 6052 done
adam@12 6053 done
adam@12 6054 IFS=$as_save_IFS
adam@12 6055
adam@12 6056 fi
adam@12 6057 fi
adam@12 6058 ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL
adam@12 6059 if test -n "$ac_ct_DLLTOOL"; then
adam@12 6060 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5
adam@12 6061 $as_echo "$ac_ct_DLLTOOL" >&6; }
adam@12 6062 else
adam@12 6063 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@12 6064 $as_echo "no" >&6; }
adam@12 6065 fi
adam@12 6066
adam@12 6067 if test "x$ac_ct_DLLTOOL" = x; then
adam@12 6068 DLLTOOL="false"
adam@12 6069 else
adam@12 6070 case $cross_compiling:$ac_tool_warned in
adam@12 6071 yes:)
adam@12 6072 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@12 6073 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@12 6074 ac_tool_warned=yes ;;
adam@12 6075 esac
adam@12 6076 DLLTOOL=$ac_ct_DLLTOOL
adam@12 6077 fi
adam@12 6078 else
adam@12 6079 DLLTOOL="$ac_cv_prog_DLLTOOL"
adam@12 6080 fi
adam@12 6081
adam@12 6082 test -z "$DLLTOOL" && DLLTOOL=dlltool
adam@12 6083
adam@12 6084
adam@12 6085
adam@12 6086
adam@12 6087
adam@12 6088
adam@12 6089
adam@12 6090
adam@12 6091
adam@12 6092
adam@12 6093 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5
adam@12 6094 $as_echo_n "checking how to associate runtime and link libraries... " >&6; }
adam@12 6095 if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then :
adam@12 6096 $as_echo_n "(cached) " >&6
adam@12 6097 else
adam@12 6098 lt_cv_sharedlib_from_linklib_cmd='unknown'
adam@12 6099
adam@12 6100 case $host_os in
adam@12 6101 cygwin* | mingw* | pw32* | cegcc*)
adam@12 6102 # two different shell functions defined in ltmain.sh
adam@12 6103 # decide which to use based on capabilities of $DLLTOOL
adam@12 6104 case `$DLLTOOL --help 2>&1` in
adam@12 6105 *--identify-strict*)
adam@12 6106 lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib
adam@12 6107 ;;
adam@12 6108 *)
adam@12 6109 lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback
adam@12 6110 ;;
adam@12 6111 esac
adam@12 6112 ;;
adam@12 6113 *)
adam@12 6114 # fallback: assume linklib IS sharedlib
adam@12 6115 lt_cv_sharedlib_from_linklib_cmd="$ECHO"
adam@12 6116 ;;
adam@12 6117 esac
adam@12 6118
adam@12 6119 fi
adam@12 6120 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5
adam@12 6121 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; }
adam@12 6122 sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd
adam@12 6123 test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO
adam@12 6124
adam@12 6125
adam@12 6126
adam@12 6127
adam@12 6128
adam@12 6129
adam@12 6130
adam@12 6131 if test -n "$ac_tool_prefix"; then
adam@12 6132 for ac_prog in ar
adam@12 6133 do
adam@12 6134 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
adam@12 6135 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
adam@12 6136 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@12 6137 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 6138 if ${ac_cv_prog_AR+:} false; then :
adam@12 6139 $as_echo_n "(cached) " >&6
adam@12 6140 else
adam@12 6141 if test -n "$AR"; then
adam@12 6142 ac_cv_prog_AR="$AR" # Let the user override the test.
adam@12 6143 else
adam@12 6144 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@12 6145 for as_dir in $PATH
adam@12 6146 do
adam@12 6147 IFS=$as_save_IFS
adam@12 6148 test -z "$as_dir" && as_dir=.
adam@12 6149 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 6150 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@12 6151 ac_cv_prog_AR="$ac_tool_prefix$ac_prog"
adam@0 6152 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 6153 break 2
adam@0 6154 fi
adam@0 6155 done
adam@0 6156 done
adam@0 6157 IFS=$as_save_IFS
adam@0 6158
adam@0 6159 fi
adam@0 6160 fi
adam@0 6161 AR=$ac_cv_prog_AR
adam@0 6162 if test -n "$AR"; then
adam@0 6163 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5
adam@0 6164 $as_echo "$AR" >&6; }
adam@0 6165 else
adam@0 6166 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 6167 $as_echo "no" >&6; }
adam@0 6168 fi
adam@0 6169
adam@0 6170
adam@12 6171 test -n "$AR" && break
adam@12 6172 done
adam@12 6173 fi
adam@12 6174 if test -z "$AR"; then
adam@0 6175 ac_ct_AR=$AR
adam@12 6176 for ac_prog in ar
adam@12 6177 do
adam@12 6178 # Extract the first word of "$ac_prog", so it can be a program name with args.
adam@12 6179 set dummy $ac_prog; ac_word=$2
adam@0 6180 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 6181 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 6182 if ${ac_cv_prog_ac_ct_AR+:} false; then :
adam@0 6183 $as_echo_n "(cached) " >&6
adam@0 6184 else
adam@0 6185 if test -n "$ac_ct_AR"; then
adam@0 6186 ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test.
adam@0 6187 else
adam@0 6188 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 6189 for as_dir in $PATH
adam@0 6190 do
adam@0 6191 IFS=$as_save_IFS
adam@0 6192 test -z "$as_dir" && as_dir=.
adam@0 6193 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 6194 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@12 6195 ac_cv_prog_ac_ct_AR="$ac_prog"
adam@0 6196 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 6197 break 2
adam@0 6198 fi
adam@0 6199 done
adam@0 6200 done
adam@0 6201 IFS=$as_save_IFS
adam@0 6202
adam@0 6203 fi
adam@0 6204 fi
adam@0 6205 ac_ct_AR=$ac_cv_prog_ac_ct_AR
adam@0 6206 if test -n "$ac_ct_AR"; then
adam@0 6207 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5
adam@0 6208 $as_echo "$ac_ct_AR" >&6; }
adam@0 6209 else
adam@0 6210 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 6211 $as_echo "no" >&6; }
adam@0 6212 fi
adam@0 6213
adam@12 6214
adam@12 6215 test -n "$ac_ct_AR" && break
adam@12 6216 done
adam@12 6217
adam@0 6218 if test "x$ac_ct_AR" = x; then
adam@0 6219 AR="false"
adam@0 6220 else
adam@0 6221 case $cross_compiling:$ac_tool_warned in
adam@0 6222 yes:)
adam@0 6223 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 6224 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 6225 ac_tool_warned=yes ;;
adam@0 6226 esac
adam@0 6227 AR=$ac_ct_AR
adam@0 6228 fi
adam@12 6229 fi
adam@12 6230
adam@12 6231 : ${AR=ar}
adam@12 6232 : ${AR_FLAGS=cru}
adam@12 6233
adam@12 6234
adam@12 6235
adam@12 6236
adam@12 6237
adam@12 6238
adam@12 6239
adam@12 6240
adam@12 6241
adam@12 6242
adam@12 6243
adam@12 6244 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5
adam@12 6245 $as_echo_n "checking for archiver @FILE support... " >&6; }
adam@12 6246 if ${lt_cv_ar_at_file+:} false; then :
adam@12 6247 $as_echo_n "(cached) " >&6
adam@12 6248 else
adam@12 6249 lt_cv_ar_at_file=no
adam@12 6250 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@12 6251 /* end confdefs.h. */
adam@12 6252
adam@12 6253 int
adam@12 6254 main ()
adam@12 6255 {
adam@12 6256
adam@12 6257 ;
adam@12 6258 return 0;
adam@12 6259 }
adam@12 6260 _ACEOF
adam@12 6261 if ac_fn_c_try_compile "$LINENO"; then :
adam@12 6262 echo conftest.$ac_objext > conftest.lst
adam@12 6263 lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5'
adam@12 6264 { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5
adam@12 6265 (eval $lt_ar_try) 2>&5
adam@12 6266 ac_status=$?
adam@12 6267 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@12 6268 test $ac_status = 0; }
adam@12 6269 if test "$ac_status" -eq 0; then
adam@12 6270 # Ensure the archiver fails upon bogus file names.
adam@12 6271 rm -f conftest.$ac_objext libconftest.a
adam@12 6272 { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5
adam@12 6273 (eval $lt_ar_try) 2>&5
adam@12 6274 ac_status=$?
adam@12 6275 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@12 6276 test $ac_status = 0; }
adam@12 6277 if test "$ac_status" -ne 0; then
adam@12 6278 lt_cv_ar_at_file=@
adam@12 6279 fi
adam@12 6280 fi
adam@12 6281 rm -f conftest.* libconftest.a
adam@12 6282
adam@12 6283 fi
adam@12 6284 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
adam@12 6285
adam@12 6286 fi
adam@12 6287 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5
adam@12 6288 $as_echo "$lt_cv_ar_at_file" >&6; }
adam@12 6289
adam@12 6290 if test "x$lt_cv_ar_at_file" = xno; then
adam@12 6291 archiver_list_spec=
adam@12 6292 else
adam@12 6293 archiver_list_spec=$lt_cv_ar_at_file
adam@12 6294 fi
adam@0 6295
adam@0 6296
adam@0 6297
adam@0 6298
adam@0 6299
adam@0 6300
adam@0 6301
adam@0 6302 if test -n "$ac_tool_prefix"; then
adam@0 6303 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
adam@0 6304 set dummy ${ac_tool_prefix}strip; ac_word=$2
adam@0 6305 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 6306 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 6307 if ${ac_cv_prog_STRIP+:} false; then :
adam@0 6308 $as_echo_n "(cached) " >&6
adam@0 6309 else
adam@0 6310 if test -n "$STRIP"; then
adam@0 6311 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
adam@0 6312 else
adam@0 6313 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 6314 for as_dir in $PATH
adam@0 6315 do
adam@0 6316 IFS=$as_save_IFS
adam@0 6317 test -z "$as_dir" && as_dir=.
adam@0 6318 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 6319 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 6320 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
adam@0 6321 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 6322 break 2
adam@0 6323 fi
adam@0 6324 done
adam@0 6325 done
adam@0 6326 IFS=$as_save_IFS
adam@0 6327
adam@0 6328 fi
adam@0 6329 fi
adam@0 6330 STRIP=$ac_cv_prog_STRIP
adam@0 6331 if test -n "$STRIP"; then
adam@0 6332 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
adam@0 6333 $as_echo "$STRIP" >&6; }
adam@0 6334 else
adam@0 6335 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 6336 $as_echo "no" >&6; }
adam@0 6337 fi
adam@0 6338
adam@0 6339
adam@0 6340 fi
adam@0 6341 if test -z "$ac_cv_prog_STRIP"; then
adam@0 6342 ac_ct_STRIP=$STRIP
adam@0 6343 # Extract the first word of "strip", so it can be a program name with args.
adam@0 6344 set dummy strip; ac_word=$2
adam@0 6345 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 6346 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 6347 if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
adam@0 6348 $as_echo_n "(cached) " >&6
adam@0 6349 else
adam@0 6350 if test -n "$ac_ct_STRIP"; then
adam@0 6351 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
adam@0 6352 else
adam@0 6353 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 6354 for as_dir in $PATH
adam@0 6355 do
adam@0 6356 IFS=$as_save_IFS
adam@0 6357 test -z "$as_dir" && as_dir=.
adam@0 6358 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 6359 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 6360 ac_cv_prog_ac_ct_STRIP="strip"
adam@0 6361 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 6362 break 2
adam@0 6363 fi
adam@0 6364 done
adam@0 6365 done
adam@0 6366 IFS=$as_save_IFS
adam@0 6367
adam@0 6368 fi
adam@0 6369 fi
adam@0 6370 ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
adam@0 6371 if test -n "$ac_ct_STRIP"; then
adam@0 6372 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
adam@0 6373 $as_echo "$ac_ct_STRIP" >&6; }
adam@0 6374 else
adam@0 6375 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 6376 $as_echo "no" >&6; }
adam@0 6377 fi
adam@0 6378
adam@0 6379 if test "x$ac_ct_STRIP" = x; then
adam@0 6380 STRIP=":"
adam@0 6381 else
adam@0 6382 case $cross_compiling:$ac_tool_warned in
adam@0 6383 yes:)
adam@0 6384 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 6385 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 6386 ac_tool_warned=yes ;;
adam@0 6387 esac
adam@0 6388 STRIP=$ac_ct_STRIP
adam@0 6389 fi
adam@0 6390 else
adam@0 6391 STRIP="$ac_cv_prog_STRIP"
adam@0 6392 fi
adam@0 6393
adam@0 6394 test -z "$STRIP" && STRIP=:
adam@0 6395
adam@0 6396
adam@0 6397
adam@0 6398
adam@0 6399
adam@0 6400
adam@0 6401 if test -n "$ac_tool_prefix"; then
adam@0 6402 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
adam@0 6403 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
adam@0 6404 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 6405 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 6406 if ${ac_cv_prog_RANLIB+:} false; then :
adam@0 6407 $as_echo_n "(cached) " >&6
adam@0 6408 else
adam@0 6409 if test -n "$RANLIB"; then
adam@0 6410 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
adam@0 6411 else
adam@0 6412 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 6413 for as_dir in $PATH
adam@0 6414 do
adam@0 6415 IFS=$as_save_IFS
adam@0 6416 test -z "$as_dir" && as_dir=.
adam@0 6417 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 6418 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 6419 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
adam@0 6420 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 6421 break 2
adam@0 6422 fi
adam@0 6423 done
adam@0 6424 done
adam@0 6425 IFS=$as_save_IFS
adam@0 6426
adam@0 6427 fi
adam@0 6428 fi
adam@0 6429 RANLIB=$ac_cv_prog_RANLIB
adam@0 6430 if test -n "$RANLIB"; then
adam@0 6431 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5
adam@0 6432 $as_echo "$RANLIB" >&6; }
adam@0 6433 else
adam@0 6434 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 6435 $as_echo "no" >&6; }
adam@0 6436 fi
adam@0 6437
adam@0 6438
adam@0 6439 fi
adam@0 6440 if test -z "$ac_cv_prog_RANLIB"; then
adam@0 6441 ac_ct_RANLIB=$RANLIB
adam@0 6442 # Extract the first word of "ranlib", so it can be a program name with args.
adam@0 6443 set dummy ranlib; ac_word=$2
adam@0 6444 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 6445 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 6446 if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
adam@0 6447 $as_echo_n "(cached) " >&6
adam@0 6448 else
adam@0 6449 if test -n "$ac_ct_RANLIB"; then
adam@0 6450 ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
adam@0 6451 else
adam@0 6452 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 6453 for as_dir in $PATH
adam@0 6454 do
adam@0 6455 IFS=$as_save_IFS
adam@0 6456 test -z "$as_dir" && as_dir=.
adam@0 6457 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 6458 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 6459 ac_cv_prog_ac_ct_RANLIB="ranlib"
adam@0 6460 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 6461 break 2
adam@0 6462 fi
adam@0 6463 done
adam@0 6464 done
adam@0 6465 IFS=$as_save_IFS
adam@0 6466
adam@0 6467 fi
adam@0 6468 fi
adam@0 6469 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
adam@0 6470 if test -n "$ac_ct_RANLIB"; then
adam@0 6471 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5
adam@0 6472 $as_echo "$ac_ct_RANLIB" >&6; }
adam@0 6473 else
adam@0 6474 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 6475 $as_echo "no" >&6; }
adam@0 6476 fi
adam@0 6477
adam@0 6478 if test "x$ac_ct_RANLIB" = x; then
adam@0 6479 RANLIB=":"
adam@0 6480 else
adam@0 6481 case $cross_compiling:$ac_tool_warned in
adam@0 6482 yes:)
adam@0 6483 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 6484 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 6485 ac_tool_warned=yes ;;
adam@0 6486 esac
adam@0 6487 RANLIB=$ac_ct_RANLIB
adam@0 6488 fi
adam@0 6489 else
adam@0 6490 RANLIB="$ac_cv_prog_RANLIB"
adam@0 6491 fi
adam@0 6492
adam@0 6493 test -z "$RANLIB" && RANLIB=:
adam@0 6494
adam@0 6495
adam@0 6496
adam@0 6497
adam@0 6498
adam@0 6499
adam@0 6500 # Determine commands to create old-style static archives.
adam@0 6501 old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
adam@0 6502 old_postinstall_cmds='chmod 644 $oldlib'
adam@0 6503 old_postuninstall_cmds=
adam@0 6504
adam@0 6505 if test -n "$RANLIB"; then
adam@0 6506 case $host_os in
adam@0 6507 openbsd*)
adam@20 6508 old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib"
adam@0 6509 ;;
adam@0 6510 *)
adam@20 6511 old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib"
adam@0 6512 ;;
adam@0 6513 esac
adam@20 6514 old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib"
adam@0 6515 fi
adam@0 6516
adam@12 6517 case $host_os in
adam@12 6518 darwin*)
adam@12 6519 lock_old_archive_extraction=yes ;;
adam@12 6520 *)
adam@12 6521 lock_old_archive_extraction=no ;;
adam@12 6522 esac
adam@12 6523
adam@12 6524
adam@12 6525
adam@12 6526
adam@12 6527
adam@12 6528
adam@0 6529
adam@0 6530
adam@0 6531
adam@0 6532
adam@0 6533
adam@0 6534
adam@0 6535
adam@0 6536
adam@0 6537
adam@0 6538
adam@0 6539
adam@0 6540
adam@0 6541
adam@0 6542
adam@0 6543
adam@0 6544
adam@0 6545
adam@0 6546
adam@0 6547
adam@0 6548
adam@0 6549
adam@0 6550
adam@0 6551
adam@0 6552
adam@0 6553
adam@0 6554
adam@0 6555
adam@0 6556
adam@0 6557
adam@0 6558
adam@0 6559
adam@0 6560
adam@0 6561
adam@0 6562 # If no C compiler was specified, use CC.
adam@0 6563 LTCC=${LTCC-"$CC"}
adam@0 6564
adam@0 6565 # If no C compiler flags were specified, use CFLAGS.
adam@0 6566 LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
adam@0 6567
adam@0 6568 # Allow CC to be a program name with arguments.
adam@0 6569 compiler=$CC
adam@0 6570
adam@0 6571
adam@0 6572 # Check for command to grab the raw symbol name followed by C symbol from nm.
adam@0 6573 { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5
adam@0 6574 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; }
adam@12 6575 if ${lt_cv_sys_global_symbol_pipe+:} false; then :
adam@0 6576 $as_echo_n "(cached) " >&6
adam@0 6577 else
adam@0 6578
adam@0 6579 # These are sane defaults that work on at least a few old systems.
adam@0 6580 # [They come from Ultrix. What could be older than Ultrix?!! ;)]
adam@0 6581
adam@0 6582 # Character class describing NM global symbol codes.
adam@0 6583 symcode='[BCDEGRST]'
adam@0 6584
adam@0 6585 # Regexp to match symbols that can be accessed directly from C.
adam@0 6586 sympat='\([_A-Za-z][_A-Za-z0-9]*\)'
adam@0 6587
adam@0 6588 # Define system-specific variables.
adam@0 6589 case $host_os in
adam@0 6590 aix*)
adam@0 6591 symcode='[BCDT]'
adam@0 6592 ;;
adam@0 6593 cygwin* | mingw* | pw32* | cegcc*)
adam@0 6594 symcode='[ABCDGISTW]'
adam@0 6595 ;;
adam@0 6596 hpux*)
adam@0 6597 if test "$host_cpu" = ia64; then
adam@0 6598 symcode='[ABCDEGRST]'
adam@0 6599 fi
adam@0 6600 ;;
adam@0 6601 irix* | nonstopux*)
adam@0 6602 symcode='[BCDEGRST]'
adam@0 6603 ;;
adam@0 6604 osf*)
adam@0 6605 symcode='[BCDEGQRST]'
adam@0 6606 ;;
adam@0 6607 solaris*)
adam@0 6608 symcode='[BDRT]'
adam@0 6609 ;;
adam@0 6610 sco3.2v5*)
adam@0 6611 symcode='[DT]'
adam@0 6612 ;;
adam@0 6613 sysv4.2uw2*)
adam@0 6614 symcode='[DT]'
adam@0 6615 ;;
adam@0 6616 sysv5* | sco5v6* | unixware* | OpenUNIX*)
adam@0 6617 symcode='[ABDT]'
adam@0 6618 ;;
adam@0 6619 sysv4)
adam@0 6620 symcode='[DFNSTU]'
adam@0 6621 ;;
adam@0 6622 esac
adam@0 6623
adam@0 6624 # If we're using GNU nm, then use its standard symbol codes.
adam@0 6625 case `$NM -V 2>&1` in
adam@0 6626 *GNU* | *'with BFD'*)
adam@0 6627 symcode='[ABCDGIRSTW]' ;;
adam@0 6628 esac
adam@0 6629
adam@0 6630 # Transform an extracted symbol line into a proper C declaration.
adam@0 6631 # Some systems (esp. on ia64) link data and code symbols differently,
adam@0 6632 # so use this general approach.
adam@0 6633 lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
adam@0 6634
adam@0 6635 # Transform an extracted symbol line into symbol name and symbol address
adam@12 6636 lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'"
adam@12 6637 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'"
adam@0 6638
adam@0 6639 # Handle CRLF in mingw tool chain
adam@0 6640 opt_cr=
adam@0 6641 case $build_os in
adam@0 6642 mingw*)
adam@0 6643 opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
adam@0 6644 ;;
adam@0 6645 esac
adam@0 6646
adam@0 6647 # Try without a prefix underscore, then with it.
adam@0 6648 for ac_symprfx in "" "_"; do
adam@0 6649
adam@0 6650 # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
adam@0 6651 symxfrm="\\1 $ac_symprfx\\2 \\2"
adam@0 6652
adam@0 6653 # Write the raw and C identifiers.
adam@0 6654 if test "$lt_cv_nm_interface" = "MS dumpbin"; then
adam@0 6655 # Fake it for dumpbin and say T for any non-static function
adam@0 6656 # and D for any global variable.
adam@0 6657 # Also find C++ and __fastcall symbols from MSVC++,
adam@0 6658 # which start with @ or ?.
adam@0 6659 lt_cv_sys_global_symbol_pipe="$AWK '"\
adam@0 6660 " {last_section=section; section=\$ 3};"\
adam@20 6661 " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\
adam@0 6662 " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
adam@0 6663 " \$ 0!~/External *\|/{next};"\
adam@0 6664 " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
adam@0 6665 " {if(hide[section]) next};"\
adam@0 6666 " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\
adam@0 6667 " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\
adam@0 6668 " s[1]~/^[@?]/{print s[1], s[1]; next};"\
adam@0 6669 " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\
adam@0 6670 " ' prfx=^$ac_symprfx"
adam@0 6671 else
adam@0 6672 lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
adam@0 6673 fi
adam@12 6674 lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'"
adam@0 6675
adam@0 6676 # Check to see that the pipe works correctly.
adam@0 6677 pipe_works=no
adam@0 6678
adam@0 6679 rm -f conftest*
adam@0 6680 cat > conftest.$ac_ext <<_LT_EOF
adam@0 6681 #ifdef __cplusplus
adam@0 6682 extern "C" {
adam@0 6683 #endif
adam@0 6684 char nm_test_var;
adam@0 6685 void nm_test_func(void);
adam@0 6686 void nm_test_func(void){}
adam@0 6687 #ifdef __cplusplus
adam@0 6688 }
adam@0 6689 #endif
adam@0 6690 int main(){nm_test_var='a';nm_test_func();return(0);}
adam@0 6691 _LT_EOF
adam@0 6692
adam@0 6693 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
adam@0 6694 (eval $ac_compile) 2>&5
adam@0 6695 ac_status=$?
adam@0 6696 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 6697 test $ac_status = 0; }; then
adam@0 6698 # Now try to grab the symbols.
adam@0 6699 nlist=conftest.nm
adam@12 6700 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5
adam@12 6701 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5
adam@0 6702 ac_status=$?
adam@0 6703 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 6704 test $ac_status = 0; } && test -s "$nlist"; then
adam@0 6705 # Try sorting and uniquifying the output.
adam@0 6706 if sort "$nlist" | uniq > "$nlist"T; then
adam@0 6707 mv -f "$nlist"T "$nlist"
adam@0 6708 else
adam@0 6709 rm -f "$nlist"T
adam@0 6710 fi
adam@0 6711
adam@0 6712 # Make sure that we snagged all the symbols we need.
adam@0 6713 if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
adam@0 6714 if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
adam@0 6715 cat <<_LT_EOF > conftest.$ac_ext
adam@12 6716 /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */
adam@12 6717 #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
adam@12 6718 /* DATA imports from DLLs on WIN32 con't be const, because runtime
adam@12 6719 relocations are performed -- see ld's documentation on pseudo-relocs. */
adam@12 6720 # define LT_DLSYM_CONST
adam@12 6721 #elif defined(__osf__)
adam@12 6722 /* This system does not cope well with relocations in const data. */
adam@12 6723 # define LT_DLSYM_CONST
adam@12 6724 #else
adam@12 6725 # define LT_DLSYM_CONST const
adam@12 6726 #endif
adam@12 6727
adam@0 6728 #ifdef __cplusplus
adam@0 6729 extern "C" {
adam@0 6730 #endif
adam@0 6731
adam@0 6732 _LT_EOF
adam@0 6733 # Now generate the symbol file.
adam@0 6734 eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext'
adam@0 6735
adam@0 6736 cat <<_LT_EOF >> conftest.$ac_ext
adam@0 6737
adam@0 6738 /* The mapping between symbol names and symbols. */
adam@12 6739 LT_DLSYM_CONST struct {
adam@0 6740 const char *name;
adam@0 6741 void *address;
adam@0 6742 }
adam@0 6743 lt__PROGRAM__LTX_preloaded_symbols[] =
adam@0 6744 {
adam@0 6745 { "@PROGRAM@", (void *) 0 },
adam@0 6746 _LT_EOF
adam@0 6747 $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
adam@0 6748 cat <<\_LT_EOF >> conftest.$ac_ext
adam@0 6749 {0, (void *) 0}
adam@0 6750 };
adam@0 6751
adam@0 6752 /* This works around a problem in FreeBSD linker */
adam@0 6753 #ifdef FREEBSD_WORKAROUND
adam@0 6754 static const void *lt_preloaded_setup() {
adam@0 6755 return lt__PROGRAM__LTX_preloaded_symbols;
adam@0 6756 }
adam@0 6757 #endif
adam@0 6758
adam@0 6759 #ifdef __cplusplus
adam@0 6760 }
adam@0 6761 #endif
adam@0 6762 _LT_EOF
adam@0 6763 # Now try linking the two files.
adam@0 6764 mv conftest.$ac_objext conftstm.$ac_objext
adam@12 6765 lt_globsym_save_LIBS=$LIBS
adam@12 6766 lt_globsym_save_CFLAGS=$CFLAGS
adam@0 6767 LIBS="conftstm.$ac_objext"
adam@0 6768 CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag"
adam@0 6769 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5
adam@0 6770 (eval $ac_link) 2>&5
adam@0 6771 ac_status=$?
adam@0 6772 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 6773 test $ac_status = 0; } && test -s conftest${ac_exeext}; then
adam@0 6774 pipe_works=yes
adam@0 6775 fi
adam@12 6776 LIBS=$lt_globsym_save_LIBS
adam@12 6777 CFLAGS=$lt_globsym_save_CFLAGS
adam@0 6778 else
adam@0 6779 echo "cannot find nm_test_func in $nlist" >&5
adam@0 6780 fi
adam@0 6781 else
adam@0 6782 echo "cannot find nm_test_var in $nlist" >&5
adam@0 6783 fi
adam@0 6784 else
adam@0 6785 echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5
adam@0 6786 fi
adam@0 6787 else
adam@0 6788 echo "$progname: failed program was:" >&5
adam@0 6789 cat conftest.$ac_ext >&5
adam@0 6790 fi
adam@0 6791 rm -rf conftest* conftst*
adam@0 6792
adam@0 6793 # Do not use the global_symbol_pipe unless it works.
adam@0 6794 if test "$pipe_works" = yes; then
adam@0 6795 break
adam@0 6796 else
adam@0 6797 lt_cv_sys_global_symbol_pipe=
adam@0 6798 fi
adam@0 6799 done
adam@0 6800
adam@0 6801 fi
adam@0 6802
adam@0 6803 if test -z "$lt_cv_sys_global_symbol_pipe"; then
adam@0 6804 lt_cv_sys_global_symbol_to_cdecl=
adam@0 6805 fi
adam@0 6806 if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
adam@0 6807 { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5
adam@0 6808 $as_echo "failed" >&6; }
adam@0 6809 else
adam@0 6810 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
adam@0 6811 $as_echo "ok" >&6; }
adam@0 6812 fi
adam@0 6813
adam@12 6814 # Response file support.
adam@12 6815 if test "$lt_cv_nm_interface" = "MS dumpbin"; then
adam@12 6816 nm_file_list_spec='@'
adam@12 6817 elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then
adam@12 6818 nm_file_list_spec='@'
adam@12 6819 fi
adam@12 6820
adam@12 6821
adam@12 6822
adam@12 6823
adam@12 6824
adam@12 6825
adam@12 6826
adam@12 6827
adam@12 6828
adam@12 6829
adam@12 6830
adam@12 6831
adam@12 6832
adam@12 6833
adam@12 6834
adam@12 6835
adam@12 6836
adam@12 6837
adam@12 6838
adam@12 6839
adam@12 6840
adam@12 6841
adam@12 6842
adam@12 6843
adam@12 6844
adam@12 6845
adam@12 6846
adam@12 6847 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5
adam@12 6848 $as_echo_n "checking for sysroot... " >&6; }
adam@12 6849
adam@12 6850 # Check whether --with-sysroot was given.
adam@12 6851 if test "${with_sysroot+set}" = set; then :
adam@12 6852 withval=$with_sysroot;
adam@12 6853 else
adam@12 6854 with_sysroot=no
adam@12 6855 fi
adam@12 6856
adam@12 6857
adam@12 6858 lt_sysroot=
adam@12 6859 case ${with_sysroot} in #(
adam@12 6860 yes)
adam@12 6861 if test "$GCC" = yes; then
adam@12 6862 lt_sysroot=`$CC --print-sysroot 2>/dev/null`
adam@12 6863 fi
adam@12 6864 ;; #(
adam@12 6865 /*)
adam@12 6866 lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
adam@12 6867 ;; #(
adam@12 6868 no|'')
adam@12 6869 ;; #(
adam@12 6870 *)
adam@12 6871 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5
adam@12 6872 $as_echo "${with_sysroot}" >&6; }
adam@12 6873 as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5
adam@12 6874 ;;
adam@12 6875 esac
adam@12 6876
adam@12 6877 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5
adam@12 6878 $as_echo "${lt_sysroot:-no}" >&6; }
adam@0 6879
adam@0 6880
adam@0 6881
adam@0 6882
adam@0 6883
adam@0 6884 # Check whether --enable-libtool-lock was given.
adam@0 6885 if test "${enable_libtool_lock+set}" = set; then :
adam@0 6886 enableval=$enable_libtool_lock;
adam@0 6887 fi
adam@0 6888
adam@0 6889 test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
adam@0 6890
adam@0 6891 # Some flags need to be propagated to the compiler or linker for good
adam@0 6892 # libtool support.
adam@0 6893 case $host in
adam@0 6894 ia64-*-hpux*)
adam@0 6895 # Find out which ABI we are using.
adam@0 6896 echo 'int i;' > conftest.$ac_ext
adam@0 6897 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
adam@0 6898 (eval $ac_compile) 2>&5
adam@0 6899 ac_status=$?
adam@0 6900 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 6901 test $ac_status = 0; }; then
adam@0 6902 case `/usr/bin/file conftest.$ac_objext` in
adam@0 6903 *ELF-32*)
adam@0 6904 HPUX_IA64_MODE="32"
adam@0 6905 ;;
adam@0 6906 *ELF-64*)
adam@0 6907 HPUX_IA64_MODE="64"
adam@0 6908 ;;
adam@0 6909 esac
adam@0 6910 fi
adam@0 6911 rm -rf conftest*
adam@0 6912 ;;
adam@0 6913 *-*-irix6*)
adam@0 6914 # Find out which ABI we are using.
adam@12 6915 echo '#line '$LINENO' "configure"' > conftest.$ac_ext
adam@0 6916 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
adam@0 6917 (eval $ac_compile) 2>&5
adam@0 6918 ac_status=$?
adam@0 6919 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 6920 test $ac_status = 0; }; then
adam@0 6921 if test "$lt_cv_prog_gnu_ld" = yes; then
adam@0 6922 case `/usr/bin/file conftest.$ac_objext` in
adam@0 6923 *32-bit*)
adam@0 6924 LD="${LD-ld} -melf32bsmip"
adam@0 6925 ;;
adam@0 6926 *N32*)
adam@0 6927 LD="${LD-ld} -melf32bmipn32"
adam@0 6928 ;;
adam@0 6929 *64-bit*)
adam@0 6930 LD="${LD-ld} -melf64bmip"
adam@0 6931 ;;
adam@0 6932 esac
adam@0 6933 else
adam@0 6934 case `/usr/bin/file conftest.$ac_objext` in
adam@0 6935 *32-bit*)
adam@0 6936 LD="${LD-ld} -32"
adam@0 6937 ;;
adam@0 6938 *N32*)
adam@0 6939 LD="${LD-ld} -n32"
adam@0 6940 ;;
adam@0 6941 *64-bit*)
adam@0 6942 LD="${LD-ld} -64"
adam@0 6943 ;;
adam@0 6944 esac
adam@0 6945 fi
adam@0 6946 fi
adam@0 6947 rm -rf conftest*
adam@0 6948 ;;
adam@0 6949
adam@0 6950 x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
adam@0 6951 s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
adam@0 6952 # Find out which ABI we are using.
adam@0 6953 echo 'int i;' > conftest.$ac_ext
adam@0 6954 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
adam@0 6955 (eval $ac_compile) 2>&5
adam@0 6956 ac_status=$?
adam@0 6957 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 6958 test $ac_status = 0; }; then
adam@0 6959 case `/usr/bin/file conftest.o` in
adam@0 6960 *32-bit*)
adam@0 6961 case $host in
adam@0 6962 x86_64-*kfreebsd*-gnu)
adam@0 6963 LD="${LD-ld} -m elf_i386_fbsd"
adam@0 6964 ;;
adam@0 6965 x86_64-*linux*)
adam@0 6966 LD="${LD-ld} -m elf_i386"
adam@0 6967 ;;
adam@0 6968 ppc64-*linux*|powerpc64-*linux*)
adam@0 6969 LD="${LD-ld} -m elf32ppclinux"
adam@0 6970 ;;
adam@0 6971 s390x-*linux*)
adam@0 6972 LD="${LD-ld} -m elf_s390"
adam@0 6973 ;;
adam@0 6974 sparc64-*linux*)
adam@0 6975 LD="${LD-ld} -m elf32_sparc"
adam@0 6976 ;;
adam@0 6977 esac
adam@0 6978 ;;
adam@0 6979 *64-bit*)
adam@0 6980 case $host in
adam@0 6981 x86_64-*kfreebsd*-gnu)
adam@0 6982 LD="${LD-ld} -m elf_x86_64_fbsd"
adam@0 6983 ;;
adam@0 6984 x86_64-*linux*)
adam@0 6985 LD="${LD-ld} -m elf_x86_64"
adam@0 6986 ;;
adam@0 6987 ppc*-*linux*|powerpc*-*linux*)
adam@0 6988 LD="${LD-ld} -m elf64ppc"
adam@0 6989 ;;
adam@0 6990 s390*-*linux*|s390*-*tpf*)
adam@0 6991 LD="${LD-ld} -m elf64_s390"
adam@0 6992 ;;
adam@0 6993 sparc*-*linux*)
adam@0 6994 LD="${LD-ld} -m elf64_sparc"
adam@0 6995 ;;
adam@0 6996 esac
adam@0 6997 ;;
adam@0 6998 esac
adam@0 6999 fi
adam@0 7000 rm -rf conftest*
adam@0 7001 ;;
adam@0 7002
adam@0 7003 *-*-sco3.2v5*)
adam@0 7004 # On SCO OpenServer 5, we need -belf to get full-featured binaries.
adam@0 7005 SAVE_CFLAGS="$CFLAGS"
adam@0 7006 CFLAGS="$CFLAGS -belf"
adam@0 7007 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5
adam@0 7008 $as_echo_n "checking whether the C compiler needs -belf... " >&6; }
adam@12 7009 if ${lt_cv_cc_needs_belf+:} false; then :
adam@0 7010 $as_echo_n "(cached) " >&6
adam@0 7011 else
adam@0 7012 ac_ext=c
adam@0 7013 ac_cpp='$CPP $CPPFLAGS'
adam@0 7014 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
adam@0 7015 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
adam@0 7016 ac_compiler_gnu=$ac_cv_c_compiler_gnu
adam@0 7017
adam@0 7018 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 7019 /* end confdefs.h. */
adam@0 7020
adam@0 7021 int
adam@0 7022 main ()
adam@0 7023 {
adam@0 7024
adam@0 7025 ;
adam@0 7026 return 0;
adam@0 7027 }
adam@0 7028 _ACEOF
adam@0 7029 if ac_fn_c_try_link "$LINENO"; then :
adam@0 7030 lt_cv_cc_needs_belf=yes
adam@0 7031 else
adam@0 7032 lt_cv_cc_needs_belf=no
adam@0 7033 fi
adam@0 7034 rm -f core conftest.err conftest.$ac_objext \
adam@0 7035 conftest$ac_exeext conftest.$ac_ext
adam@0 7036 ac_ext=c
adam@0 7037 ac_cpp='$CPP $CPPFLAGS'
adam@0 7038 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
adam@0 7039 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
adam@0 7040 ac_compiler_gnu=$ac_cv_c_compiler_gnu
adam@0 7041
adam@0 7042 fi
adam@0 7043 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5
adam@0 7044 $as_echo "$lt_cv_cc_needs_belf" >&6; }
adam@0 7045 if test x"$lt_cv_cc_needs_belf" != x"yes"; then
adam@0 7046 # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
adam@0 7047 CFLAGS="$SAVE_CFLAGS"
adam@0 7048 fi
adam@0 7049 ;;
adam@20 7050 *-*solaris*)
adam@0 7051 # Find out which ABI we are using.
adam@0 7052 echo 'int i;' > conftest.$ac_ext
adam@0 7053 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
adam@0 7054 (eval $ac_compile) 2>&5
adam@0 7055 ac_status=$?
adam@0 7056 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 7057 test $ac_status = 0; }; then
adam@0 7058 case `/usr/bin/file conftest.o` in
adam@0 7059 *64-bit*)
adam@0 7060 case $lt_cv_prog_gnu_ld in
adam@20 7061 yes*)
adam@20 7062 case $host in
adam@20 7063 i?86-*-solaris*)
adam@20 7064 LD="${LD-ld} -m elf_x86_64"
adam@20 7065 ;;
adam@20 7066 sparc*-*-solaris*)
adam@20 7067 LD="${LD-ld} -m elf64_sparc"
adam@20 7068 ;;
adam@20 7069 esac
adam@20 7070 # GNU ld 2.21 introduced _sol2 emulations. Use them if available.
adam@20 7071 if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then
adam@20 7072 LD="${LD-ld}_sol2"
adam@20 7073 fi
adam@20 7074 ;;
adam@0 7075 *)
adam@0 7076 if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
adam@0 7077 LD="${LD-ld} -64"
adam@0 7078 fi
adam@0 7079 ;;
adam@0 7080 esac
adam@0 7081 ;;
adam@0 7082 esac
adam@0 7083 fi
adam@0 7084 rm -rf conftest*
adam@0 7085 ;;
adam@0 7086 esac
adam@0 7087
adam@0 7088 need_locks="$enable_libtool_lock"
adam@0 7089
adam@12 7090 if test -n "$ac_tool_prefix"; then
adam@12 7091 # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args.
adam@12 7092 set dummy ${ac_tool_prefix}mt; ac_word=$2
adam@12 7093 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@12 7094 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7095 if ${ac_cv_prog_MANIFEST_TOOL+:} false; then :
adam@12 7096 $as_echo_n "(cached) " >&6
adam@12 7097 else
adam@12 7098 if test -n "$MANIFEST_TOOL"; then
adam@12 7099 ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test.
adam@12 7100 else
adam@12 7101 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@12 7102 for as_dir in $PATH
adam@12 7103 do
adam@12 7104 IFS=$as_save_IFS
adam@12 7105 test -z "$as_dir" && as_dir=.
adam@12 7106 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7107 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@12 7108 ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt"
adam@12 7109 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@12 7110 break 2
adam@12 7111 fi
adam@12 7112 done
adam@12 7113 done
adam@12 7114 IFS=$as_save_IFS
adam@12 7115
adam@12 7116 fi
adam@12 7117 fi
adam@12 7118 MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL
adam@12 7119 if test -n "$MANIFEST_TOOL"; then
adam@12 7120 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5
adam@12 7121 $as_echo "$MANIFEST_TOOL" >&6; }
adam@12 7122 else
adam@12 7123 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@12 7124 $as_echo "no" >&6; }
adam@12 7125 fi
adam@12 7126
adam@12 7127
adam@12 7128 fi
adam@12 7129 if test -z "$ac_cv_prog_MANIFEST_TOOL"; then
adam@12 7130 ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL
adam@12 7131 # Extract the first word of "mt", so it can be a program name with args.
adam@12 7132 set dummy mt; ac_word=$2
adam@12 7133 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@12 7134 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7135 if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then :
adam@12 7136 $as_echo_n "(cached) " >&6
adam@12 7137 else
adam@12 7138 if test -n "$ac_ct_MANIFEST_TOOL"; then
adam@12 7139 ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test.
adam@12 7140 else
adam@12 7141 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@12 7142 for as_dir in $PATH
adam@12 7143 do
adam@12 7144 IFS=$as_save_IFS
adam@12 7145 test -z "$as_dir" && as_dir=.
adam@12 7146 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7147 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@12 7148 ac_cv_prog_ac_ct_MANIFEST_TOOL="mt"
adam@12 7149 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@12 7150 break 2
adam@12 7151 fi
adam@12 7152 done
adam@12 7153 done
adam@12 7154 IFS=$as_save_IFS
adam@12 7155
adam@12 7156 fi
adam@12 7157 fi
adam@12 7158 ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL
adam@12 7159 if test -n "$ac_ct_MANIFEST_TOOL"; then
adam@12 7160 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5
adam@12 7161 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; }
adam@12 7162 else
adam@12 7163 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@12 7164 $as_echo "no" >&6; }
adam@12 7165 fi
adam@12 7166
adam@12 7167 if test "x$ac_ct_MANIFEST_TOOL" = x; then
adam@12 7168 MANIFEST_TOOL=":"
adam@12 7169 else
adam@12 7170 case $cross_compiling:$ac_tool_warned in
adam@12 7171 yes:)
adam@12 7172 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@12 7173 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@12 7174 ac_tool_warned=yes ;;
adam@12 7175 esac
adam@12 7176 MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL
adam@12 7177 fi
adam@12 7178 else
adam@12 7179 MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL"
adam@12 7180 fi
adam@12 7181
adam@12 7182 test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt
adam@12 7183 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5
adam@12 7184 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; }
adam@12 7185 if ${lt_cv_path_mainfest_tool+:} false; then :
adam@12 7186 $as_echo_n "(cached) " >&6
adam@12 7187 else
adam@12 7188 lt_cv_path_mainfest_tool=no
adam@12 7189 echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5
adam@12 7190 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out
adam@12 7191 cat conftest.err >&5
adam@12 7192 if $GREP 'Manifest Tool' conftest.out > /dev/null; then
adam@12 7193 lt_cv_path_mainfest_tool=yes
adam@12 7194 fi
adam@12 7195 rm -f conftest*
adam@12 7196 fi
adam@12 7197 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5
adam@12 7198 $as_echo "$lt_cv_path_mainfest_tool" >&6; }
adam@12 7199 if test "x$lt_cv_path_mainfest_tool" != xyes; then
adam@12 7200 MANIFEST_TOOL=:
adam@12 7201 fi
adam@12 7202
adam@12 7203
adam@12 7204
adam@12 7205
adam@12 7206
adam@0 7207
adam@0 7208 case $host_os in
adam@0 7209 rhapsody* | darwin*)
adam@0 7210 if test -n "$ac_tool_prefix"; then
adam@0 7211 # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args.
adam@0 7212 set dummy ${ac_tool_prefix}dsymutil; ac_word=$2
adam@0 7213 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 7214 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7215 if ${ac_cv_prog_DSYMUTIL+:} false; then :
adam@0 7216 $as_echo_n "(cached) " >&6
adam@0 7217 else
adam@0 7218 if test -n "$DSYMUTIL"; then
adam@0 7219 ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test.
adam@0 7220 else
adam@0 7221 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 7222 for as_dir in $PATH
adam@0 7223 do
adam@0 7224 IFS=$as_save_IFS
adam@0 7225 test -z "$as_dir" && as_dir=.
adam@0 7226 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7227 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 7228 ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil"
adam@0 7229 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 7230 break 2
adam@0 7231 fi
adam@0 7232 done
adam@0 7233 done
adam@0 7234 IFS=$as_save_IFS
adam@0 7235
adam@0 7236 fi
adam@0 7237 fi
adam@0 7238 DSYMUTIL=$ac_cv_prog_DSYMUTIL
adam@0 7239 if test -n "$DSYMUTIL"; then
adam@0 7240 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5
adam@0 7241 $as_echo "$DSYMUTIL" >&6; }
adam@0 7242 else
adam@0 7243 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 7244 $as_echo "no" >&6; }
adam@0 7245 fi
adam@0 7246
adam@0 7247
adam@0 7248 fi
adam@0 7249 if test -z "$ac_cv_prog_DSYMUTIL"; then
adam@0 7250 ac_ct_DSYMUTIL=$DSYMUTIL
adam@0 7251 # Extract the first word of "dsymutil", so it can be a program name with args.
adam@0 7252 set dummy dsymutil; ac_word=$2
adam@0 7253 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 7254 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7255 if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then :
adam@0 7256 $as_echo_n "(cached) " >&6
adam@0 7257 else
adam@0 7258 if test -n "$ac_ct_DSYMUTIL"; then
adam@0 7259 ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test.
adam@0 7260 else
adam@0 7261 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 7262 for as_dir in $PATH
adam@0 7263 do
adam@0 7264 IFS=$as_save_IFS
adam@0 7265 test -z "$as_dir" && as_dir=.
adam@0 7266 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7267 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 7268 ac_cv_prog_ac_ct_DSYMUTIL="dsymutil"
adam@0 7269 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 7270 break 2
adam@0 7271 fi
adam@0 7272 done
adam@0 7273 done
adam@0 7274 IFS=$as_save_IFS
adam@0 7275
adam@0 7276 fi
adam@0 7277 fi
adam@0 7278 ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL
adam@0 7279 if test -n "$ac_ct_DSYMUTIL"; then
adam@0 7280 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5
adam@0 7281 $as_echo "$ac_ct_DSYMUTIL" >&6; }
adam@0 7282 else
adam@0 7283 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 7284 $as_echo "no" >&6; }
adam@0 7285 fi
adam@0 7286
adam@0 7287 if test "x$ac_ct_DSYMUTIL" = x; then
adam@0 7288 DSYMUTIL=":"
adam@0 7289 else
adam@0 7290 case $cross_compiling:$ac_tool_warned in
adam@0 7291 yes:)
adam@0 7292 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 7293 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 7294 ac_tool_warned=yes ;;
adam@0 7295 esac
adam@0 7296 DSYMUTIL=$ac_ct_DSYMUTIL
adam@0 7297 fi
adam@0 7298 else
adam@0 7299 DSYMUTIL="$ac_cv_prog_DSYMUTIL"
adam@0 7300 fi
adam@0 7301
adam@0 7302 if test -n "$ac_tool_prefix"; then
adam@0 7303 # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args.
adam@0 7304 set dummy ${ac_tool_prefix}nmedit; ac_word=$2
adam@0 7305 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 7306 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7307 if ${ac_cv_prog_NMEDIT+:} false; then :
adam@0 7308 $as_echo_n "(cached) " >&6
adam@0 7309 else
adam@0 7310 if test -n "$NMEDIT"; then
adam@0 7311 ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test.
adam@0 7312 else
adam@0 7313 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 7314 for as_dir in $PATH
adam@0 7315 do
adam@0 7316 IFS=$as_save_IFS
adam@0 7317 test -z "$as_dir" && as_dir=.
adam@0 7318 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7319 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 7320 ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit"
adam@0 7321 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 7322 break 2
adam@0 7323 fi
adam@0 7324 done
adam@0 7325 done
adam@0 7326 IFS=$as_save_IFS
adam@0 7327
adam@0 7328 fi
adam@0 7329 fi
adam@0 7330 NMEDIT=$ac_cv_prog_NMEDIT
adam@0 7331 if test -n "$NMEDIT"; then
adam@0 7332 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5
adam@0 7333 $as_echo "$NMEDIT" >&6; }
adam@0 7334 else
adam@0 7335 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 7336 $as_echo "no" >&6; }
adam@0 7337 fi
adam@0 7338
adam@0 7339
adam@0 7340 fi
adam@0 7341 if test -z "$ac_cv_prog_NMEDIT"; then
adam@0 7342 ac_ct_NMEDIT=$NMEDIT
adam@0 7343 # Extract the first word of "nmedit", so it can be a program name with args.
adam@0 7344 set dummy nmedit; ac_word=$2
adam@0 7345 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 7346 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7347 if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then :
adam@0 7348 $as_echo_n "(cached) " >&6
adam@0 7349 else
adam@0 7350 if test -n "$ac_ct_NMEDIT"; then
adam@0 7351 ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test.
adam@0 7352 else
adam@0 7353 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 7354 for as_dir in $PATH
adam@0 7355 do
adam@0 7356 IFS=$as_save_IFS
adam@0 7357 test -z "$as_dir" && as_dir=.
adam@0 7358 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7359 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 7360 ac_cv_prog_ac_ct_NMEDIT="nmedit"
adam@0 7361 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 7362 break 2
adam@0 7363 fi
adam@0 7364 done
adam@0 7365 done
adam@0 7366 IFS=$as_save_IFS
adam@0 7367
adam@0 7368 fi
adam@0 7369 fi
adam@0 7370 ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT
adam@0 7371 if test -n "$ac_ct_NMEDIT"; then
adam@0 7372 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5
adam@0 7373 $as_echo "$ac_ct_NMEDIT" >&6; }
adam@0 7374 else
adam@0 7375 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 7376 $as_echo "no" >&6; }
adam@0 7377 fi
adam@0 7378
adam@0 7379 if test "x$ac_ct_NMEDIT" = x; then
adam@0 7380 NMEDIT=":"
adam@0 7381 else
adam@0 7382 case $cross_compiling:$ac_tool_warned in
adam@0 7383 yes:)
adam@0 7384 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 7385 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 7386 ac_tool_warned=yes ;;
adam@0 7387 esac
adam@0 7388 NMEDIT=$ac_ct_NMEDIT
adam@0 7389 fi
adam@0 7390 else
adam@0 7391 NMEDIT="$ac_cv_prog_NMEDIT"
adam@0 7392 fi
adam@0 7393
adam@0 7394 if test -n "$ac_tool_prefix"; then
adam@0 7395 # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args.
adam@0 7396 set dummy ${ac_tool_prefix}lipo; ac_word=$2
adam@0 7397 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 7398 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7399 if ${ac_cv_prog_LIPO+:} false; then :
adam@0 7400 $as_echo_n "(cached) " >&6
adam@0 7401 else
adam@0 7402 if test -n "$LIPO"; then
adam@0 7403 ac_cv_prog_LIPO="$LIPO" # Let the user override the test.
adam@0 7404 else
adam@0 7405 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 7406 for as_dir in $PATH
adam@0 7407 do
adam@0 7408 IFS=$as_save_IFS
adam@0 7409 test -z "$as_dir" && as_dir=.
adam@0 7410 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7411 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 7412 ac_cv_prog_LIPO="${ac_tool_prefix}lipo"
adam@0 7413 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 7414 break 2
adam@0 7415 fi
adam@0 7416 done
adam@0 7417 done
adam@0 7418 IFS=$as_save_IFS
adam@0 7419
adam@0 7420 fi
adam@0 7421 fi
adam@0 7422 LIPO=$ac_cv_prog_LIPO
adam@0 7423 if test -n "$LIPO"; then
adam@0 7424 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5
adam@0 7425 $as_echo "$LIPO" >&6; }
adam@0 7426 else
adam@0 7427 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 7428 $as_echo "no" >&6; }
adam@0 7429 fi
adam@0 7430
adam@0 7431
adam@0 7432 fi
adam@0 7433 if test -z "$ac_cv_prog_LIPO"; then
adam@0 7434 ac_ct_LIPO=$LIPO
adam@0 7435 # Extract the first word of "lipo", so it can be a program name with args.
adam@0 7436 set dummy lipo; ac_word=$2
adam@0 7437 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 7438 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7439 if ${ac_cv_prog_ac_ct_LIPO+:} false; then :
adam@0 7440 $as_echo_n "(cached) " >&6
adam@0 7441 else
adam@0 7442 if test -n "$ac_ct_LIPO"; then
adam@0 7443 ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test.
adam@0 7444 else
adam@0 7445 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 7446 for as_dir in $PATH
adam@0 7447 do
adam@0 7448 IFS=$as_save_IFS
adam@0 7449 test -z "$as_dir" && as_dir=.
adam@0 7450 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7451 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 7452 ac_cv_prog_ac_ct_LIPO="lipo"
adam@0 7453 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 7454 break 2
adam@0 7455 fi
adam@0 7456 done
adam@0 7457 done
adam@0 7458 IFS=$as_save_IFS
adam@0 7459
adam@0 7460 fi
adam@0 7461 fi
adam@0 7462 ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO
adam@0 7463 if test -n "$ac_ct_LIPO"; then
adam@0 7464 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5
adam@0 7465 $as_echo "$ac_ct_LIPO" >&6; }
adam@0 7466 else
adam@0 7467 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 7468 $as_echo "no" >&6; }
adam@0 7469 fi
adam@0 7470
adam@0 7471 if test "x$ac_ct_LIPO" = x; then
adam@0 7472 LIPO=":"
adam@0 7473 else
adam@0 7474 case $cross_compiling:$ac_tool_warned in
adam@0 7475 yes:)
adam@0 7476 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 7477 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 7478 ac_tool_warned=yes ;;
adam@0 7479 esac
adam@0 7480 LIPO=$ac_ct_LIPO
adam@0 7481 fi
adam@0 7482 else
adam@0 7483 LIPO="$ac_cv_prog_LIPO"
adam@0 7484 fi
adam@0 7485
adam@0 7486 if test -n "$ac_tool_prefix"; then
adam@0 7487 # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args.
adam@0 7488 set dummy ${ac_tool_prefix}otool; ac_word=$2
adam@0 7489 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 7490 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7491 if ${ac_cv_prog_OTOOL+:} false; then :
adam@0 7492 $as_echo_n "(cached) " >&6
adam@0 7493 else
adam@0 7494 if test -n "$OTOOL"; then
adam@0 7495 ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test.
adam@0 7496 else
adam@0 7497 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 7498 for as_dir in $PATH
adam@0 7499 do
adam@0 7500 IFS=$as_save_IFS
adam@0 7501 test -z "$as_dir" && as_dir=.
adam@0 7502 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7503 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 7504 ac_cv_prog_OTOOL="${ac_tool_prefix}otool"
adam@0 7505 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 7506 break 2
adam@0 7507 fi
adam@0 7508 done
adam@0 7509 done
adam@0 7510 IFS=$as_save_IFS
adam@0 7511
adam@0 7512 fi
adam@0 7513 fi
adam@0 7514 OTOOL=$ac_cv_prog_OTOOL
adam@0 7515 if test -n "$OTOOL"; then
adam@0 7516 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5
adam@0 7517 $as_echo "$OTOOL" >&6; }
adam@0 7518 else
adam@0 7519 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 7520 $as_echo "no" >&6; }
adam@0 7521 fi
adam@0 7522
adam@0 7523
adam@0 7524 fi
adam@0 7525 if test -z "$ac_cv_prog_OTOOL"; then
adam@0 7526 ac_ct_OTOOL=$OTOOL
adam@0 7527 # Extract the first word of "otool", so it can be a program name with args.
adam@0 7528 set dummy otool; ac_word=$2
adam@0 7529 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 7530 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7531 if ${ac_cv_prog_ac_ct_OTOOL+:} false; then :
adam@0 7532 $as_echo_n "(cached) " >&6
adam@0 7533 else
adam@0 7534 if test -n "$ac_ct_OTOOL"; then
adam@0 7535 ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test.
adam@0 7536 else
adam@0 7537 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 7538 for as_dir in $PATH
adam@0 7539 do
adam@0 7540 IFS=$as_save_IFS
adam@0 7541 test -z "$as_dir" && as_dir=.
adam@0 7542 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7543 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 7544 ac_cv_prog_ac_ct_OTOOL="otool"
adam@0 7545 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 7546 break 2
adam@0 7547 fi
adam@0 7548 done
adam@0 7549 done
adam@0 7550 IFS=$as_save_IFS
adam@0 7551
adam@0 7552 fi
adam@0 7553 fi
adam@0 7554 ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL
adam@0 7555 if test -n "$ac_ct_OTOOL"; then
adam@0 7556 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5
adam@0 7557 $as_echo "$ac_ct_OTOOL" >&6; }
adam@0 7558 else
adam@0 7559 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 7560 $as_echo "no" >&6; }
adam@0 7561 fi
adam@0 7562
adam@0 7563 if test "x$ac_ct_OTOOL" = x; then
adam@0 7564 OTOOL=":"
adam@0 7565 else
adam@0 7566 case $cross_compiling:$ac_tool_warned in
adam@0 7567 yes:)
adam@0 7568 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 7569 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 7570 ac_tool_warned=yes ;;
adam@0 7571 esac
adam@0 7572 OTOOL=$ac_ct_OTOOL
adam@0 7573 fi
adam@0 7574 else
adam@0 7575 OTOOL="$ac_cv_prog_OTOOL"
adam@0 7576 fi
adam@0 7577
adam@0 7578 if test -n "$ac_tool_prefix"; then
adam@0 7579 # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args.
adam@0 7580 set dummy ${ac_tool_prefix}otool64; ac_word=$2
adam@0 7581 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 7582 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7583 if ${ac_cv_prog_OTOOL64+:} false; then :
adam@0 7584 $as_echo_n "(cached) " >&6
adam@0 7585 else
adam@0 7586 if test -n "$OTOOL64"; then
adam@0 7587 ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test.
adam@0 7588 else
adam@0 7589 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 7590 for as_dir in $PATH
adam@0 7591 do
adam@0 7592 IFS=$as_save_IFS
adam@0 7593 test -z "$as_dir" && as_dir=.
adam@0 7594 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7595 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 7596 ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64"
adam@0 7597 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 7598 break 2
adam@0 7599 fi
adam@0 7600 done
adam@0 7601 done
adam@0 7602 IFS=$as_save_IFS
adam@0 7603
adam@0 7604 fi
adam@0 7605 fi
adam@0 7606 OTOOL64=$ac_cv_prog_OTOOL64
adam@0 7607 if test -n "$OTOOL64"; then
adam@0 7608 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5
adam@0 7609 $as_echo "$OTOOL64" >&6; }
adam@0 7610 else
adam@0 7611 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 7612 $as_echo "no" >&6; }
adam@0 7613 fi
adam@0 7614
adam@0 7615
adam@0 7616 fi
adam@0 7617 if test -z "$ac_cv_prog_OTOOL64"; then
adam@0 7618 ac_ct_OTOOL64=$OTOOL64
adam@0 7619 # Extract the first word of "otool64", so it can be a program name with args.
adam@0 7620 set dummy otool64; ac_word=$2
adam@0 7621 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 7622 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 7623 if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then :
adam@0 7624 $as_echo_n "(cached) " >&6
adam@0 7625 else
adam@0 7626 if test -n "$ac_ct_OTOOL64"; then
adam@0 7627 ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test.
adam@0 7628 else
adam@0 7629 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 7630 for as_dir in $PATH
adam@0 7631 do
adam@0 7632 IFS=$as_save_IFS
adam@0 7633 test -z "$as_dir" && as_dir=.
adam@0 7634 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 7635 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 7636 ac_cv_prog_ac_ct_OTOOL64="otool64"
adam@0 7637 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 7638 break 2
adam@0 7639 fi
adam@0 7640 done
adam@0 7641 done
adam@0 7642 IFS=$as_save_IFS
adam@0 7643
adam@0 7644 fi
adam@0 7645 fi
adam@0 7646 ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64
adam@0 7647 if test -n "$ac_ct_OTOOL64"; then
adam@0 7648 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5
adam@0 7649 $as_echo "$ac_ct_OTOOL64" >&6; }
adam@0 7650 else
adam@0 7651 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 7652 $as_echo "no" >&6; }
adam@0 7653 fi
adam@0 7654
adam@0 7655 if test "x$ac_ct_OTOOL64" = x; then
adam@0 7656 OTOOL64=":"
adam@0 7657 else
adam@0 7658 case $cross_compiling:$ac_tool_warned in
adam@0 7659 yes:)
adam@0 7660 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
adam@0 7661 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
adam@0 7662 ac_tool_warned=yes ;;
adam@0 7663 esac
adam@0 7664 OTOOL64=$ac_ct_OTOOL64
adam@0 7665 fi
adam@0 7666 else
adam@0 7667 OTOOL64="$ac_cv_prog_OTOOL64"
adam@0 7668 fi
adam@0 7669
adam@0 7670
adam@0 7671
adam@0 7672
adam@0 7673
adam@0 7674
adam@0 7675
adam@0 7676
adam@0 7677
adam@0 7678
adam@0 7679
adam@0 7680
adam@0 7681
adam@0 7682
adam@0 7683
adam@0 7684
adam@0 7685
adam@0 7686
adam@0 7687
adam@0 7688
adam@0 7689
adam@0 7690
adam@0 7691
adam@0 7692
adam@0 7693
adam@0 7694
adam@0 7695
adam@0 7696 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5
adam@0 7697 $as_echo_n "checking for -single_module linker flag... " >&6; }
adam@12 7698 if ${lt_cv_apple_cc_single_mod+:} false; then :
adam@0 7699 $as_echo_n "(cached) " >&6
adam@0 7700 else
adam@0 7701 lt_cv_apple_cc_single_mod=no
adam@0 7702 if test -z "${LT_MULTI_MODULE}"; then
adam@0 7703 # By default we will add the -single_module flag. You can override
adam@0 7704 # by either setting the environment variable LT_MULTI_MODULE
adam@0 7705 # non-empty at configure time, or by adding -multi_module to the
adam@0 7706 # link flags.
adam@0 7707 rm -rf libconftest.dylib*
adam@0 7708 echo "int foo(void){return 1;}" > conftest.c
adam@0 7709 echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
adam@0 7710 -dynamiclib -Wl,-single_module conftest.c" >&5
adam@0 7711 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
adam@0 7712 -dynamiclib -Wl,-single_module conftest.c 2>conftest.err
adam@0 7713 _lt_result=$?
adam@20 7714 # If there is a non-empty error log, and "single_module"
adam@20 7715 # appears in it, assume the flag caused a linker warning
adam@20 7716 if test -s conftest.err && $GREP single_module conftest.err; then
adam@20 7717 cat conftest.err >&5
adam@20 7718 # Otherwise, if the output was created with a 0 exit code from
adam@20 7719 # the compiler, it worked.
adam@20 7720 elif test -f libconftest.dylib && test $_lt_result -eq 0; then
adam@0 7721 lt_cv_apple_cc_single_mod=yes
adam@0 7722 else
adam@0 7723 cat conftest.err >&5
adam@0 7724 fi
adam@0 7725 rm -rf libconftest.dylib*
adam@0 7726 rm -f conftest.*
adam@0 7727 fi
adam@0 7728 fi
adam@0 7729 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5
adam@0 7730 $as_echo "$lt_cv_apple_cc_single_mod" >&6; }
adam@20 7731
adam@0 7732 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5
adam@0 7733 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; }
adam@12 7734 if ${lt_cv_ld_exported_symbols_list+:} false; then :
adam@0 7735 $as_echo_n "(cached) " >&6
adam@0 7736 else
adam@0 7737 lt_cv_ld_exported_symbols_list=no
adam@0 7738 save_LDFLAGS=$LDFLAGS
adam@0 7739 echo "_main" > conftest.sym
adam@0 7740 LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
adam@0 7741 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 7742 /* end confdefs.h. */
adam@0 7743
adam@0 7744 int
adam@0 7745 main ()
adam@0 7746 {
adam@0 7747
adam@0 7748 ;
adam@0 7749 return 0;
adam@0 7750 }
adam@0 7751 _ACEOF
adam@0 7752 if ac_fn_c_try_link "$LINENO"; then :
adam@0 7753 lt_cv_ld_exported_symbols_list=yes
adam@0 7754 else
adam@0 7755 lt_cv_ld_exported_symbols_list=no
adam@0 7756 fi
adam@0 7757 rm -f core conftest.err conftest.$ac_objext \
adam@0 7758 conftest$ac_exeext conftest.$ac_ext
adam@0 7759 LDFLAGS="$save_LDFLAGS"
adam@0 7760
adam@0 7761 fi
adam@0 7762 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5
adam@0 7763 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; }
adam@20 7764
adam@12 7765 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5
adam@12 7766 $as_echo_n "checking for -force_load linker flag... " >&6; }
adam@12 7767 if ${lt_cv_ld_force_load+:} false; then :
adam@12 7768 $as_echo_n "(cached) " >&6
adam@12 7769 else
adam@12 7770 lt_cv_ld_force_load=no
adam@12 7771 cat > conftest.c << _LT_EOF
adam@12 7772 int forced_loaded() { return 2;}
adam@12 7773 _LT_EOF
adam@12 7774 echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5
adam@12 7775 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5
adam@12 7776 echo "$AR cru libconftest.a conftest.o" >&5
adam@12 7777 $AR cru libconftest.a conftest.o 2>&5
adam@12 7778 echo "$RANLIB libconftest.a" >&5
adam@12 7779 $RANLIB libconftest.a 2>&5
adam@12 7780 cat > conftest.c << _LT_EOF
adam@12 7781 int main() { return 0;}
adam@12 7782 _LT_EOF
adam@12 7783 echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5
adam@12 7784 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err
adam@12 7785 _lt_result=$?
adam@20 7786 if test -s conftest.err && $GREP force_load conftest.err; then
adam@20 7787 cat conftest.err >&5
adam@20 7788 elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then
adam@12 7789 lt_cv_ld_force_load=yes
adam@12 7790 else
adam@12 7791 cat conftest.err >&5
adam@12 7792 fi
adam@12 7793 rm -f conftest.err libconftest.a conftest conftest.c
adam@12 7794 rm -rf conftest.dSYM
adam@12 7795
adam@12 7796 fi
adam@12 7797 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5
adam@12 7798 $as_echo "$lt_cv_ld_force_load" >&6; }
adam@0 7799 case $host_os in
adam@0 7800 rhapsody* | darwin1.[012])
adam@0 7801 _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
adam@0 7802 darwin1.*)
adam@0 7803 _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
adam@0 7804 darwin*) # darwin 5.x on
adam@0 7805 # if running on 10.5 or later, the deployment target defaults
adam@0 7806 # to the OS version, if on x86, and 10.4, the deployment
adam@0 7807 # target defaults to 10.4. Don't you love it?
adam@0 7808 case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
adam@0 7809 10.0,*86*-darwin8*|10.0,*-darwin[91]*)
adam@0 7810 _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
adam@0 7811 10.[012]*)
adam@0 7812 _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
adam@0 7813 10.*)
adam@0 7814 _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
adam@0 7815 esac
adam@0 7816 ;;
adam@0 7817 esac
adam@0 7818 if test "$lt_cv_apple_cc_single_mod" = "yes"; then
adam@0 7819 _lt_dar_single_mod='$single_module'
adam@0 7820 fi
adam@0 7821 if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
adam@0 7822 _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
adam@0 7823 else
adam@0 7824 _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'
adam@0 7825 fi
adam@12 7826 if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then
adam@0 7827 _lt_dsymutil='~$DSYMUTIL $lib || :'
adam@0 7828 else
adam@0 7829 _lt_dsymutil=
adam@0 7830 fi
adam@0 7831 ;;
adam@0 7832 esac
adam@0 7833
adam@0 7834 for ac_header in dlfcn.h
adam@0 7835 do :
adam@0 7836 ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default
adam@0 7837 "
adam@12 7838 if test "x$ac_cv_header_dlfcn_h" = xyes; then :
adam@0 7839 cat >>confdefs.h <<_ACEOF
adam@0 7840 #define HAVE_DLFCN_H 1
adam@0 7841 _ACEOF
adam@0 7842
adam@0 7843 fi
adam@0 7844
adam@0 7845 done
adam@0 7846
adam@0 7847
adam@0 7848
adam@12 7849
adam@12 7850
adam@0 7851 # Set options
adam@0 7852
adam@0 7853
adam@0 7854
adam@0 7855 enable_dlopen=no
adam@0 7856
adam@0 7857
adam@0 7858 enable_win32_dll=no
adam@0 7859
adam@0 7860
adam@0 7861 # Check whether --enable-shared was given.
adam@0 7862 if test "${enable_shared+set}" = set; then :
adam@0 7863 enableval=$enable_shared; p=${PACKAGE-default}
adam@0 7864 case $enableval in
adam@0 7865 yes) enable_shared=yes ;;
adam@0 7866 no) enable_shared=no ;;
adam@0 7867 *)
adam@0 7868 enable_shared=no
adam@0 7869 # Look at the argument we got. We use all the common list separators.
adam@0 7870 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
adam@0 7871 for pkg in $enableval; do
adam@0 7872 IFS="$lt_save_ifs"
adam@0 7873 if test "X$pkg" = "X$p"; then
adam@0 7874 enable_shared=yes
adam@0 7875 fi
adam@0 7876 done
adam@0 7877 IFS="$lt_save_ifs"
adam@0 7878 ;;
adam@0 7879 esac
adam@0 7880 else
adam@0 7881 enable_shared=yes
adam@0 7882 fi
adam@0 7883
adam@0 7884
adam@0 7885
adam@0 7886
adam@0 7887
adam@0 7888
adam@0 7889
adam@0 7890
adam@0 7891
adam@0 7892 # Check whether --enable-static was given.
adam@0 7893 if test "${enable_static+set}" = set; then :
adam@0 7894 enableval=$enable_static; p=${PACKAGE-default}
adam@0 7895 case $enableval in
adam@0 7896 yes) enable_static=yes ;;
adam@0 7897 no) enable_static=no ;;
adam@0 7898 *)
adam@0 7899 enable_static=no
adam@0 7900 # Look at the argument we got. We use all the common list separators.
adam@0 7901 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
adam@0 7902 for pkg in $enableval; do
adam@0 7903 IFS="$lt_save_ifs"
adam@0 7904 if test "X$pkg" = "X$p"; then
adam@0 7905 enable_static=yes
adam@0 7906 fi
adam@0 7907 done
adam@0 7908 IFS="$lt_save_ifs"
adam@0 7909 ;;
adam@0 7910 esac
adam@0 7911 else
adam@0 7912 enable_static=yes
adam@0 7913 fi
adam@0 7914
adam@0 7915
adam@0 7916
adam@0 7917
adam@0 7918
adam@0 7919
adam@0 7920
adam@0 7921
adam@0 7922
adam@0 7923
adam@0 7924 # Check whether --with-pic was given.
adam@0 7925 if test "${with_pic+set}" = set; then :
adam@20 7926 withval=$with_pic; lt_p=${PACKAGE-default}
adam@20 7927 case $withval in
adam@20 7928 yes|no) pic_mode=$withval ;;
adam@20 7929 *)
adam@20 7930 pic_mode=default
adam@20 7931 # Look at the argument we got. We use all the common list separators.
adam@20 7932 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
adam@20 7933 for lt_pkg in $withval; do
adam@20 7934 IFS="$lt_save_ifs"
adam@20 7935 if test "X$lt_pkg" = "X$lt_p"; then
adam@20 7936 pic_mode=yes
adam@20 7937 fi
adam@20 7938 done
adam@20 7939 IFS="$lt_save_ifs"
adam@20 7940 ;;
adam@20 7941 esac
adam@0 7942 else
adam@0 7943 pic_mode=default
adam@0 7944 fi
adam@0 7945
adam@0 7946
adam@0 7947 test -z "$pic_mode" && pic_mode=default
adam@0 7948
adam@0 7949
adam@0 7950
adam@0 7951
adam@0 7952
adam@0 7953
adam@0 7954
adam@0 7955 # Check whether --enable-fast-install was given.
adam@0 7956 if test "${enable_fast_install+set}" = set; then :
adam@0 7957 enableval=$enable_fast_install; p=${PACKAGE-default}
adam@0 7958 case $enableval in
adam@0 7959 yes) enable_fast_install=yes ;;
adam@0 7960 no) enable_fast_install=no ;;
adam@0 7961 *)
adam@0 7962 enable_fast_install=no
adam@0 7963 # Look at the argument we got. We use all the common list separators.
adam@0 7964 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
adam@0 7965 for pkg in $enableval; do
adam@0 7966 IFS="$lt_save_ifs"
adam@0 7967 if test "X$pkg" = "X$p"; then
adam@0 7968 enable_fast_install=yes
adam@0 7969 fi
adam@0 7970 done
adam@0 7971 IFS="$lt_save_ifs"
adam@0 7972 ;;
adam@0 7973 esac
adam@0 7974 else
adam@0 7975 enable_fast_install=yes
adam@0 7976 fi
adam@0 7977
adam@0 7978
adam@0 7979
adam@0 7980
adam@0 7981
adam@0 7982
adam@0 7983
adam@0 7984
adam@0 7985
adam@0 7986
adam@0 7987
adam@0 7988 # This can be used to rebuild libtool when needed
adam@0 7989 LIBTOOL_DEPS="$ltmain"
adam@0 7990
adam@0 7991 # Always use our own libtool.
adam@0 7992 LIBTOOL='$(SHELL) $(top_builddir)/libtool'
adam@0 7993
adam@0 7994
adam@0 7995
adam@0 7996
adam@0 7997
adam@0 7998
adam@0 7999
adam@0 8000
adam@0 8001
adam@0 8002
adam@0 8003
adam@0 8004
adam@0 8005
adam@0 8006
adam@0 8007
adam@0 8008
adam@0 8009
adam@0 8010
adam@0 8011
adam@0 8012
adam@0 8013
adam@0 8014
adam@0 8015
adam@0 8016
adam@0 8017
adam@12 8018
adam@20 8019
adam@20 8020
adam@20 8021
adam@20 8022
adam@0 8023 test -z "$LN_S" && LN_S="ln -s"
adam@0 8024
adam@0 8025
adam@0 8026
adam@0 8027
adam@0 8028
adam@0 8029
adam@0 8030
adam@0 8031
adam@0 8032
adam@0 8033
adam@0 8034
adam@0 8035
adam@0 8036
adam@0 8037
adam@0 8038 if test -n "${ZSH_VERSION+set}" ; then
adam@0 8039 setopt NO_GLOB_SUBST
adam@0 8040 fi
adam@0 8041
adam@0 8042 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5
adam@0 8043 $as_echo_n "checking for objdir... " >&6; }
adam@12 8044 if ${lt_cv_objdir+:} false; then :
adam@0 8045 $as_echo_n "(cached) " >&6
adam@0 8046 else
adam@0 8047 rm -f .libs 2>/dev/null
adam@0 8048 mkdir .libs 2>/dev/null
adam@0 8049 if test -d .libs; then
adam@0 8050 lt_cv_objdir=.libs
adam@0 8051 else
adam@0 8052 # MS-DOS does not allow filenames that begin with a dot.
adam@0 8053 lt_cv_objdir=_libs
adam@0 8054 fi
adam@0 8055 rmdir .libs 2>/dev/null
adam@0 8056 fi
adam@0 8057 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5
adam@0 8058 $as_echo "$lt_cv_objdir" >&6; }
adam@0 8059 objdir=$lt_cv_objdir
adam@0 8060
adam@0 8061
adam@0 8062
adam@0 8063
adam@0 8064
adam@0 8065 cat >>confdefs.h <<_ACEOF
adam@0 8066 #define LT_OBJDIR "$lt_cv_objdir/"
adam@0 8067 _ACEOF
adam@0 8068
adam@0 8069
adam@0 8070
adam@0 8071
adam@0 8072 case $host_os in
adam@0 8073 aix3*)
adam@0 8074 # AIX sometimes has problems with the GCC collect2 program. For some
adam@0 8075 # reason, if we set the COLLECT_NAMES environment variable, the problems
adam@0 8076 # vanish in a puff of smoke.
adam@0 8077 if test "X${COLLECT_NAMES+set}" != Xset; then
adam@0 8078 COLLECT_NAMES=
adam@0 8079 export COLLECT_NAMES
adam@0 8080 fi
adam@0 8081 ;;
adam@0 8082 esac
adam@0 8083
adam@0 8084 # Global variables:
adam@0 8085 ofile=libtool
adam@0 8086 can_build_shared=yes
adam@0 8087
adam@0 8088 # All known linkers require a `.a' archive for static linking (except MSVC,
adam@0 8089 # which needs '.lib').
adam@0 8090 libext=a
adam@0 8091
adam@0 8092 with_gnu_ld="$lt_cv_prog_gnu_ld"
adam@0 8093
adam@0 8094 old_CC="$CC"
adam@0 8095 old_CFLAGS="$CFLAGS"
adam@0 8096
adam@0 8097 # Set sane defaults for various variables
adam@0 8098 test -z "$CC" && CC=cc
adam@0 8099 test -z "$LTCC" && LTCC=$CC
adam@0 8100 test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
adam@0 8101 test -z "$LD" && LD=ld
adam@0 8102 test -z "$ac_objext" && ac_objext=o
adam@0 8103
adam@0 8104 for cc_temp in $compiler""; do
adam@0 8105 case $cc_temp in
adam@0 8106 compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
adam@0 8107 distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
adam@0 8108 \-*) ;;
adam@0 8109 *) break;;
adam@0 8110 esac
adam@0 8111 done
adam@12 8112 cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
adam@0 8113
adam@0 8114
adam@0 8115 # Only perform the check for file, if the check method requires it
adam@0 8116 test -z "$MAGIC_CMD" && MAGIC_CMD=file
adam@0 8117 case $deplibs_check_method in
adam@0 8118 file_magic*)
adam@0 8119 if test "$file_magic_cmd" = '$MAGIC_CMD'; then
adam@0 8120 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5
adam@0 8121 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; }
adam@12 8122 if ${lt_cv_path_MAGIC_CMD+:} false; then :
adam@0 8123 $as_echo_n "(cached) " >&6
adam@0 8124 else
adam@0 8125 case $MAGIC_CMD in
adam@0 8126 [\\/*] | ?:[\\/]*)
adam@0 8127 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
adam@0 8128 ;;
adam@0 8129 *)
adam@0 8130 lt_save_MAGIC_CMD="$MAGIC_CMD"
adam@0 8131 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
adam@0 8132 ac_dummy="/usr/bin$PATH_SEPARATOR$PATH"
adam@0 8133 for ac_dir in $ac_dummy; do
adam@0 8134 IFS="$lt_save_ifs"
adam@0 8135 test -z "$ac_dir" && ac_dir=.
adam@0 8136 if test -f $ac_dir/${ac_tool_prefix}file; then
adam@0 8137 lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file"
adam@0 8138 if test -n "$file_magic_test_file"; then
adam@0 8139 case $deplibs_check_method in
adam@0 8140 "file_magic "*)
adam@0 8141 file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
adam@0 8142 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
adam@0 8143 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
adam@0 8144 $EGREP "$file_magic_regex" > /dev/null; then
adam@0 8145 :
adam@0 8146 else
adam@0 8147 cat <<_LT_EOF 1>&2
adam@0 8148
adam@0 8149 *** Warning: the command libtool uses to detect shared libraries,
adam@0 8150 *** $file_magic_cmd, produces output that libtool cannot recognize.
adam@0 8151 *** The result is that libtool may fail to recognize shared libraries
adam@0 8152 *** as such. This will affect the creation of libtool libraries that
adam@0 8153 *** depend on shared libraries, but programs linked with such libtool
adam@0 8154 *** libraries will work regardless of this problem. Nevertheless, you
adam@0 8155 *** may want to report the problem to your system manager and/or to
adam@0 8156 *** bug-libtool@gnu.org
adam@0 8157
adam@0 8158 _LT_EOF
adam@0 8159 fi ;;
adam@0 8160 esac
adam@0 8161 fi
adam@0 8162 break
adam@0 8163 fi
adam@0 8164 done
adam@0 8165 IFS="$lt_save_ifs"
adam@0 8166 MAGIC_CMD="$lt_save_MAGIC_CMD"
adam@0 8167 ;;
adam@0 8168 esac
adam@0 8169 fi
adam@0 8170
adam@0 8171 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
adam@0 8172 if test -n "$MAGIC_CMD"; then
adam@0 8173 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5
adam@0 8174 $as_echo "$MAGIC_CMD" >&6; }
adam@0 8175 else
adam@0 8176 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 8177 $as_echo "no" >&6; }
adam@0 8178 fi
adam@0 8179
adam@0 8180
adam@0 8181
adam@0 8182
adam@0 8183
adam@0 8184 if test -z "$lt_cv_path_MAGIC_CMD"; then
adam@0 8185 if test -n "$ac_tool_prefix"; then
adam@0 8186 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5
adam@0 8187 $as_echo_n "checking for file... " >&6; }
adam@12 8188 if ${lt_cv_path_MAGIC_CMD+:} false; then :
adam@0 8189 $as_echo_n "(cached) " >&6
adam@0 8190 else
adam@0 8191 case $MAGIC_CMD in
adam@0 8192 [\\/*] | ?:[\\/]*)
adam@0 8193 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
adam@0 8194 ;;
adam@0 8195 *)
adam@0 8196 lt_save_MAGIC_CMD="$MAGIC_CMD"
adam@0 8197 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
adam@0 8198 ac_dummy="/usr/bin$PATH_SEPARATOR$PATH"
adam@0 8199 for ac_dir in $ac_dummy; do
adam@0 8200 IFS="$lt_save_ifs"
adam@0 8201 test -z "$ac_dir" && ac_dir=.
adam@0 8202 if test -f $ac_dir/file; then
adam@0 8203 lt_cv_path_MAGIC_CMD="$ac_dir/file"
adam@0 8204 if test -n "$file_magic_test_file"; then
adam@0 8205 case $deplibs_check_method in
adam@0 8206 "file_magic "*)
adam@0 8207 file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
adam@0 8208 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
adam@0 8209 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
adam@0 8210 $EGREP "$file_magic_regex" > /dev/null; then
adam@0 8211 :
adam@0 8212 else
adam@0 8213 cat <<_LT_EOF 1>&2
adam@0 8214
adam@0 8215 *** Warning: the command libtool uses to detect shared libraries,
adam@0 8216 *** $file_magic_cmd, produces output that libtool cannot recognize.
adam@0 8217 *** The result is that libtool may fail to recognize shared libraries
adam@0 8218 *** as such. This will affect the creation of libtool libraries that
adam@0 8219 *** depend on shared libraries, but programs linked with such libtool
adam@0 8220 *** libraries will work regardless of this problem. Nevertheless, you
adam@0 8221 *** may want to report the problem to your system manager and/or to
adam@0 8222 *** bug-libtool@gnu.org
adam@0 8223
adam@0 8224 _LT_EOF
adam@0 8225 fi ;;
adam@0 8226 esac
adam@0 8227 fi
adam@0 8228 break
adam@0 8229 fi
adam@0 8230 done
adam@0 8231 IFS="$lt_save_ifs"
adam@0 8232 MAGIC_CMD="$lt_save_MAGIC_CMD"
adam@0 8233 ;;
adam@0 8234 esac
adam@0 8235 fi
adam@0 8236
adam@0 8237 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
adam@0 8238 if test -n "$MAGIC_CMD"; then
adam@0 8239 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5
adam@0 8240 $as_echo "$MAGIC_CMD" >&6; }
adam@0 8241 else
adam@0 8242 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 8243 $as_echo "no" >&6; }
adam@0 8244 fi
adam@0 8245
adam@0 8246
adam@0 8247 else
adam@0 8248 MAGIC_CMD=:
adam@0 8249 fi
adam@0 8250 fi
adam@0 8251
adam@0 8252 fi
adam@0 8253 ;;
adam@0 8254 esac
adam@0 8255
adam@0 8256 # Use C for the default configuration in the libtool script
adam@0 8257
adam@0 8258 lt_save_CC="$CC"
adam@0 8259 ac_ext=c
adam@0 8260 ac_cpp='$CPP $CPPFLAGS'
adam@0 8261 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
adam@0 8262 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
adam@0 8263 ac_compiler_gnu=$ac_cv_c_compiler_gnu
adam@0 8264
adam@0 8265
adam@0 8266 # Source file extension for C test sources.
adam@0 8267 ac_ext=c
adam@0 8268
adam@0 8269 # Object file extension for compiled C test sources.
adam@0 8270 objext=o
adam@0 8271 objext=$objext
adam@0 8272
adam@0 8273 # Code to be used in simple compile tests
adam@0 8274 lt_simple_compile_test_code="int some_variable = 0;"
adam@0 8275
adam@0 8276 # Code to be used in simple link tests
adam@0 8277 lt_simple_link_test_code='int main(){return(0);}'
adam@0 8278
adam@0 8279
adam@0 8280
adam@0 8281
adam@0 8282
adam@0 8283
adam@0 8284
adam@0 8285 # If no C compiler was specified, use CC.
adam@0 8286 LTCC=${LTCC-"$CC"}
adam@0 8287
adam@0 8288 # If no C compiler flags were specified, use CFLAGS.
adam@0 8289 LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
adam@0 8290
adam@0 8291 # Allow CC to be a program name with arguments.
adam@0 8292 compiler=$CC
adam@0 8293
adam@0 8294 # Save the default compiler, since it gets overwritten when the other
adam@0 8295 # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.
adam@0 8296 compiler_DEFAULT=$CC
adam@0 8297
adam@0 8298 # save warnings/boilerplate of simple test code
adam@0 8299 ac_outfile=conftest.$ac_objext
adam@0 8300 echo "$lt_simple_compile_test_code" >conftest.$ac_ext
adam@0 8301 eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
adam@0 8302 _lt_compiler_boilerplate=`cat conftest.err`
adam@0 8303 $RM conftest*
adam@0 8304
adam@0 8305 ac_outfile=conftest.$ac_objext
adam@0 8306 echo "$lt_simple_link_test_code" >conftest.$ac_ext
adam@0 8307 eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
adam@0 8308 _lt_linker_boilerplate=`cat conftest.err`
adam@0 8309 $RM -r conftest*
adam@0 8310
adam@0 8311
adam@0 8312 ## CAVEAT EMPTOR:
adam@0 8313 ## There is no encapsulation within the following macros, do not change
adam@0 8314 ## the running order or otherwise move them around unless you know exactly
adam@0 8315 ## what you are doing...
adam@0 8316 if test -n "$compiler"; then
adam@0 8317
adam@0 8318 lt_prog_compiler_no_builtin_flag=
adam@0 8319
adam@0 8320 if test "$GCC" = yes; then
adam@12 8321 case $cc_basename in
adam@12 8322 nvcc*)
adam@12 8323 lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;;
adam@12 8324 *)
adam@12 8325 lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;;
adam@12 8326 esac
adam@0 8327
adam@0 8328 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
adam@0 8329 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; }
adam@12 8330 if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then :
adam@0 8331 $as_echo_n "(cached) " >&6
adam@0 8332 else
adam@0 8333 lt_cv_prog_compiler_rtti_exceptions=no
adam@0 8334 ac_outfile=conftest.$ac_objext
adam@0 8335 echo "$lt_simple_compile_test_code" > conftest.$ac_ext
adam@0 8336 lt_compiler_flag="-fno-rtti -fno-exceptions"
adam@0 8337 # Insert the option either (1) after the last *FLAGS variable, or
adam@0 8338 # (2) before a word containing "conftest.", or (3) at the end.
adam@0 8339 # Note that $ac_compile itself does not contain backslashes and begins
adam@0 8340 # with a dollar sign (not a hyphen), so the echo should work correctly.
adam@0 8341 # The option is referenced via a variable to avoid confusing sed.
adam@0 8342 lt_compile=`echo "$ac_compile" | $SED \
adam@0 8343 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
adam@0 8344 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
adam@0 8345 -e 's:$: $lt_compiler_flag:'`
adam@12 8346 (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5)
adam@0 8347 (eval "$lt_compile" 2>conftest.err)
adam@0 8348 ac_status=$?
adam@0 8349 cat conftest.err >&5
adam@12 8350 echo "$as_me:$LINENO: \$? = $ac_status" >&5
adam@0 8351 if (exit $ac_status) && test -s "$ac_outfile"; then
adam@0 8352 # The compiler can only warn and ignore the option if not recognized
adam@0 8353 # So say no if there are warnings other than the usual output.
adam@12 8354 $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
adam@0 8355 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
adam@0 8356 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
adam@0 8357 lt_cv_prog_compiler_rtti_exceptions=yes
adam@0 8358 fi
adam@0 8359 fi
adam@0 8360 $RM conftest*
adam@0 8361
adam@0 8362 fi
adam@0 8363 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5
adam@0 8364 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; }
adam@0 8365
adam@0 8366 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then
adam@0 8367 lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions"
adam@0 8368 else
adam@0 8369 :
adam@0 8370 fi
adam@0 8371
adam@0 8372 fi
adam@0 8373
adam@0 8374
adam@0 8375
adam@0 8376
adam@0 8377
adam@0 8378
adam@0 8379 lt_prog_compiler_wl=
adam@0 8380 lt_prog_compiler_pic=
adam@0 8381 lt_prog_compiler_static=
adam@0 8382
adam@0 8383
adam@0 8384 if test "$GCC" = yes; then
adam@0 8385 lt_prog_compiler_wl='-Wl,'
adam@0 8386 lt_prog_compiler_static='-static'
adam@0 8387
adam@0 8388 case $host_os in
adam@0 8389 aix*)
adam@0 8390 # All AIX code is PIC.
adam@0 8391 if test "$host_cpu" = ia64; then
adam@0 8392 # AIX 5 now supports IA64 processor
adam@0 8393 lt_prog_compiler_static='-Bstatic'
adam@0 8394 fi
adam@0 8395 ;;
adam@0 8396
adam@0 8397 amigaos*)
adam@0 8398 case $host_cpu in
adam@0 8399 powerpc)
adam@0 8400 # see comment about AmigaOS4 .so support
adam@0 8401 lt_prog_compiler_pic='-fPIC'
adam@0 8402 ;;
adam@0 8403 m68k)
adam@0 8404 # FIXME: we need at least 68020 code to build shared libraries, but
adam@0 8405 # adding the `-m68020' flag to GCC prevents building anything better,
adam@0 8406 # like `-m68040'.
adam@0 8407 lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4'
adam@0 8408 ;;
adam@0 8409 esac
adam@0 8410 ;;
adam@0 8411
adam@0 8412 beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
adam@0 8413 # PIC is the default for these OSes.
adam@0 8414 ;;
adam@0 8415
adam@0 8416 mingw* | cygwin* | pw32* | os2* | cegcc*)
adam@0 8417 # This hack is so that the source file can tell whether it is being
adam@0 8418 # built for inclusion in a dll (and should export symbols for example).
adam@0 8419 # Although the cygwin gcc ignores -fPIC, still need this for old-style
adam@0 8420 # (--disable-auto-import) libraries
adam@0 8421 lt_prog_compiler_pic='-DDLL_EXPORT'
adam@0 8422 ;;
adam@0 8423
adam@0 8424 darwin* | rhapsody*)
adam@0 8425 # PIC is the default on this platform
adam@0 8426 # Common symbols not allowed in MH_DYLIB files
adam@0 8427 lt_prog_compiler_pic='-fno-common'
adam@0 8428 ;;
adam@0 8429
adam@12 8430 haiku*)
adam@12 8431 # PIC is the default for Haiku.
adam@12 8432 # The "-static" flag exists, but is broken.
adam@12 8433 lt_prog_compiler_static=
adam@12 8434 ;;
adam@12 8435
adam@0 8436 hpux*)
adam@0 8437 # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
adam@0 8438 # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag
adam@0 8439 # sets the default TLS model and affects inlining.
adam@0 8440 case $host_cpu in
adam@0 8441 hppa*64*)
adam@0 8442 # +Z the default
adam@0 8443 ;;
adam@0 8444 *)
adam@0 8445 lt_prog_compiler_pic='-fPIC'
adam@0 8446 ;;
adam@0 8447 esac
adam@0 8448 ;;
adam@0 8449
adam@0 8450 interix[3-9]*)
adam@0 8451 # Interix 3.x gcc -fpic/-fPIC options generate broken code.
adam@0 8452 # Instead, we relocate shared libraries at runtime.
adam@0 8453 ;;
adam@0 8454
adam@0 8455 msdosdjgpp*)
adam@0 8456 # Just because we use GCC doesn't mean we suddenly get shared libraries
adam@0 8457 # on systems that don't support them.
adam@0 8458 lt_prog_compiler_can_build_shared=no
adam@0 8459 enable_shared=no
adam@0 8460 ;;
adam@0 8461
adam@0 8462 *nto* | *qnx*)
adam@0 8463 # QNX uses GNU C++, but need to define -shared option too, otherwise
adam@0 8464 # it will coredump.
adam@0 8465 lt_prog_compiler_pic='-fPIC -shared'
adam@0 8466 ;;
adam@0 8467
adam@0 8468 sysv4*MP*)
adam@0 8469 if test -d /usr/nec; then
adam@0 8470 lt_prog_compiler_pic=-Kconform_pic
adam@0 8471 fi
adam@0 8472 ;;
adam@0 8473
adam@0 8474 *)
adam@0 8475 lt_prog_compiler_pic='-fPIC'
adam@0 8476 ;;
adam@0 8477 esac
adam@12 8478
adam@12 8479 case $cc_basename in
adam@12 8480 nvcc*) # Cuda Compiler Driver 2.2
adam@12 8481 lt_prog_compiler_wl='-Xlinker '
adam@20 8482 if test -n "$lt_prog_compiler_pic"; then
adam@20 8483 lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic"
adam@20 8484 fi
adam@12 8485 ;;
adam@12 8486 esac
adam@0 8487 else
adam@0 8488 # PORTME Check for flag to pass linker flags through the system compiler.
adam@0 8489 case $host_os in
adam@0 8490 aix*)
adam@0 8491 lt_prog_compiler_wl='-Wl,'
adam@0 8492 if test "$host_cpu" = ia64; then
adam@0 8493 # AIX 5 now supports IA64 processor
adam@0 8494 lt_prog_compiler_static='-Bstatic'
adam@0 8495 else
adam@0 8496 lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp'
adam@0 8497 fi
adam@0 8498 ;;
adam@0 8499
adam@0 8500 mingw* | cygwin* | pw32* | os2* | cegcc*)
adam@0 8501 # This hack is so that the source file can tell whether it is being
adam@0 8502 # built for inclusion in a dll (and should export symbols for example).
adam@0 8503 lt_prog_compiler_pic='-DDLL_EXPORT'
adam@0 8504 ;;
adam@0 8505
adam@0 8506 hpux9* | hpux10* | hpux11*)
adam@0 8507 lt_prog_compiler_wl='-Wl,'
adam@0 8508 # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
adam@0 8509 # not for PA HP-UX.
adam@0 8510 case $host_cpu in
adam@0 8511 hppa*64*|ia64*)
adam@0 8512 # +Z the default
adam@0 8513 ;;
adam@0 8514 *)
adam@0 8515 lt_prog_compiler_pic='+Z'
adam@0 8516 ;;
adam@0 8517 esac
adam@0 8518 # Is there a better lt_prog_compiler_static that works with the bundled CC?
adam@0 8519 lt_prog_compiler_static='${wl}-a ${wl}archive'
adam@0 8520 ;;
adam@0 8521
adam@0 8522 irix5* | irix6* | nonstopux*)
adam@0 8523 lt_prog_compiler_wl='-Wl,'
adam@0 8524 # PIC (with -KPIC) is the default.
adam@0 8525 lt_prog_compiler_static='-non_shared'
adam@0 8526 ;;
adam@0 8527
adam@0 8528 linux* | k*bsd*-gnu | kopensolaris*-gnu)
adam@0 8529 case $cc_basename in
adam@0 8530 # old Intel for x86_64 which still supported -KPIC.
adam@0 8531 ecc*)
adam@0 8532 lt_prog_compiler_wl='-Wl,'
adam@0 8533 lt_prog_compiler_pic='-KPIC'
adam@0 8534 lt_prog_compiler_static='-static'
adam@0 8535 ;;
adam@0 8536 # icc used to be incompatible with GCC.
adam@0 8537 # ICC 10 doesn't accept -KPIC any more.
adam@0 8538 icc* | ifort*)
adam@0 8539 lt_prog_compiler_wl='-Wl,'
adam@0 8540 lt_prog_compiler_pic='-fPIC'
adam@0 8541 lt_prog_compiler_static='-static'
adam@0 8542 ;;
adam@0 8543 # Lahey Fortran 8.1.
adam@0 8544 lf95*)
adam@0 8545 lt_prog_compiler_wl='-Wl,'
adam@0 8546 lt_prog_compiler_pic='--shared'
adam@0 8547 lt_prog_compiler_static='--static'
adam@0 8548 ;;
adam@12 8549 nagfor*)
adam@12 8550 # NAG Fortran compiler
adam@12 8551 lt_prog_compiler_wl='-Wl,-Wl,,'
adam@12 8552 lt_prog_compiler_pic='-PIC'
adam@12 8553 lt_prog_compiler_static='-Bstatic'
adam@12 8554 ;;
adam@12 8555 pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
adam@0 8556 # Portland Group compilers (*not* the Pentium gcc compiler,
adam@0 8557 # which looks to be a dead project)
adam@0 8558 lt_prog_compiler_wl='-Wl,'
adam@0 8559 lt_prog_compiler_pic='-fpic'
adam@0 8560 lt_prog_compiler_static='-Bstatic'
adam@0 8561 ;;
adam@0 8562 ccc*)
adam@0 8563 lt_prog_compiler_wl='-Wl,'
adam@0 8564 # All Alpha code is PIC.
adam@0 8565 lt_prog_compiler_static='-non_shared'
adam@0 8566 ;;
adam@12 8567 xl* | bgxl* | bgf* | mpixl*)
adam@12 8568 # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene
adam@0 8569 lt_prog_compiler_wl='-Wl,'
adam@0 8570 lt_prog_compiler_pic='-qpic'
adam@0 8571 lt_prog_compiler_static='-qstaticlink'
adam@0 8572 ;;
adam@0 8573 *)
adam@0 8574 case `$CC -V 2>&1 | sed 5q` in
adam@20 8575 *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*)
adam@12 8576 # Sun Fortran 8.3 passes all unrecognized flags to the linker
adam@12 8577 lt_prog_compiler_pic='-KPIC'
adam@12 8578 lt_prog_compiler_static='-Bstatic'
adam@12 8579 lt_prog_compiler_wl=''
adam@12 8580 ;;
adam@20 8581 *Sun\ F* | *Sun*Fortran*)
adam@20 8582 lt_prog_compiler_pic='-KPIC'
adam@20 8583 lt_prog_compiler_static='-Bstatic'
adam@20 8584 lt_prog_compiler_wl='-Qoption ld '
adam@20 8585 ;;
adam@0 8586 *Sun\ C*)
adam@0 8587 # Sun C 5.9
adam@0 8588 lt_prog_compiler_pic='-KPIC'
adam@0 8589 lt_prog_compiler_static='-Bstatic'
adam@0 8590 lt_prog_compiler_wl='-Wl,'
adam@0 8591 ;;
adam@20 8592 *Intel*\ [CF]*Compiler*)
adam@20 8593 lt_prog_compiler_wl='-Wl,'
adam@20 8594 lt_prog_compiler_pic='-fPIC'
adam@20 8595 lt_prog_compiler_static='-static'
adam@20 8596 ;;
adam@20 8597 *Portland\ Group*)
adam@20 8598 lt_prog_compiler_wl='-Wl,'
adam@20 8599 lt_prog_compiler_pic='-fpic'
adam@20 8600 lt_prog_compiler_static='-Bstatic'
adam@20 8601 ;;
adam@0 8602 esac
adam@0 8603 ;;
adam@0 8604 esac
adam@0 8605 ;;
adam@0 8606
adam@0 8607 newsos6)
adam@0 8608 lt_prog_compiler_pic='-KPIC'
adam@0 8609 lt_prog_compiler_static='-Bstatic'
adam@0 8610 ;;
adam@0 8611
adam@0 8612 *nto* | *qnx*)
adam@0 8613 # QNX uses GNU C++, but need to define -shared option too, otherwise
adam@0 8614 # it will coredump.
adam@0 8615 lt_prog_compiler_pic='-fPIC -shared'
adam@0 8616 ;;
adam@0 8617
adam@0 8618 osf3* | osf4* | osf5*)
adam@0 8619 lt_prog_compiler_wl='-Wl,'
adam@0 8620 # All OSF/1 code is PIC.
adam@0 8621 lt_prog_compiler_static='-non_shared'
adam@0 8622 ;;
adam@0 8623
adam@0 8624 rdos*)
adam@0 8625 lt_prog_compiler_static='-non_shared'
adam@0 8626 ;;
adam@0 8627
adam@0 8628 solaris*)
adam@0 8629 lt_prog_compiler_pic='-KPIC'
adam@0 8630 lt_prog_compiler_static='-Bstatic'
adam@0 8631 case $cc_basename in
adam@12 8632 f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)
adam@0 8633 lt_prog_compiler_wl='-Qoption ld ';;
adam@0 8634 *)
adam@0 8635 lt_prog_compiler_wl='-Wl,';;
adam@0 8636 esac
adam@0 8637 ;;
adam@0 8638
adam@0 8639 sunos4*)
adam@0 8640 lt_prog_compiler_wl='-Qoption ld '
adam@0 8641 lt_prog_compiler_pic='-PIC'
adam@0 8642 lt_prog_compiler_static='-Bstatic'
adam@0 8643 ;;
adam@0 8644
adam@0 8645 sysv4 | sysv4.2uw2* | sysv4.3*)
adam@0 8646 lt_prog_compiler_wl='-Wl,'
adam@0 8647 lt_prog_compiler_pic='-KPIC'
adam@0 8648 lt_prog_compiler_static='-Bstatic'
adam@0 8649 ;;
adam@0 8650
adam@0 8651 sysv4*MP*)
adam@0 8652 if test -d /usr/nec ;then
adam@0 8653 lt_prog_compiler_pic='-Kconform_pic'
adam@0 8654 lt_prog_compiler_static='-Bstatic'
adam@0 8655 fi
adam@0 8656 ;;
adam@0 8657
adam@0 8658 sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
adam@0 8659 lt_prog_compiler_wl='-Wl,'
adam@0 8660 lt_prog_compiler_pic='-KPIC'
adam@0 8661 lt_prog_compiler_static='-Bstatic'
adam@0 8662 ;;
adam@0 8663
adam@0 8664 unicos*)
adam@0 8665 lt_prog_compiler_wl='-Wl,'
adam@0 8666 lt_prog_compiler_can_build_shared=no
adam@0 8667 ;;
adam@0 8668
adam@0 8669 uts4*)
adam@0 8670 lt_prog_compiler_pic='-pic'
adam@0 8671 lt_prog_compiler_static='-Bstatic'
adam@0 8672 ;;
adam@0 8673
adam@0 8674 *)
adam@0 8675 lt_prog_compiler_can_build_shared=no
adam@0 8676 ;;
adam@0 8677 esac
adam@0 8678 fi
adam@0 8679
adam@0 8680 case $host_os in
adam@0 8681 # For platforms which do not support PIC, -DPIC is meaningless:
adam@0 8682 *djgpp*)
adam@0 8683 lt_prog_compiler_pic=
adam@0 8684 ;;
adam@0 8685 *)
adam@0 8686 lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC"
adam@0 8687 ;;
adam@0 8688 esac
adam@12 8689
adam@12 8690 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5
adam@12 8691 $as_echo_n "checking for $compiler option to produce PIC... " >&6; }
adam@12 8692 if ${lt_cv_prog_compiler_pic+:} false; then :
adam@12 8693 $as_echo_n "(cached) " >&6
adam@12 8694 else
adam@12 8695 lt_cv_prog_compiler_pic=$lt_prog_compiler_pic
adam@12 8696 fi
adam@12 8697 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5
adam@12 8698 $as_echo "$lt_cv_prog_compiler_pic" >&6; }
adam@12 8699 lt_prog_compiler_pic=$lt_cv_prog_compiler_pic
adam@0 8700
adam@0 8701 #
adam@0 8702 # Check to make sure the PIC flag actually works.
adam@0 8703 #
adam@0 8704 if test -n "$lt_prog_compiler_pic"; then
adam@0 8705 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
adam@0 8706 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; }
adam@12 8707 if ${lt_cv_prog_compiler_pic_works+:} false; then :
adam@0 8708 $as_echo_n "(cached) " >&6
adam@0 8709 else
adam@0 8710 lt_cv_prog_compiler_pic_works=no
adam@0 8711 ac_outfile=conftest.$ac_objext
adam@0 8712 echo "$lt_simple_compile_test_code" > conftest.$ac_ext
adam@0 8713 lt_compiler_flag="$lt_prog_compiler_pic -DPIC"
adam@0 8714 # Insert the option either (1) after the last *FLAGS variable, or
adam@0 8715 # (2) before a word containing "conftest.", or (3) at the end.
adam@0 8716 # Note that $ac_compile itself does not contain backslashes and begins
adam@0 8717 # with a dollar sign (not a hyphen), so the echo should work correctly.
adam@0 8718 # The option is referenced via a variable to avoid confusing sed.
adam@0 8719 lt_compile=`echo "$ac_compile" | $SED \
adam@0 8720 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
adam@0 8721 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
adam@0 8722 -e 's:$: $lt_compiler_flag:'`
adam@12 8723 (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5)
adam@0 8724 (eval "$lt_compile" 2>conftest.err)
adam@0 8725 ac_status=$?
adam@0 8726 cat conftest.err >&5
adam@12 8727 echo "$as_me:$LINENO: \$? = $ac_status" >&5
adam@0 8728 if (exit $ac_status) && test -s "$ac_outfile"; then
adam@0 8729 # The compiler can only warn and ignore the option if not recognized
adam@0 8730 # So say no if there are warnings other than the usual output.
adam@12 8731 $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
adam@0 8732 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
adam@0 8733 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
adam@0 8734 lt_cv_prog_compiler_pic_works=yes
adam@0 8735 fi
adam@0 8736 fi
adam@0 8737 $RM conftest*
adam@0 8738
adam@0 8739 fi
adam@0 8740 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5
adam@0 8741 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; }
adam@0 8742
adam@0 8743 if test x"$lt_cv_prog_compiler_pic_works" = xyes; then
adam@0 8744 case $lt_prog_compiler_pic in
adam@0 8745 "" | " "*) ;;
adam@0 8746 *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;;
adam@0 8747 esac
adam@0 8748 else
adam@0 8749 lt_prog_compiler_pic=
adam@0 8750 lt_prog_compiler_can_build_shared=no
adam@0 8751 fi
adam@0 8752
adam@0 8753 fi
adam@0 8754
adam@0 8755
adam@0 8756
adam@0 8757
adam@0 8758
adam@0 8759
adam@12 8760
adam@12 8761
adam@12 8762
adam@12 8763
adam@12 8764
adam@0 8765 #
adam@0 8766 # Check to make sure the static flag actually works.
adam@0 8767 #
adam@0 8768 wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
adam@0 8769 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
adam@0 8770 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
adam@12 8771 if ${lt_cv_prog_compiler_static_works+:} false; then :
adam@0 8772 $as_echo_n "(cached) " >&6
adam@0 8773 else
adam@0 8774 lt_cv_prog_compiler_static_works=no
adam@0 8775 save_LDFLAGS="$LDFLAGS"
adam@0 8776 LDFLAGS="$LDFLAGS $lt_tmp_static_flag"
adam@0 8777 echo "$lt_simple_link_test_code" > conftest.$ac_ext
adam@0 8778 if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
adam@0 8779 # The linker can only warn and ignore the option if not recognized
adam@0 8780 # So say no if there are warnings
adam@0 8781 if test -s conftest.err; then
adam@0 8782 # Append any errors to the config.log.
adam@0 8783 cat conftest.err 1>&5
adam@12 8784 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
adam@0 8785 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
adam@0 8786 if diff conftest.exp conftest.er2 >/dev/null; then
adam@0 8787 lt_cv_prog_compiler_static_works=yes
adam@0 8788 fi
adam@0 8789 else
adam@0 8790 lt_cv_prog_compiler_static_works=yes
adam@0 8791 fi
adam@0 8792 fi
adam@0 8793 $RM -r conftest*
adam@0 8794 LDFLAGS="$save_LDFLAGS"
adam@0 8795
adam@0 8796 fi
adam@0 8797 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5
adam@0 8798 $as_echo "$lt_cv_prog_compiler_static_works" >&6; }
adam@0 8799
adam@0 8800 if test x"$lt_cv_prog_compiler_static_works" = xyes; then
adam@0 8801 :
adam@0 8802 else
adam@0 8803 lt_prog_compiler_static=
adam@0 8804 fi
adam@0 8805
adam@0 8806
adam@0 8807
adam@0 8808
adam@0 8809
adam@0 8810
adam@0 8811
adam@0 8812 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
adam@0 8813 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
adam@12 8814 if ${lt_cv_prog_compiler_c_o+:} false; then :
adam@0 8815 $as_echo_n "(cached) " >&6
adam@0 8816 else
adam@0 8817 lt_cv_prog_compiler_c_o=no
adam@0 8818 $RM -r conftest 2>/dev/null
adam@0 8819 mkdir conftest
adam@0 8820 cd conftest
adam@0 8821 mkdir out
adam@0 8822 echo "$lt_simple_compile_test_code" > conftest.$ac_ext
adam@0 8823
adam@0 8824 lt_compiler_flag="-o out/conftest2.$ac_objext"
adam@0 8825 # Insert the option either (1) after the last *FLAGS variable, or
adam@0 8826 # (2) before a word containing "conftest.", or (3) at the end.
adam@0 8827 # Note that $ac_compile itself does not contain backslashes and begins
adam@0 8828 # with a dollar sign (not a hyphen), so the echo should work correctly.
adam@0 8829 lt_compile=`echo "$ac_compile" | $SED \
adam@0 8830 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
adam@0 8831 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
adam@0 8832 -e 's:$: $lt_compiler_flag:'`
adam@12 8833 (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5)
adam@0 8834 (eval "$lt_compile" 2>out/conftest.err)
adam@0 8835 ac_status=$?
adam@0 8836 cat out/conftest.err >&5
adam@12 8837 echo "$as_me:$LINENO: \$? = $ac_status" >&5
adam@0 8838 if (exit $ac_status) && test -s out/conftest2.$ac_objext
adam@0 8839 then
adam@0 8840 # The compiler can only warn and ignore the option if not recognized
adam@0 8841 # So say no if there are warnings
adam@12 8842 $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp
adam@0 8843 $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
adam@0 8844 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
adam@0 8845 lt_cv_prog_compiler_c_o=yes
adam@0 8846 fi
adam@0 8847 fi
adam@0 8848 chmod u+w . 2>&5
adam@0 8849 $RM conftest*
adam@0 8850 # SGI C++ compiler will create directory out/ii_files/ for
adam@0 8851 # template instantiation
adam@0 8852 test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
adam@0 8853 $RM out/* && rmdir out
adam@0 8854 cd ..
adam@0 8855 $RM -r conftest
adam@0 8856 $RM conftest*
adam@0 8857
adam@0 8858 fi
adam@0 8859 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5
adam@0 8860 $as_echo "$lt_cv_prog_compiler_c_o" >&6; }
adam@0 8861
adam@0 8862
adam@0 8863
adam@0 8864
adam@0 8865
adam@0 8866
adam@0 8867 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
adam@0 8868 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
adam@12 8869 if ${lt_cv_prog_compiler_c_o+:} false; then :
adam@0 8870 $as_echo_n "(cached) " >&6
adam@0 8871 else
adam@0 8872 lt_cv_prog_compiler_c_o=no
adam@0 8873 $RM -r conftest 2>/dev/null
adam@0 8874 mkdir conftest
adam@0 8875 cd conftest
adam@0 8876 mkdir out
adam@0 8877 echo "$lt_simple_compile_test_code" > conftest.$ac_ext
adam@0 8878
adam@0 8879 lt_compiler_flag="-o out/conftest2.$ac_objext"
adam@0 8880 # Insert the option either (1) after the last *FLAGS variable, or
adam@0 8881 # (2) before a word containing "conftest.", or (3) at the end.
adam@0 8882 # Note that $ac_compile itself does not contain backslashes and begins
adam@0 8883 # with a dollar sign (not a hyphen), so the echo should work correctly.
adam@0 8884 lt_compile=`echo "$ac_compile" | $SED \
adam@0 8885 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
adam@0 8886 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
adam@0 8887 -e 's:$: $lt_compiler_flag:'`
adam@12 8888 (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5)
adam@0 8889 (eval "$lt_compile" 2>out/conftest.err)
adam@0 8890 ac_status=$?
adam@0 8891 cat out/conftest.err >&5
adam@12 8892 echo "$as_me:$LINENO: \$? = $ac_status" >&5
adam@0 8893 if (exit $ac_status) && test -s out/conftest2.$ac_objext
adam@0 8894 then
adam@0 8895 # The compiler can only warn and ignore the option if not recognized
adam@0 8896 # So say no if there are warnings
adam@12 8897 $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp
adam@0 8898 $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
adam@0 8899 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
adam@0 8900 lt_cv_prog_compiler_c_o=yes
adam@0 8901 fi
adam@0 8902 fi
adam@0 8903 chmod u+w . 2>&5
adam@0 8904 $RM conftest*
adam@0 8905 # SGI C++ compiler will create directory out/ii_files/ for
adam@0 8906 # template instantiation
adam@0 8907 test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
adam@0 8908 $RM out/* && rmdir out
adam@0 8909 cd ..
adam@0 8910 $RM -r conftest
adam@0 8911 $RM conftest*
adam@0 8912
adam@0 8913 fi
adam@0 8914 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5
adam@0 8915 $as_echo "$lt_cv_prog_compiler_c_o" >&6; }
adam@0 8916
adam@0 8917
adam@0 8918
adam@0 8919
adam@0 8920 hard_links="nottested"
adam@0 8921 if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then
adam@0 8922 # do not overwrite the value of need_locks provided by the user
adam@0 8923 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5
adam@0 8924 $as_echo_n "checking if we can lock with hard links... " >&6; }
adam@0 8925 hard_links=yes
adam@0 8926 $RM conftest*
adam@0 8927 ln conftest.a conftest.b 2>/dev/null && hard_links=no
adam@0 8928 touch conftest.a
adam@0 8929 ln conftest.a conftest.b 2>&5 || hard_links=no
adam@0 8930 ln conftest.a conftest.b 2>/dev/null && hard_links=no
adam@0 8931 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5
adam@0 8932 $as_echo "$hard_links" >&6; }
adam@0 8933 if test "$hard_links" = no; then
adam@0 8934 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
adam@0 8935 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
adam@0 8936 need_locks=warn
adam@0 8937 fi
adam@0 8938 else
adam@0 8939 need_locks=no
adam@0 8940 fi
adam@0 8941
adam@0 8942
adam@0 8943
adam@0 8944
adam@0 8945
adam@0 8946
adam@0 8947 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5
adam@0 8948 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; }
adam@0 8949
adam@0 8950 runpath_var=
adam@0 8951 allow_undefined_flag=
adam@0 8952 always_export_symbols=no
adam@0 8953 archive_cmds=
adam@0 8954 archive_expsym_cmds=
adam@0 8955 compiler_needs_object=no
adam@0 8956 enable_shared_with_static_runtimes=no
adam@0 8957 export_dynamic_flag_spec=
adam@0 8958 export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
adam@0 8959 hardcode_automatic=no
adam@0 8960 hardcode_direct=no
adam@0 8961 hardcode_direct_absolute=no
adam@0 8962 hardcode_libdir_flag_spec=
adam@0 8963 hardcode_libdir_separator=
adam@0 8964 hardcode_minus_L=no
adam@0 8965 hardcode_shlibpath_var=unsupported
adam@0 8966 inherit_rpath=no
adam@0 8967 link_all_deplibs=unknown
adam@0 8968 module_cmds=
adam@0 8969 module_expsym_cmds=
adam@0 8970 old_archive_from_new_cmds=
adam@0 8971 old_archive_from_expsyms_cmds=
adam@0 8972 thread_safe_flag_spec=
adam@0 8973 whole_archive_flag_spec=
adam@0 8974 # include_expsyms should be a list of space-separated symbols to be *always*
adam@0 8975 # included in the symbol list
adam@0 8976 include_expsyms=
adam@0 8977 # exclude_expsyms can be an extended regexp of symbols to exclude
adam@0 8978 # it will be wrapped by ` (' and `)$', so one must not match beginning or
adam@0 8979 # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
adam@0 8980 # as well as any symbol that contains `d'.
adam@0 8981 exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
adam@0 8982 # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
adam@0 8983 # platforms (ab)use it in PIC code, but their linkers get confused if
adam@0 8984 # the symbol is explicitly referenced. Since portable code cannot
adam@0 8985 # rely on this symbol name, it's probably fine to never include it in
adam@0 8986 # preloaded symbol tables.
adam@0 8987 # Exclude shared library initialization/finalization symbols.
adam@0 8988 extract_expsyms_cmds=
adam@0 8989
adam@0 8990 case $host_os in
adam@0 8991 cygwin* | mingw* | pw32* | cegcc*)
adam@0 8992 # FIXME: the MSVC++ port hasn't been tested in a loooong time
adam@0 8993 # When not using gcc, we currently assume that we are using
adam@0 8994 # Microsoft Visual C++.
adam@0 8995 if test "$GCC" != yes; then
adam@0 8996 with_gnu_ld=no
adam@0 8997 fi
adam@0 8998 ;;
adam@0 8999 interix*)
adam@0 9000 # we just hope/assume this is gcc and not c89 (= MSVC++)
adam@0 9001 with_gnu_ld=yes
adam@0 9002 ;;
adam@0 9003 openbsd*)
adam@0 9004 with_gnu_ld=no
adam@0 9005 ;;
adam@12 9006 linux* | k*bsd*-gnu | gnu*)
adam@0 9007 link_all_deplibs=no
adam@0 9008 ;;
adam@0 9009 esac
adam@0 9010
adam@0 9011 ld_shlibs=yes
adam@12 9012
adam@12 9013 # On some targets, GNU ld is compatible enough with the native linker
adam@12 9014 # that we're better off using the native interface for both.
adam@12 9015 lt_use_gnu_ld_interface=no
adam@0 9016 if test "$with_gnu_ld" = yes; then
adam@12 9017 case $host_os in
adam@12 9018 aix*)
adam@12 9019 # The AIX port of GNU ld has always aspired to compatibility
adam@12 9020 # with the native linker. However, as the warning in the GNU ld
adam@12 9021 # block says, versions before 2.19.5* couldn't really create working
adam@12 9022 # shared libraries, regardless of the interface used.
adam@12 9023 case `$LD -v 2>&1` in
adam@12 9024 *\ \(GNU\ Binutils\)\ 2.19.5*) ;;
adam@12 9025 *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;;
adam@12 9026 *\ \(GNU\ Binutils\)\ [3-9]*) ;;
adam@12 9027 *)
adam@12 9028 lt_use_gnu_ld_interface=yes
adam@12 9029 ;;
adam@12 9030 esac
adam@12 9031 ;;
adam@12 9032 *)
adam@12 9033 lt_use_gnu_ld_interface=yes
adam@12 9034 ;;
adam@12 9035 esac
adam@12 9036 fi
adam@12 9037
adam@12 9038 if test "$lt_use_gnu_ld_interface" = yes; then
adam@0 9039 # If archive_cmds runs LD, not CC, wlarc should be empty
adam@0 9040 wlarc='${wl}'
adam@0 9041
adam@0 9042 # Set some defaults for GNU ld with shared library support. These
adam@0 9043 # are reset later if shared libraries are not supported. Putting them
adam@0 9044 # here allows them to be overridden if necessary.
adam@0 9045 runpath_var=LD_RUN_PATH
adam@0 9046 hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
adam@0 9047 export_dynamic_flag_spec='${wl}--export-dynamic'
adam@0 9048 # ancient GNU ld didn't support --whole-archive et. al.
adam@0 9049 if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then
adam@0 9050 whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
adam@0 9051 else
adam@0 9052 whole_archive_flag_spec=
adam@0 9053 fi
adam@0 9054 supports_anon_versioning=no
adam@0 9055 case `$LD -v 2>&1` in
adam@0 9056 *GNU\ gold*) supports_anon_versioning=yes ;;
adam@0 9057 *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
adam@0 9058 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
adam@0 9059 *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
adam@0 9060 *\ 2.11.*) ;; # other 2.11 versions
adam@0 9061 *) supports_anon_versioning=yes ;;
adam@0 9062 esac
adam@0 9063
adam@0 9064 # See if GNU ld supports shared libraries.
adam@0 9065 case $host_os in
adam@0 9066 aix[3-9]*)
adam@0 9067 # On AIX/PPC, the GNU linker is very broken
adam@0 9068 if test "$host_cpu" != ia64; then
adam@0 9069 ld_shlibs=no
adam@0 9070 cat <<_LT_EOF 1>&2
adam@0 9071
adam@12 9072 *** Warning: the GNU linker, at least up to release 2.19, is reported
adam@0 9073 *** to be unable to reliably create shared libraries on AIX.
adam@0 9074 *** Therefore, libtool is disabling shared libraries support. If you
adam@12 9075 *** really care for shared libraries, you may want to install binutils
adam@12 9076 *** 2.20 or above, or modify your PATH so that a non-GNU linker is found.
adam@12 9077 *** You will then need to restart the configuration process.
adam@0 9078
adam@0 9079 _LT_EOF
adam@0 9080 fi
adam@0 9081 ;;
adam@0 9082
adam@0 9083 amigaos*)
adam@0 9084 case $host_cpu in
adam@0 9085 powerpc)
adam@0 9086 # see comment about AmigaOS4 .so support
adam@0 9087 archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
adam@0 9088 archive_expsym_cmds=''
adam@0 9089 ;;
adam@0 9090 m68k)
adam@0 9091 archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
adam@0 9092 hardcode_libdir_flag_spec='-L$libdir'
adam@0 9093 hardcode_minus_L=yes
adam@0 9094 ;;
adam@0 9095 esac
adam@0 9096 ;;
adam@0 9097
adam@0 9098 beos*)
adam@0 9099 if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
adam@0 9100 allow_undefined_flag=unsupported
adam@0 9101 # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
adam@0 9102 # support --undefined. This deserves some investigation. FIXME
adam@0 9103 archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
adam@0 9104 else
adam@0 9105 ld_shlibs=no
adam@0 9106 fi
adam@0 9107 ;;
adam@0 9108
adam@0 9109 cygwin* | mingw* | pw32* | cegcc*)
adam@0 9110 # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless,
adam@0 9111 # as there is no search path for DLLs.
adam@0 9112 hardcode_libdir_flag_spec='-L$libdir'
adam@12 9113 export_dynamic_flag_spec='${wl}--export-all-symbols'
adam@0 9114 allow_undefined_flag=unsupported
adam@0 9115 always_export_symbols=no
adam@0 9116 enable_shared_with_static_runtimes=yes
adam@12 9117 export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols'
adam@12 9118 exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'
adam@0 9119
adam@0 9120 if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
adam@0 9121 archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
adam@0 9122 # If the export-symbols file already is a .def file (1st line
adam@0 9123 # is EXPORTS), use it as is; otherwise, prepend...
adam@0 9124 archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
adam@0 9125 cp $export_symbols $output_objdir/$soname.def;
adam@0 9126 else
adam@0 9127 echo EXPORTS > $output_objdir/$soname.def;
adam@0 9128 cat $export_symbols >> $output_objdir/$soname.def;
adam@0 9129 fi~
adam@0 9130 $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
adam@0 9131 else
adam@0 9132 ld_shlibs=no
adam@0 9133 fi
adam@0 9134 ;;
adam@0 9135
adam@12 9136 haiku*)
adam@12 9137 archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
adam@12 9138 link_all_deplibs=yes
adam@12 9139 ;;
adam@12 9140
adam@0 9141 interix[3-9]*)
adam@0 9142 hardcode_direct=no
adam@0 9143 hardcode_shlibpath_var=no
adam@0 9144 hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
adam@0 9145 export_dynamic_flag_spec='${wl}-E'
adam@0 9146 # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
adam@0 9147 # Instead, shared libraries are loaded at an image base (0x10000000 by
adam@0 9148 # default) and relocated if they conflict, which is a slow very memory
adam@0 9149 # consuming and fragmenting process. To avoid this, we pick a random,
adam@0 9150 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
adam@0 9151 # time. Moving up from 0x10000000 also allows more sbrk(2) space.
adam@0 9152 archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
adam@0 9153 archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
adam@0 9154 ;;
adam@0 9155
adam@0 9156 gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
adam@0 9157 tmp_diet=no
adam@0 9158 if test "$host_os" = linux-dietlibc; then
adam@0 9159 case $cc_basename in
adam@0 9160 diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn)
adam@0 9161 esac
adam@0 9162 fi
adam@0 9163 if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \
adam@0 9164 && test "$tmp_diet" = no
adam@0 9165 then
adam@12 9166 tmp_addflag=' $pic_flag'
adam@0 9167 tmp_sharedflag='-shared'
adam@0 9168 case $cc_basename,$host_cpu in
adam@0 9169 pgcc*) # Portland Group C compiler
adam@12 9170 whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
adam@0 9171 tmp_addflag=' $pic_flag'
adam@0 9172 ;;
adam@12 9173 pgf77* | pgf90* | pgf95* | pgfortran*)
adam@12 9174 # Portland Group f77 and f90 compilers
adam@12 9175 whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
adam@0 9176 tmp_addflag=' $pic_flag -Mnomain' ;;
adam@0 9177 ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64
adam@0 9178 tmp_addflag=' -i_dynamic' ;;
adam@0 9179 efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64
adam@0 9180 tmp_addflag=' -i_dynamic -nofor_main' ;;
adam@0 9181 ifc* | ifort*) # Intel Fortran compiler
adam@0 9182 tmp_addflag=' -nofor_main' ;;
adam@0 9183 lf95*) # Lahey Fortran 8.1
adam@0 9184 whole_archive_flag_spec=
adam@0 9185 tmp_sharedflag='--shared' ;;
adam@12 9186 xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)
adam@0 9187 tmp_sharedflag='-qmkshrobj'
adam@0 9188 tmp_addflag= ;;
adam@12 9189 nvcc*) # Cuda Compiler Driver 2.2
adam@12 9190 whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
adam@12 9191 compiler_needs_object=yes
adam@12 9192 ;;
adam@0 9193 esac
adam@0 9194 case `$CC -V 2>&1 | sed 5q` in
adam@0 9195 *Sun\ C*) # Sun C 5.9
adam@12 9196 whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
adam@0 9197 compiler_needs_object=yes
adam@0 9198 tmp_sharedflag='-G' ;;
adam@0 9199 *Sun\ F*) # Sun Fortran 8.3
adam@0 9200 tmp_sharedflag='-G' ;;
adam@0 9201 esac
adam@0 9202 archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
adam@0 9203
adam@0 9204 if test "x$supports_anon_versioning" = xyes; then
adam@0 9205 archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
adam@0 9206 cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
adam@0 9207 echo "local: *; };" >> $output_objdir/$libname.ver~
adam@0 9208 $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
adam@0 9209 fi
adam@0 9210
adam@0 9211 case $cc_basename in
adam@12 9212 xlf* | bgf* | bgxlf* | mpixlf*)
adam@0 9213 # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
adam@0 9214 whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive'
adam@20 9215 hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
adam@12 9216 archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
adam@0 9217 if test "x$supports_anon_versioning" = xyes; then
adam@0 9218 archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
adam@0 9219 cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
adam@0 9220 echo "local: *; };" >> $output_objdir/$libname.ver~
adam@12 9221 $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
adam@0 9222 fi
adam@0 9223 ;;
adam@0 9224 esac
adam@0 9225 else
adam@0 9226 ld_shlibs=no
adam@0 9227 fi
adam@0 9228 ;;
adam@0 9229
adam@0 9230 netbsd* | netbsdelf*-gnu)
adam@0 9231 if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
adam@0 9232 archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
adam@0 9233 wlarc=
adam@0 9234 else
adam@12 9235 archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
adam@12 9236 archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
adam@0 9237 fi
adam@0 9238 ;;
adam@0 9239
adam@0 9240 solaris*)
adam@0 9241 if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then
adam@0 9242 ld_shlibs=no
adam@0 9243 cat <<_LT_EOF 1>&2
adam@0 9244
adam@0 9245 *** Warning: The releases 2.8.* of the GNU linker cannot reliably
adam@0 9246 *** create shared libraries on Solaris systems. Therefore, libtool
adam@0 9247 *** is disabling shared libraries support. We urge you to upgrade GNU
adam@0 9248 *** binutils to release 2.9.1 or newer. Another option is to modify
adam@0 9249 *** your PATH or compiler configuration so that the native linker is
adam@0 9250 *** used, and then restart.
adam@0 9251
adam@0 9252 _LT_EOF
adam@0 9253 elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
adam@12 9254 archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
adam@12 9255 archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
adam@0 9256 else
adam@0 9257 ld_shlibs=no
adam@0 9258 fi
adam@0 9259 ;;
adam@0 9260
adam@0 9261 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
adam@0 9262 case `$LD -v 2>&1` in
adam@0 9263 *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
adam@0 9264 ld_shlibs=no
adam@0 9265 cat <<_LT_EOF 1>&2
adam@0 9266
adam@0 9267 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
adam@0 9268 *** reliably create shared libraries on SCO systems. Therefore, libtool
adam@0 9269 *** is disabling shared libraries support. We urge you to upgrade GNU
adam@0 9270 *** binutils to release 2.16.91.0.3 or newer. Another option is to modify
adam@0 9271 *** your PATH or compiler configuration so that the native linker is
adam@0 9272 *** used, and then restart.
adam@0 9273
adam@0 9274 _LT_EOF
adam@0 9275 ;;
adam@0 9276 *)
adam@0 9277 # For security reasons, it is highly recommended that you always
adam@0 9278 # use absolute paths for naming shared libraries, and exclude the
adam@0 9279 # DT_RUNPATH tag from executables and libraries. But doing so
adam@0 9280 # requires that you compile everything twice, which is a pain.
adam@0 9281 if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
adam@0 9282 hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
adam@0 9283 archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
adam@0 9284 archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
adam@0 9285 else
adam@0 9286 ld_shlibs=no
adam@0 9287 fi
adam@0 9288 ;;
adam@0 9289 esac
adam@0 9290 ;;
adam@0 9291
adam@0 9292 sunos4*)
adam@0 9293 archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
adam@0 9294 wlarc=
adam@0 9295 hardcode_direct=yes
adam@0 9296 hardcode_shlibpath_var=no
adam@0 9297 ;;
adam@0 9298
adam@0 9299 *)
adam@0 9300 if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
adam@12 9301 archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
adam@12 9302 archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
adam@0 9303 else
adam@0 9304 ld_shlibs=no
adam@0 9305 fi
adam@0 9306 ;;
adam@0 9307 esac
adam@0 9308
adam@0 9309 if test "$ld_shlibs" = no; then
adam@0 9310 runpath_var=
adam@0 9311 hardcode_libdir_flag_spec=
adam@0 9312 export_dynamic_flag_spec=
adam@0 9313 whole_archive_flag_spec=
adam@0 9314 fi
adam@0 9315 else
adam@0 9316 # PORTME fill in a description of your system's linker (not GNU ld)
adam@0 9317 case $host_os in
adam@0 9318 aix3*)
adam@0 9319 allow_undefined_flag=unsupported
adam@0 9320 always_export_symbols=yes
adam@0 9321 archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
adam@0 9322 # Note: this linker hardcodes the directories in LIBPATH if there
adam@0 9323 # are no directories specified by -L.
adam@0 9324 hardcode_minus_L=yes
adam@0 9325 if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
adam@0 9326 # Neither direct hardcoding nor static linking is supported with a
adam@0 9327 # broken collect2.
adam@0 9328 hardcode_direct=unsupported
adam@0 9329 fi
adam@0 9330 ;;
adam@0 9331
adam@0 9332 aix[4-9]*)
adam@0 9333 if test "$host_cpu" = ia64; then
adam@0 9334 # On IA64, the linker does run time linking by default, so we don't
adam@0 9335 # have to do anything special.
adam@0 9336 aix_use_runtimelinking=no
adam@0 9337 exp_sym_flag='-Bexport'
adam@0 9338 no_entry_flag=""
adam@0 9339 else
adam@0 9340 # If we're using GNU nm, then we don't want the "-C" option.
adam@0 9341 # -C means demangle to AIX nm, but means don't demangle with GNU nm
adam@12 9342 # Also, AIX nm treats weak defined symbols like other global
adam@12 9343 # defined symbols, whereas GNU nm marks them as "W".
adam@0 9344 if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
adam@12 9345 export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
adam@0 9346 else
adam@0 9347 export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
adam@0 9348 fi
adam@0 9349 aix_use_runtimelinking=no
adam@0 9350
adam@0 9351 # Test if we are trying to use run time linking or normal
adam@0 9352 # AIX style linking. If -brtl is somewhere in LDFLAGS, we
adam@0 9353 # need to do runtime linking.
adam@0 9354 case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
adam@0 9355 for ld_flag in $LDFLAGS; do
adam@0 9356 if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
adam@0 9357 aix_use_runtimelinking=yes
adam@0 9358 break
adam@0 9359 fi
adam@0 9360 done
adam@0 9361 ;;
adam@0 9362 esac
adam@0 9363
adam@0 9364 exp_sym_flag='-bexport'
adam@0 9365 no_entry_flag='-bnoentry'
adam@0 9366 fi
adam@0 9367
adam@0 9368 # When large executables or shared objects are built, AIX ld can
adam@0 9369 # have problems creating the table of contents. If linking a library
adam@0 9370 # or program results in "error TOC overflow" add -mminimal-toc to
adam@0 9371 # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not
adam@0 9372 # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
adam@0 9373
adam@0 9374 archive_cmds=''
adam@0 9375 hardcode_direct=yes
adam@0 9376 hardcode_direct_absolute=yes
adam@0 9377 hardcode_libdir_separator=':'
adam@0 9378 link_all_deplibs=yes
adam@0 9379 file_list_spec='${wl}-f,'
adam@0 9380
adam@0 9381 if test "$GCC" = yes; then
adam@0 9382 case $host_os in aix4.[012]|aix4.[012].*)
adam@0 9383 # We only want to do this on AIX 4.2 and lower, the check
adam@0 9384 # below for broken collect2 doesn't work under 4.3+
adam@0 9385 collect2name=`${CC} -print-prog-name=collect2`
adam@0 9386 if test -f "$collect2name" &&
adam@0 9387 strings "$collect2name" | $GREP resolve_lib_name >/dev/null
adam@0 9388 then
adam@0 9389 # We have reworked collect2
adam@0 9390 :
adam@0 9391 else
adam@0 9392 # We have old collect2
adam@0 9393 hardcode_direct=unsupported
adam@0 9394 # It fails to find uninstalled libraries when the uninstalled
adam@0 9395 # path is not listed in the libpath. Setting hardcode_minus_L
adam@0 9396 # to unsupported forces relinking
adam@0 9397 hardcode_minus_L=yes
adam@0 9398 hardcode_libdir_flag_spec='-L$libdir'
adam@0 9399 hardcode_libdir_separator=
adam@0 9400 fi
adam@0 9401 ;;
adam@0 9402 esac
adam@0 9403 shared_flag='-shared'
adam@0 9404 if test "$aix_use_runtimelinking" = yes; then
adam@0 9405 shared_flag="$shared_flag "'${wl}-G'
adam@0 9406 fi
adam@0 9407 link_all_deplibs=no
adam@0 9408 else
adam@0 9409 # not using gcc
adam@0 9410 if test "$host_cpu" = ia64; then
adam@0 9411 # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
adam@0 9412 # chokes on -Wl,-G. The following line is correct:
adam@0 9413 shared_flag='-G'
adam@0 9414 else
adam@0 9415 if test "$aix_use_runtimelinking" = yes; then
adam@0 9416 shared_flag='${wl}-G'
adam@0 9417 else
adam@0 9418 shared_flag='${wl}-bM:SRE'
adam@0 9419 fi
adam@0 9420 fi
adam@0 9421 fi
adam@0 9422
adam@0 9423 export_dynamic_flag_spec='${wl}-bexpall'
adam@0 9424 # It seems that -bexpall does not export symbols beginning with
adam@0 9425 # underscore (_), so it is better to generate a list of symbols to export.
adam@0 9426 always_export_symbols=yes
adam@0 9427 if test "$aix_use_runtimelinking" = yes; then
adam@0 9428 # Warning - without using the other runtime loading flags (-brtl),
adam@0 9429 # -berok will link without error, but may produce a broken library.
adam@0 9430 allow_undefined_flag='-berok'
adam@0 9431 # Determine the default libpath from the value encoded in an
adam@0 9432 # empty executable.
adam@12 9433 if test "${lt_cv_aix_libpath+set}" = set; then
adam@12 9434 aix_libpath=$lt_cv_aix_libpath
adam@12 9435 else
adam@12 9436 if ${lt_cv_aix_libpath_+:} false; then :
adam@12 9437 $as_echo_n "(cached) " >&6
adam@12 9438 else
adam@12 9439 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 9440 /* end confdefs.h. */
adam@0 9441
adam@0 9442 int
adam@0 9443 main ()
adam@0 9444 {
adam@0 9445
adam@0 9446 ;
adam@0 9447 return 0;
adam@0 9448 }
adam@0 9449 _ACEOF
adam@0 9450 if ac_fn_c_try_link "$LINENO"; then :
adam@0 9451
adam@12 9452 lt_aix_libpath_sed='
adam@12 9453 /Import File Strings/,/^$/ {
adam@12 9454 /^0/ {
adam@12 9455 s/^0 *\([^ ]*\) *$/\1/
adam@12 9456 p
adam@12 9457 }
adam@12 9458 }'
adam@12 9459 lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
adam@12 9460 # Check for a 64-bit object if we didn't find anything.
adam@12 9461 if test -z "$lt_cv_aix_libpath_"; then
adam@12 9462 lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
adam@12 9463 fi
adam@0 9464 fi
adam@0 9465 rm -f core conftest.err conftest.$ac_objext \
adam@0 9466 conftest$ac_exeext conftest.$ac_ext
adam@12 9467 if test -z "$lt_cv_aix_libpath_"; then
adam@12 9468 lt_cv_aix_libpath_="/usr/lib:/lib"
adam@12 9469 fi
adam@12 9470
adam@12 9471 fi
adam@12 9472
adam@12 9473 aix_libpath=$lt_cv_aix_libpath_
adam@12 9474 fi
adam@0 9475
adam@0 9476 hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
adam@12 9477 archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
adam@0 9478 else
adam@0 9479 if test "$host_cpu" = ia64; then
adam@0 9480 hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
adam@0 9481 allow_undefined_flag="-z nodefs"
adam@0 9482 archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
adam@0 9483 else
adam@0 9484 # Determine the default libpath from the value encoded in an
adam@0 9485 # empty executable.
adam@12 9486 if test "${lt_cv_aix_libpath+set}" = set; then
adam@12 9487 aix_libpath=$lt_cv_aix_libpath
adam@12 9488 else
adam@12 9489 if ${lt_cv_aix_libpath_+:} false; then :
adam@12 9490 $as_echo_n "(cached) " >&6
adam@12 9491 else
adam@12 9492 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 9493 /* end confdefs.h. */
adam@0 9494
adam@0 9495 int
adam@0 9496 main ()
adam@0 9497 {
adam@0 9498
adam@0 9499 ;
adam@0 9500 return 0;
adam@0 9501 }
adam@0 9502 _ACEOF
adam@0 9503 if ac_fn_c_try_link "$LINENO"; then :
adam@0 9504
adam@12 9505 lt_aix_libpath_sed='
adam@12 9506 /Import File Strings/,/^$/ {
adam@12 9507 /^0/ {
adam@12 9508 s/^0 *\([^ ]*\) *$/\1/
adam@12 9509 p
adam@12 9510 }
adam@12 9511 }'
adam@12 9512 lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
adam@12 9513 # Check for a 64-bit object if we didn't find anything.
adam@12 9514 if test -z "$lt_cv_aix_libpath_"; then
adam@12 9515 lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
adam@12 9516 fi
adam@0 9517 fi
adam@0 9518 rm -f core conftest.err conftest.$ac_objext \
adam@0 9519 conftest$ac_exeext conftest.$ac_ext
adam@12 9520 if test -z "$lt_cv_aix_libpath_"; then
adam@12 9521 lt_cv_aix_libpath_="/usr/lib:/lib"
adam@12 9522 fi
adam@12 9523
adam@12 9524 fi
adam@12 9525
adam@12 9526 aix_libpath=$lt_cv_aix_libpath_
adam@12 9527 fi
adam@0 9528
adam@0 9529 hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
adam@0 9530 # Warning - without using the other run time loading flags,
adam@0 9531 # -berok will link without error, but may produce a broken library.
adam@0 9532 no_undefined_flag=' ${wl}-bernotok'
adam@0 9533 allow_undefined_flag=' ${wl}-berok'
adam@12 9534 if test "$with_gnu_ld" = yes; then
adam@12 9535 # We only use this code for GNU lds that support --whole-archive.
adam@12 9536 whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
adam@12 9537 else
adam@12 9538 # Exported symbols can be pulled into shared objects from archives
adam@12 9539 whole_archive_flag_spec='$convenience'
adam@12 9540 fi
adam@0 9541 archive_cmds_need_lc=yes
adam@0 9542 # This is similar to how AIX traditionally builds its shared libraries.
adam@0 9543 archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
adam@0 9544 fi
adam@0 9545 fi
adam@0 9546 ;;
adam@0 9547
adam@0 9548 amigaos*)
adam@0 9549 case $host_cpu in
adam@0 9550 powerpc)
adam@0 9551 # see comment about AmigaOS4 .so support
adam@0 9552 archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
adam@0 9553 archive_expsym_cmds=''
adam@0 9554 ;;
adam@0 9555 m68k)
adam@0 9556 archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
adam@0 9557 hardcode_libdir_flag_spec='-L$libdir'
adam@0 9558 hardcode_minus_L=yes
adam@0 9559 ;;
adam@0 9560 esac
adam@0 9561 ;;
adam@0 9562
adam@0 9563 bsdi[45]*)
adam@0 9564 export_dynamic_flag_spec=-rdynamic
adam@0 9565 ;;
adam@0 9566
adam@0 9567 cygwin* | mingw* | pw32* | cegcc*)
adam@0 9568 # When not using gcc, we currently assume that we are using
adam@0 9569 # Microsoft Visual C++.
adam@0 9570 # hardcode_libdir_flag_spec is actually meaningless, as there is
adam@0 9571 # no search path for DLLs.
adam@12 9572 case $cc_basename in
adam@12 9573 cl*)
adam@12 9574 # Native MSVC
adam@12 9575 hardcode_libdir_flag_spec=' '
adam@12 9576 allow_undefined_flag=unsupported
adam@12 9577 always_export_symbols=yes
adam@12 9578 file_list_spec='@'
adam@12 9579 # Tell ltmain to make .lib files, not .a files.
adam@12 9580 libext=lib
adam@12 9581 # Tell ltmain to make .dll files, not .so files.
adam@12 9582 shrext_cmds=".dll"
adam@12 9583 # FIXME: Setting linknames here is a bad hack.
adam@12 9584 archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
adam@12 9585 archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
adam@12 9586 sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
adam@12 9587 else
adam@12 9588 sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
adam@12 9589 fi~
adam@12 9590 $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
adam@12 9591 linknames='
adam@12 9592 # The linker will not automatically build a static lib if we build a DLL.
adam@12 9593 # _LT_TAGVAR(old_archive_from_new_cmds, )='true'
adam@12 9594 enable_shared_with_static_runtimes=yes
adam@20 9595 exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
adam@12 9596 export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols'
adam@12 9597 # Don't use ranlib
adam@12 9598 old_postinstall_cmds='chmod 644 $oldlib'
adam@12 9599 postlink_cmds='lt_outputfile="@OUTPUT@"~
adam@12 9600 lt_tool_outputfile="@TOOL_OUTPUT@"~
adam@12 9601 case $lt_outputfile in
adam@12 9602 *.exe|*.EXE) ;;
adam@12 9603 *)
adam@12 9604 lt_outputfile="$lt_outputfile.exe"
adam@12 9605 lt_tool_outputfile="$lt_tool_outputfile.exe"
adam@12 9606 ;;
adam@12 9607 esac~
adam@12 9608 if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
adam@12 9609 $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
adam@12 9610 $RM "$lt_outputfile.manifest";
adam@12 9611 fi'
adam@12 9612 ;;
adam@12 9613 *)
adam@12 9614 # Assume MSVC wrapper
adam@12 9615 hardcode_libdir_flag_spec=' '
adam@12 9616 allow_undefined_flag=unsupported
adam@12 9617 # Tell ltmain to make .lib files, not .a files.
adam@12 9618 libext=lib
adam@12 9619 # Tell ltmain to make .dll files, not .so files.
adam@12 9620 shrext_cmds=".dll"
adam@12 9621 # FIXME: Setting linknames here is a bad hack.
adam@12 9622 archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames='
adam@12 9623 # The linker will automatically build a .lib file if we build a DLL.
adam@12 9624 old_archive_from_new_cmds='true'
adam@12 9625 # FIXME: Should let the user specify the lib program.
adam@12 9626 old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs'
adam@12 9627 enable_shared_with_static_runtimes=yes
adam@12 9628 ;;
adam@12 9629 esac
adam@0 9630 ;;
adam@0 9631
adam@0 9632 darwin* | rhapsody*)
adam@0 9633
adam@0 9634
adam@0 9635 archive_cmds_need_lc=no
adam@0 9636 hardcode_direct=no
adam@0 9637 hardcode_automatic=yes
adam@0 9638 hardcode_shlibpath_var=unsupported
adam@12 9639 if test "$lt_cv_ld_force_load" = "yes"; then
adam@12 9640 whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
adam@20 9641
adam@12 9642 else
adam@12 9643 whole_archive_flag_spec=''
adam@12 9644 fi
adam@0 9645 link_all_deplibs=yes
adam@0 9646 allow_undefined_flag="$_lt_dar_allow_undefined"
adam@0 9647 case $cc_basename in
adam@0 9648 ifort*) _lt_dar_can_shared=yes ;;
adam@0 9649 *) _lt_dar_can_shared=$GCC ;;
adam@0 9650 esac
adam@0 9651 if test "$_lt_dar_can_shared" = "yes"; then
adam@12 9652 output_verbose_link_cmd=func_echo_all
adam@0 9653 archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
adam@0 9654 module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
adam@0 9655 archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
adam@0 9656 module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
adam@0 9657
adam@0 9658 else
adam@0 9659 ld_shlibs=no
adam@0 9660 fi
adam@0 9661
adam@0 9662 ;;
adam@0 9663
adam@0 9664 dgux*)
adam@0 9665 archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
adam@0 9666 hardcode_libdir_flag_spec='-L$libdir'
adam@0 9667 hardcode_shlibpath_var=no
adam@0 9668 ;;
adam@0 9669
adam@0 9670 # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
adam@0 9671 # support. Future versions do this automatically, but an explicit c++rt0.o
adam@0 9672 # does not break anything, and helps significantly (at the cost of a little
adam@0 9673 # extra space).
adam@0 9674 freebsd2.2*)
adam@0 9675 archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
adam@0 9676 hardcode_libdir_flag_spec='-R$libdir'
adam@0 9677 hardcode_direct=yes
adam@0 9678 hardcode_shlibpath_var=no
adam@0 9679 ;;
adam@0 9680
adam@0 9681 # Unfortunately, older versions of FreeBSD 2 do not have this feature.
adam@20 9682 freebsd2.*)
adam@0 9683 archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
adam@0 9684 hardcode_direct=yes
adam@0 9685 hardcode_minus_L=yes
adam@0 9686 hardcode_shlibpath_var=no
adam@0 9687 ;;
adam@0 9688
adam@0 9689 # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
adam@0 9690 freebsd* | dragonfly*)
adam@12 9691 archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9692 hardcode_libdir_flag_spec='-R$libdir'
adam@0 9693 hardcode_direct=yes
adam@0 9694 hardcode_shlibpath_var=no
adam@0 9695 ;;
adam@0 9696
adam@0 9697 hpux9*)
adam@0 9698 if test "$GCC" = yes; then
adam@12 9699 archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
adam@0 9700 else
adam@0 9701 archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
adam@0 9702 fi
adam@0 9703 hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
adam@0 9704 hardcode_libdir_separator=:
adam@0 9705 hardcode_direct=yes
adam@0 9706
adam@0 9707 # hardcode_minus_L: Not really in the search PATH,
adam@0 9708 # but as the default location of the library.
adam@0 9709 hardcode_minus_L=yes
adam@0 9710 export_dynamic_flag_spec='${wl}-E'
adam@0 9711 ;;
adam@0 9712
adam@0 9713 hpux10*)
adam@12 9714 if test "$GCC" = yes && test "$with_gnu_ld" = no; then
adam@12 9715 archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9716 else
adam@0 9717 archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
adam@0 9718 fi
adam@0 9719 if test "$with_gnu_ld" = no; then
adam@0 9720 hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
adam@0 9721 hardcode_libdir_separator=:
adam@0 9722 hardcode_direct=yes
adam@0 9723 hardcode_direct_absolute=yes
adam@0 9724 export_dynamic_flag_spec='${wl}-E'
adam@0 9725 # hardcode_minus_L: Not really in the search PATH,
adam@0 9726 # but as the default location of the library.
adam@0 9727 hardcode_minus_L=yes
adam@0 9728 fi
adam@0 9729 ;;
adam@0 9730
adam@0 9731 hpux11*)
adam@12 9732 if test "$GCC" = yes && test "$with_gnu_ld" = no; then
adam@0 9733 case $host_cpu in
adam@0 9734 hppa*64*)
adam@0 9735 archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9736 ;;
adam@0 9737 ia64*)
adam@12 9738 archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9739 ;;
adam@0 9740 *)
adam@12 9741 archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9742 ;;
adam@0 9743 esac
adam@0 9744 else
adam@0 9745 case $host_cpu in
adam@0 9746 hppa*64*)
adam@0 9747 archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9748 ;;
adam@0 9749 ia64*)
adam@0 9750 archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9751 ;;
adam@0 9752 *)
adam@12 9753
adam@12 9754 # Older versions of the 11.00 compiler do not understand -b yet
adam@12 9755 # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
adam@12 9756 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5
adam@12 9757 $as_echo_n "checking if $CC understands -b... " >&6; }
adam@12 9758 if ${lt_cv_prog_compiler__b+:} false; then :
adam@12 9759 $as_echo_n "(cached) " >&6
adam@12 9760 else
adam@12 9761 lt_cv_prog_compiler__b=no
adam@12 9762 save_LDFLAGS="$LDFLAGS"
adam@12 9763 LDFLAGS="$LDFLAGS -b"
adam@12 9764 echo "$lt_simple_link_test_code" > conftest.$ac_ext
adam@12 9765 if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
adam@12 9766 # The linker can only warn and ignore the option if not recognized
adam@12 9767 # So say no if there are warnings
adam@12 9768 if test -s conftest.err; then
adam@12 9769 # Append any errors to the config.log.
adam@12 9770 cat conftest.err 1>&5
adam@12 9771 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
adam@12 9772 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
adam@12 9773 if diff conftest.exp conftest.er2 >/dev/null; then
adam@12 9774 lt_cv_prog_compiler__b=yes
adam@12 9775 fi
adam@12 9776 else
adam@12 9777 lt_cv_prog_compiler__b=yes
adam@12 9778 fi
adam@12 9779 fi
adam@12 9780 $RM -r conftest*
adam@12 9781 LDFLAGS="$save_LDFLAGS"
adam@12 9782
adam@12 9783 fi
adam@12 9784 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5
adam@12 9785 $as_echo "$lt_cv_prog_compiler__b" >&6; }
adam@12 9786
adam@12 9787 if test x"$lt_cv_prog_compiler__b" = xyes; then
adam@12 9788 archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
adam@12 9789 else
adam@12 9790 archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
adam@12 9791 fi
adam@12 9792
adam@0 9793 ;;
adam@0 9794 esac
adam@0 9795 fi
adam@0 9796 if test "$with_gnu_ld" = no; then
adam@0 9797 hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
adam@0 9798 hardcode_libdir_separator=:
adam@0 9799
adam@0 9800 case $host_cpu in
adam@0 9801 hppa*64*|ia64*)
adam@0 9802 hardcode_direct=no
adam@0 9803 hardcode_shlibpath_var=no
adam@0 9804 ;;
adam@0 9805 *)
adam@0 9806 hardcode_direct=yes
adam@0 9807 hardcode_direct_absolute=yes
adam@0 9808 export_dynamic_flag_spec='${wl}-E'
adam@0 9809
adam@0 9810 # hardcode_minus_L: Not really in the search PATH,
adam@0 9811 # but as the default location of the library.
adam@0 9812 hardcode_minus_L=yes
adam@0 9813 ;;
adam@0 9814 esac
adam@0 9815 fi
adam@0 9816 ;;
adam@0 9817
adam@0 9818 irix5* | irix6* | nonstopux*)
adam@0 9819 if test "$GCC" = yes; then
adam@12 9820 archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
adam@0 9821 # Try to use the -exported_symbol ld option, if it does not
adam@0 9822 # work, assume that -exports_file does not work either and
adam@0 9823 # implicitly export all symbols.
adam@12 9824 # This should be the same for all languages, so no per-tag cache variable.
adam@12 9825 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5
adam@12 9826 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; }
adam@12 9827 if ${lt_cv_irix_exported_symbol+:} false; then :
adam@12 9828 $as_echo_n "(cached) " >&6
adam@12 9829 else
adam@12 9830 save_LDFLAGS="$LDFLAGS"
adam@12 9831 LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null"
adam@12 9832 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 9833 /* end confdefs.h. */
adam@12 9834 int foo (void) { return 0; }
adam@0 9835 _ACEOF
adam@0 9836 if ac_fn_c_try_link "$LINENO"; then :
adam@12 9837 lt_cv_irix_exported_symbol=yes
adam@12 9838 else
adam@12 9839 lt_cv_irix_exported_symbol=no
adam@0 9840 fi
adam@0 9841 rm -f core conftest.err conftest.$ac_objext \
adam@0 9842 conftest$ac_exeext conftest.$ac_ext
adam@12 9843 LDFLAGS="$save_LDFLAGS"
adam@12 9844 fi
adam@12 9845 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5
adam@12 9846 $as_echo "$lt_cv_irix_exported_symbol" >&6; }
adam@12 9847 if test "$lt_cv_irix_exported_symbol" = yes; then
adam@12 9848 archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib'
adam@12 9849 fi
adam@0 9850 else
adam@12 9851 archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
adam@12 9852 archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib'
adam@0 9853 fi
adam@0 9854 archive_cmds_need_lc='no'
adam@0 9855 hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
adam@0 9856 hardcode_libdir_separator=:
adam@0 9857 inherit_rpath=yes
adam@0 9858 link_all_deplibs=yes
adam@0 9859 ;;
adam@0 9860
adam@0 9861 netbsd* | netbsdelf*-gnu)
adam@0 9862 if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
adam@0 9863 archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
adam@0 9864 else
adam@0 9865 archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF
adam@0 9866 fi
adam@0 9867 hardcode_libdir_flag_spec='-R$libdir'
adam@0 9868 hardcode_direct=yes
adam@0 9869 hardcode_shlibpath_var=no
adam@0 9870 ;;
adam@0 9871
adam@0 9872 newsos6)
adam@0 9873 archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
adam@0 9874 hardcode_direct=yes
adam@0 9875 hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
adam@0 9876 hardcode_libdir_separator=:
adam@0 9877 hardcode_shlibpath_var=no
adam@0 9878 ;;
adam@0 9879
adam@0 9880 *nto* | *qnx*)
adam@0 9881 ;;
adam@0 9882
adam@0 9883 openbsd*)
adam@0 9884 if test -f /usr/libexec/ld.so; then
adam@0 9885 hardcode_direct=yes
adam@0 9886 hardcode_shlibpath_var=no
adam@0 9887 hardcode_direct_absolute=yes
adam@0 9888 if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
adam@0 9889 archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9890 archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
adam@0 9891 hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
adam@0 9892 export_dynamic_flag_spec='${wl}-E'
adam@0 9893 else
adam@0 9894 case $host_os in
adam@0 9895 openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
adam@0 9896 archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
adam@0 9897 hardcode_libdir_flag_spec='-R$libdir'
adam@0 9898 ;;
adam@0 9899 *)
adam@0 9900 archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9901 hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
adam@0 9902 ;;
adam@0 9903 esac
adam@0 9904 fi
adam@0 9905 else
adam@0 9906 ld_shlibs=no
adam@0 9907 fi
adam@0 9908 ;;
adam@0 9909
adam@0 9910 os2*)
adam@0 9911 hardcode_libdir_flag_spec='-L$libdir'
adam@0 9912 hardcode_minus_L=yes
adam@0 9913 allow_undefined_flag=unsupported
adam@12 9914 archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
adam@0 9915 old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
adam@0 9916 ;;
adam@0 9917
adam@0 9918 osf3*)
adam@0 9919 if test "$GCC" = yes; then
adam@0 9920 allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
adam@12 9921 archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
adam@0 9922 else
adam@0 9923 allow_undefined_flag=' -expect_unresolved \*'
adam@12 9924 archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
adam@0 9925 fi
adam@0 9926 archive_cmds_need_lc='no'
adam@0 9927 hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
adam@0 9928 hardcode_libdir_separator=:
adam@0 9929 ;;
adam@0 9930
adam@0 9931 osf4* | osf5*) # as osf3* with the addition of -msym flag
adam@0 9932 if test "$GCC" = yes; then
adam@0 9933 allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
adam@12 9934 archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
adam@0 9935 hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
adam@0 9936 else
adam@0 9937 allow_undefined_flag=' -expect_unresolved \*'
adam@12 9938 archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
adam@0 9939 archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~
adam@12 9940 $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp'
adam@0 9941
adam@0 9942 # Both c and cxx compiler support -rpath directly
adam@0 9943 hardcode_libdir_flag_spec='-rpath $libdir'
adam@0 9944 fi
adam@0 9945 archive_cmds_need_lc='no'
adam@0 9946 hardcode_libdir_separator=:
adam@0 9947 ;;
adam@0 9948
adam@0 9949 solaris*)
adam@0 9950 no_undefined_flag=' -z defs'
adam@0 9951 if test "$GCC" = yes; then
adam@0 9952 wlarc='${wl}'
adam@12 9953 archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9954 archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
adam@12 9955 $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
adam@0 9956 else
adam@0 9957 case `$CC -V 2>&1` in
adam@0 9958 *"Compilers 5.0"*)
adam@0 9959 wlarc=''
adam@0 9960 archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
adam@0 9961 archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
adam@0 9962 $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
adam@0 9963 ;;
adam@0 9964 *)
adam@0 9965 wlarc='${wl}'
adam@0 9966 archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9967 archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
adam@0 9968 $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
adam@0 9969 ;;
adam@0 9970 esac
adam@0 9971 fi
adam@0 9972 hardcode_libdir_flag_spec='-R$libdir'
adam@0 9973 hardcode_shlibpath_var=no
adam@0 9974 case $host_os in
adam@0 9975 solaris2.[0-5] | solaris2.[0-5].*) ;;
adam@0 9976 *)
adam@0 9977 # The compiler driver will combine and reorder linker options,
adam@0 9978 # but understands `-z linker_flag'. GCC discards it without `$wl',
adam@0 9979 # but is careful enough not to reorder.
adam@0 9980 # Supported since Solaris 2.6 (maybe 2.5.1?)
adam@0 9981 if test "$GCC" = yes; then
adam@0 9982 whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
adam@0 9983 else
adam@0 9984 whole_archive_flag_spec='-z allextract$convenience -z defaultextract'
adam@0 9985 fi
adam@0 9986 ;;
adam@0 9987 esac
adam@0 9988 link_all_deplibs=yes
adam@0 9989 ;;
adam@0 9990
adam@0 9991 sunos4*)
adam@0 9992 if test "x$host_vendor" = xsequent; then
adam@0 9993 # Use $CC to link under sequent, because it throws in some extra .o
adam@0 9994 # files that make .init and .fini sections work.
adam@0 9995 archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 9996 else
adam@0 9997 archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
adam@0 9998 fi
adam@0 9999 hardcode_libdir_flag_spec='-L$libdir'
adam@0 10000 hardcode_direct=yes
adam@0 10001 hardcode_minus_L=yes
adam@0 10002 hardcode_shlibpath_var=no
adam@0 10003 ;;
adam@0 10004
adam@0 10005 sysv4)
adam@0 10006 case $host_vendor in
adam@0 10007 sni)
adam@0 10008 archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
adam@0 10009 hardcode_direct=yes # is this really true???
adam@0 10010 ;;
adam@0 10011 siemens)
adam@0 10012 ## LD is ld it makes a PLAMLIB
adam@0 10013 ## CC just makes a GrossModule.
adam@0 10014 archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags'
adam@0 10015 reload_cmds='$CC -r -o $output$reload_objs'
adam@0 10016 hardcode_direct=no
adam@0 10017 ;;
adam@0 10018 motorola)
adam@0 10019 archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
adam@0 10020 hardcode_direct=no #Motorola manual says yes, but my tests say they lie
adam@0 10021 ;;
adam@0 10022 esac
adam@0 10023 runpath_var='LD_RUN_PATH'
adam@0 10024 hardcode_shlibpath_var=no
adam@0 10025 ;;
adam@0 10026
adam@0 10027 sysv4.3*)
adam@0 10028 archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
adam@0 10029 hardcode_shlibpath_var=no
adam@0 10030 export_dynamic_flag_spec='-Bexport'
adam@0 10031 ;;
adam@0 10032
adam@0 10033 sysv4*MP*)
adam@0 10034 if test -d /usr/nec; then
adam@0 10035 archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
adam@0 10036 hardcode_shlibpath_var=no
adam@0 10037 runpath_var=LD_RUN_PATH
adam@0 10038 hardcode_runpath_var=yes
adam@0 10039 ld_shlibs=yes
adam@0 10040 fi
adam@0 10041 ;;
adam@0 10042
adam@0 10043 sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
adam@0 10044 no_undefined_flag='${wl}-z,text'
adam@0 10045 archive_cmds_need_lc=no
adam@0 10046 hardcode_shlibpath_var=no
adam@0 10047 runpath_var='LD_RUN_PATH'
adam@0 10048
adam@0 10049 if test "$GCC" = yes; then
adam@0 10050 archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 10051 archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 10052 else
adam@0 10053 archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 10054 archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 10055 fi
adam@0 10056 ;;
adam@0 10057
adam@0 10058 sysv5* | sco3.2v5* | sco5v6*)
adam@0 10059 # Note: We can NOT use -z defs as we might desire, because we do not
adam@0 10060 # link with -lc, and that would cause any symbols used from libc to
adam@0 10061 # always be unresolved, which means just about no library would
adam@0 10062 # ever link correctly. If we're not using GNU ld we use -z text
adam@0 10063 # though, which does catch some bad symbols but isn't as heavy-handed
adam@0 10064 # as -z defs.
adam@0 10065 no_undefined_flag='${wl}-z,text'
adam@0 10066 allow_undefined_flag='${wl}-z,nodefs'
adam@0 10067 archive_cmds_need_lc=no
adam@0 10068 hardcode_shlibpath_var=no
adam@0 10069 hardcode_libdir_flag_spec='${wl}-R,$libdir'
adam@0 10070 hardcode_libdir_separator=':'
adam@0 10071 link_all_deplibs=yes
adam@0 10072 export_dynamic_flag_spec='${wl}-Bexport'
adam@0 10073 runpath_var='LD_RUN_PATH'
adam@0 10074
adam@0 10075 if test "$GCC" = yes; then
adam@0 10076 archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 10077 archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 10078 else
adam@0 10079 archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 10080 archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
adam@0 10081 fi
adam@0 10082 ;;
adam@0 10083
adam@0 10084 uts4*)
adam@0 10085 archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
adam@0 10086 hardcode_libdir_flag_spec='-L$libdir'
adam@0 10087 hardcode_shlibpath_var=no
adam@0 10088 ;;
adam@0 10089
adam@0 10090 *)
adam@0 10091 ld_shlibs=no
adam@0 10092 ;;
adam@0 10093 esac
adam@0 10094
adam@0 10095 if test x$host_vendor = xsni; then
adam@0 10096 case $host in
adam@0 10097 sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
adam@0 10098 export_dynamic_flag_spec='${wl}-Blargedynsym'
adam@0 10099 ;;
adam@0 10100 esac
adam@0 10101 fi
adam@0 10102 fi
adam@0 10103
adam@0 10104 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5
adam@0 10105 $as_echo "$ld_shlibs" >&6; }
adam@0 10106 test "$ld_shlibs" = no && can_build_shared=no
adam@0 10107
adam@0 10108 with_gnu_ld=$with_gnu_ld
adam@0 10109
adam@0 10110
adam@0 10111
adam@0 10112
adam@0 10113
adam@0 10114
adam@0 10115
adam@0 10116
adam@0 10117
adam@0 10118
adam@0 10119
adam@0 10120
adam@0 10121
adam@0 10122
adam@0 10123
adam@0 10124 #
adam@0 10125 # Do we need to explicitly link libc?
adam@0 10126 #
adam@0 10127 case "x$archive_cmds_need_lc" in
adam@0 10128 x|xyes)
adam@0 10129 # Assume -lc should be added
adam@0 10130 archive_cmds_need_lc=yes
adam@0 10131
adam@0 10132 if test "$enable_shared" = yes && test "$GCC" = yes; then
adam@0 10133 case $archive_cmds in
adam@0 10134 *'~'*)
adam@0 10135 # FIXME: we may have to deal with multi-command sequences.
adam@0 10136 ;;
adam@0 10137 '$CC '*)
adam@0 10138 # Test whether the compiler implicitly links with -lc since on some
adam@0 10139 # systems, -lgcc has to come before -lc. If gcc already passes -lc
adam@0 10140 # to ld, don't add -lc before -lgcc.
adam@0 10141 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
adam@0 10142 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
adam@12 10143 if ${lt_cv_archive_cmds_need_lc+:} false; then :
adam@12 10144 $as_echo_n "(cached) " >&6
adam@12 10145 else
adam@12 10146 $RM conftest*
adam@12 10147 echo "$lt_simple_compile_test_code" > conftest.$ac_ext
adam@12 10148
adam@12 10149 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
adam@0 10150 (eval $ac_compile) 2>&5
adam@0 10151 ac_status=$?
adam@0 10152 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 10153 test $ac_status = 0; } 2>conftest.err; then
adam@12 10154 soname=conftest
adam@12 10155 lib=conftest
adam@12 10156 libobjs=conftest.$ac_objext
adam@12 10157 deplibs=
adam@12 10158 wl=$lt_prog_compiler_wl
adam@12 10159 pic_flag=$lt_prog_compiler_pic
adam@12 10160 compiler_flags=-v
adam@12 10161 linker_flags=-v
adam@12 10162 verstring=
adam@12 10163 output_objdir=.
adam@12 10164 libname=conftest
adam@12 10165 lt_save_allow_undefined_flag=$allow_undefined_flag
adam@12 10166 allow_undefined_flag=
adam@12 10167 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5
adam@0 10168 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5
adam@0 10169 ac_status=$?
adam@0 10170 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 10171 test $ac_status = 0; }
adam@12 10172 then
adam@12 10173 lt_cv_archive_cmds_need_lc=no
adam@12 10174 else
adam@12 10175 lt_cv_archive_cmds_need_lc=yes
adam@12 10176 fi
adam@12 10177 allow_undefined_flag=$lt_save_allow_undefined_flag
adam@12 10178 else
adam@12 10179 cat conftest.err 1>&5
adam@12 10180 fi
adam@12 10181 $RM conftest*
adam@12 10182
adam@12 10183 fi
adam@12 10184 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5
adam@12 10185 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; }
adam@12 10186 archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc
adam@0 10187 ;;
adam@0 10188 esac
adam@0 10189 fi
adam@0 10190 ;;
adam@0 10191 esac
adam@0 10192
adam@0 10193
adam@0 10194
adam@0 10195
adam@0 10196
adam@0 10197
adam@0 10198
adam@0 10199
adam@0 10200
adam@0 10201
adam@0 10202
adam@0 10203
adam@0 10204
adam@0 10205
adam@0 10206
adam@0 10207
adam@0 10208
adam@0 10209
adam@0 10210
adam@0 10211
adam@0 10212
adam@0 10213
adam@0 10214
adam@0 10215
adam@0 10216
adam@0 10217
adam@0 10218
adam@0 10219
adam@0 10220
adam@0 10221
adam@0 10222
adam@0 10223
adam@0 10224
adam@0 10225
adam@0 10226
adam@0 10227
adam@0 10228
adam@0 10229
adam@0 10230
adam@0 10231
adam@0 10232
adam@0 10233
adam@0 10234
adam@0 10235
adam@0 10236
adam@0 10237
adam@0 10238
adam@0 10239
adam@0 10240
adam@0 10241
adam@0 10242
adam@0 10243
adam@0 10244
adam@0 10245
adam@0 10246
adam@0 10247
adam@0 10248
adam@0 10249
adam@0 10250
adam@0 10251
adam@0 10252
adam@0 10253
adam@0 10254
adam@0 10255
adam@0 10256
adam@0 10257
adam@0 10258
adam@0 10259
adam@0 10260
adam@0 10261
adam@0 10262
adam@0 10263
adam@0 10264
adam@0 10265
adam@0 10266
adam@0 10267
adam@0 10268
adam@0 10269
adam@0 10270
adam@0 10271
adam@0 10272
adam@0 10273
adam@0 10274
adam@0 10275
adam@0 10276
adam@0 10277
adam@0 10278
adam@0 10279
adam@0 10280
adam@0 10281
adam@0 10282
adam@0 10283
adam@0 10284
adam@0 10285
adam@0 10286
adam@0 10287
adam@0 10288
adam@0 10289
adam@0 10290
adam@0 10291
adam@0 10292
adam@0 10293
adam@0 10294
adam@0 10295
adam@0 10296
adam@0 10297
adam@0 10298
adam@0 10299
adam@0 10300
adam@0 10301
adam@0 10302
adam@0 10303
adam@0 10304
adam@0 10305
adam@0 10306
adam@0 10307
adam@0 10308
adam@0 10309
adam@0 10310
adam@0 10311
adam@0 10312
adam@0 10313
adam@0 10314
adam@0 10315
adam@0 10316
adam@0 10317
adam@0 10318
adam@0 10319
adam@0 10320
adam@0 10321
adam@0 10322
adam@0 10323
adam@0 10324
adam@0 10325
adam@0 10326
adam@0 10327
adam@0 10328
adam@0 10329
adam@0 10330
adam@0 10331
adam@0 10332
adam@0 10333
adam@0 10334
adam@0 10335
adam@0 10336
adam@0 10337
adam@0 10338
adam@0 10339
adam@0 10340
adam@0 10341
adam@0 10342
adam@0 10343
adam@0 10344 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5
adam@0 10345 $as_echo_n "checking dynamic linker characteristics... " >&6; }
adam@0 10346
adam@0 10347 if test "$GCC" = yes; then
adam@0 10348 case $host_os in
adam@0 10349 darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
adam@0 10350 *) lt_awk_arg="/^libraries:/" ;;
adam@0 10351 esac
adam@12 10352 case $host_os in
adam@12 10353 mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;;
adam@12 10354 *) lt_sed_strip_eq="s,=/,/,g" ;;
adam@12 10355 esac
adam@12 10356 lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq`
adam@12 10357 case $lt_search_path_spec in
adam@12 10358 *\;*)
adam@0 10359 # if the path contains ";" then we assume it to be the separator
adam@0 10360 # otherwise default to the standard path separator (i.e. ":") - it is
adam@0 10361 # assumed that no part of a normal pathname contains ";" but that should
adam@0 10362 # okay in the real world where ";" in dirpaths is itself problematic.
adam@12 10363 lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'`
adam@12 10364 ;;
adam@12 10365 *)
adam@12 10366 lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"`
adam@12 10367 ;;
adam@12 10368 esac
adam@0 10369 # Ok, now we have the path, separated by spaces, we can step through it
adam@0 10370 # and add multilib dir if necessary.
adam@0 10371 lt_tmp_lt_search_path_spec=
adam@0 10372 lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
adam@0 10373 for lt_sys_path in $lt_search_path_spec; do
adam@0 10374 if test -d "$lt_sys_path/$lt_multi_os_dir"; then
adam@0 10375 lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
adam@0 10376 else
adam@0 10377 test -d "$lt_sys_path" && \
adam@0 10378 lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
adam@0 10379 fi
adam@0 10380 done
adam@12 10381 lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk '
adam@0 10382 BEGIN {RS=" "; FS="/|\n";} {
adam@0 10383 lt_foo="";
adam@0 10384 lt_count=0;
adam@0 10385 for (lt_i = NF; lt_i > 0; lt_i--) {
adam@0 10386 if ($lt_i != "" && $lt_i != ".") {
adam@0 10387 if ($lt_i == "..") {
adam@0 10388 lt_count++;
adam@0 10389 } else {
adam@0 10390 if (lt_count == 0) {
adam@0 10391 lt_foo="/" $lt_i lt_foo;
adam@0 10392 } else {
adam@0 10393 lt_count--;
adam@0 10394 }
adam@0 10395 }
adam@0 10396 }
adam@0 10397 }
adam@0 10398 if (lt_foo != "") { lt_freq[lt_foo]++; }
adam@0 10399 if (lt_freq[lt_foo] == 1) { print lt_foo; }
adam@0 10400 }'`
adam@12 10401 # AWK program above erroneously prepends '/' to C:/dos/paths
adam@12 10402 # for these hosts.
adam@12 10403 case $host_os in
adam@12 10404 mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\
adam@12 10405 $SED 's,/\([A-Za-z]:\),\1,g'` ;;
adam@12 10406 esac
adam@12 10407 sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP`
adam@0 10408 else
adam@0 10409 sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
adam@0 10410 fi
adam@0 10411 library_names_spec=
adam@0 10412 libname_spec='lib$name'
adam@0 10413 soname_spec=
adam@0 10414 shrext_cmds=".so"
adam@0 10415 postinstall_cmds=
adam@0 10416 postuninstall_cmds=
adam@0 10417 finish_cmds=
adam@0 10418 finish_eval=
adam@0 10419 shlibpath_var=
adam@0 10420 shlibpath_overrides_runpath=unknown
adam@0 10421 version_type=none
adam@0 10422 dynamic_linker="$host_os ld.so"
adam@0 10423 sys_lib_dlsearch_path_spec="/lib /usr/lib"
adam@0 10424 need_lib_prefix=unknown
adam@0 10425 hardcode_into_libs=no
adam@0 10426
adam@0 10427 # when you set need_version to no, make sure it does not cause -set_version
adam@0 10428 # flags to be left without arguments
adam@0 10429 need_version=unknown
adam@0 10430
adam@0 10431 case $host_os in
adam@0 10432 aix3*)
adam@20 10433 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 10434 library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
adam@0 10435 shlibpath_var=LIBPATH
adam@0 10436
adam@0 10437 # AIX 3 has no versioning support, so we append a major version to the name.
adam@0 10438 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10439 ;;
adam@0 10440
adam@0 10441 aix[4-9]*)
adam@20 10442 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 10443 need_lib_prefix=no
adam@0 10444 need_version=no
adam@0 10445 hardcode_into_libs=yes
adam@0 10446 if test "$host_cpu" = ia64; then
adam@0 10447 # AIX 5 supports IA64
adam@0 10448 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
adam@0 10449 shlibpath_var=LD_LIBRARY_PATH
adam@0 10450 else
adam@0 10451 # With GCC up to 2.95.x, collect2 would create an import file
adam@0 10452 # for dependence libraries. The import file would start with
adam@0 10453 # the line `#! .'. This would cause the generated library to
adam@0 10454 # depend on `.', always an invalid library. This was fixed in
adam@0 10455 # development snapshots of GCC prior to 3.0.
adam@0 10456 case $host_os in
adam@0 10457 aix4 | aix4.[01] | aix4.[01].*)
adam@0 10458 if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
adam@0 10459 echo ' yes '
adam@0 10460 echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
adam@0 10461 :
adam@0 10462 else
adam@0 10463 can_build_shared=no
adam@0 10464 fi
adam@0 10465 ;;
adam@0 10466 esac
adam@0 10467 # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
adam@0 10468 # soname into executable. Probably we can add versioning support to
adam@0 10469 # collect2, so additional links can be useful in future.
adam@0 10470 if test "$aix_use_runtimelinking" = yes; then
adam@0 10471 # If using run time linking (on AIX 4.2 or later) use lib<name>.so
adam@0 10472 # instead of lib<name>.a to let people know that these are not
adam@0 10473 # typical AIX shared libraries.
adam@0 10474 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 10475 else
adam@0 10476 # We preserve .a as extension for shared libraries through AIX4.2
adam@0 10477 # and later when we are not doing run time linking.
adam@0 10478 library_names_spec='${libname}${release}.a $libname.a'
adam@0 10479 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10480 fi
adam@0 10481 shlibpath_var=LIBPATH
adam@0 10482 fi
adam@0 10483 ;;
adam@0 10484
adam@0 10485 amigaos*)
adam@0 10486 case $host_cpu in
adam@0 10487 powerpc)
adam@0 10488 # Since July 2007 AmigaOS4 officially supports .so libraries.
adam@0 10489 # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
adam@0 10490 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 10491 ;;
adam@0 10492 m68k)
adam@0 10493 library_names_spec='$libname.ixlibrary $libname.a'
adam@0 10494 # Create ${libname}_ixlibrary.a entries in /sys/libs.
adam@12 10495 finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
adam@0 10496 ;;
adam@0 10497 esac
adam@0 10498 ;;
adam@0 10499
adam@0 10500 beos*)
adam@0 10501 library_names_spec='${libname}${shared_ext}'
adam@0 10502 dynamic_linker="$host_os ld.so"
adam@0 10503 shlibpath_var=LIBRARY_PATH
adam@0 10504 ;;
adam@0 10505
adam@0 10506 bsdi[45]*)
adam@20 10507 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 10508 need_version=no
adam@0 10509 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 10510 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10511 finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
adam@0 10512 shlibpath_var=LD_LIBRARY_PATH
adam@0 10513 sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
adam@0 10514 sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
adam@0 10515 # the default ld.so.conf also contains /usr/contrib/lib and
adam@0 10516 # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
adam@0 10517 # libtool to hard-code these into programs
adam@0 10518 ;;
adam@0 10519
adam@0 10520 cygwin* | mingw* | pw32* | cegcc*)
adam@0 10521 version_type=windows
adam@0 10522 shrext_cmds=".dll"
adam@0 10523 need_version=no
adam@0 10524 need_lib_prefix=no
adam@0 10525
adam@12 10526 case $GCC,$cc_basename in
adam@12 10527 yes,*)
adam@12 10528 # gcc
adam@0 10529 library_names_spec='$libname.dll.a'
adam@0 10530 # DLL is installed to $(libdir)/../bin by postinstall_cmds
adam@0 10531 postinstall_cmds='base_file=`basename \${file}`~
adam@0 10532 dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
adam@0 10533 dldir=$destdir/`dirname \$dlpath`~
adam@0 10534 test -d \$dldir || mkdir -p \$dldir~
adam@0 10535 $install_prog $dir/$dlname \$dldir/$dlname~
adam@0 10536 chmod a+x \$dldir/$dlname~
adam@0 10537 if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
adam@0 10538 eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
adam@0 10539 fi'
adam@0 10540 postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
adam@0 10541 dlpath=$dir/\$dldll~
adam@0 10542 $RM \$dlpath'
adam@0 10543 shlibpath_overrides_runpath=yes
adam@0 10544
adam@0 10545 case $host_os in
adam@0 10546 cygwin*)
adam@0 10547 # Cygwin DLLs use 'cyg' prefix rather than 'lib'
adam@0 10548 soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
adam@12 10549
adam@12 10550 sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"
adam@0 10551 ;;
adam@0 10552 mingw* | cegcc*)
adam@0 10553 # MinGW DLLs use traditional 'lib' prefix
adam@0 10554 soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
adam@0 10555 ;;
adam@0 10556 pw32*)
adam@0 10557 # pw32 DLLs use 'pw' prefix rather than 'lib'
adam@0 10558 library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
adam@0 10559 ;;
adam@0 10560 esac
adam@12 10561 dynamic_linker='Win32 ld.exe'
adam@12 10562 ;;
adam@12 10563
adam@12 10564 *,cl*)
adam@12 10565 # Native MSVC
adam@12 10566 libname_spec='$name'
adam@12 10567 soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
adam@12 10568 library_names_spec='${libname}.dll.lib'
adam@12 10569
adam@12 10570 case $build_os in
adam@12 10571 mingw*)
adam@12 10572 sys_lib_search_path_spec=
adam@12 10573 lt_save_ifs=$IFS
adam@12 10574 IFS=';'
adam@12 10575 for lt_path in $LIB
adam@12 10576 do
adam@12 10577 IFS=$lt_save_ifs
adam@12 10578 # Let DOS variable expansion print the short 8.3 style file name.
adam@12 10579 lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"`
adam@12 10580 sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path"
adam@12 10581 done
adam@12 10582 IFS=$lt_save_ifs
adam@12 10583 # Convert to MSYS style.
adam@12 10584 sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'`
adam@12 10585 ;;
adam@12 10586 cygwin*)
adam@12 10587 # Convert to unix form, then to dos form, then back to unix form
adam@12 10588 # but this time dos style (no spaces!) so that the unix form looks
adam@12 10589 # like /cygdrive/c/PROGRA~1:/cygdr...
adam@12 10590 sys_lib_search_path_spec=`cygpath --path --unix "$LIB"`
adam@12 10591 sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null`
adam@12 10592 sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
adam@12 10593 ;;
adam@12 10594 *)
adam@12 10595 sys_lib_search_path_spec="$LIB"
adam@12 10596 if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then
adam@12 10597 # It is most probably a Windows format PATH.
adam@12 10598 sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
adam@12 10599 else
adam@12 10600 sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
adam@12 10601 fi
adam@12 10602 # FIXME: find the short name or the path components, as spaces are
adam@12 10603 # common. (e.g. "Program Files" -> "PROGRA~1")
adam@12 10604 ;;
adam@12 10605 esac
adam@12 10606
adam@12 10607 # DLL is installed to $(libdir)/../bin by postinstall_cmds
adam@12 10608 postinstall_cmds='base_file=`basename \${file}`~
adam@12 10609 dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
adam@12 10610 dldir=$destdir/`dirname \$dlpath`~
adam@12 10611 test -d \$dldir || mkdir -p \$dldir~
adam@12 10612 $install_prog $dir/$dlname \$dldir/$dlname'
adam@12 10613 postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
adam@12 10614 dlpath=$dir/\$dldll~
adam@12 10615 $RM \$dlpath'
adam@12 10616 shlibpath_overrides_runpath=yes
adam@12 10617 dynamic_linker='Win32 link.exe'
adam@0 10618 ;;
adam@0 10619
adam@0 10620 *)
adam@12 10621 # Assume MSVC wrapper
adam@0 10622 library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
adam@12 10623 dynamic_linker='Win32 ld.exe'
adam@0 10624 ;;
adam@0 10625 esac
adam@0 10626 # FIXME: first we should search . and the directory the executable is in
adam@0 10627 shlibpath_var=PATH
adam@0 10628 ;;
adam@0 10629
adam@0 10630 darwin* | rhapsody*)
adam@0 10631 dynamic_linker="$host_os dyld"
adam@0 10632 version_type=darwin
adam@0 10633 need_lib_prefix=no
adam@0 10634 need_version=no
adam@0 10635 library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
adam@0 10636 soname_spec='${libname}${release}${major}$shared_ext'
adam@0 10637 shlibpath_overrides_runpath=yes
adam@0 10638 shlibpath_var=DYLD_LIBRARY_PATH
adam@0 10639 shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
adam@0 10640
adam@0 10641 sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"
adam@0 10642 sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
adam@0 10643 ;;
adam@0 10644
adam@0 10645 dgux*)
adam@20 10646 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 10647 need_lib_prefix=no
adam@0 10648 need_version=no
adam@0 10649 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
adam@0 10650 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10651 shlibpath_var=LD_LIBRARY_PATH
adam@0 10652 ;;
adam@0 10653
adam@0 10654 freebsd* | dragonfly*)
adam@0 10655 # DragonFly does not have aout. When/if they implement a new
adam@0 10656 # versioning mechanism, adjust this.
adam@0 10657 if test -x /usr/bin/objformat; then
adam@0 10658 objformat=`/usr/bin/objformat`
adam@0 10659 else
adam@0 10660 case $host_os in
adam@20 10661 freebsd[23].*) objformat=aout ;;
adam@0 10662 *) objformat=elf ;;
adam@0 10663 esac
adam@0 10664 fi
adam@0 10665 version_type=freebsd-$objformat
adam@0 10666 case $version_type in
adam@0 10667 freebsd-elf*)
adam@0 10668 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
adam@0 10669 need_version=no
adam@0 10670 need_lib_prefix=no
adam@0 10671 ;;
adam@0 10672 freebsd-*)
adam@0 10673 library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
adam@0 10674 need_version=yes
adam@0 10675 ;;
adam@0 10676 esac
adam@0 10677 shlibpath_var=LD_LIBRARY_PATH
adam@0 10678 case $host_os in
adam@20 10679 freebsd2.*)
adam@0 10680 shlibpath_overrides_runpath=yes
adam@0 10681 ;;
adam@0 10682 freebsd3.[01]* | freebsdelf3.[01]*)
adam@0 10683 shlibpath_overrides_runpath=yes
adam@0 10684 hardcode_into_libs=yes
adam@0 10685 ;;
adam@0 10686 freebsd3.[2-9]* | freebsdelf3.[2-9]* | \
adam@0 10687 freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1)
adam@0 10688 shlibpath_overrides_runpath=no
adam@0 10689 hardcode_into_libs=yes
adam@0 10690 ;;
adam@0 10691 *) # from 4.6 on, and DragonFly
adam@0 10692 shlibpath_overrides_runpath=yes
adam@0 10693 hardcode_into_libs=yes
adam@0 10694 ;;
adam@0 10695 esac
adam@0 10696 ;;
adam@0 10697
adam@0 10698 gnu*)
adam@20 10699 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 10700 need_lib_prefix=no
adam@0 10701 need_version=no
adam@0 10702 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
adam@0 10703 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10704 shlibpath_var=LD_LIBRARY_PATH
adam@12 10705 shlibpath_overrides_runpath=no
adam@12 10706 hardcode_into_libs=yes
adam@12 10707 ;;
adam@12 10708
adam@12 10709 haiku*)
adam@20 10710 version_type=linux # correct to gnu/linux during the next big refactor
adam@12 10711 need_lib_prefix=no
adam@12 10712 need_version=no
adam@12 10713 dynamic_linker="$host_os runtime_loader"
adam@12 10714 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
adam@12 10715 soname_spec='${libname}${release}${shared_ext}$major'
adam@12 10716 shlibpath_var=LIBRARY_PATH
adam@12 10717 shlibpath_overrides_runpath=yes
adam@12 10718 sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
adam@0 10719 hardcode_into_libs=yes
adam@0 10720 ;;
adam@0 10721
adam@0 10722 hpux9* | hpux10* | hpux11*)
adam@0 10723 # Give a soname corresponding to the major version so that dld.sl refuses to
adam@0 10724 # link against other versions.
adam@0 10725 version_type=sunos
adam@0 10726 need_lib_prefix=no
adam@0 10727 need_version=no
adam@0 10728 case $host_cpu in
adam@0 10729 ia64*)
adam@0 10730 shrext_cmds='.so'
adam@0 10731 hardcode_into_libs=yes
adam@0 10732 dynamic_linker="$host_os dld.so"
adam@0 10733 shlibpath_var=LD_LIBRARY_PATH
adam@0 10734 shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
adam@0 10735 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 10736 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10737 if test "X$HPUX_IA64_MODE" = X32; then
adam@0 10738 sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
adam@0 10739 else
adam@0 10740 sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
adam@0 10741 fi
adam@0 10742 sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
adam@0 10743 ;;
adam@0 10744 hppa*64*)
adam@0 10745 shrext_cmds='.sl'
adam@0 10746 hardcode_into_libs=yes
adam@0 10747 dynamic_linker="$host_os dld.sl"
adam@0 10748 shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
adam@0 10749 shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
adam@0 10750 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 10751 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10752 sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
adam@0 10753 sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
adam@0 10754 ;;
adam@0 10755 *)
adam@0 10756 shrext_cmds='.sl'
adam@0 10757 dynamic_linker="$host_os dld.sl"
adam@0 10758 shlibpath_var=SHLIB_PATH
adam@0 10759 shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
adam@0 10760 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 10761 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10762 ;;
adam@0 10763 esac
adam@12 10764 # HP-UX runs *really* slowly unless shared libraries are mode 555, ...
adam@0 10765 postinstall_cmds='chmod 555 $lib'
adam@12 10766 # or fails outright, so override atomically:
adam@12 10767 install_override_mode=555
adam@0 10768 ;;
adam@0 10769
adam@0 10770 interix[3-9]*)
adam@20 10771 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 10772 need_lib_prefix=no
adam@0 10773 need_version=no
adam@0 10774 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
adam@0 10775 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10776 dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
adam@0 10777 shlibpath_var=LD_LIBRARY_PATH
adam@0 10778 shlibpath_overrides_runpath=no
adam@0 10779 hardcode_into_libs=yes
adam@0 10780 ;;
adam@0 10781
adam@0 10782 irix5* | irix6* | nonstopux*)
adam@0 10783 case $host_os in
adam@0 10784 nonstopux*) version_type=nonstopux ;;
adam@0 10785 *)
adam@0 10786 if test "$lt_cv_prog_gnu_ld" = yes; then
adam@20 10787 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 10788 else
adam@0 10789 version_type=irix
adam@0 10790 fi ;;
adam@0 10791 esac
adam@0 10792 need_lib_prefix=no
adam@0 10793 need_version=no
adam@0 10794 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10795 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
adam@0 10796 case $host_os in
adam@0 10797 irix5* | nonstopux*)
adam@0 10798 libsuff= shlibsuff=
adam@0 10799 ;;
adam@0 10800 *)
adam@0 10801 case $LD in # libtool.m4 will add one of these switches to LD
adam@0 10802 *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
adam@0 10803 libsuff= shlibsuff= libmagic=32-bit;;
adam@0 10804 *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
adam@0 10805 libsuff=32 shlibsuff=N32 libmagic=N32;;
adam@0 10806 *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
adam@0 10807 libsuff=64 shlibsuff=64 libmagic=64-bit;;
adam@0 10808 *) libsuff= shlibsuff= libmagic=never-match;;
adam@0 10809 esac
adam@0 10810 ;;
adam@0 10811 esac
adam@0 10812 shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
adam@0 10813 shlibpath_overrides_runpath=no
adam@0 10814 sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
adam@0 10815 sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
adam@0 10816 hardcode_into_libs=yes
adam@0 10817 ;;
adam@0 10818
adam@0 10819 # No shared lib support for Linux oldld, aout, or coff.
adam@0 10820 linux*oldld* | linux*aout* | linux*coff*)
adam@0 10821 dynamic_linker=no
adam@0 10822 ;;
adam@0 10823
adam@20 10824 # This must be glibc/ELF.
adam@0 10825 linux* | k*bsd*-gnu | kopensolaris*-gnu)
adam@20 10826 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 10827 need_lib_prefix=no
adam@0 10828 need_version=no
adam@0 10829 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 10830 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10831 finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
adam@0 10832 shlibpath_var=LD_LIBRARY_PATH
adam@0 10833 shlibpath_overrides_runpath=no
adam@12 10834
adam@0 10835 # Some binutils ld are patched to set DT_RUNPATH
adam@12 10836 if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
adam@12 10837 $as_echo_n "(cached) " >&6
adam@12 10838 else
adam@12 10839 lt_cv_shlibpath_overrides_runpath=no
adam@12 10840 save_LDFLAGS=$LDFLAGS
adam@12 10841 save_libdir=$libdir
adam@12 10842 eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \
adam@12 10843 LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\""
adam@12 10844 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 10845 /* end confdefs.h. */
adam@0 10846
adam@0 10847 int
adam@0 10848 main ()
adam@0 10849 {
adam@0 10850
adam@0 10851 ;
adam@0 10852 return 0;
adam@0 10853 }
adam@0 10854 _ACEOF
adam@0 10855 if ac_fn_c_try_link "$LINENO"; then :
adam@0 10856 if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then :
adam@12 10857 lt_cv_shlibpath_overrides_runpath=yes
adam@0 10858 fi
adam@0 10859 fi
adam@0 10860 rm -f core conftest.err conftest.$ac_objext \
adam@0 10861 conftest$ac_exeext conftest.$ac_ext
adam@12 10862 LDFLAGS=$save_LDFLAGS
adam@12 10863 libdir=$save_libdir
adam@12 10864
adam@12 10865 fi
adam@12 10866
adam@12 10867 shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath
adam@0 10868
adam@0 10869 # This implies no fast_install, which is unacceptable.
adam@0 10870 # Some rework will be needed to allow for fast_install
adam@0 10871 # before this can be enabled.
adam@0 10872 hardcode_into_libs=yes
adam@0 10873
adam@0 10874 # Append ld.so.conf contents to the search path
adam@0 10875 if test -f /etc/ld.so.conf; then
adam@12 10876 lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
adam@0 10877 sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
adam@0 10878 fi
adam@0 10879
adam@0 10880 # We used to test for /lib/ld.so.1 and disable shared libraries on
adam@0 10881 # powerpc, because MkLinux only supported shared libraries with the
adam@0 10882 # GNU dynamic linker. Since this was broken with cross compilers,
adam@0 10883 # most powerpc-linux boxes support dynamic linking these days and
adam@0 10884 # people can always --disable-shared, the test was removed, and we
adam@0 10885 # assume the GNU/Linux dynamic linker is in use.
adam@0 10886 dynamic_linker='GNU/Linux ld.so'
adam@0 10887 ;;
adam@0 10888
adam@0 10889 netbsdelf*-gnu)
adam@0 10890 version_type=linux
adam@0 10891 need_lib_prefix=no
adam@0 10892 need_version=no
adam@0 10893 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
adam@0 10894 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10895 shlibpath_var=LD_LIBRARY_PATH
adam@0 10896 shlibpath_overrides_runpath=no
adam@0 10897 hardcode_into_libs=yes
adam@0 10898 dynamic_linker='NetBSD ld.elf_so'
adam@0 10899 ;;
adam@0 10900
adam@0 10901 netbsd*)
adam@0 10902 version_type=sunos
adam@0 10903 need_lib_prefix=no
adam@0 10904 need_version=no
adam@0 10905 if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
adam@0 10906 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
adam@0 10907 finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
adam@0 10908 dynamic_linker='NetBSD (a.out) ld.so'
adam@0 10909 else
adam@0 10910 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
adam@0 10911 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10912 dynamic_linker='NetBSD ld.elf_so'
adam@0 10913 fi
adam@0 10914 shlibpath_var=LD_LIBRARY_PATH
adam@0 10915 shlibpath_overrides_runpath=yes
adam@0 10916 hardcode_into_libs=yes
adam@0 10917 ;;
adam@0 10918
adam@0 10919 newsos6)
adam@20 10920 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 10921 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 10922 shlibpath_var=LD_LIBRARY_PATH
adam@0 10923 shlibpath_overrides_runpath=yes
adam@0 10924 ;;
adam@0 10925
adam@0 10926 *nto* | *qnx*)
adam@0 10927 version_type=qnx
adam@0 10928 need_lib_prefix=no
adam@0 10929 need_version=no
adam@0 10930 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 10931 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10932 shlibpath_var=LD_LIBRARY_PATH
adam@0 10933 shlibpath_overrides_runpath=no
adam@0 10934 hardcode_into_libs=yes
adam@0 10935 dynamic_linker='ldqnx.so'
adam@0 10936 ;;
adam@0 10937
adam@0 10938 openbsd*)
adam@0 10939 version_type=sunos
adam@0 10940 sys_lib_dlsearch_path_spec="/usr/lib"
adam@0 10941 need_lib_prefix=no
adam@0 10942 # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
adam@0 10943 case $host_os in
adam@0 10944 openbsd3.3 | openbsd3.3.*) need_version=yes ;;
adam@0 10945 *) need_version=no ;;
adam@0 10946 esac
adam@0 10947 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
adam@0 10948 finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
adam@0 10949 shlibpath_var=LD_LIBRARY_PATH
adam@0 10950 if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
adam@0 10951 case $host_os in
adam@0 10952 openbsd2.[89] | openbsd2.[89].*)
adam@0 10953 shlibpath_overrides_runpath=no
adam@0 10954 ;;
adam@0 10955 *)
adam@0 10956 shlibpath_overrides_runpath=yes
adam@0 10957 ;;
adam@0 10958 esac
adam@0 10959 else
adam@0 10960 shlibpath_overrides_runpath=yes
adam@0 10961 fi
adam@0 10962 ;;
adam@0 10963
adam@0 10964 os2*)
adam@0 10965 libname_spec='$name'
adam@0 10966 shrext_cmds=".dll"
adam@0 10967 need_lib_prefix=no
adam@0 10968 library_names_spec='$libname${shared_ext} $libname.a'
adam@0 10969 dynamic_linker='OS/2 ld.exe'
adam@0 10970 shlibpath_var=LIBPATH
adam@0 10971 ;;
adam@0 10972
adam@0 10973 osf3* | osf4* | osf5*)
adam@0 10974 version_type=osf
adam@0 10975 need_lib_prefix=no
adam@0 10976 need_version=no
adam@0 10977 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10978 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 10979 shlibpath_var=LD_LIBRARY_PATH
adam@0 10980 sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
adam@0 10981 sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
adam@0 10982 ;;
adam@0 10983
adam@0 10984 rdos*)
adam@0 10985 dynamic_linker=no
adam@0 10986 ;;
adam@0 10987
adam@0 10988 solaris*)
adam@20 10989 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 10990 need_lib_prefix=no
adam@0 10991 need_version=no
adam@0 10992 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 10993 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 10994 shlibpath_var=LD_LIBRARY_PATH
adam@0 10995 shlibpath_overrides_runpath=yes
adam@0 10996 hardcode_into_libs=yes
adam@0 10997 # ldd complains unless libraries are executable
adam@0 10998 postinstall_cmds='chmod +x $lib'
adam@0 10999 ;;
adam@0 11000
adam@0 11001 sunos4*)
adam@0 11002 version_type=sunos
adam@0 11003 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
adam@0 11004 finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
adam@0 11005 shlibpath_var=LD_LIBRARY_PATH
adam@0 11006 shlibpath_overrides_runpath=yes
adam@0 11007 if test "$with_gnu_ld" = yes; then
adam@0 11008 need_lib_prefix=no
adam@0 11009 fi
adam@0 11010 need_version=yes
adam@0 11011 ;;
adam@0 11012
adam@0 11013 sysv4 | sysv4.3*)
adam@20 11014 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 11015 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 11016 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 11017 shlibpath_var=LD_LIBRARY_PATH
adam@0 11018 case $host_vendor in
adam@0 11019 sni)
adam@0 11020 shlibpath_overrides_runpath=no
adam@0 11021 need_lib_prefix=no
adam@0 11022 runpath_var=LD_RUN_PATH
adam@0 11023 ;;
adam@0 11024 siemens)
adam@0 11025 need_lib_prefix=no
adam@0 11026 ;;
adam@0 11027 motorola)
adam@0 11028 need_lib_prefix=no
adam@0 11029 need_version=no
adam@0 11030 shlibpath_overrides_runpath=no
adam@0 11031 sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
adam@0 11032 ;;
adam@0 11033 esac
adam@0 11034 ;;
adam@0 11035
adam@0 11036 sysv4*MP*)
adam@0 11037 if test -d /usr/nec ;then
adam@20 11038 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 11039 library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
adam@0 11040 soname_spec='$libname${shared_ext}.$major'
adam@0 11041 shlibpath_var=LD_LIBRARY_PATH
adam@0 11042 fi
adam@0 11043 ;;
adam@0 11044
adam@0 11045 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
adam@0 11046 version_type=freebsd-elf
adam@0 11047 need_lib_prefix=no
adam@0 11048 need_version=no
adam@0 11049 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
adam@0 11050 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 11051 shlibpath_var=LD_LIBRARY_PATH
adam@0 11052 shlibpath_overrides_runpath=yes
adam@0 11053 hardcode_into_libs=yes
adam@0 11054 if test "$with_gnu_ld" = yes; then
adam@0 11055 sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
adam@0 11056 else
adam@0 11057 sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
adam@0 11058 case $host_os in
adam@0 11059 sco3.2v5*)
adam@0 11060 sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
adam@0 11061 ;;
adam@0 11062 esac
adam@0 11063 fi
adam@0 11064 sys_lib_dlsearch_path_spec='/usr/lib'
adam@0 11065 ;;
adam@0 11066
adam@0 11067 tpf*)
adam@0 11068 # TPF is a cross-target only. Preferred cross-host = GNU/Linux.
adam@20 11069 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 11070 need_lib_prefix=no
adam@0 11071 need_version=no
adam@0 11072 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 11073 shlibpath_var=LD_LIBRARY_PATH
adam@0 11074 shlibpath_overrides_runpath=no
adam@0 11075 hardcode_into_libs=yes
adam@0 11076 ;;
adam@0 11077
adam@0 11078 uts4*)
adam@20 11079 version_type=linux # correct to gnu/linux during the next big refactor
adam@0 11080 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
adam@0 11081 soname_spec='${libname}${release}${shared_ext}$major'
adam@0 11082 shlibpath_var=LD_LIBRARY_PATH
adam@0 11083 ;;
adam@0 11084
adam@0 11085 *)
adam@0 11086 dynamic_linker=no
adam@0 11087 ;;
adam@0 11088 esac
adam@0 11089 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5
adam@0 11090 $as_echo "$dynamic_linker" >&6; }
adam@0 11091 test "$dynamic_linker" = no && can_build_shared=no
adam@0 11092
adam@0 11093 variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
adam@0 11094 if test "$GCC" = yes; then
adam@0 11095 variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
adam@0 11096 fi
adam@0 11097
adam@0 11098 if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
adam@0 11099 sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
adam@0 11100 fi
adam@0 11101 if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
adam@0 11102 sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
adam@0 11103 fi
adam@0 11104
adam@0 11105
adam@0 11106
adam@0 11107
adam@0 11108
adam@0 11109
adam@0 11110
adam@0 11111
adam@0 11112
adam@0 11113
adam@0 11114
adam@0 11115
adam@0 11116
adam@0 11117
adam@0 11118
adam@0 11119
adam@0 11120
adam@0 11121
adam@0 11122
adam@0 11123
adam@0 11124
adam@0 11125
adam@0 11126
adam@0 11127
adam@0 11128
adam@0 11129
adam@0 11130
adam@0 11131
adam@0 11132
adam@0 11133
adam@0 11134
adam@0 11135
adam@0 11136
adam@0 11137
adam@0 11138
adam@0 11139
adam@0 11140
adam@0 11141
adam@0 11142
adam@0 11143
adam@0 11144
adam@0 11145
adam@0 11146
adam@0 11147
adam@0 11148
adam@0 11149
adam@0 11150
adam@0 11151
adam@0 11152
adam@0 11153
adam@0 11154
adam@0 11155
adam@0 11156
adam@0 11157
adam@0 11158
adam@0 11159
adam@0 11160
adam@0 11161
adam@0 11162
adam@0 11163
adam@0 11164
adam@0 11165
adam@0 11166
adam@0 11167
adam@0 11168
adam@0 11169
adam@0 11170
adam@0 11171
adam@0 11172
adam@0 11173
adam@0 11174
adam@0 11175
adam@0 11176
adam@0 11177
adam@0 11178
adam@0 11179
adam@0 11180
adam@0 11181
adam@0 11182
adam@0 11183
adam@0 11184
adam@0 11185
adam@0 11186
adam@0 11187
adam@0 11188
adam@0 11189
adam@0 11190
adam@12 11191
adam@12 11192
adam@12 11193
adam@12 11194
adam@12 11195
adam@0 11196 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5
adam@0 11197 $as_echo_n "checking how to hardcode library paths into programs... " >&6; }
adam@0 11198 hardcode_action=
adam@0 11199 if test -n "$hardcode_libdir_flag_spec" ||
adam@0 11200 test -n "$runpath_var" ||
adam@0 11201 test "X$hardcode_automatic" = "Xyes" ; then
adam@0 11202
adam@0 11203 # We can hardcode non-existent directories.
adam@0 11204 if test "$hardcode_direct" != no &&
adam@0 11205 # If the only mechanism to avoid hardcoding is shlibpath_var, we
adam@0 11206 # have to relink, otherwise we might link with an installed library
adam@0 11207 # when we should be linking with a yet-to-be-installed one
adam@0 11208 ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no &&
adam@0 11209 test "$hardcode_minus_L" != no; then
adam@0 11210 # Linking always hardcodes the temporary library directory.
adam@0 11211 hardcode_action=relink
adam@0 11212 else
adam@0 11213 # We can link without hardcoding, and we can hardcode nonexisting dirs.
adam@0 11214 hardcode_action=immediate
adam@0 11215 fi
adam@0 11216 else
adam@0 11217 # We cannot hardcode anything, or else we can only hardcode existing
adam@0 11218 # directories.
adam@0 11219 hardcode_action=unsupported
adam@0 11220 fi
adam@0 11221 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5
adam@0 11222 $as_echo "$hardcode_action" >&6; }
adam@0 11223
adam@0 11224 if test "$hardcode_action" = relink ||
adam@0 11225 test "$inherit_rpath" = yes; then
adam@0 11226 # Fast installation is not supported
adam@0 11227 enable_fast_install=no
adam@0 11228 elif test "$shlibpath_overrides_runpath" = yes ||
adam@0 11229 test "$enable_shared" = no; then
adam@0 11230 # Fast installation is not necessary
adam@0 11231 enable_fast_install=needless
adam@0 11232 fi
adam@0 11233
adam@0 11234
adam@0 11235
adam@0 11236
adam@0 11237
adam@0 11238
adam@0 11239 if test "x$enable_dlopen" != xyes; then
adam@0 11240 enable_dlopen=unknown
adam@0 11241 enable_dlopen_self=unknown
adam@0 11242 enable_dlopen_self_static=unknown
adam@0 11243 else
adam@0 11244 lt_cv_dlopen=no
adam@0 11245 lt_cv_dlopen_libs=
adam@0 11246
adam@0 11247 case $host_os in
adam@0 11248 beos*)
adam@0 11249 lt_cv_dlopen="load_add_on"
adam@0 11250 lt_cv_dlopen_libs=
adam@0 11251 lt_cv_dlopen_self=yes
adam@0 11252 ;;
adam@0 11253
adam@0 11254 mingw* | pw32* | cegcc*)
adam@0 11255 lt_cv_dlopen="LoadLibrary"
adam@0 11256 lt_cv_dlopen_libs=
adam@0 11257 ;;
adam@0 11258
adam@0 11259 cygwin*)
adam@0 11260 lt_cv_dlopen="dlopen"
adam@0 11261 lt_cv_dlopen_libs=
adam@0 11262 ;;
adam@0 11263
adam@0 11264 darwin*)
adam@0 11265 # if libdl is installed we need to link against it
adam@0 11266 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
adam@0 11267 $as_echo_n "checking for dlopen in -ldl... " >&6; }
adam@12 11268 if ${ac_cv_lib_dl_dlopen+:} false; then :
adam@0 11269 $as_echo_n "(cached) " >&6
adam@0 11270 else
adam@0 11271 ac_check_lib_save_LIBS=$LIBS
adam@0 11272 LIBS="-ldl $LIBS"
adam@0 11273 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 11274 /* end confdefs.h. */
adam@0 11275
adam@0 11276 /* Override any GCC internal prototype to avoid an error.
adam@0 11277 Use char because int might match the return type of a GCC
adam@0 11278 builtin and then its argument prototype would still apply. */
adam@0 11279 #ifdef __cplusplus
adam@0 11280 extern "C"
adam@0 11281 #endif
adam@0 11282 char dlopen ();
adam@0 11283 int
adam@0 11284 main ()
adam@0 11285 {
adam@0 11286 return dlopen ();
adam@0 11287 ;
adam@0 11288 return 0;
adam@0 11289 }
adam@0 11290 _ACEOF
adam@0 11291 if ac_fn_c_try_link "$LINENO"; then :
adam@0 11292 ac_cv_lib_dl_dlopen=yes
adam@0 11293 else
adam@0 11294 ac_cv_lib_dl_dlopen=no
adam@0 11295 fi
adam@0 11296 rm -f core conftest.err conftest.$ac_objext \
adam@0 11297 conftest$ac_exeext conftest.$ac_ext
adam@0 11298 LIBS=$ac_check_lib_save_LIBS
adam@0 11299 fi
adam@0 11300 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
adam@0 11301 $as_echo "$ac_cv_lib_dl_dlopen" >&6; }
adam@12 11302 if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
adam@0 11303 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
adam@0 11304 else
adam@0 11305
adam@0 11306 lt_cv_dlopen="dyld"
adam@0 11307 lt_cv_dlopen_libs=
adam@0 11308 lt_cv_dlopen_self=yes
adam@0 11309
adam@0 11310 fi
adam@0 11311
adam@0 11312 ;;
adam@0 11313
adam@0 11314 *)
adam@0 11315 ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load"
adam@12 11316 if test "x$ac_cv_func_shl_load" = xyes; then :
adam@0 11317 lt_cv_dlopen="shl_load"
adam@0 11318 else
adam@0 11319 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5
adam@0 11320 $as_echo_n "checking for shl_load in -ldld... " >&6; }
adam@12 11321 if ${ac_cv_lib_dld_shl_load+:} false; then :
adam@0 11322 $as_echo_n "(cached) " >&6
adam@0 11323 else
adam@0 11324 ac_check_lib_save_LIBS=$LIBS
adam@0 11325 LIBS="-ldld $LIBS"
adam@0 11326 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 11327 /* end confdefs.h. */
adam@0 11328
adam@0 11329 /* Override any GCC internal prototype to avoid an error.
adam@0 11330 Use char because int might match the return type of a GCC
adam@0 11331 builtin and then its argument prototype would still apply. */
adam@0 11332 #ifdef __cplusplus
adam@0 11333 extern "C"
adam@0 11334 #endif
adam@0 11335 char shl_load ();
adam@0 11336 int
adam@0 11337 main ()
adam@0 11338 {
adam@0 11339 return shl_load ();
adam@0 11340 ;
adam@0 11341 return 0;
adam@0 11342 }
adam@0 11343 _ACEOF
adam@0 11344 if ac_fn_c_try_link "$LINENO"; then :
adam@0 11345 ac_cv_lib_dld_shl_load=yes
adam@0 11346 else
adam@0 11347 ac_cv_lib_dld_shl_load=no
adam@0 11348 fi
adam@0 11349 rm -f core conftest.err conftest.$ac_objext \
adam@0 11350 conftest$ac_exeext conftest.$ac_ext
adam@0 11351 LIBS=$ac_check_lib_save_LIBS
adam@0 11352 fi
adam@0 11353 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5
adam@0 11354 $as_echo "$ac_cv_lib_dld_shl_load" >&6; }
adam@12 11355 if test "x$ac_cv_lib_dld_shl_load" = xyes; then :
adam@0 11356 lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
adam@0 11357 else
adam@0 11358 ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen"
adam@12 11359 if test "x$ac_cv_func_dlopen" = xyes; then :
adam@0 11360 lt_cv_dlopen="dlopen"
adam@0 11361 else
adam@0 11362 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
adam@0 11363 $as_echo_n "checking for dlopen in -ldl... " >&6; }
adam@12 11364 if ${ac_cv_lib_dl_dlopen+:} false; then :
adam@0 11365 $as_echo_n "(cached) " >&6
adam@0 11366 else
adam@0 11367 ac_check_lib_save_LIBS=$LIBS
adam@0 11368 LIBS="-ldl $LIBS"
adam@0 11369 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 11370 /* end confdefs.h. */
adam@0 11371
adam@0 11372 /* Override any GCC internal prototype to avoid an error.
adam@0 11373 Use char because int might match the return type of a GCC
adam@0 11374 builtin and then its argument prototype would still apply. */
adam@0 11375 #ifdef __cplusplus
adam@0 11376 extern "C"
adam@0 11377 #endif
adam@0 11378 char dlopen ();
adam@0 11379 int
adam@0 11380 main ()
adam@0 11381 {
adam@0 11382 return dlopen ();
adam@0 11383 ;
adam@0 11384 return 0;
adam@0 11385 }
adam@0 11386 _ACEOF
adam@0 11387 if ac_fn_c_try_link "$LINENO"; then :
adam@0 11388 ac_cv_lib_dl_dlopen=yes
adam@0 11389 else
adam@0 11390 ac_cv_lib_dl_dlopen=no
adam@0 11391 fi
adam@0 11392 rm -f core conftest.err conftest.$ac_objext \
adam@0 11393 conftest$ac_exeext conftest.$ac_ext
adam@0 11394 LIBS=$ac_check_lib_save_LIBS
adam@0 11395 fi
adam@0 11396 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
adam@0 11397 $as_echo "$ac_cv_lib_dl_dlopen" >&6; }
adam@12 11398 if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
adam@0 11399 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
adam@0 11400 else
adam@0 11401 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5
adam@0 11402 $as_echo_n "checking for dlopen in -lsvld... " >&6; }
adam@12 11403 if ${ac_cv_lib_svld_dlopen+:} false; then :
adam@0 11404 $as_echo_n "(cached) " >&6
adam@0 11405 else
adam@0 11406 ac_check_lib_save_LIBS=$LIBS
adam@0 11407 LIBS="-lsvld $LIBS"
adam@0 11408 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 11409 /* end confdefs.h. */
adam@0 11410
adam@0 11411 /* Override any GCC internal prototype to avoid an error.
adam@0 11412 Use char because int might match the return type of a GCC
adam@0 11413 builtin and then its argument prototype would still apply. */
adam@0 11414 #ifdef __cplusplus
adam@0 11415 extern "C"
adam@0 11416 #endif
adam@0 11417 char dlopen ();
adam@0 11418 int
adam@0 11419 main ()
adam@0 11420 {
adam@0 11421 return dlopen ();
adam@0 11422 ;
adam@0 11423 return 0;
adam@0 11424 }
adam@0 11425 _ACEOF
adam@0 11426 if ac_fn_c_try_link "$LINENO"; then :
adam@0 11427 ac_cv_lib_svld_dlopen=yes
adam@0 11428 else
adam@0 11429 ac_cv_lib_svld_dlopen=no
adam@0 11430 fi
adam@0 11431 rm -f core conftest.err conftest.$ac_objext \
adam@0 11432 conftest$ac_exeext conftest.$ac_ext
adam@0 11433 LIBS=$ac_check_lib_save_LIBS
adam@0 11434 fi
adam@0 11435 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5
adam@0 11436 $as_echo "$ac_cv_lib_svld_dlopen" >&6; }
adam@12 11437 if test "x$ac_cv_lib_svld_dlopen" = xyes; then :
adam@0 11438 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
adam@0 11439 else
adam@0 11440 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5
adam@0 11441 $as_echo_n "checking for dld_link in -ldld... " >&6; }
adam@12 11442 if ${ac_cv_lib_dld_dld_link+:} false; then :
adam@0 11443 $as_echo_n "(cached) " >&6
adam@0 11444 else
adam@0 11445 ac_check_lib_save_LIBS=$LIBS
adam@0 11446 LIBS="-ldld $LIBS"
adam@0 11447 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 11448 /* end confdefs.h. */
adam@0 11449
adam@0 11450 /* Override any GCC internal prototype to avoid an error.
adam@0 11451 Use char because int might match the return type of a GCC
adam@0 11452 builtin and then its argument prototype would still apply. */
adam@0 11453 #ifdef __cplusplus
adam@0 11454 extern "C"
adam@0 11455 #endif
adam@0 11456 char dld_link ();
adam@0 11457 int
adam@0 11458 main ()
adam@0 11459 {
adam@0 11460 return dld_link ();
adam@0 11461 ;
adam@0 11462 return 0;
adam@0 11463 }
adam@0 11464 _ACEOF
adam@0 11465 if ac_fn_c_try_link "$LINENO"; then :
adam@0 11466 ac_cv_lib_dld_dld_link=yes
adam@0 11467 else
adam@0 11468 ac_cv_lib_dld_dld_link=no
adam@0 11469 fi
adam@0 11470 rm -f core conftest.err conftest.$ac_objext \
adam@0 11471 conftest$ac_exeext conftest.$ac_ext
adam@0 11472 LIBS=$ac_check_lib_save_LIBS
adam@0 11473 fi
adam@0 11474 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5
adam@0 11475 $as_echo "$ac_cv_lib_dld_dld_link" >&6; }
adam@12 11476 if test "x$ac_cv_lib_dld_dld_link" = xyes; then :
adam@0 11477 lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
adam@0 11478 fi
adam@0 11479
adam@0 11480
adam@0 11481 fi
adam@0 11482
adam@0 11483
adam@0 11484 fi
adam@0 11485
adam@0 11486
adam@0 11487 fi
adam@0 11488
adam@0 11489
adam@0 11490 fi
adam@0 11491
adam@0 11492
adam@0 11493 fi
adam@0 11494
adam@0 11495 ;;
adam@0 11496 esac
adam@0 11497
adam@0 11498 if test "x$lt_cv_dlopen" != xno; then
adam@0 11499 enable_dlopen=yes
adam@0 11500 else
adam@0 11501 enable_dlopen=no
adam@0 11502 fi
adam@0 11503
adam@0 11504 case $lt_cv_dlopen in
adam@0 11505 dlopen)
adam@0 11506 save_CPPFLAGS="$CPPFLAGS"
adam@0 11507 test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
adam@0 11508
adam@0 11509 save_LDFLAGS="$LDFLAGS"
adam@0 11510 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
adam@0 11511
adam@0 11512 save_LIBS="$LIBS"
adam@0 11513 LIBS="$lt_cv_dlopen_libs $LIBS"
adam@0 11514
adam@0 11515 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5
adam@0 11516 $as_echo_n "checking whether a program can dlopen itself... " >&6; }
adam@12 11517 if ${lt_cv_dlopen_self+:} false; then :
adam@0 11518 $as_echo_n "(cached) " >&6
adam@0 11519 else
adam@0 11520 if test "$cross_compiling" = yes; then :
adam@0 11521 lt_cv_dlopen_self=cross
adam@0 11522 else
adam@0 11523 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
adam@0 11524 lt_status=$lt_dlunknown
adam@0 11525 cat > conftest.$ac_ext <<_LT_EOF
adam@12 11526 #line $LINENO "configure"
adam@0 11527 #include "confdefs.h"
adam@0 11528
adam@0 11529 #if HAVE_DLFCN_H
adam@0 11530 #include <dlfcn.h>
adam@0 11531 #endif
adam@0 11532
adam@0 11533 #include <stdio.h>
adam@0 11534
adam@0 11535 #ifdef RTLD_GLOBAL
adam@0 11536 # define LT_DLGLOBAL RTLD_GLOBAL
adam@0 11537 #else
adam@0 11538 # ifdef DL_GLOBAL
adam@0 11539 # define LT_DLGLOBAL DL_GLOBAL
adam@0 11540 # else
adam@0 11541 # define LT_DLGLOBAL 0
adam@0 11542 # endif
adam@0 11543 #endif
adam@0 11544
adam@0 11545 /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
adam@0 11546 find out it does not work in some platform. */
adam@0 11547 #ifndef LT_DLLAZY_OR_NOW
adam@0 11548 # ifdef RTLD_LAZY
adam@0 11549 # define LT_DLLAZY_OR_NOW RTLD_LAZY
adam@0 11550 # else
adam@0 11551 # ifdef DL_LAZY
adam@0 11552 # define LT_DLLAZY_OR_NOW DL_LAZY
adam@0 11553 # else
adam@0 11554 # ifdef RTLD_NOW
adam@0 11555 # define LT_DLLAZY_OR_NOW RTLD_NOW
adam@0 11556 # else
adam@0 11557 # ifdef DL_NOW
adam@0 11558 # define LT_DLLAZY_OR_NOW DL_NOW
adam@0 11559 # else
adam@0 11560 # define LT_DLLAZY_OR_NOW 0
adam@0 11561 # endif
adam@0 11562 # endif
adam@0 11563 # endif
adam@0 11564 # endif
adam@0 11565 #endif
adam@0 11566
adam@12 11567 /* When -fvisbility=hidden is used, assume the code has been annotated
adam@12 11568 correspondingly for the symbols needed. */
adam@12 11569 #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
adam@12 11570 int fnord () __attribute__((visibility("default")));
adam@12 11571 #endif
adam@12 11572
adam@12 11573 int fnord () { return 42; }
adam@0 11574 int main ()
adam@0 11575 {
adam@0 11576 void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
adam@0 11577 int status = $lt_dlunknown;
adam@0 11578
adam@0 11579 if (self)
adam@0 11580 {
adam@0 11581 if (dlsym (self,"fnord")) status = $lt_dlno_uscore;
adam@12 11582 else
adam@12 11583 {
adam@12 11584 if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
adam@12 11585 else puts (dlerror ());
adam@12 11586 }
adam@0 11587 /* dlclose (self); */
adam@0 11588 }
adam@0 11589 else
adam@0 11590 puts (dlerror ());
adam@0 11591
adam@0 11592 return status;
adam@0 11593 }
adam@0 11594 _LT_EOF
adam@0 11595 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5
adam@0 11596 (eval $ac_link) 2>&5
adam@0 11597 ac_status=$?
adam@0 11598 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 11599 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then
adam@0 11600 (./conftest; exit; ) >&5 2>/dev/null
adam@0 11601 lt_status=$?
adam@0 11602 case x$lt_status in
adam@0 11603 x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;
adam@0 11604 x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;
adam@0 11605 x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;;
adam@0 11606 esac
adam@0 11607 else :
adam@0 11608 # compilation failed
adam@0 11609 lt_cv_dlopen_self=no
adam@0 11610 fi
adam@0 11611 fi
adam@0 11612 rm -fr conftest*
adam@0 11613
adam@0 11614
adam@0 11615 fi
adam@0 11616 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5
adam@0 11617 $as_echo "$lt_cv_dlopen_self" >&6; }
adam@0 11618
adam@0 11619 if test "x$lt_cv_dlopen_self" = xyes; then
adam@0 11620 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
adam@0 11621 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5
adam@0 11622 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; }
adam@12 11623 if ${lt_cv_dlopen_self_static+:} false; then :
adam@0 11624 $as_echo_n "(cached) " >&6
adam@0 11625 else
adam@0 11626 if test "$cross_compiling" = yes; then :
adam@0 11627 lt_cv_dlopen_self_static=cross
adam@0 11628 else
adam@0 11629 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
adam@0 11630 lt_status=$lt_dlunknown
adam@0 11631 cat > conftest.$ac_ext <<_LT_EOF
adam@12 11632 #line $LINENO "configure"
adam@0 11633 #include "confdefs.h"
adam@0 11634
adam@0 11635 #if HAVE_DLFCN_H
adam@0 11636 #include <dlfcn.h>
adam@0 11637 #endif
adam@0 11638
adam@0 11639 #include <stdio.h>
adam@0 11640
adam@0 11641 #ifdef RTLD_GLOBAL
adam@0 11642 # define LT_DLGLOBAL RTLD_GLOBAL
adam@0 11643 #else
adam@0 11644 # ifdef DL_GLOBAL
adam@0 11645 # define LT_DLGLOBAL DL_GLOBAL
adam@0 11646 # else
adam@0 11647 # define LT_DLGLOBAL 0
adam@0 11648 # endif
adam@0 11649 #endif
adam@0 11650
adam@0 11651 /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
adam@0 11652 find out it does not work in some platform. */
adam@0 11653 #ifndef LT_DLLAZY_OR_NOW
adam@0 11654 # ifdef RTLD_LAZY
adam@0 11655 # define LT_DLLAZY_OR_NOW RTLD_LAZY
adam@0 11656 # else
adam@0 11657 # ifdef DL_LAZY
adam@0 11658 # define LT_DLLAZY_OR_NOW DL_LAZY
adam@0 11659 # else
adam@0 11660 # ifdef RTLD_NOW
adam@0 11661 # define LT_DLLAZY_OR_NOW RTLD_NOW
adam@0 11662 # else
adam@0 11663 # ifdef DL_NOW
adam@0 11664 # define LT_DLLAZY_OR_NOW DL_NOW
adam@0 11665 # else
adam@0 11666 # define LT_DLLAZY_OR_NOW 0
adam@0 11667 # endif
adam@0 11668 # endif
adam@0 11669 # endif
adam@0 11670 # endif
adam@0 11671 #endif
adam@0 11672
adam@12 11673 /* When -fvisbility=hidden is used, assume the code has been annotated
adam@12 11674 correspondingly for the symbols needed. */
adam@12 11675 #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
adam@12 11676 int fnord () __attribute__((visibility("default")));
adam@12 11677 #endif
adam@12 11678
adam@12 11679 int fnord () { return 42; }
adam@0 11680 int main ()
adam@0 11681 {
adam@0 11682 void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
adam@0 11683 int status = $lt_dlunknown;
adam@0 11684
adam@0 11685 if (self)
adam@0 11686 {
adam@0 11687 if (dlsym (self,"fnord")) status = $lt_dlno_uscore;
adam@12 11688 else
adam@12 11689 {
adam@12 11690 if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
adam@12 11691 else puts (dlerror ());
adam@12 11692 }
adam@0 11693 /* dlclose (self); */
adam@0 11694 }
adam@0 11695 else
adam@0 11696 puts (dlerror ());
adam@0 11697
adam@0 11698 return status;
adam@0 11699 }
adam@0 11700 _LT_EOF
adam@0 11701 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5
adam@0 11702 (eval $ac_link) 2>&5
adam@0 11703 ac_status=$?
adam@0 11704 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
adam@0 11705 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then
adam@0 11706 (./conftest; exit; ) >&5 2>/dev/null
adam@0 11707 lt_status=$?
adam@0 11708 case x$lt_status in
adam@0 11709 x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;
adam@0 11710 x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;
adam@0 11711 x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;;
adam@0 11712 esac
adam@0 11713 else :
adam@0 11714 # compilation failed
adam@0 11715 lt_cv_dlopen_self_static=no
adam@0 11716 fi
adam@0 11717 fi
adam@0 11718 rm -fr conftest*
adam@0 11719
adam@0 11720
adam@0 11721 fi
adam@0 11722 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5
adam@0 11723 $as_echo "$lt_cv_dlopen_self_static" >&6; }
adam@0 11724 fi
adam@0 11725
adam@0 11726 CPPFLAGS="$save_CPPFLAGS"
adam@0 11727 LDFLAGS="$save_LDFLAGS"
adam@0 11728 LIBS="$save_LIBS"
adam@0 11729 ;;
adam@0 11730 esac
adam@0 11731
adam@0 11732 case $lt_cv_dlopen_self in
adam@0 11733 yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
adam@0 11734 *) enable_dlopen_self=unknown ;;
adam@0 11735 esac
adam@0 11736
adam@0 11737 case $lt_cv_dlopen_self_static in
adam@0 11738 yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
adam@0 11739 *) enable_dlopen_self_static=unknown ;;
adam@0 11740 esac
adam@0 11741 fi
adam@0 11742
adam@0 11743
adam@0 11744
adam@0 11745
adam@0 11746
adam@0 11747
adam@0 11748
adam@0 11749
adam@0 11750
adam@0 11751
adam@0 11752
adam@0 11753
adam@0 11754
adam@0 11755
adam@0 11756
adam@0 11757
adam@0 11758
adam@0 11759 striplib=
adam@0 11760 old_striplib=
adam@0 11761 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5
adam@0 11762 $as_echo_n "checking whether stripping libraries is possible... " >&6; }
adam@0 11763 if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
adam@0 11764 test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
adam@0 11765 test -z "$striplib" && striplib="$STRIP --strip-unneeded"
adam@0 11766 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
adam@0 11767 $as_echo "yes" >&6; }
adam@0 11768 else
adam@0 11769 # FIXME - insert some real tests, host_os isn't really good enough
adam@0 11770 case $host_os in
adam@0 11771 darwin*)
adam@0 11772 if test -n "$STRIP" ; then
adam@0 11773 striplib="$STRIP -x"
adam@0 11774 old_striplib="$STRIP -S"
adam@0 11775 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
adam@0 11776 $as_echo "yes" >&6; }
adam@0 11777 else
adam@0 11778 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 11779 $as_echo "no" >&6; }
adam@0 11780 fi
adam@0 11781 ;;
adam@0 11782 *)
adam@0 11783 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 11784 $as_echo "no" >&6; }
adam@0 11785 ;;
adam@0 11786 esac
adam@0 11787 fi
adam@0 11788
adam@0 11789
adam@0 11790
adam@0 11791
adam@0 11792
adam@0 11793
adam@0 11794
adam@0 11795
adam@0 11796
adam@0 11797
adam@0 11798
adam@0 11799
adam@0 11800 # Report which library types will actually be built
adam@0 11801 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5
adam@0 11802 $as_echo_n "checking if libtool supports shared libraries... " >&6; }
adam@0 11803 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5
adam@0 11804 $as_echo "$can_build_shared" >&6; }
adam@0 11805
adam@0 11806 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5
adam@0 11807 $as_echo_n "checking whether to build shared libraries... " >&6; }
adam@0 11808 test "$can_build_shared" = "no" && enable_shared=no
adam@0 11809
adam@0 11810 # On AIX, shared libraries and static libraries use the same namespace, and
adam@0 11811 # are all built from PIC.
adam@0 11812 case $host_os in
adam@0 11813 aix3*)
adam@0 11814 test "$enable_shared" = yes && enable_static=no
adam@0 11815 if test -n "$RANLIB"; then
adam@0 11816 archive_cmds="$archive_cmds~\$RANLIB \$lib"
adam@0 11817 postinstall_cmds='$RANLIB $lib'
adam@0 11818 fi
adam@0 11819 ;;
adam@0 11820
adam@0 11821 aix[4-9]*)
adam@0 11822 if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
adam@0 11823 test "$enable_shared" = yes && enable_static=no
adam@0 11824 fi
adam@0 11825 ;;
adam@0 11826 esac
adam@0 11827 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5
adam@0 11828 $as_echo "$enable_shared" >&6; }
adam@0 11829
adam@0 11830 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5
adam@0 11831 $as_echo_n "checking whether to build static libraries... " >&6; }
adam@0 11832 # Make sure either enable_shared or enable_static is yes.
adam@0 11833 test "$enable_shared" = yes || enable_static=yes
adam@0 11834 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5
adam@0 11835 $as_echo "$enable_static" >&6; }
adam@0 11836
adam@0 11837
adam@0 11838
adam@0 11839
adam@0 11840 fi
adam@0 11841 ac_ext=c
adam@0 11842 ac_cpp='$CPP $CPPFLAGS'
adam@0 11843 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
adam@0 11844 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
adam@0 11845 ac_compiler_gnu=$ac_cv_c_compiler_gnu
adam@0 11846
adam@0 11847 CC="$lt_save_CC"
adam@0 11848
adam@0 11849
adam@0 11850
adam@0 11851
adam@0 11852
adam@0 11853
adam@0 11854
adam@0 11855
adam@0 11856
adam@0 11857
adam@0 11858
adam@0 11859
adam@0 11860
adam@20 11861
adam@20 11862
adam@0 11863 ac_config_commands="$ac_config_commands libtool"
adam@0 11864
adam@0 11865
adam@0 11866
adam@0 11867
adam@0 11868 # Only expand once:
adam@0 11869
adam@0 11870
adam@0 11871
adam@0 11872
adam@0 11873
adam@0 11874
adam@0 11875
adam@0 11876
adam@0 11877
adam@0 11878
adam@0 11879
adam@0 11880
adam@0 11881
adam@0 11882
adam@0 11883
adam@0 11884
adam@0 11885
adam@0 11886
adam@0 11887
adam@0 11888
adam@0 11889
adam@0 11890
adam@0 11891
adam@0 11892
adam@0 11893
adam@0 11894
adam@0 11895
adam@0 11896
adam@0 11897
adam@0 11898 # Check whether --with-libcurl was given.
adam@0 11899 if test "${with_libcurl+set}" = set; then :
adam@0 11900 withval=$with_libcurl; _libcurl_with=$withval
adam@0 11901 else
adam@0 11902 _libcurl_with=yes
adam@0 11903 fi
adam@0 11904
adam@0 11905
adam@0 11906 if test "$_libcurl_with" != "no" ; then
adam@0 11907
adam@0 11908 for ac_prog in gawk mawk nawk awk
adam@0 11909 do
adam@0 11910 # Extract the first word of "$ac_prog", so it can be a program name with args.
adam@0 11911 set dummy $ac_prog; ac_word=$2
adam@0 11912 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 11913 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 11914 if ${ac_cv_prog_AWK+:} false; then :
adam@0 11915 $as_echo_n "(cached) " >&6
adam@0 11916 else
adam@0 11917 if test -n "$AWK"; then
adam@0 11918 ac_cv_prog_AWK="$AWK" # Let the user override the test.
adam@0 11919 else
adam@0 11920 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 11921 for as_dir in $PATH
adam@0 11922 do
adam@0 11923 IFS=$as_save_IFS
adam@0 11924 test -z "$as_dir" && as_dir=.
adam@0 11925 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 11926 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 11927 ac_cv_prog_AWK="$ac_prog"
adam@0 11928 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 11929 break 2
adam@0 11930 fi
adam@0 11931 done
adam@0 11932 done
adam@0 11933 IFS=$as_save_IFS
adam@0 11934
adam@0 11935 fi
adam@0 11936 fi
adam@0 11937 AWK=$ac_cv_prog_AWK
adam@0 11938 if test -n "$AWK"; then
adam@0 11939 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
adam@0 11940 $as_echo "$AWK" >&6; }
adam@0 11941 else
adam@0 11942 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 11943 $as_echo "no" >&6; }
adam@0 11944 fi
adam@0 11945
adam@0 11946
adam@0 11947 test -n "$AWK" && break
adam@0 11948 done
adam@0 11949
adam@0 11950
adam@0 11951 _libcurl_version_parse="eval $AWK '{split(\$NF,A,\".\"); X=256*256*A[1]+256*A[2]+A[3]; print X;}'"
adam@0 11952
adam@0 11953 _libcurl_try_link=yes
adam@0 11954
adam@0 11955 if test -d "$_libcurl_with" ; then
adam@0 11956 LIBCURL_CPPFLAGS="-I$withval/include"
adam@0 11957 _libcurl_ldflags="-L$withval/lib"
adam@0 11958 # Extract the first word of "curl-config", so it can be a program name with args.
adam@0 11959 set dummy curl-config; ac_word=$2
adam@0 11960 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 11961 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 11962 if ${ac_cv_path__libcurl_config+:} false; then :
adam@0 11963 $as_echo_n "(cached) " >&6
adam@0 11964 else
adam@0 11965 case $_libcurl_config in
adam@0 11966 [\\/]* | ?:[\\/]*)
adam@0 11967 ac_cv_path__libcurl_config="$_libcurl_config" # Let the user override the test with a path.
adam@0 11968 ;;
adam@0 11969 *)
adam@0 11970 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 11971 for as_dir in "$withval/bin"
adam@0 11972 do
adam@0 11973 IFS=$as_save_IFS
adam@0 11974 test -z "$as_dir" && as_dir=.
adam@0 11975 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 11976 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 11977 ac_cv_path__libcurl_config="$as_dir/$ac_word$ac_exec_ext"
adam@0 11978 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 11979 break 2
adam@0 11980 fi
adam@0 11981 done
adam@0 11982 done
adam@0 11983 IFS=$as_save_IFS
adam@0 11984
adam@0 11985 test -z "$ac_cv_path__libcurl_config" && ac_cv_path__libcurl_config=""$withval/bin""
adam@0 11986 ;;
adam@0 11987 esac
adam@0 11988 fi
adam@0 11989 _libcurl_config=$ac_cv_path__libcurl_config
adam@0 11990 if test -n "$_libcurl_config"; then
adam@0 11991 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_libcurl_config" >&5
adam@0 11992 $as_echo "$_libcurl_config" >&6; }
adam@0 11993 else
adam@0 11994 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 11995 $as_echo "no" >&6; }
adam@0 11996 fi
adam@0 11997
adam@0 11998
adam@0 11999 else
adam@0 12000 # Extract the first word of "curl-config", so it can be a program name with args.
adam@0 12001 set dummy curl-config; ac_word=$2
adam@0 12002 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
adam@0 12003 $as_echo_n "checking for $ac_word... " >&6; }
adam@12 12004 if ${ac_cv_path__libcurl_config+:} false; then :
adam@0 12005 $as_echo_n "(cached) " >&6
adam@0 12006 else
adam@0 12007 case $_libcurl_config in
adam@0 12008 [\\/]* | ?:[\\/]*)
adam@0 12009 ac_cv_path__libcurl_config="$_libcurl_config" # Let the user override the test with a path.
adam@0 12010 ;;
adam@0 12011 *)
adam@0 12012 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 12013 for as_dir in $PATH
adam@0 12014 do
adam@0 12015 IFS=$as_save_IFS
adam@0 12016 test -z "$as_dir" && as_dir=.
adam@0 12017 for ac_exec_ext in '' $ac_executable_extensions; do
adam@20 12018 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
adam@0 12019 ac_cv_path__libcurl_config="$as_dir/$ac_word$ac_exec_ext"
adam@0 12020 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
adam@0 12021 break 2
adam@0 12022 fi
adam@0 12023 done
adam@0 12024 done
adam@0 12025 IFS=$as_save_IFS
adam@0 12026
adam@0 12027 ;;
adam@0 12028 esac
adam@0 12029 fi
adam@0 12030 _libcurl_config=$ac_cv_path__libcurl_config
adam@0 12031 if test -n "$_libcurl_config"; then
adam@0 12032 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_libcurl_config" >&5
adam@0 12033 $as_echo "$_libcurl_config" >&6; }
adam@0 12034 else
adam@0 12035 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
adam@0 12036 $as_echo "no" >&6; }
adam@0 12037 fi
adam@0 12038
adam@0 12039
adam@0 12040 fi
adam@0 12041
adam@0 12042 if test x$_libcurl_config != "x" ; then
adam@0 12043 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the version of libcurl" >&5
adam@0 12044 $as_echo_n "checking for the version of libcurl... " >&6; }
adam@12 12045 if ${libcurl_cv_lib_curl_version+:} false; then :
adam@0 12046 $as_echo_n "(cached) " >&6
adam@0 12047 else
adam@0 12048 libcurl_cv_lib_curl_version=`$_libcurl_config --version | $AWK '{print $2}'`
adam@0 12049 fi
adam@0 12050 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libcurl_cv_lib_curl_version" >&5
adam@0 12051 $as_echo "$libcurl_cv_lib_curl_version" >&6; }
adam@0 12052
adam@0 12053 _libcurl_version=`echo $libcurl_cv_lib_curl_version | $_libcurl_version_parse`
adam@0 12054 _libcurl_wanted=`echo 0 | $_libcurl_version_parse`
adam@0 12055
adam@0 12056 if test $_libcurl_wanted -gt 0 ; then
adam@0 12057 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libcurl >= version " >&5
adam@0 12058 $as_echo_n "checking for libcurl >= version ... " >&6; }
adam@12 12059 if ${libcurl_cv_lib_version_ok+:} false; then :
adam@0 12060 $as_echo_n "(cached) " >&6
adam@0 12061 else
adam@0 12062
adam@0 12063 if test $_libcurl_version -ge $_libcurl_wanted ; then
adam@0 12064 libcurl_cv_lib_version_ok=yes
adam@0 12065 else
adam@0 12066 libcurl_cv_lib_version_ok=no
adam@0 12067 fi
adam@0 12068
adam@0 12069 fi
adam@0 12070 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libcurl_cv_lib_version_ok" >&5
adam@0 12071 $as_echo "$libcurl_cv_lib_version_ok" >&6; }
adam@0 12072 fi
adam@0 12073
adam@0 12074 if test $_libcurl_wanted -eq 0 || test x$libcurl_cv_lib_version_ok = xyes ; then
adam@0 12075 if test x"$LIBCURL_CPPFLAGS" = "x" ; then
adam@0 12076 LIBCURL_CPPFLAGS=`$_libcurl_config --cflags`
adam@0 12077 fi
adam@0 12078 if test x"$LIBCURL" = "x" ; then
adam@0 12079 LIBCURL=`$_libcurl_config --libs`
adam@0 12080
adam@0 12081 # This is so silly, but Apple actually has a bug in their
adam@0 12082 # curl-config script. Fixed in Tiger, but there are still
adam@0 12083 # lots of Panther installs around.
adam@0 12084 case "${host}" in
adam@0 12085 powerpc-apple-darwin7*)
adam@0 12086 LIBCURL=`echo $LIBCURL | sed -e 's|-arch i386||g'`
adam@0 12087 ;;
adam@0 12088 esac
adam@0 12089 fi
adam@0 12090
adam@0 12091 # All curl-config scripts support --feature
adam@0 12092 _libcurl_features=`$_libcurl_config --feature`
adam@0 12093
adam@0 12094 # Is it modern enough to have --protocols? (7.12.4)
adam@0 12095 if test $_libcurl_version -ge 461828 ; then
adam@0 12096 _libcurl_protocols=`$_libcurl_config --protocols`
adam@0 12097 fi
adam@0 12098 else
adam@0 12099 _libcurl_try_link=no
adam@0 12100 fi
adam@0 12101
adam@0 12102 unset _libcurl_wanted
adam@0 12103 fi
adam@0 12104
adam@0 12105 if test $_libcurl_try_link = yes ; then
adam@0 12106
adam@0 12107 # we didn't find curl-config, so let's see if the user-supplied
adam@0 12108 # link line (or failing that, "-lcurl") is enough.
adam@0 12109 LIBCURL=${LIBCURL-"$_libcurl_ldflags -lcurl"}
adam@0 12110
adam@0 12111 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether libcurl is usable" >&5
adam@0 12112 $as_echo_n "checking whether libcurl is usable... " >&6; }
adam@12 12113 if ${libcurl_cv_lib_curl_usable+:} false; then :
adam@0 12114 $as_echo_n "(cached) " >&6
adam@0 12115 else
adam@0 12116
adam@0 12117 _libcurl_save_cppflags=$CPPFLAGS
adam@0 12118 CPPFLAGS="$LIBCURL_CPPFLAGS $CPPFLAGS"
adam@0 12119 _libcurl_save_libs=$LIBS
adam@0 12120 LIBS="$LIBCURL $LIBS"
adam@0 12121
adam@0 12122 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
adam@0 12123 /* end confdefs.h. */
adam@0 12124 #include <curl/curl.h>
adam@0 12125 int
adam@0 12126 main ()
adam@0 12127 {
adam@0 12128
adam@0 12129 /* Try and use a few common options to force a failure if we are
adam@0 12130 missing symbols or can't link. */
adam@0 12131 int x;
adam@0 12132 curl_easy_setopt(NULL,CURLOPT_URL,NULL);
adam@0 12133 x=CURL_ERROR_SIZE;
adam@0 12134 x=CURLOPT_WRITEFUNCTION;
adam@0 12135 x=CURLOPT_FILE;
adam@0 12136 x=CURLOPT_ERRORBUFFER;
adam@0 12137 x=CURLOPT_STDERR;
adam@0 12138 x=CURLOPT_VERBOSE;
adam@0 12139
adam@0 12140 ;
adam@0 12141 return 0;
adam@0 12142 }
adam@0 12143 _ACEOF
adam@0 12144 if ac_fn_c_try_link "$LINENO"; then :
adam@0 12145 libcurl_cv_lib_curl_usable=yes
adam@0 12146 else
adam@0 12147 libcurl_cv_lib_curl_usable=no
adam@0 12148 fi
adam@0 12149 rm -f core conftest.err conftest.$ac_objext \
adam@0 12150 conftest$ac_exeext conftest.$ac_ext
adam@0 12151
adam@0 12152 CPPFLAGS=$_libcurl_save_cppflags
adam@0 12153 LIBS=$_libcurl_save_libs
adam@0 12154 unset _libcurl_save_cppflags
adam@0 12155 unset _libcurl_save_libs
adam@0 12156
adam@0 12157 fi
adam@0 12158 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libcurl_cv_lib_curl_usable" >&5
adam@0 12159 $as_echo "$libcurl_cv_lib_curl_usable" >&6; }
adam@0 12160
adam@0 12161 if test $libcurl_cv_lib_curl_usable = yes ; then
adam@0 12162
adam@0 12163 # Does curl_free() exist in this version of libcurl?
adam@0 12164 # If not, fake it with free()
adam@0 12165
adam@0 12166 _libcurl_save_cppflags=$CPPFLAGS
adam@0 12167 CPPFLAGS="$CPPFLAGS $LIBCURL_CPPFLAGS"
adam@0 12168 _libcurl_save_libs=$LIBS
adam@0 12169 LIBS="$LIBS $LIBCURL"
adam@0 12170
adam@0 12171 ac_fn_c_check_func "$LINENO" "curl_free" "ac_cv_func_curl_free"
adam@12 12172 if test "x$ac_cv_func_curl_free" = xyes; then :
adam@0 12173
adam@0 12174 else
adam@0 12175
adam@0 12176 $as_echo "#define curl_free free" >>confdefs.h
adam@0 12177
adam@0 12178 fi
adam@0 12179
adam@0 12180
adam@0 12181 CPPFLAGS=$_libcurl_save_cppflags
adam@0 12182 LIBS=$_libcurl_save_libs
adam@0 12183 unset _libcurl_save_cppflags
adam@0 12184 unset _libcurl_save_libs
adam@0 12185
adam@0 12186
adam@0 12187 $as_echo "#define HAVE_LIBCURL 1" >>confdefs.h
adam@0 12188
adam@0 12189
adam@0 12190
adam@0 12191
adam@0 12192 for _libcurl_feature in $_libcurl_features ; do
adam@0 12193 cat >>confdefs.h <<_ACEOF
adam@0 12194 #define `$as_echo "libcurl_feature_$_libcurl_feature" | $as_tr_cpp` 1
adam@0 12195 _ACEOF
adam@0 12196
adam@0 12197 eval `$as_echo "libcurl_feature_$_libcurl_feature" | $as_tr_sh`=yes
adam@0 12198 done
adam@0 12199
adam@0 12200 if test "x$_libcurl_protocols" = "x" ; then
adam@0 12201
adam@0 12202 # We don't have --protocols, so just assume that all
adam@0 12203 # protocols are available
adam@0 12204 _libcurl_protocols="HTTP FTP FILE TELNET LDAP DICT TFTP"
adam@0 12205
adam@0 12206 if test x$libcurl_feature_SSL = xyes ; then
adam@0 12207 _libcurl_protocols="$_libcurl_protocols HTTPS"
adam@0 12208
adam@0 12209 # FTPS wasn't standards-compliant until version
adam@0 12210 # 7.11.0 (0x070b00 == 461568)
adam@0 12211 if test $_libcurl_version -ge 461568; then
adam@0 12212 _libcurl_protocols="$_libcurl_protocols FTPS"
adam@0 12213 fi
adam@0 12214 fi
adam@0 12215
adam@0 12216 # RTSP, IMAP, POP3 and SMTP were added in
adam@0 12217 # 7.20.0 (0x071400 == 463872)
adam@0 12218 if test $_libcurl_version -ge 463872; then
adam@0 12219 _libcurl_protocols="$_libcurl_protocols RTSP IMAP POP3 SMTP"
adam@0 12220 fi
adam@0 12221 fi
adam@0 12222
adam@0 12223 for _libcurl_protocol in $_libcurl_protocols ; do
adam@0 12224 cat >>confdefs.h <<_ACEOF
adam@0 12225 #define `$as_echo "libcurl_protocol_$_libcurl_protocol" | $as_tr_cpp` 1
adam@0 12226 _ACEOF
adam@0 12227
adam@0 12228 eval `$as_echo "libcurl_protocol_$_libcurl_protocol" | $as_tr_sh`=yes
adam@0 12229 done
adam@0 12230 else
adam@0 12231 unset LIBCURL
adam@0 12232 unset LIBCURL_CPPFLAGS
adam@0 12233 fi
adam@0 12234 fi
adam@0 12235
adam@0 12236 unset _libcurl_try_link
adam@0 12237 unset _libcurl_version_parse
adam@0 12238 unset _libcurl_config
adam@0 12239 unset _libcurl_feature
adam@0 12240 unset _libcurl_features
adam@0 12241 unset _libcurl_protocol
adam@0 12242 unset _libcurl_protocols
adam@0 12243 unset _libcurl_version
adam@0 12244 unset _libcurl_ldflags
adam@0 12245 fi
adam@0 12246
adam@0 12247 if test x$_libcurl_with = xno || test x$libcurl_cv_lib_curl_usable != xyes ; then
adam@0 12248 # This is the IF-NO path
adam@0 12249 echo "You must install libcurl development files."; exit 1
adam@0 12250 else
adam@0 12251 # This is the IF-YES path
adam@0 12252 echo >/dev/null
adam@0 12253 fi
adam@0 12254
adam@0 12255 unset _libcurl_with
adam@0 12256
adam@0 12257
adam@0 12258 if test $prefix = "NONE"; then
adam@0 12259 prefix=/usr/local
adam@0 12260 fi
adam@0 12261
adam@0 12262 if test -z $LIB; then
adam@0 12263 LIB=$prefix/lib/urweb
adam@0 12264 fi
adam@0 12265
adam@0 12266 if test -z $INCLUDE; then
adam@0 12267 INCLUDE=$prefix/include/urweb
adam@0 12268 fi
adam@0 12269
adam@0 12270
adam@0 12271
adam@0 12272
adam@0 12273 ac_config_files="$ac_config_files Makefile src/c/Makefile src/ur/config.urp"
adam@0 12274
adam@0 12275
adam@0 12276 cat >confcache <<\_ACEOF
adam@0 12277 # This file is a shell script that caches the results of configure
adam@0 12278 # tests run on this system so they can be shared between configure
adam@0 12279 # scripts and configure runs, see configure's option --config-cache.
adam@0 12280 # It is not useful on other systems. If it contains results you don't
adam@0 12281 # want to keep, you may remove or edit it.
adam@0 12282 #
adam@0 12283 # config.status only pays attention to the cache file if you give it
adam@0 12284 # the --recheck option to rerun configure.
adam@0 12285 #
adam@0 12286 # `ac_cv_env_foo' variables (set or unset) will be overridden when
adam@0 12287 # loading this file, other *unset* `ac_cv_foo' will be assigned the
adam@0 12288 # following values.
adam@0 12289
adam@0 12290 _ACEOF
adam@0 12291
adam@0 12292 # The following way of writing the cache mishandles newlines in values,
adam@0 12293 # but we know of no workaround that is simple, portable, and efficient.
adam@0 12294 # So, we kill variables containing newlines.
adam@0 12295 # Ultrix sh set writes to stderr and can't be redirected directly,
adam@0 12296 # and sets the high bit in the cache file unless we assign to the vars.
adam@0 12297 (
adam@0 12298 for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
adam@0 12299 eval ac_val=\$$ac_var
adam@0 12300 case $ac_val in #(
adam@0 12301 *${as_nl}*)
adam@0 12302 case $ac_var in #(
adam@0 12303 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
adam@0 12304 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
adam@0 12305 esac
adam@0 12306 case $ac_var in #(
adam@0 12307 _ | IFS | as_nl) ;; #(
adam@0 12308 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
adam@0 12309 *) { eval $ac_var=; unset $ac_var;} ;;
adam@0 12310 esac ;;
adam@0 12311 esac
adam@0 12312 done
adam@0 12313
adam@0 12314 (set) 2>&1 |
adam@0 12315 case $as_nl`(ac_space=' '; set) 2>&1` in #(
adam@0 12316 *${as_nl}ac_space=\ *)
adam@0 12317 # `set' does not quote correctly, so add quotes: double-quote
adam@0 12318 # substitution turns \\\\ into \\, and sed turns \\ into \.
adam@0 12319 sed -n \
adam@0 12320 "s/'/'\\\\''/g;
adam@0 12321 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
adam@0 12322 ;; #(
adam@0 12323 *)
adam@0 12324 # `set' quotes correctly as required by POSIX, so do not add quotes.
adam@0 12325 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
adam@0 12326 ;;
adam@0 12327 esac |
adam@0 12328 sort
adam@0 12329 ) |
adam@0 12330 sed '
adam@0 12331 /^ac_cv_env_/b end
adam@0 12332 t clear
adam@0 12333 :clear
adam@0 12334 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
adam@0 12335 t end
adam@0 12336 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
adam@0 12337 :end' >>confcache
adam@0 12338 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
adam@0 12339 if test -w "$cache_file"; then
adam@12 12340 if test "x$cache_file" != "x/dev/null"; then
adam@0 12341 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
adam@0 12342 $as_echo "$as_me: updating cache $cache_file" >&6;}
adam@12 12343 if test ! -f "$cache_file" || test -h "$cache_file"; then
adam@12 12344 cat confcache >"$cache_file"
adam@12 12345 else
adam@12 12346 case $cache_file in #(
adam@12 12347 */* | ?:*)
adam@12 12348 mv -f confcache "$cache_file"$$ &&
adam@12 12349 mv -f "$cache_file"$$ "$cache_file" ;; #(
adam@12 12350 *)
adam@12 12351 mv -f confcache "$cache_file" ;;
adam@12 12352 esac
adam@12 12353 fi
adam@12 12354 fi
adam@0 12355 else
adam@0 12356 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
adam@0 12357 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
adam@0 12358 fi
adam@0 12359 fi
adam@0 12360 rm -f confcache
adam@0 12361
adam@0 12362 test "x$prefix" = xNONE && prefix=$ac_default_prefix
adam@0 12363 # Let make expand exec_prefix.
adam@0 12364 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
adam@0 12365
adam@0 12366 # Transform confdefs.h into DEFS.
adam@0 12367 # Protect against shell expansion while executing Makefile rules.
adam@0 12368 # Protect against Makefile macro expansion.
adam@0 12369 #
adam@0 12370 # If the first sed substitution is executed (which looks for macros that
adam@0 12371 # take arguments), then branch to the quote section. Otherwise,
adam@0 12372 # look for a macro that doesn't take arguments.
adam@0 12373 ac_script='
adam@0 12374 :mline
adam@0 12375 /\\$/{
adam@0 12376 N
adam@0 12377 s,\\\n,,
adam@0 12378 b mline
adam@0 12379 }
adam@0 12380 t clear
adam@0 12381 :clear
adam@0 12382 s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g
adam@0 12383 t quote
adam@0 12384 s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g
adam@0 12385 t quote
adam@0 12386 b any
adam@0 12387 :quote
adam@0 12388 s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g
adam@0 12389 s/\[/\\&/g
adam@0 12390 s/\]/\\&/g
adam@0 12391 s/\$/$$/g
adam@0 12392 H
adam@0 12393 :any
adam@0 12394 ${
adam@0 12395 g
adam@0 12396 s/^\n//
adam@0 12397 s/\n/ /g
adam@0 12398 p
adam@0 12399 }
adam@0 12400 '
adam@0 12401 DEFS=`sed -n "$ac_script" confdefs.h`
adam@0 12402
adam@0 12403
adam@0 12404 ac_libobjs=
adam@0 12405 ac_ltlibobjs=
adam@0 12406 U=
adam@0 12407 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
adam@0 12408 # 1. Remove the extension, and $U if already installed.
adam@0 12409 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
adam@0 12410 ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
adam@0 12411 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
adam@0 12412 # will be set to the directory where LIBOBJS objects are built.
adam@0 12413 as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
adam@0 12414 as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
adam@0 12415 done
adam@0 12416 LIBOBJS=$ac_libobjs
adam@0 12417
adam@0 12418 LTLIBOBJS=$ac_ltlibobjs
adam@0 12419
adam@0 12420
adam@0 12421 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
adam@0 12422 as_fn_error $? "conditional \"AMDEP\" was never defined.
adam@0 12423 Usually this means the macro was only invoked conditionally." "$LINENO" 5
adam@0 12424 fi
adam@0 12425 if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
adam@0 12426 as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
adam@0 12427 Usually this means the macro was only invoked conditionally." "$LINENO" 5
adam@0 12428 fi
adam@0 12429 if test -n "$EXEEXT"; then
adam@0 12430 am__EXEEXT_TRUE=
adam@0 12431 am__EXEEXT_FALSE='#'
adam@0 12432 else
adam@0 12433 am__EXEEXT_TRUE='#'
adam@0 12434 am__EXEEXT_FALSE=
adam@0 12435 fi
adam@0 12436
adam@0 12437
adam@12 12438 : "${CONFIG_STATUS=./config.status}"
adam@0 12439 ac_write_fail=0
adam@0 12440 ac_clean_files_save=$ac_clean_files
adam@0 12441 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
adam@0 12442 { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
adam@0 12443 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
adam@0 12444 as_write_fail=0
adam@0 12445 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
adam@0 12446 #! $SHELL
adam@0 12447 # Generated by $as_me.
adam@0 12448 # Run this file to recreate the current configuration.
adam@0 12449 # Compiler output produced by configure, useful for debugging
adam@0 12450 # configure, is in config.log if it exists.
adam@0 12451
adam@0 12452 debug=false
adam@0 12453 ac_cs_recheck=false
adam@0 12454 ac_cs_silent=false
adam@0 12455
adam@0 12456 SHELL=\${CONFIG_SHELL-$SHELL}
adam@0 12457 export SHELL
adam@0 12458 _ASEOF
adam@0 12459 cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
adam@0 12460 ## -------------------- ##
adam@0 12461 ## M4sh Initialization. ##
adam@0 12462 ## -------------------- ##
adam@0 12463
adam@0 12464 # Be more Bourne compatible
adam@0 12465 DUALCASE=1; export DUALCASE # for MKS sh
adam@0 12466 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
adam@0 12467 emulate sh
adam@0 12468 NULLCMD=:
adam@0 12469 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
adam@0 12470 # is contrary to our usage. Disable this feature.
adam@0 12471 alias -g '${1+"$@"}'='"$@"'
adam@0 12472 setopt NO_GLOB_SUBST
adam@0 12473 else
adam@0 12474 case `(set -o) 2>/dev/null` in #(
adam@0 12475 *posix*) :
adam@0 12476 set -o posix ;; #(
adam@0 12477 *) :
adam@0 12478 ;;
adam@0 12479 esac
adam@0 12480 fi
adam@0 12481
adam@0 12482
adam@0 12483 as_nl='
adam@0 12484 '
adam@0 12485 export as_nl
adam@0 12486 # Printing a long string crashes Solaris 7 /usr/bin/printf.
adam@0 12487 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
adam@0 12488 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
adam@0 12489 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
adam@0 12490 # Prefer a ksh shell builtin over an external printf program on Solaris,
adam@0 12491 # but without wasting forks for bash or zsh.
adam@0 12492 if test -z "$BASH_VERSION$ZSH_VERSION" \
adam@0 12493 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
adam@0 12494 as_echo='print -r --'
adam@0 12495 as_echo_n='print -rn --'
adam@0 12496 elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
adam@0 12497 as_echo='printf %s\n'
adam@0 12498 as_echo_n='printf %s'
adam@0 12499 else
adam@0 12500 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
adam@0 12501 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
adam@0 12502 as_echo_n='/usr/ucb/echo -n'
adam@0 12503 else
adam@0 12504 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
adam@0 12505 as_echo_n_body='eval
adam@0 12506 arg=$1;
adam@0 12507 case $arg in #(
adam@0 12508 *"$as_nl"*)
adam@0 12509 expr "X$arg" : "X\\(.*\\)$as_nl";
adam@0 12510 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
adam@0 12511 esac;
adam@0 12512 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
adam@0 12513 '
adam@0 12514 export as_echo_n_body
adam@0 12515 as_echo_n='sh -c $as_echo_n_body as_echo'
adam@0 12516 fi
adam@0 12517 export as_echo_body
adam@0 12518 as_echo='sh -c $as_echo_body as_echo'
adam@0 12519 fi
adam@0 12520
adam@0 12521 # The user is always right.
adam@0 12522 if test "${PATH_SEPARATOR+set}" != set; then
adam@0 12523 PATH_SEPARATOR=:
adam@0 12524 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
adam@0 12525 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
adam@0 12526 PATH_SEPARATOR=';'
adam@0 12527 }
adam@0 12528 fi
adam@0 12529
adam@0 12530
adam@0 12531 # IFS
adam@0 12532 # We need space, tab and new line, in precisely that order. Quoting is
adam@0 12533 # there to prevent editors from complaining about space-tab.
adam@0 12534 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
adam@0 12535 # splitting by setting IFS to empty value.)
adam@0 12536 IFS=" "" $as_nl"
adam@0 12537
adam@0 12538 # Find who we are. Look in the path if we contain no directory separator.
adam@12 12539 as_myself=
adam@0 12540 case $0 in #((
adam@0 12541 *[\\/]* ) as_myself=$0 ;;
adam@0 12542 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
adam@0 12543 for as_dir in $PATH
adam@0 12544 do
adam@0 12545 IFS=$as_save_IFS
adam@0 12546 test -z "$as_dir" && as_dir=.
adam@0 12547 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
adam@0 12548 done
adam@0 12549 IFS=$as_save_IFS
adam@0 12550
adam@0 12551 ;;
adam@0 12552 esac
adam@0 12553 # We did not find ourselves, most probably we were run as `sh COMMAND'
adam@0 12554 # in which case we are not to be found in the path.
adam@0 12555 if test "x$as_myself" = x; then
adam@0 12556 as_myself=$0
adam@0 12557 fi
adam@0 12558 if test ! -f "$as_myself"; then
adam@0 12559 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
adam@0 12560 exit 1
adam@0 12561 fi
adam@0 12562
adam@0 12563 # Unset variables that we do not need and which cause bugs (e.g. in
adam@0 12564 # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
adam@0 12565 # suppresses any "Segmentation fault" message there. '((' could
adam@0 12566 # trigger a bug in pdksh 5.2.14.
adam@0 12567 for as_var in BASH_ENV ENV MAIL MAILPATH
adam@0 12568 do eval test x\${$as_var+set} = xset \
adam@0 12569 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
adam@0 12570 done
adam@0 12571 PS1='$ '
adam@0 12572 PS2='> '
adam@0 12573 PS4='+ '
adam@0 12574
adam@0 12575 # NLS nuisances.
adam@0 12576 LC_ALL=C
adam@0 12577 export LC_ALL
adam@0 12578 LANGUAGE=C
adam@0 12579 export LANGUAGE
adam@0 12580
adam@0 12581 # CDPATH.
adam@0 12582 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
adam@0 12583
adam@0 12584
adam@0 12585 # as_fn_error STATUS ERROR [LINENO LOG_FD]
adam@0 12586 # ----------------------------------------
adam@0 12587 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
adam@0 12588 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
adam@0 12589 # script with STATUS, using 1 if that was 0.
adam@0 12590 as_fn_error ()
adam@0 12591 {
adam@0 12592 as_status=$1; test $as_status -eq 0 && as_status=1
adam@0 12593 if test "$4"; then
adam@0 12594 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
adam@0 12595 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
adam@0 12596 fi
adam@0 12597 $as_echo "$as_me: error: $2" >&2
adam@0 12598 as_fn_exit $as_status
adam@0 12599 } # as_fn_error
adam@0 12600
adam@0 12601
adam@0 12602 # as_fn_set_status STATUS
adam@0 12603 # -----------------------
adam@0 12604 # Set $? to STATUS, without forking.
adam@0 12605 as_fn_set_status ()
adam@0 12606 {
adam@0 12607 return $1
adam@0 12608 } # as_fn_set_status
adam@0 12609
adam@0 12610 # as_fn_exit STATUS
adam@0 12611 # -----------------
adam@0 12612 # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
adam@0 12613 as_fn_exit ()
adam@0 12614 {
adam@0 12615 set +e
adam@0 12616 as_fn_set_status $1
adam@0 12617 exit $1
adam@0 12618 } # as_fn_exit
adam@0 12619
adam@0 12620 # as_fn_unset VAR
adam@0 12621 # ---------------
adam@0 12622 # Portably unset VAR.
adam@0 12623 as_fn_unset ()
adam@0 12624 {
adam@0 12625 { eval $1=; unset $1;}
adam@0 12626 }
adam@0 12627 as_unset=as_fn_unset
adam@0 12628 # as_fn_append VAR VALUE
adam@0 12629 # ----------------------
adam@0 12630 # Append the text in VALUE to the end of the definition contained in VAR. Take
adam@0 12631 # advantage of any shell optimizations that allow amortized linear growth over
adam@0 12632 # repeated appends, instead of the typical quadratic growth present in naive
adam@0 12633 # implementations.
adam@0 12634 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
adam@0 12635 eval 'as_fn_append ()
adam@0 12636 {
adam@0 12637 eval $1+=\$2
adam@0 12638 }'
adam@0 12639 else
adam@0 12640 as_fn_append ()
adam@0 12641 {
adam@0 12642 eval $1=\$$1\$2
adam@0 12643 }
adam@0 12644 fi # as_fn_append
adam@0 12645
adam@0 12646 # as_fn_arith ARG...
adam@0 12647 # ------------------
adam@0 12648 # Perform arithmetic evaluation on the ARGs, and store the result in the
adam@0 12649 # global $as_val. Take advantage of shells that can avoid forks. The arguments
adam@0 12650 # must be portable across $(()) and expr.
adam@0 12651 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
adam@0 12652 eval 'as_fn_arith ()
adam@0 12653 {
adam@0 12654 as_val=$(( $* ))
adam@0 12655 }'
adam@0 12656 else
adam@0 12657 as_fn_arith ()
adam@0 12658 {
adam@0 12659 as_val=`expr "$@" || test $? -eq 1`
adam@0 12660 }
adam@0 12661 fi # as_fn_arith
adam@0 12662
adam@0 12663
adam@0 12664 if expr a : '\(a\)' >/dev/null 2>&1 &&
adam@0 12665 test "X`expr 00001 : '.*\(...\)'`" = X001; then
adam@0 12666 as_expr=expr
adam@0 12667 else
adam@0 12668 as_expr=false
adam@0 12669 fi
adam@0 12670
adam@0 12671 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
adam@0 12672 as_basename=basename
adam@0 12673 else
adam@0 12674 as_basename=false
adam@0 12675 fi
adam@0 12676
adam@0 12677 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
adam@0 12678 as_dirname=dirname
adam@0 12679 else
adam@0 12680 as_dirname=false
adam@0 12681 fi
adam@0 12682
adam@0 12683 as_me=`$as_basename -- "$0" ||
adam@0 12684 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
adam@0 12685 X"$0" : 'X\(//\)$' \| \
adam@0 12686 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
adam@0 12687 $as_echo X/"$0" |
adam@0 12688 sed '/^.*\/\([^/][^/]*\)\/*$/{
adam@0 12689 s//\1/
adam@0 12690 q
adam@0 12691 }
adam@0 12692 /^X\/\(\/\/\)$/{
adam@0 12693 s//\1/
adam@0 12694 q
adam@0 12695 }
adam@0 12696 /^X\/\(\/\).*/{
adam@0 12697 s//\1/
adam@0 12698 q
adam@0 12699 }
adam@0 12700 s/.*/./; q'`
adam@0 12701
adam@0 12702 # Avoid depending upon Character Ranges.
adam@0 12703 as_cr_letters='abcdefghijklmnopqrstuvwxyz'
adam@0 12704 as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
adam@0 12705 as_cr_Letters=$as_cr_letters$as_cr_LETTERS
adam@0 12706 as_cr_digits='0123456789'
adam@0 12707 as_cr_alnum=$as_cr_Letters$as_cr_digits
adam@0 12708
adam@0 12709 ECHO_C= ECHO_N= ECHO_T=
adam@0 12710 case `echo -n x` in #(((((
adam@0 12711 -n*)
adam@0 12712 case `echo 'xy\c'` in
adam@0 12713 *c*) ECHO_T=' ';; # ECHO_T is single tab character.
adam@0 12714 xy) ECHO_C='\c';;
adam@0 12715 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
adam@0 12716 ECHO_T=' ';;
adam@0 12717 esac;;
adam@0 12718 *)
adam@0 12719 ECHO_N='-n';;
adam@0 12720 esac
adam@0 12721
adam@0 12722 rm -f conf$$ conf$$.exe conf$$.file
adam@0 12723 if test -d conf$$.dir; then
adam@0 12724 rm -f conf$$.dir/conf$$.file
adam@0 12725 else
adam@0 12726 rm -f conf$$.dir
adam@0 12727 mkdir conf$$.dir 2>/dev/null
adam@0 12728 fi
adam@0 12729 if (echo >conf$$.file) 2>/dev/null; then
adam@0 12730 if ln -s conf$$.file conf$$ 2>/dev/null; then
adam@0 12731 as_ln_s='ln -s'
adam@0 12732 # ... but there are two gotchas:
adam@0 12733 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
adam@0 12734 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
adam@20 12735 # In both cases, we have to default to `cp -pR'.
adam@0 12736 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
adam@20 12737 as_ln_s='cp -pR'
adam@0 12738 elif ln conf$$.file conf$$ 2>/dev/null; then
adam@0 12739 as_ln_s=ln
adam@0 12740 else
adam@20 12741 as_ln_s='cp -pR'
adam@20 12742 fi
adam@20 12743 else
adam@20 12744 as_ln_s='cp -pR'
adam@0 12745 fi
adam@0 12746 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
adam@0 12747 rmdir conf$$.dir 2>/dev/null
adam@0 12748
adam@0 12749
adam@0 12750 # as_fn_mkdir_p
adam@0 12751 # -------------
adam@0 12752 # Create "$as_dir" as a directory, including parents if necessary.
adam@0 12753 as_fn_mkdir_p ()
adam@0 12754 {
adam@0 12755
adam@0 12756 case $as_dir in #(
adam@0 12757 -*) as_dir=./$as_dir;;
adam@0 12758 esac
adam@0 12759 test -d "$as_dir" || eval $as_mkdir_p || {
adam@0 12760 as_dirs=
adam@0 12761 while :; do
adam@0 12762 case $as_dir in #(
adam@0 12763 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
adam@0 12764 *) as_qdir=$as_dir;;
adam@0 12765 esac
adam@0 12766 as_dirs="'$as_qdir' $as_dirs"
adam@0 12767 as_dir=`$as_dirname -- "$as_dir" ||
adam@0 12768 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
adam@0 12769 X"$as_dir" : 'X\(//\)[^/]' \| \
adam@0 12770 X"$as_dir" : 'X\(//\)$' \| \
adam@0 12771 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
adam@0 12772 $as_echo X"$as_dir" |
adam@0 12773 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
adam@0 12774 s//\1/
adam@0 12775 q
adam@0 12776 }
adam@0 12777 /^X\(\/\/\)[^/].*/{
adam@0 12778 s//\1/
adam@0 12779 q
adam@0 12780 }
adam@0 12781 /^X\(\/\/\)$/{
adam@0 12782 s//\1/
adam@0 12783 q
adam@0 12784 }
adam@0 12785 /^X\(\/\).*/{
adam@0 12786 s//\1/
adam@0 12787 q
adam@0 12788 }
adam@0 12789 s/.*/./; q'`
adam@0 12790 test -d "$as_dir" && break
adam@0 12791 done
adam@0 12792 test -z "$as_dirs" || eval "mkdir $as_dirs"
adam@0 12793 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
adam@0 12794
adam@0 12795
adam@0 12796 } # as_fn_mkdir_p
adam@0 12797 if mkdir -p . 2>/dev/null; then
adam@0 12798 as_mkdir_p='mkdir -p "$as_dir"'
adam@0 12799 else
adam@0 12800 test -d ./-p && rmdir ./-p
adam@0 12801 as_mkdir_p=false
adam@0 12802 fi
adam@0 12803
adam@20 12804
adam@20 12805 # as_fn_executable_p FILE
adam@20 12806 # -----------------------
adam@20 12807 # Test if FILE is an executable regular file.
adam@20 12808 as_fn_executable_p ()
adam@20 12809 {
adam@20 12810 test -f "$1" && test -x "$1"
adam@20 12811 } # as_fn_executable_p
adam@20 12812 as_test_x='test -x'
adam@20 12813 as_executable_p=as_fn_executable_p
adam@0 12814
adam@0 12815 # Sed expression to map a string onto a valid CPP name.
adam@0 12816 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
adam@0 12817
adam@0 12818 # Sed expression to map a string onto a valid variable name.
adam@0 12819 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
adam@0 12820
adam@0 12821
adam@0 12822 exec 6>&1
adam@0 12823 ## ----------------------------------- ##
adam@0 12824 ## Main body of $CONFIG_STATUS script. ##
adam@0 12825 ## ----------------------------------- ##
adam@0 12826 _ASEOF
adam@0 12827 test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
adam@0 12828
adam@0 12829 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
adam@0 12830 # Save the log message, to keep $0 and so on meaningful, and to
adam@0 12831 # report actual input values of CONFIG_FILES etc. instead of their
adam@0 12832 # values after options handling.
adam@0 12833 ac_log="
adam@0 12834 This file was extended by urweb_feed $as_me 1.0, which was
adam@20 12835 generated by GNU Autoconf 2.69. Invocation command line was
adam@0 12836
adam@0 12837 CONFIG_FILES = $CONFIG_FILES
adam@0 12838 CONFIG_HEADERS = $CONFIG_HEADERS
adam@0 12839 CONFIG_LINKS = $CONFIG_LINKS
adam@0 12840 CONFIG_COMMANDS = $CONFIG_COMMANDS
adam@0 12841 $ $0 $@
adam@0 12842
adam@0 12843 on `(hostname || uname -n) 2>/dev/null | sed 1q`
adam@0 12844 "
adam@0 12845
adam@0 12846 _ACEOF
adam@0 12847
adam@0 12848 case $ac_config_files in *"
adam@0 12849 "*) set x $ac_config_files; shift; ac_config_files=$*;;
adam@0 12850 esac
adam@0 12851
adam@0 12852
adam@0 12853
adam@0 12854 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
adam@0 12855 # Files that config.status was made for.
adam@0 12856 config_files="$ac_config_files"
adam@0 12857 config_commands="$ac_config_commands"
adam@0 12858
adam@0 12859 _ACEOF
adam@0 12860
adam@0 12861 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
adam@0 12862 ac_cs_usage="\
adam@0 12863 \`$as_me' instantiates files and other configuration actions
adam@0 12864 from templates according to the current configuration. Unless the files
adam@0 12865 and actions are specified as TAGs, all are instantiated by default.
adam@0 12866
adam@0 12867 Usage: $0 [OPTION]... [TAG]...
adam@0 12868
adam@0 12869 -h, --help print this help, then exit
adam@0 12870 -V, --version print version number and configuration settings, then exit
adam@0 12871 --config print configuration, then exit
adam@0 12872 -q, --quiet, --silent
adam@0 12873 do not print progress messages
adam@0 12874 -d, --debug don't remove temporary files
adam@0 12875 --recheck update $as_me by reconfiguring in the same conditions
adam@0 12876 --file=FILE[:TEMPLATE]
adam@0 12877 instantiate the configuration file FILE
adam@0 12878
adam@0 12879 Configuration files:
adam@0 12880 $config_files
adam@0 12881
adam@0 12882 Configuration commands:
adam@0 12883 $config_commands
adam@0 12884
adam@0 12885 Report bugs to the package provider."
adam@0 12886
adam@0 12887 _ACEOF
adam@0 12888 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
adam@0 12889 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
adam@0 12890 ac_cs_version="\\
adam@0 12891 urweb_feed config.status 1.0
adam@20 12892 configured by $0, generated by GNU Autoconf 2.69,
adam@0 12893 with options \\"\$ac_cs_config\\"
adam@0 12894
adam@20 12895 Copyright (C) 2012 Free Software Foundation, Inc.
adam@0 12896 This config.status script is free software; the Free Software Foundation
adam@0 12897 gives unlimited permission to copy, distribute and modify it."
adam@0 12898
adam@0 12899 ac_pwd='$ac_pwd'
adam@0 12900 srcdir='$srcdir'
adam@0 12901 INSTALL='$INSTALL'
adam@0 12902 MKDIR_P='$MKDIR_P'
adam@0 12903 AWK='$AWK'
adam@0 12904 test -n "\$AWK" || AWK=awk
adam@0 12905 _ACEOF
adam@0 12906
adam@0 12907 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
adam@0 12908 # The default lists apply if the user does not specify any file.
adam@0 12909 ac_need_defaults=:
adam@0 12910 while test $# != 0
adam@0 12911 do
adam@0 12912 case $1 in
adam@0 12913 --*=?*)
adam@0 12914 ac_option=`expr "X$1" : 'X\([^=]*\)='`
adam@0 12915 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
adam@0 12916 ac_shift=:
adam@0 12917 ;;
adam@0 12918 --*=)
adam@0 12919 ac_option=`expr "X$1" : 'X\([^=]*\)='`
adam@0 12920 ac_optarg=
adam@0 12921 ac_shift=:
adam@0 12922 ;;
adam@0 12923 *)
adam@0 12924 ac_option=$1
adam@0 12925 ac_optarg=$2
adam@0 12926 ac_shift=shift
adam@0 12927 ;;
adam@0 12928 esac
adam@0 12929
adam@0 12930 case $ac_option in
adam@0 12931 # Handling of the options.
adam@0 12932 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
adam@0 12933 ac_cs_recheck=: ;;
adam@0 12934 --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
adam@0 12935 $as_echo "$ac_cs_version"; exit ;;
adam@0 12936 --config | --confi | --conf | --con | --co | --c )
adam@0 12937 $as_echo "$ac_cs_config"; exit ;;
adam@0 12938 --debug | --debu | --deb | --de | --d | -d )
adam@0 12939 debug=: ;;
adam@0 12940 --file | --fil | --fi | --f )
adam@0 12941 $ac_shift
adam@0 12942 case $ac_optarg in
adam@0 12943 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
adam@0 12944 '') as_fn_error $? "missing file argument" ;;
adam@0 12945 esac
adam@0 12946 as_fn_append CONFIG_FILES " '$ac_optarg'"
adam@0 12947 ac_need_defaults=false;;
adam@0 12948 --he | --h | --help | --hel | -h )
adam@0 12949 $as_echo "$ac_cs_usage"; exit ;;
adam@0 12950 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
adam@0 12951 | -silent | --silent | --silen | --sile | --sil | --si | --s)
adam@0 12952 ac_cs_silent=: ;;
adam@0 12953
adam@0 12954 # This is an error.
adam@0 12955 -*) as_fn_error $? "unrecognized option: \`$1'
adam@0 12956 Try \`$0 --help' for more information." ;;
adam@0 12957
adam@0 12958 *) as_fn_append ac_config_targets " $1"
adam@0 12959 ac_need_defaults=false ;;
adam@0 12960
adam@0 12961 esac
adam@0 12962 shift
adam@0 12963 done
adam@0 12964
adam@0 12965 ac_configure_extra_args=
adam@0 12966
adam@0 12967 if $ac_cs_silent; then
adam@0 12968 exec 6>/dev/null
adam@0 12969 ac_configure_extra_args="$ac_configure_extra_args --silent"
adam@0 12970 fi
adam@0 12971
adam@0 12972 _ACEOF
adam@0 12973 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
adam@0 12974 if \$ac_cs_recheck; then
adam@20 12975 set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
adam@0 12976 shift
adam@0 12977 \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
adam@0 12978 CONFIG_SHELL='$SHELL'
adam@0 12979 export CONFIG_SHELL
adam@0 12980 exec "\$@"
adam@0 12981 fi
adam@0 12982
adam@0 12983 _ACEOF
adam@0 12984 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
adam@0 12985 exec 5>>config.log
adam@0 12986 {
adam@0 12987 echo
adam@0 12988 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
adam@0 12989 ## Running $as_me. ##
adam@0 12990 _ASBOX
adam@0 12991 $as_echo "$ac_log"
adam@0 12992 } >&5
adam@0 12993
adam@0 12994 _ACEOF
adam@0 12995 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
adam@0 12996 #
adam@0 12997 # INIT-COMMANDS
adam@0 12998 #
adam@0 12999 AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
adam@0 13000
adam@0 13001
adam@0 13002 # The HP-UX ksh and POSIX shell print the target directory to stdout
adam@0 13003 # if CDPATH is set.
adam@0 13004 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
adam@0 13005
adam@0 13006 sed_quote_subst='$sed_quote_subst'
adam@0 13007 double_quote_subst='$double_quote_subst'
adam@0 13008 delay_variable_subst='$delay_variable_subst'
adam@12 13009 macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`'
adam@12 13010 macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`'
adam@12 13011 enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`'
adam@12 13012 enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`'
adam@12 13013 pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`'
adam@12 13014 enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`'
adam@12 13015 SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`'
adam@12 13016 ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`'
adam@20 13017 PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`'
adam@12 13018 host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`'
adam@12 13019 host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`'
adam@12 13020 host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`'
adam@12 13021 build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`'
adam@12 13022 build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`'
adam@12 13023 build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`'
adam@12 13024 SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`'
adam@12 13025 Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`'
adam@12 13026 GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`'
adam@12 13027 EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`'
adam@12 13028 FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`'
adam@12 13029 LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`'
adam@12 13030 NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`'
adam@12 13031 LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`'
adam@12 13032 max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`'
adam@12 13033 ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`'
adam@12 13034 exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`'
adam@12 13035 lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`'
adam@12 13036 lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`'
adam@12 13037 lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`'
adam@12 13038 lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`'
adam@12 13039 lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`'
adam@12 13040 reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`'
adam@12 13041 reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13042 OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`'
adam@12 13043 deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`'
adam@12 13044 file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`'
adam@12 13045 file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`'
adam@12 13046 want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`'
adam@12 13047 DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`'
adam@12 13048 sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`'
adam@12 13049 AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`'
adam@12 13050 AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`'
adam@12 13051 archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`'
adam@12 13052 STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`'
adam@12 13053 RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`'
adam@12 13054 old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13055 old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13056 old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13057 lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`'
adam@12 13058 CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`'
adam@12 13059 CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`'
adam@12 13060 compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`'
adam@12 13061 GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`'
adam@12 13062 lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`'
adam@12 13063 lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`'
adam@12 13064 lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`'
adam@12 13065 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`'
adam@12 13066 nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`'
adam@12 13067 lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`'
adam@12 13068 objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`'
adam@12 13069 MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`'
adam@12 13070 lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`'
adam@12 13071 lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`'
adam@12 13072 lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`'
adam@12 13073 lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`'
adam@12 13074 lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`'
adam@12 13075 need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`'
adam@12 13076 MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`'
adam@12 13077 DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`'
adam@12 13078 NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`'
adam@12 13079 LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`'
adam@12 13080 OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`'
adam@12 13081 OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`'
adam@12 13082 libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`'
adam@12 13083 shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13084 extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13085 archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`'
adam@12 13086 enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`'
adam@12 13087 export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`'
adam@12 13088 whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`'
adam@12 13089 compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`'
adam@12 13090 old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13091 old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13092 archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13093 archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13094 module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13095 module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13096 with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`'
adam@12 13097 allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`'
adam@12 13098 no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`'
adam@12 13099 hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`'
adam@12 13100 hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`'
adam@12 13101 hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`'
adam@12 13102 hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`'
adam@12 13103 hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`'
adam@12 13104 hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`'
adam@12 13105 hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`'
adam@12 13106 inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`'
adam@12 13107 link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`'
adam@12 13108 always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`'
adam@12 13109 export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13110 exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`'
adam@12 13111 include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`'
adam@12 13112 prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13113 postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13114 file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`'
adam@12 13115 variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`'
adam@12 13116 need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`'
adam@12 13117 need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`'
adam@12 13118 version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`'
adam@12 13119 runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`'
adam@12 13120 shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`'
adam@12 13121 shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`'
adam@12 13122 libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`'
adam@12 13123 library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`'
adam@12 13124 soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`'
adam@12 13125 install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`'
adam@12 13126 postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13127 postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13128 finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`'
adam@12 13129 finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`'
adam@12 13130 hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`'
adam@12 13131 sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`'
adam@12 13132 sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`'
adam@12 13133 hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`'
adam@12 13134 enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`'
adam@12 13135 enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`'
adam@12 13136 enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`'
adam@12 13137 old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`'
adam@12 13138 striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`'
adam@0 13139
adam@0 13140 LTCC='$LTCC'
adam@0 13141 LTCFLAGS='$LTCFLAGS'
adam@0 13142 compiler='$compiler_DEFAULT'
adam@0 13143
adam@12 13144 # A function that is used when there is no print builtin or printf.
adam@12 13145 func_fallback_echo ()
adam@12 13146 {
adam@12 13147 eval 'cat <<_LTECHO_EOF
adam@12 13148 \$1
adam@12 13149 _LTECHO_EOF'
adam@12 13150 }
adam@12 13151
adam@0 13152 # Quote evaled strings.
adam@12 13153 for var in SHELL \
adam@12 13154 ECHO \
adam@20 13155 PATH_SEPARATOR \
adam@12 13156 SED \
adam@0 13157 GREP \
adam@0 13158 EGREP \
adam@0 13159 FGREP \
adam@0 13160 LD \
adam@0 13161 NM \
adam@0 13162 LN_S \
adam@0 13163 lt_SP2NL \
adam@0 13164 lt_NL2SP \
adam@0 13165 reload_flag \
adam@0 13166 OBJDUMP \
adam@0 13167 deplibs_check_method \
adam@0 13168 file_magic_cmd \
adam@12 13169 file_magic_glob \
adam@12 13170 want_nocaseglob \
adam@12 13171 DLLTOOL \
adam@12 13172 sharedlib_from_linklib_cmd \
adam@0 13173 AR \
adam@0 13174 AR_FLAGS \
adam@12 13175 archiver_list_spec \
adam@0 13176 STRIP \
adam@0 13177 RANLIB \
adam@0 13178 CC \
adam@0 13179 CFLAGS \
adam@0 13180 compiler \
adam@0 13181 lt_cv_sys_global_symbol_pipe \
adam@0 13182 lt_cv_sys_global_symbol_to_cdecl \
adam@0 13183 lt_cv_sys_global_symbol_to_c_name_address \
adam@0 13184 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \
adam@12 13185 nm_file_list_spec \
adam@0 13186 lt_prog_compiler_no_builtin_flag \
adam@12 13187 lt_prog_compiler_pic \
adam@0 13188 lt_prog_compiler_wl \
adam@0 13189 lt_prog_compiler_static \
adam@0 13190 lt_cv_prog_compiler_c_o \
adam@0 13191 need_locks \
adam@12 13192 MANIFEST_TOOL \
adam@0 13193 DSYMUTIL \
adam@0 13194 NMEDIT \
adam@0 13195 LIPO \
adam@0 13196 OTOOL \
adam@0 13197 OTOOL64 \
adam@0 13198 shrext_cmds \
adam@0 13199 export_dynamic_flag_spec \
adam@0 13200 whole_archive_flag_spec \
adam@0 13201 compiler_needs_object \
adam@0 13202 with_gnu_ld \
adam@0 13203 allow_undefined_flag \
adam@0 13204 no_undefined_flag \
adam@0 13205 hardcode_libdir_flag_spec \
adam@0 13206 hardcode_libdir_separator \
adam@0 13207 exclude_expsyms \
adam@0 13208 include_expsyms \
adam@0 13209 file_list_spec \
adam@0 13210 variables_saved_for_relink \
adam@0 13211 libname_spec \
adam@0 13212 library_names_spec \
adam@0 13213 soname_spec \
adam@12 13214 install_override_mode \
adam@0 13215 finish_eval \
adam@0 13216 old_striplib \
adam@0 13217 striplib; do
adam@12 13218 case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
adam@0 13219 *[\\\\\\\`\\"\\\$]*)
adam@12 13220 eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
adam@0 13221 ;;
adam@0 13222 *)
adam@0 13223 eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
adam@0 13224 ;;
adam@0 13225 esac
adam@0 13226 done
adam@0 13227
adam@0 13228 # Double-quote double-evaled strings.
adam@0 13229 for var in reload_cmds \
adam@0 13230 old_postinstall_cmds \
adam@0 13231 old_postuninstall_cmds \
adam@0 13232 old_archive_cmds \
adam@0 13233 extract_expsyms_cmds \
adam@0 13234 old_archive_from_new_cmds \
adam@0 13235 old_archive_from_expsyms_cmds \
adam@0 13236 archive_cmds \
adam@0 13237 archive_expsym_cmds \
adam@0 13238 module_cmds \
adam@0 13239 module_expsym_cmds \
adam@0 13240 export_symbols_cmds \
adam@0 13241 prelink_cmds \
adam@12 13242 postlink_cmds \
adam@0 13243 postinstall_cmds \
adam@0 13244 postuninstall_cmds \
adam@0 13245 finish_cmds \
adam@0 13246 sys_lib_search_path_spec \
adam@0 13247 sys_lib_dlsearch_path_spec; do
adam@12 13248 case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
adam@0 13249 *[\\\\\\\`\\"\\\$]*)
adam@12 13250 eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
adam@0 13251 ;;
adam@0 13252 *)
adam@0 13253 eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
adam@0 13254 ;;
adam@0 13255 esac
adam@0 13256 done
adam@0 13257
adam@0 13258 ac_aux_dir='$ac_aux_dir'
adam@0 13259 xsi_shell='$xsi_shell'
adam@0 13260 lt_shell_append='$lt_shell_append'
adam@0 13261
adam@0 13262 # See if we are running on zsh, and set the options which allow our
adam@0 13263 # commands through without removal of \ escapes INIT.
adam@0 13264 if test -n "\${ZSH_VERSION+set}" ; then
adam@0 13265 setopt NO_GLOB_SUBST
adam@0 13266 fi
adam@0 13267
adam@0 13268
adam@0 13269 PACKAGE='$PACKAGE'
adam@0 13270 VERSION='$VERSION'
adam@0 13271 TIMESTAMP='$TIMESTAMP'
adam@0 13272 RM='$RM'
adam@0 13273 ofile='$ofile'
adam@0 13274
adam@0 13275
adam@0 13276
adam@0 13277
adam@0 13278 _ACEOF
adam@0 13279
adam@0 13280 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
adam@0 13281
adam@0 13282 # Handling of arguments.
adam@0 13283 for ac_config_target in $ac_config_targets
adam@0 13284 do
adam@0 13285 case $ac_config_target in
adam@0 13286 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
adam@0 13287 "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
adam@0 13288 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
adam@0 13289 "src/c/Makefile") CONFIG_FILES="$CONFIG_FILES src/c/Makefile" ;;
adam@0 13290 "src/ur/config.urp") CONFIG_FILES="$CONFIG_FILES src/ur/config.urp" ;;
adam@0 13291
adam@12 13292 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
adam@0 13293 esac
adam@0 13294 done
adam@0 13295
adam@0 13296
adam@0 13297 # If the user did not use the arguments to specify the items to instantiate,
adam@0 13298 # then the envvar interface is used. Set only those that are not.
adam@0 13299 # We use the long form for the default assignment because of an extremely
adam@0 13300 # bizarre bug on SunOS 4.1.3.
adam@0 13301 if $ac_need_defaults; then
adam@0 13302 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
adam@0 13303 test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
adam@0 13304 fi
adam@0 13305
adam@0 13306 # Have a temporary directory for convenience. Make it in the build tree
adam@0 13307 # simply because there is no reason against having it here, and in addition,
adam@0 13308 # creating and moving files from /tmp can sometimes cause problems.
adam@0 13309 # Hook for its removal unless debugging.
adam@0 13310 # Note that there is a small window in which the directory will not be cleaned:
adam@0 13311 # after its creation but before its name has been assigned to `$tmp'.
adam@0 13312 $debug ||
adam@0 13313 {
adam@12 13314 tmp= ac_tmp=
adam@0 13315 trap 'exit_status=$?
adam@12 13316 : "${ac_tmp:=$tmp}"
adam@12 13317 { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
adam@0 13318 ' 0
adam@0 13319 trap 'as_fn_exit 1' 1 2 13 15
adam@0 13320 }
adam@0 13321 # Create a (secure) tmp directory for tmp files.
adam@0 13322
adam@0 13323 {
adam@0 13324 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
adam@12 13325 test -d "$tmp"
adam@0 13326 } ||
adam@0 13327 {
adam@0 13328 tmp=./conf$$-$RANDOM
adam@0 13329 (umask 077 && mkdir "$tmp")
adam@0 13330 } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
adam@12 13331 ac_tmp=$tmp
adam@0 13332
adam@0 13333 # Set up the scripts for CONFIG_FILES section.
adam@0 13334 # No need to generate them if there are no CONFIG_FILES.
adam@0 13335 # This happens for instance with `./config.status config.h'.
adam@0 13336 if test -n "$CONFIG_FILES"; then
adam@0 13337
adam@0 13338
adam@0 13339 ac_cr=`echo X | tr X '\015'`
adam@0 13340 # On cygwin, bash can eat \r inside `` if the user requested igncr.
adam@0 13341 # But we know of no other shell where ac_cr would be empty at this
adam@0 13342 # point, so we can use a bashism as a fallback.
adam@0 13343 if test "x$ac_cr" = x; then
adam@0 13344 eval ac_cr=\$\'\\r\'
adam@0 13345 fi
adam@0 13346 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
adam@0 13347 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
adam@0 13348 ac_cs_awk_cr='\\r'
adam@0 13349 else
adam@0 13350 ac_cs_awk_cr=$ac_cr
adam@0 13351 fi
adam@0 13352
adam@12 13353 echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
adam@0 13354 _ACEOF
adam@0 13355
adam@0 13356
adam@0 13357 {
adam@0 13358 echo "cat >conf$$subs.awk <<_ACEOF" &&
adam@0 13359 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
adam@0 13360 echo "_ACEOF"
adam@0 13361 } >conf$$subs.sh ||
adam@0 13362 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
adam@0 13363 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
adam@0 13364 ac_delim='%!_!# '
adam@0 13365 for ac_last_try in false false false false false :; do
adam@0 13366 . ./conf$$subs.sh ||
adam@0 13367 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
adam@0 13368
adam@0 13369 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
adam@0 13370 if test $ac_delim_n = $ac_delim_num; then
adam@0 13371 break
adam@0 13372 elif $ac_last_try; then
adam@0 13373 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
adam@0 13374 else
adam@0 13375 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
adam@0 13376 fi
adam@0 13377 done
adam@0 13378 rm -f conf$$subs.sh
adam@0 13379
adam@0 13380 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
adam@12 13381 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
adam@0 13382 _ACEOF
adam@0 13383 sed -n '
adam@0 13384 h
adam@0 13385 s/^/S["/; s/!.*/"]=/
adam@0 13386 p
adam@0 13387 g
adam@0 13388 s/^[^!]*!//
adam@0 13389 :repl
adam@0 13390 t repl
adam@0 13391 s/'"$ac_delim"'$//
adam@0 13392 t delim
adam@0 13393 :nl
adam@0 13394 h
adam@0 13395 s/\(.\{148\}\)..*/\1/
adam@0 13396 t more1
adam@0 13397 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
adam@0 13398 p
adam@0 13399 n
adam@0 13400 b repl
adam@0 13401 :more1
adam@0 13402 s/["\\]/\\&/g; s/^/"/; s/$/"\\/
adam@0 13403 p
adam@0 13404 g
adam@0 13405 s/.\{148\}//
adam@0 13406 t nl
adam@0 13407 :delim
adam@0 13408 h
adam@0 13409 s/\(.\{148\}\)..*/\1/
adam@0 13410 t more2
adam@0 13411 s/["\\]/\\&/g; s/^/"/; s/$/"/
adam@0 13412 p
adam@0 13413 b
adam@0 13414 :more2
adam@0 13415 s/["\\]/\\&/g; s/^/"/; s/$/"\\/
adam@0 13416 p
adam@0 13417 g
adam@0 13418 s/.\{148\}//
adam@0 13419 t delim
adam@0 13420 ' <conf$$subs.awk | sed '
adam@0 13421 /^[^""]/{
adam@0 13422 N
adam@0 13423 s/\n//
adam@0 13424 }
adam@0 13425 ' >>$CONFIG_STATUS || ac_write_fail=1
adam@0 13426 rm -f conf$$subs.awk
adam@0 13427 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
adam@0 13428 _ACAWK
adam@12 13429 cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
adam@0 13430 for (key in S) S_is_set[key] = 1
adam@0 13431 FS = ""
adam@0 13432
adam@0 13433 }
adam@0 13434 {
adam@0 13435 line = $ 0
adam@0 13436 nfields = split(line, field, "@")
adam@0 13437 substed = 0
adam@0 13438 len = length(field[1])
adam@0 13439 for (i = 2; i < nfields; i++) {
adam@0 13440 key = field[i]
adam@0 13441 keylen = length(key)
adam@0 13442 if (S_is_set[key]) {
adam@0 13443 value = S[key]
adam@0 13444 line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
adam@0 13445 len += length(value) + length(field[++i])
adam@0 13446 substed = 1
adam@0 13447 } else
adam@0 13448 len += 1 + keylen
adam@0 13449 }
adam@0 13450
adam@0 13451 print line
adam@0 13452 }
adam@0 13453
adam@0 13454 _ACAWK
adam@0 13455 _ACEOF
adam@0 13456 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
adam@0 13457 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
adam@0 13458 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
adam@0 13459 else
adam@0 13460 cat
adam@12 13461 fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
adam@0 13462 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
adam@0 13463 _ACEOF
adam@0 13464
adam@0 13465 # VPATH may cause trouble with some makes, so we remove sole $(srcdir),
adam@0 13466 # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
adam@0 13467 # trailing colons and then remove the whole line if VPATH becomes empty
adam@0 13468 # (actually we leave an empty line to preserve line numbers).
adam@0 13469 if test "x$srcdir" = x.; then
adam@0 13470 ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
adam@0 13471 h
adam@0 13472 s///
adam@0 13473 s/^/:/
adam@0 13474 s/[ ]*$/:/
adam@0 13475 s/:\$(srcdir):/:/g
adam@0 13476 s/:\${srcdir}:/:/g
adam@0 13477 s/:@srcdir@:/:/g
adam@0 13478 s/^:*//
adam@0 13479 s/:*$//
adam@0 13480 x
adam@0 13481 s/\(=[ ]*\).*/\1/
adam@0 13482 G
adam@0 13483 s/\n//
adam@0 13484 s/^[^=]*=[ ]*$//
adam@0 13485 }'
adam@0 13486 fi
adam@0 13487
adam@0 13488 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
adam@0 13489 fi # test -n "$CONFIG_FILES"
adam@0 13490
adam@0 13491
adam@0 13492 eval set X " :F $CONFIG_FILES :C $CONFIG_COMMANDS"
adam@0 13493 shift
adam@0 13494 for ac_tag
adam@0 13495 do
adam@0 13496 case $ac_tag in
adam@0 13497 :[FHLC]) ac_mode=$ac_tag; continue;;
adam@0 13498 esac
adam@0 13499 case $ac_mode$ac_tag in
adam@0 13500 :[FHL]*:*);;
adam@12 13501 :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
adam@0 13502 :[FH]-) ac_tag=-:-;;
adam@0 13503 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
adam@0 13504 esac
adam@0 13505 ac_save_IFS=$IFS
adam@0 13506 IFS=:
adam@0 13507 set x $ac_tag
adam@0 13508 IFS=$ac_save_IFS
adam@0 13509 shift
adam@0 13510 ac_file=$1
adam@0 13511 shift
adam@0 13512
adam@0 13513 case $ac_mode in
adam@0 13514 :L) ac_source=$1;;
adam@0 13515 :[FH])
adam@0 13516 ac_file_inputs=
adam@0 13517 for ac_f
adam@0 13518 do
adam@0 13519 case $ac_f in
adam@12 13520 -) ac_f="$ac_tmp/stdin";;
adam@0 13521 *) # Look for the file first in the build tree, then in the source tree
adam@0 13522 # (if the path is not absolute). The absolute path cannot be DOS-style,
adam@0 13523 # because $ac_f cannot contain `:'.
adam@0 13524 test -f "$ac_f" ||
adam@0 13525 case $ac_f in
adam@0 13526 [\\/$]*) false;;
adam@0 13527 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
adam@0 13528 esac ||
adam@12 13529 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
adam@0 13530 esac
adam@0 13531 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
adam@0 13532 as_fn_append ac_file_inputs " '$ac_f'"
adam@0 13533 done
adam@0 13534
adam@0 13535 # Let's still pretend it is `configure' which instantiates (i.e., don't
adam@0 13536 # use $as_me), people would be surprised to read:
adam@0 13537 # /* config.h. Generated by config.status. */
adam@0 13538 configure_input='Generated from '`
adam@0 13539 $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
adam@0 13540 `' by configure.'
adam@0 13541 if test x"$ac_file" != x-; then
adam@0 13542 configure_input="$ac_file. $configure_input"
adam@0 13543 { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
adam@0 13544 $as_echo "$as_me: creating $ac_file" >&6;}
adam@0 13545 fi
adam@0 13546 # Neutralize special characters interpreted by sed in replacement strings.
adam@0 13547 case $configure_input in #(
adam@0 13548 *\&* | *\|* | *\\* )
adam@0 13549 ac_sed_conf_input=`$as_echo "$configure_input" |
adam@0 13550 sed 's/[\\\\&|]/\\\\&/g'`;; #(
adam@0 13551 *) ac_sed_conf_input=$configure_input;;
adam@0 13552 esac
adam@0 13553
adam@0 13554 case $ac_tag in
adam@12 13555 *:-:* | *:-) cat >"$ac_tmp/stdin" \
adam@12 13556 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
adam@0 13557 esac
adam@0 13558 ;;
adam@0 13559 esac
adam@0 13560
adam@0 13561 ac_dir=`$as_dirname -- "$ac_file" ||
adam@0 13562 $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
adam@0 13563 X"$ac_file" : 'X\(//\)[^/]' \| \
adam@0 13564 X"$ac_file" : 'X\(//\)$' \| \
adam@0 13565 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
adam@0 13566 $as_echo X"$ac_file" |
adam@0 13567 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
adam@0 13568 s//\1/
adam@0 13569 q
adam@0 13570 }
adam@0 13571 /^X\(\/\/\)[^/].*/{
adam@0 13572 s//\1/
adam@0 13573 q
adam@0 13574 }
adam@0 13575 /^X\(\/\/\)$/{
adam@0 13576 s//\1/
adam@0 13577 q
adam@0 13578 }
adam@0 13579 /^X\(\/\).*/{
adam@0 13580 s//\1/
adam@0 13581 q
adam@0 13582 }
adam@0 13583 s/.*/./; q'`
adam@0 13584 as_dir="$ac_dir"; as_fn_mkdir_p
adam@0 13585 ac_builddir=.
adam@0 13586
adam@0 13587 case "$ac_dir" in
adam@0 13588 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
adam@0 13589 *)
adam@0 13590 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
adam@0 13591 # A ".." for each directory in $ac_dir_suffix.
adam@0 13592 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
adam@0 13593 case $ac_top_builddir_sub in
adam@0 13594 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
adam@0 13595 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
adam@0 13596 esac ;;
adam@0 13597 esac
adam@0 13598 ac_abs_top_builddir=$ac_pwd
adam@0 13599 ac_abs_builddir=$ac_pwd$ac_dir_suffix
adam@0 13600 # for backward compatibility:
adam@0 13601 ac_top_builddir=$ac_top_build_prefix
adam@0 13602
adam@0 13603 case $srcdir in
adam@0 13604 .) # We are building in place.
adam@0 13605 ac_srcdir=.
adam@0 13606 ac_top_srcdir=$ac_top_builddir_sub
adam@0 13607 ac_abs_top_srcdir=$ac_pwd ;;
adam@0 13608 [\\/]* | ?:[\\/]* ) # Absolute name.
adam@0 13609 ac_srcdir=$srcdir$ac_dir_suffix;
adam@0 13610 ac_top_srcdir=$srcdir
adam@0 13611 ac_abs_top_srcdir=$srcdir ;;
adam@0 13612 *) # Relative name.
adam@0 13613 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
adam@0 13614 ac_top_srcdir=$ac_top_build_prefix$srcdir
adam@0 13615 ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
adam@0 13616 esac
adam@0 13617 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
adam@0 13618
adam@0 13619
adam@0 13620 case $ac_mode in
adam@0 13621 :F)
adam@0 13622 #
adam@0 13623 # CONFIG_FILE
adam@0 13624 #
adam@0 13625
adam@0 13626 case $INSTALL in
adam@0 13627 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
adam@0 13628 *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
adam@0 13629 esac
adam@0 13630 ac_MKDIR_P=$MKDIR_P
adam@0 13631 case $MKDIR_P in
adam@0 13632 [\\/$]* | ?:[\\/]* ) ;;
adam@0 13633 */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
adam@0 13634 esac
adam@0 13635 _ACEOF
adam@0 13636
adam@0 13637 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
adam@0 13638 # If the template does not know about datarootdir, expand it.
adam@0 13639 # FIXME: This hack should be removed a few years after 2.60.
adam@0 13640 ac_datarootdir_hack=; ac_datarootdir_seen=
adam@0 13641 ac_sed_dataroot='
adam@0 13642 /datarootdir/ {
adam@0 13643 p
adam@0 13644 q
adam@0 13645 }
adam@0 13646 /@datadir@/p
adam@0 13647 /@docdir@/p
adam@0 13648 /@infodir@/p
adam@0 13649 /@localedir@/p
adam@0 13650 /@mandir@/p'
adam@0 13651 case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
adam@0 13652 *datarootdir*) ac_datarootdir_seen=yes;;
adam@0 13653 *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
adam@0 13654 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
adam@0 13655 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
adam@0 13656 _ACEOF
adam@0 13657 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
adam@0 13658 ac_datarootdir_hack='
adam@0 13659 s&@datadir@&$datadir&g
adam@0 13660 s&@docdir@&$docdir&g
adam@0 13661 s&@infodir@&$infodir&g
adam@0 13662 s&@localedir@&$localedir&g
adam@0 13663 s&@mandir@&$mandir&g
adam@0 13664 s&\\\${datarootdir}&$datarootdir&g' ;;
adam@0 13665 esac
adam@0 13666 _ACEOF
adam@0 13667
adam@0 13668 # Neutralize VPATH when `$srcdir' = `.'.
adam@0 13669 # Shell code in configure.ac might set extrasub.
adam@0 13670 # FIXME: do we really want to maintain this feature?
adam@0 13671 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
adam@0 13672 ac_sed_extra="$ac_vpsub
adam@0 13673 $extrasub
adam@0 13674 _ACEOF
adam@0 13675 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
adam@0 13676 :t
adam@0 13677 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
adam@0 13678 s|@configure_input@|$ac_sed_conf_input|;t t
adam@0 13679 s&@top_builddir@&$ac_top_builddir_sub&;t t
adam@0 13680 s&@top_build_prefix@&$ac_top_build_prefix&;t t
adam@0 13681 s&@srcdir@&$ac_srcdir&;t t
adam@0 13682 s&@abs_srcdir@&$ac_abs_srcdir&;t t
adam@0 13683 s&@top_srcdir@&$ac_top_srcdir&;t t
adam@0 13684 s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
adam@0 13685 s&@builddir@&$ac_builddir&;t t
adam@0 13686 s&@abs_builddir@&$ac_abs_builddir&;t t
adam@0 13687 s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
adam@0 13688 s&@INSTALL@&$ac_INSTALL&;t t
adam@0 13689 s&@MKDIR_P@&$ac_MKDIR_P&;t t
adam@0 13690 $ac_datarootdir_hack
adam@0 13691 "
adam@12 13692 eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
adam@12 13693 >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
adam@0 13694
adam@0 13695 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
adam@12 13696 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
adam@12 13697 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
adam@12 13698 "$ac_tmp/out"`; test -z "$ac_out"; } &&
adam@0 13699 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
adam@0 13700 which seems to be undefined. Please make sure it is defined" >&5
adam@0 13701 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
adam@0 13702 which seems to be undefined. Please make sure it is defined" >&2;}
adam@0 13703
adam@12 13704 rm -f "$ac_tmp/stdin"
adam@0 13705 case $ac_file in
adam@12 13706 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
adam@12 13707 *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
adam@0 13708 esac \
adam@0 13709 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
adam@0 13710 ;;
adam@0 13711
adam@0 13712
adam@0 13713 :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
adam@0 13714 $as_echo "$as_me: executing $ac_file commands" >&6;}
adam@0 13715 ;;
adam@0 13716 esac
adam@0 13717
adam@0 13718
adam@0 13719 case $ac_file$ac_mode in
adam@0 13720 "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
adam@0 13721 # Autoconf 2.62 quotes --file arguments for eval, but not when files
adam@0 13722 # are listed without --file. Let's play safe and only enable the eval
adam@0 13723 # if we detect the quoting.
adam@0 13724 case $CONFIG_FILES in
adam@0 13725 *\'*) eval set x "$CONFIG_FILES" ;;
adam@0 13726 *) set x $CONFIG_FILES ;;
adam@0 13727 esac
adam@0 13728 shift
adam@0 13729 for mf
adam@0 13730 do
adam@0 13731 # Strip MF so we end up with the name of the file.
adam@0 13732 mf=`echo "$mf" | sed -e 's/:.*$//'`
adam@0 13733 # Check whether this is an Automake generated Makefile or not.
adam@0 13734 # We used to match only the files named `Makefile.in', but
adam@0 13735 # some people rename them; so instead we look at the file content.
adam@0 13736 # Grep'ing the first line is not enough: some people post-process
adam@0 13737 # each Makefile.in and add a new line on top of each file to say so.
adam@0 13738 # Grep'ing the whole file is not good either: AIX grep has a line
adam@0 13739 # limit of 2048, but all sed's we know have understand at least 4000.
adam@0 13740 if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
adam@0 13741 dirpart=`$as_dirname -- "$mf" ||
adam@0 13742 $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
adam@0 13743 X"$mf" : 'X\(//\)[^/]' \| \
adam@0 13744 X"$mf" : 'X\(//\)$' \| \
adam@0 13745 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
adam@0 13746 $as_echo X"$mf" |
adam@0 13747 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
adam@0 13748 s//\1/
adam@0 13749 q
adam@0 13750 }
adam@0 13751 /^X\(\/\/\)[^/].*/{
adam@0 13752 s//\1/
adam@0 13753 q
adam@0 13754 }
adam@0 13755 /^X\(\/\/\)$/{
adam@0 13756 s//\1/
adam@0 13757 q
adam@0 13758 }
adam@0 13759 /^X\(\/\).*/{
adam@0 13760 s//\1/
adam@0 13761 q
adam@0 13762 }
adam@0 13763 s/.*/./; q'`
adam@0 13764 else
adam@0 13765 continue
adam@0 13766 fi
adam@0 13767 # Extract the definition of DEPDIR, am__include, and am__quote
adam@0 13768 # from the Makefile without running `make'.
adam@0 13769 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
adam@0 13770 test -z "$DEPDIR" && continue
adam@0 13771 am__include=`sed -n 's/^am__include = //p' < "$mf"`
adam@0 13772 test -z "am__include" && continue
adam@0 13773 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
adam@0 13774 # When using ansi2knr, U may be empty or an underscore; expand it
adam@0 13775 U=`sed -n 's/^U = //p' < "$mf"`
adam@0 13776 # Find all dependency output files, they are included files with
adam@0 13777 # $(DEPDIR) in their names. We invoke sed twice because it is the
adam@0 13778 # simplest approach to changing $(DEPDIR) to its actual value in the
adam@0 13779 # expansion.
adam@0 13780 for file in `sed -n "
adam@0 13781 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
adam@0 13782 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
adam@0 13783 # Make sure the directory exists.
adam@0 13784 test -f "$dirpart/$file" && continue
adam@0 13785 fdir=`$as_dirname -- "$file" ||
adam@0 13786 $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
adam@0 13787 X"$file" : 'X\(//\)[^/]' \| \
adam@0 13788 X"$file" : 'X\(//\)$' \| \
adam@0 13789 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
adam@0 13790 $as_echo X"$file" |
adam@0 13791 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
adam@0 13792 s//\1/
adam@0 13793 q
adam@0 13794 }
adam@0 13795 /^X\(\/\/\)[^/].*/{
adam@0 13796 s//\1/
adam@0 13797 q
adam@0 13798 }
adam@0 13799 /^X\(\/\/\)$/{
adam@0 13800 s//\1/
adam@0 13801 q
adam@0 13802 }
adam@0 13803 /^X\(\/\).*/{
adam@0 13804 s//\1/
adam@0 13805 q
adam@0 13806 }
adam@0 13807 s/.*/./; q'`
adam@0 13808 as_dir=$dirpart/$fdir; as_fn_mkdir_p
adam@0 13809 # echo "creating $dirpart/$file"
adam@0 13810 echo '# dummy' > "$dirpart/$file"
adam@0 13811 done
adam@0 13812 done
adam@0 13813 }
adam@0 13814 ;;
adam@0 13815 "libtool":C)
adam@0 13816
adam@0 13817 # See if we are running on zsh, and set the options which allow our
adam@0 13818 # commands through without removal of \ escapes.
adam@0 13819 if test -n "${ZSH_VERSION+set}" ; then
adam@0 13820 setopt NO_GLOB_SUBST
adam@0 13821 fi
adam@0 13822
adam@0 13823 cfgfile="${ofile}T"
adam@0 13824 trap "$RM \"$cfgfile\"; exit 1" 1 2 15
adam@0 13825 $RM "$cfgfile"
adam@0 13826
adam@0 13827 cat <<_LT_EOF >> "$cfgfile"
adam@0 13828 #! $SHELL
adam@0 13829
adam@0 13830 # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
adam@0 13831 # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
adam@0 13832 # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
adam@0 13833 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
adam@0 13834 #
adam@0 13835 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
adam@20 13836 # 2006, 2007, 2008, 2009, 2010, 2011 Free Software
adam@20 13837 # Foundation, Inc.
adam@0 13838 # Written by Gordon Matzigkeit, 1996
adam@0 13839 #
adam@0 13840 # This file is part of GNU Libtool.
adam@0 13841 #
adam@0 13842 # GNU Libtool is free software; you can redistribute it and/or
adam@0 13843 # modify it under the terms of the GNU General Public License as
adam@0 13844 # published by the Free Software Foundation; either version 2 of
adam@0 13845 # the License, or (at your option) any later version.
adam@0 13846 #
adam@0 13847 # As a special exception to the GNU General Public License,
adam@0 13848 # if you distribute this file as part of a program or library that
adam@0 13849 # is built using GNU Libtool, you may include this file under the
adam@0 13850 # same distribution terms that you use for the rest of that program.
adam@0 13851 #
adam@0 13852 # GNU Libtool is distributed in the hope that it will be useful,
adam@0 13853 # but WITHOUT ANY WARRANTY; without even the implied warranty of
adam@0 13854 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
adam@0 13855 # GNU General Public License for more details.
adam@0 13856 #
adam@0 13857 # You should have received a copy of the GNU General Public License
adam@0 13858 # along with GNU Libtool; see the file COPYING. If not, a copy
adam@0 13859 # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
adam@0 13860 # obtained by writing to the Free Software Foundation, Inc.,
adam@0 13861 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
adam@0 13862
adam@0 13863
adam@0 13864 # The names of the tagged configurations supported by this script.
adam@0 13865 available_tags=""
adam@0 13866
adam@0 13867 # ### BEGIN LIBTOOL CONFIG
adam@0 13868
adam@0 13869 # Which release of libtool.m4 was used?
adam@0 13870 macro_version=$macro_version
adam@0 13871 macro_revision=$macro_revision
adam@0 13872
adam@0 13873 # Whether or not to build shared libraries.
adam@0 13874 build_libtool_libs=$enable_shared
adam@0 13875
adam@0 13876 # Whether or not to build static libraries.
adam@0 13877 build_old_libs=$enable_static
adam@0 13878
adam@0 13879 # What type of objects to build.
adam@0 13880 pic_mode=$pic_mode
adam@0 13881
adam@0 13882 # Whether or not to optimize for fast installation.
adam@0 13883 fast_install=$enable_fast_install
adam@0 13884
adam@12 13885 # Shell to use when invoking shell scripts.
adam@12 13886 SHELL=$lt_SHELL
adam@12 13887
adam@12 13888 # An echo program that protects backslashes.
adam@12 13889 ECHO=$lt_ECHO
adam@12 13890
adam@20 13891 # The PATH separator for the build system.
adam@20 13892 PATH_SEPARATOR=$lt_PATH_SEPARATOR
adam@20 13893
adam@0 13894 # The host system.
adam@0 13895 host_alias=$host_alias
adam@0 13896 host=$host
adam@0 13897 host_os=$host_os
adam@0 13898
adam@0 13899 # The build system.
adam@0 13900 build_alias=$build_alias
adam@0 13901 build=$build
adam@0 13902 build_os=$build_os
adam@0 13903
adam@0 13904 # A sed program that does not truncate output.
adam@0 13905 SED=$lt_SED
adam@0 13906
adam@0 13907 # Sed that helps us avoid accidentally triggering echo(1) options like -n.
adam@0 13908 Xsed="\$SED -e 1s/^X//"
adam@0 13909
adam@0 13910 # A grep program that handles long lines.
adam@0 13911 GREP=$lt_GREP
adam@0 13912
adam@0 13913 # An ERE matcher.
adam@0 13914 EGREP=$lt_EGREP
adam@0 13915
adam@0 13916 # A literal string matcher.
adam@0 13917 FGREP=$lt_FGREP
adam@0 13918
adam@0 13919 # A BSD- or MS-compatible name lister.
adam@0 13920 NM=$lt_NM
adam@0 13921
adam@0 13922 # Whether we need soft or hard links.
adam@0 13923 LN_S=$lt_LN_S
adam@0 13924
adam@0 13925 # What is the maximum length of a command?
adam@0 13926 max_cmd_len=$max_cmd_len
adam@0 13927
adam@0 13928 # Object file suffix (normally "o").
adam@0 13929 objext=$ac_objext
adam@0 13930
adam@0 13931 # Executable file suffix (normally "").
adam@0 13932 exeext=$exeext
adam@0 13933
adam@0 13934 # whether the shell understands "unset".
adam@0 13935 lt_unset=$lt_unset
adam@0 13936
adam@0 13937 # turn spaces into newlines.
adam@0 13938 SP2NL=$lt_lt_SP2NL
adam@0 13939
adam@0 13940 # turn newlines into spaces.
adam@0 13941 NL2SP=$lt_lt_NL2SP
adam@0 13942
adam@12 13943 # convert \$build file names to \$host format.
adam@12 13944 to_host_file_cmd=$lt_cv_to_host_file_cmd
adam@12 13945
adam@12 13946 # convert \$build files to toolchain format.
adam@12 13947 to_tool_file_cmd=$lt_cv_to_tool_file_cmd
adam@0 13948
adam@0 13949 # An object symbol dumper.
adam@0 13950 OBJDUMP=$lt_OBJDUMP
adam@0 13951
adam@0 13952 # Method to check whether dependent libraries are shared objects.
adam@0 13953 deplibs_check_method=$lt_deplibs_check_method
adam@0 13954
adam@12 13955 # Command to use when deplibs_check_method = "file_magic".
adam@0 13956 file_magic_cmd=$lt_file_magic_cmd
adam@0 13957
adam@12 13958 # How to find potential files when deplibs_check_method = "file_magic".
adam@12 13959 file_magic_glob=$lt_file_magic_glob
adam@12 13960
adam@12 13961 # Find potential files using nocaseglob when deplibs_check_method = "file_magic".
adam@12 13962 want_nocaseglob=$lt_want_nocaseglob
adam@12 13963
adam@12 13964 # DLL creation program.
adam@12 13965 DLLTOOL=$lt_DLLTOOL
adam@12 13966
adam@12 13967 # Command to associate shared and link libraries.
adam@12 13968 sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd
adam@12 13969
adam@0 13970 # The archiver.
adam@0 13971 AR=$lt_AR
adam@12 13972
adam@12 13973 # Flags to create an archive.
adam@0 13974 AR_FLAGS=$lt_AR_FLAGS
adam@0 13975
adam@12 13976 # How to feed a file listing to the archiver.
adam@12 13977 archiver_list_spec=$lt_archiver_list_spec
adam@12 13978
adam@0 13979 # A symbol stripping program.
adam@0 13980 STRIP=$lt_STRIP
adam@0 13981
adam@0 13982 # Commands used to install an old-style archive.
adam@0 13983 RANLIB=$lt_RANLIB
adam@0 13984 old_postinstall_cmds=$lt_old_postinstall_cmds
adam@0 13985 old_postuninstall_cmds=$lt_old_postuninstall_cmds
adam@0 13986
adam@12 13987 # Whether to use a lock for old archive extraction.
adam@12 13988 lock_old_archive_extraction=$lock_old_archive_extraction
adam@12 13989
adam@0 13990 # A C compiler.
adam@0 13991 LTCC=$lt_CC
adam@0 13992
adam@0 13993 # LTCC compiler flags.
adam@0 13994 LTCFLAGS=$lt_CFLAGS
adam@0 13995
adam@0 13996 # Take the output of nm and produce a listing of raw symbols and C names.
adam@0 13997 global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
adam@0 13998
adam@0 13999 # Transform the output of nm in a proper C declaration.
adam@0 14000 global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
adam@0 14001
adam@0 14002 # Transform the output of nm in a C name address pair.
adam@0 14003 global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
adam@0 14004
adam@0 14005 # Transform the output of nm in a C name address pair when lib prefix is needed.
adam@0 14006 global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
adam@0 14007
adam@12 14008 # Specify filename containing input files for \$NM.
adam@12 14009 nm_file_list_spec=$lt_nm_file_list_spec
adam@12 14010
adam@12 14011 # The root where to search for dependent libraries,and in which our libraries should be installed.
adam@12 14012 lt_sysroot=$lt_sysroot
adam@12 14013
adam@0 14014 # The name of the directory that contains temporary libtool files.
adam@0 14015 objdir=$objdir
adam@0 14016
adam@0 14017 # Used to examine libraries when file_magic_cmd begins with "file".
adam@0 14018 MAGIC_CMD=$MAGIC_CMD
adam@0 14019
adam@0 14020 # Must we lock files when doing compilation?
adam@0 14021 need_locks=$lt_need_locks
adam@0 14022
adam@12 14023 # Manifest tool.
adam@12 14024 MANIFEST_TOOL=$lt_MANIFEST_TOOL
adam@12 14025
adam@0 14026 # Tool to manipulate archived DWARF debug symbol files on Mac OS X.
adam@0 14027 DSYMUTIL=$lt_DSYMUTIL
adam@0 14028
adam@0 14029 # Tool to change global to local symbols on Mac OS X.
adam@0 14030 NMEDIT=$lt_NMEDIT
adam@0 14031
adam@0 14032 # Tool to manipulate fat objects and archives on Mac OS X.
adam@0 14033 LIPO=$lt_LIPO
adam@0 14034
adam@0 14035 # ldd/readelf like tool for Mach-O binaries on Mac OS X.
adam@0 14036 OTOOL=$lt_OTOOL
adam@0 14037
adam@0 14038 # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
adam@0 14039 OTOOL64=$lt_OTOOL64
adam@0 14040
adam@0 14041 # Old archive suffix (normally "a").
adam@0 14042 libext=$libext
adam@0 14043
adam@0 14044 # Shared library suffix (normally ".so").
adam@0 14045 shrext_cmds=$lt_shrext_cmds
adam@0 14046
adam@0 14047 # The commands to extract the exported symbol list from a shared archive.
adam@0 14048 extract_expsyms_cmds=$lt_extract_expsyms_cmds
adam@0 14049
adam@0 14050 # Variables whose values should be saved in libtool wrapper scripts and
adam@0 14051 # restored at link time.
adam@0 14052 variables_saved_for_relink=$lt_variables_saved_for_relink
adam@0 14053
adam@0 14054 # Do we need the "lib" prefix for modules?
adam@0 14055 need_lib_prefix=$need_lib_prefix
adam@0 14056
adam@0 14057 # Do we need a version for libraries?
adam@0 14058 need_version=$need_version
adam@0 14059
adam@0 14060 # Library versioning type.
adam@0 14061 version_type=$version_type
adam@0 14062
adam@0 14063 # Shared library runtime path variable.
adam@0 14064 runpath_var=$runpath_var
adam@0 14065
adam@0 14066 # Shared library path variable.
adam@0 14067 shlibpath_var=$shlibpath_var
adam@0 14068
adam@0 14069 # Is shlibpath searched before the hard-coded library search path?
adam@0 14070 shlibpath_overrides_runpath=$shlibpath_overrides_runpath
adam@0 14071
adam@0 14072 # Format of library name prefix.
adam@0 14073 libname_spec=$lt_libname_spec
adam@0 14074
adam@0 14075 # List of archive names. First name is the real one, the rest are links.
adam@0 14076 # The last name is the one that the linker finds with -lNAME
adam@0 14077 library_names_spec=$lt_library_names_spec
adam@0 14078
adam@0 14079 # The coded name of the library, if different from the real name.
adam@0 14080 soname_spec=$lt_soname_spec
adam@0 14081
adam@12 14082 # Permission mode override for installation of shared libraries.
adam@12 14083 install_override_mode=$lt_install_override_mode
adam@12 14084
adam@0 14085 # Command to use after installation of a shared archive.
adam@0 14086 postinstall_cmds=$lt_postinstall_cmds
adam@0 14087
adam@0 14088 # Command to use after uninstallation of a shared archive.
adam@0 14089 postuninstall_cmds=$lt_postuninstall_cmds
adam@0 14090
adam@0 14091 # Commands used to finish a libtool library installation in a directory.
adam@0 14092 finish_cmds=$lt_finish_cmds
adam@0 14093
adam@0 14094 # As "finish_cmds", except a single script fragment to be evaled but
adam@0 14095 # not shown.
adam@0 14096 finish_eval=$lt_finish_eval
adam@0 14097
adam@0 14098 # Whether we should hardcode library paths into libraries.
adam@0 14099 hardcode_into_libs=$hardcode_into_libs
adam@0 14100
adam@0 14101 # Compile-time system search path for libraries.
adam@0 14102 sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
adam@0 14103
adam@0 14104 # Run-time system search path for libraries.
adam@0 14105 sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
adam@0 14106
adam@0 14107 # Whether dlopen is supported.
adam@0 14108 dlopen_support=$enable_dlopen
adam@0 14109
adam@0 14110 # Whether dlopen of programs is supported.
adam@0 14111 dlopen_self=$enable_dlopen_self
adam@0 14112
adam@0 14113 # Whether dlopen of statically linked programs is supported.
adam@0 14114 dlopen_self_static=$enable_dlopen_self_static
adam@0 14115
adam@0 14116 # Commands to strip libraries.
adam@0 14117 old_striplib=$lt_old_striplib
adam@0 14118 striplib=$lt_striplib
adam@0 14119
adam@0 14120
adam@0 14121 # The linker used to build libraries.
adam@0 14122 LD=$lt_LD
adam@0 14123
adam@12 14124 # How to create reloadable object files.
adam@12 14125 reload_flag=$lt_reload_flag
adam@12 14126 reload_cmds=$lt_reload_cmds
adam@12 14127
adam@0 14128 # Commands used to build an old-style archive.
adam@0 14129 old_archive_cmds=$lt_old_archive_cmds
adam@0 14130
adam@0 14131 # A language specific compiler.
adam@0 14132 CC=$lt_compiler
adam@0 14133
adam@0 14134 # Is the compiler the GNU compiler?
adam@0 14135 with_gcc=$GCC
adam@0 14136
adam@0 14137 # Compiler flag to turn off builtin functions.
adam@0 14138 no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
adam@0 14139
adam@12 14140 # Additional compiler flags for building library objects.
adam@12 14141 pic_flag=$lt_lt_prog_compiler_pic
adam@12 14142
adam@0 14143 # How to pass a linker flag through the compiler.
adam@0 14144 wl=$lt_lt_prog_compiler_wl
adam@0 14145
adam@0 14146 # Compiler flag to prevent dynamic linking.
adam@0 14147 link_static_flag=$lt_lt_prog_compiler_static
adam@0 14148
adam@0 14149 # Does compiler simultaneously support -c and -o options?
adam@0 14150 compiler_c_o=$lt_lt_cv_prog_compiler_c_o
adam@0 14151
adam@0 14152 # Whether or not to add -lc for building shared libraries.
adam@0 14153 build_libtool_need_lc=$archive_cmds_need_lc
adam@0 14154
adam@0 14155 # Whether or not to disallow shared libs when runtime libs are static.
adam@0 14156 allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
adam@0 14157
adam@0 14158 # Compiler flag to allow reflexive dlopens.
adam@0 14159 export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
adam@0 14160
adam@0 14161 # Compiler flag to generate shared objects directly from archives.
adam@0 14162 whole_archive_flag_spec=$lt_whole_archive_flag_spec
adam@0 14163
adam@0 14164 # Whether the compiler copes with passing no objects directly.
adam@0 14165 compiler_needs_object=$lt_compiler_needs_object
adam@0 14166
adam@0 14167 # Create an old-style archive from a shared archive.
adam@0 14168 old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
adam@0 14169
adam@0 14170 # Create a temporary old-style archive to link instead of a shared archive.
adam@0 14171 old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
adam@0 14172
adam@0 14173 # Commands used to build a shared archive.
adam@0 14174 archive_cmds=$lt_archive_cmds
adam@0 14175 archive_expsym_cmds=$lt_archive_expsym_cmds
adam@0 14176
adam@0 14177 # Commands used to build a loadable module if different from building
adam@0 14178 # a shared archive.
adam@0 14179 module_cmds=$lt_module_cmds
adam@0 14180 module_expsym_cmds=$lt_module_expsym_cmds
adam@0 14181
adam@0 14182 # Whether we are building with GNU ld or not.
adam@0 14183 with_gnu_ld=$lt_with_gnu_ld
adam@0 14184
adam@0 14185 # Flag that allows shared libraries with undefined symbols to be built.
adam@0 14186 allow_undefined_flag=$lt_allow_undefined_flag
adam@0 14187
adam@0 14188 # Flag that enforces no undefined symbols.
adam@0 14189 no_undefined_flag=$lt_no_undefined_flag
adam@0 14190
adam@0 14191 # Flag to hardcode \$libdir into a binary during linking.
adam@0 14192 # This must work even if \$libdir does not exist
adam@0 14193 hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
adam@0 14194
adam@0 14195 # Whether we need a single "-rpath" flag with a separated argument.
adam@0 14196 hardcode_libdir_separator=$lt_hardcode_libdir_separator
adam@0 14197
adam@0 14198 # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
adam@0 14199 # DIR into the resulting binary.
adam@0 14200 hardcode_direct=$hardcode_direct
adam@0 14201
adam@0 14202 # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
adam@0 14203 # DIR into the resulting binary and the resulting library dependency is
adam@0 14204 # "absolute",i.e impossible to change by setting \${shlibpath_var} if the
adam@0 14205 # library is relocated.
adam@0 14206 hardcode_direct_absolute=$hardcode_direct_absolute
adam@0 14207
adam@0 14208 # Set to "yes" if using the -LDIR flag during linking hardcodes DIR
adam@0 14209 # into the resulting binary.
adam@0 14210 hardcode_minus_L=$hardcode_minus_L
adam@0 14211
adam@0 14212 # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
adam@0 14213 # into the resulting binary.
adam@0 14214 hardcode_shlibpath_var=$hardcode_shlibpath_var
adam@0 14215
adam@0 14216 # Set to "yes" if building a shared library automatically hardcodes DIR
adam@0 14217 # into the library and all subsequent libraries and executables linked
adam@0 14218 # against it.
adam@0 14219 hardcode_automatic=$hardcode_automatic
adam@0 14220
adam@0 14221 # Set to yes if linker adds runtime paths of dependent libraries
adam@0 14222 # to runtime path list.
adam@0 14223 inherit_rpath=$inherit_rpath
adam@0 14224
adam@0 14225 # Whether libtool must link a program against all its dependency libraries.
adam@0 14226 link_all_deplibs=$link_all_deplibs
adam@0 14227
adam@0 14228 # Set to "yes" if exported symbols are required.
adam@0 14229 always_export_symbols=$always_export_symbols
adam@0 14230
adam@0 14231 # The commands to list exported symbols.
adam@0 14232 export_symbols_cmds=$lt_export_symbols_cmds
adam@0 14233
adam@0 14234 # Symbols that should not be listed in the preloaded symbols.
adam@0 14235 exclude_expsyms=$lt_exclude_expsyms
adam@0 14236
adam@0 14237 # Symbols that must always be exported.
adam@0 14238 include_expsyms=$lt_include_expsyms
adam@0 14239
adam@0 14240 # Commands necessary for linking programs (against libraries) with templates.
adam@0 14241 prelink_cmds=$lt_prelink_cmds
adam@0 14242
adam@12 14243 # Commands necessary for finishing linking programs.
adam@12 14244 postlink_cmds=$lt_postlink_cmds
adam@12 14245
adam@0 14246 # Specify filename containing input files.
adam@0 14247 file_list_spec=$lt_file_list_spec
adam@0 14248
adam@0 14249 # How to hardcode a shared library path into an executable.
adam@0 14250 hardcode_action=$hardcode_action
adam@0 14251
adam@0 14252 # ### END LIBTOOL CONFIG
adam@0 14253
adam@0 14254 _LT_EOF
adam@0 14255
adam@0 14256 case $host_os in
adam@0 14257 aix3*)
adam@0 14258 cat <<\_LT_EOF >> "$cfgfile"
adam@0 14259 # AIX sometimes has problems with the GCC collect2 program. For some
adam@0 14260 # reason, if we set the COLLECT_NAMES environment variable, the problems
adam@0 14261 # vanish in a puff of smoke.
adam@0 14262 if test "X${COLLECT_NAMES+set}" != Xset; then
adam@0 14263 COLLECT_NAMES=
adam@0 14264 export COLLECT_NAMES
adam@0 14265 fi
adam@0 14266 _LT_EOF
adam@0 14267 ;;
adam@0 14268 esac
adam@0 14269
adam@0 14270
adam@0 14271 ltmain="$ac_aux_dir/ltmain.sh"
adam@0 14272
adam@0 14273
adam@0 14274 # We use sed instead of cat because bash on DJGPP gets confused if
adam@0 14275 # if finds mixed CR/LF and LF-only lines. Since sed operates in
adam@0 14276 # text mode, it properly converts lines to CR/LF. This bash problem
adam@0 14277 # is reportedly fixed, but why not run on old versions too?
adam@12 14278 sed '$q' "$ltmain" >> "$cfgfile" \
adam@12 14279 || (rm -f "$cfgfile"; exit 1)
adam@12 14280
adam@12 14281 if test x"$xsi_shell" = xyes; then
adam@12 14282 sed -e '/^func_dirname ()$/,/^} # func_dirname /c\
adam@12 14283 func_dirname ()\
adam@12 14284 {\
adam@12 14285 \ case ${1} in\
adam@12 14286 \ */*) func_dirname_result="${1%/*}${2}" ;;\
adam@12 14287 \ * ) func_dirname_result="${3}" ;;\
adam@12 14288 \ esac\
adam@12 14289 } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14290 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14291 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14292 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14293
adam@12 14294
adam@12 14295 sed -e '/^func_basename ()$/,/^} # func_basename /c\
adam@12 14296 func_basename ()\
adam@12 14297 {\
adam@12 14298 \ func_basename_result="${1##*/}"\
adam@12 14299 } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14300 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14301 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14302 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14303
adam@12 14304
adam@12 14305 sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\
adam@12 14306 func_dirname_and_basename ()\
adam@12 14307 {\
adam@12 14308 \ case ${1} in\
adam@12 14309 \ */*) func_dirname_result="${1%/*}${2}" ;;\
adam@12 14310 \ * ) func_dirname_result="${3}" ;;\
adam@12 14311 \ esac\
adam@12 14312 \ func_basename_result="${1##*/}"\
adam@12 14313 } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14314 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14315 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14316 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14317
adam@12 14318
adam@12 14319 sed -e '/^func_stripname ()$/,/^} # func_stripname /c\
adam@12 14320 func_stripname ()\
adam@12 14321 {\
adam@12 14322 \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\
adam@12 14323 \ # positional parameters, so assign one to ordinary parameter first.\
adam@12 14324 \ func_stripname_result=${3}\
adam@12 14325 \ func_stripname_result=${func_stripname_result#"${1}"}\
adam@12 14326 \ func_stripname_result=${func_stripname_result%"${2}"}\
adam@12 14327 } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14328 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14329 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14330 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14331
adam@12 14332
adam@12 14333 sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\
adam@12 14334 func_split_long_opt ()\
adam@12 14335 {\
adam@12 14336 \ func_split_long_opt_name=${1%%=*}\
adam@12 14337 \ func_split_long_opt_arg=${1#*=}\
adam@12 14338 } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14339 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14340 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14341 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14342
adam@12 14343
adam@12 14344 sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\
adam@12 14345 func_split_short_opt ()\
adam@12 14346 {\
adam@12 14347 \ func_split_short_opt_arg=${1#??}\
adam@12 14348 \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\
adam@12 14349 } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14350 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14351 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14352 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14353
adam@12 14354
adam@12 14355 sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\
adam@12 14356 func_lo2o ()\
adam@12 14357 {\
adam@12 14358 \ case ${1} in\
adam@12 14359 \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\
adam@12 14360 \ *) func_lo2o_result=${1} ;;\
adam@12 14361 \ esac\
adam@12 14362 } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14363 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14364 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14365 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14366
adam@12 14367
adam@12 14368 sed -e '/^func_xform ()$/,/^} # func_xform /c\
adam@12 14369 func_xform ()\
adam@12 14370 {\
adam@12 14371 func_xform_result=${1%.*}.lo\
adam@12 14372 } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14373 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14374 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14375 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14376
adam@12 14377
adam@12 14378 sed -e '/^func_arith ()$/,/^} # func_arith /c\
adam@12 14379 func_arith ()\
adam@12 14380 {\
adam@12 14381 func_arith_result=$(( $* ))\
adam@12 14382 } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14383 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14384 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14385 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14386
adam@12 14387
adam@12 14388 sed -e '/^func_len ()$/,/^} # func_len /c\
adam@12 14389 func_len ()\
adam@12 14390 {\
adam@12 14391 func_len_result=${#1}\
adam@12 14392 } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14393 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14394 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14395 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14396
adam@12 14397 fi
adam@12 14398
adam@12 14399 if test x"$lt_shell_append" = xyes; then
adam@12 14400 sed -e '/^func_append ()$/,/^} # func_append /c\
adam@12 14401 func_append ()\
adam@12 14402 {\
adam@12 14403 eval "${1}+=\\${2}"\
adam@12 14404 } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14405 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14406 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14407 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14408
adam@12 14409
adam@12 14410 sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\
adam@12 14411 func_append_quoted ()\
adam@12 14412 {\
adam@12 14413 \ func_quote_for_eval "${2}"\
adam@12 14414 \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\
adam@12 14415 } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \
adam@12 14416 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14417 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14418 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14419
adam@12 14420
adam@12 14421 # Save a `func_append' function call where possible by direct use of '+='
adam@12 14422 sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
adam@12 14423 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14424 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14425 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14426 else
adam@12 14427 # Save a `func_append' function call even when '+=' is not available
adam@12 14428 sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
adam@12 14429 && mv -f "$cfgfile.tmp" "$cfgfile" \
adam@12 14430 || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
adam@12 14431 test 0 -eq $? || _lt_function_replace_fail=:
adam@12 14432 fi
adam@12 14433
adam@12 14434 if test x"$_lt_function_replace_fail" = x":"; then
adam@12 14435 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5
adam@12 14436 $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;}
adam@12 14437 fi
adam@12 14438
adam@12 14439
adam@12 14440 mv -f "$cfgfile" "$ofile" ||
adam@0 14441 (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
adam@0 14442 chmod +x "$ofile"
adam@0 14443
adam@0 14444 ;;
adam@0 14445
adam@0 14446 esac
adam@0 14447 done # for ac_tag
adam@0 14448
adam@0 14449
adam@0 14450 as_fn_exit 0
adam@0 14451 _ACEOF
adam@0 14452 ac_clean_files=$ac_clean_files_save
adam@0 14453
adam@0 14454 test $ac_write_fail = 0 ||
adam@0 14455 as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
adam@0 14456
adam@0 14457
adam@0 14458 # configure is writing to config.log, and then calls config.status.
adam@0 14459 # config.status does its own redirection, appending to config.log.
adam@0 14460 # Unfortunately, on DOS this fails, as config.log is still kept open
adam@0 14461 # by configure, so config.status won't be able to write to it; its
adam@0 14462 # output is simply discarded. So we exec the FD to /dev/null,
adam@0 14463 # effectively closing config.log, so it can be properly (re)opened and
adam@0 14464 # appended to by config.status. When coming back to configure, we
adam@0 14465 # need to make the FD available again.
adam@0 14466 if test "$no_create" != yes; then
adam@0 14467 ac_cs_success=:
adam@0 14468 ac_config_status_args=
adam@0 14469 test "$silent" = yes &&
adam@0 14470 ac_config_status_args="$ac_config_status_args --quiet"
adam@0 14471 exec 5>/dev/null
adam@0 14472 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
adam@0 14473 exec 5>>config.log
adam@0 14474 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
adam@0 14475 # would make configure fail if this is the last instruction.
adam@0 14476 $ac_cs_success || as_fn_exit 1
adam@0 14477 fi
adam@0 14478 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
adam@0 14479 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
adam@0 14480 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
adam@0 14481 fi
adam@0 14482
adam@0 14483
adam@0 14484 cat <<EOF
adam@0 14485
adam@0 14486 Ur/Web XML feed library configuration:
adam@0 14487 lib directory: LIB $LIB
adam@0 14488 include directory: INCLUDE $INCLUDE
adam@0 14489 EOF