annotate configure @ 1976:810a0b8f5472 c++14

Requiring c++14 is not going to work for Travis (because we want to support a Qt version too old to know about the c++14 config flag) or for our AppImage build (because we want to run on distros to old to support the relevant gcc ABI). So instead we try to confine the C++ standard selection to one place (config/noconfig) and revert to c++11 if the compiler is too old to know about c++14. All of the actual SV code remains c++11, and we assume we build against an older version of capnproto when we want to perform a c++11 build.
author Chris Cannam
date Fri, 31 Aug 2018 13:41:27 +0100
parents 714f8dad57bc
children 5ffcb4e10e1b
rev   line source
Chris@350 1 #! /bin/sh
Chris@350 2 # Guess values for system-dependent variables and create Makefiles.
Chris@941 3 # Generated by GNU Autoconf 2.69.
Chris@350 4 #
Chris@350 5 #
Chris@594 6 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
Chris@350 7 #
Chris@350 8 #
Chris@350 9 # This configure script is free software; the Free Software Foundation
Chris@350 10 # gives unlimited permission to copy, distribute and modify it.
Chris@350 11 ## -------------------- ##
Chris@350 12 ## M4sh Initialization. ##
Chris@350 13 ## -------------------- ##
Chris@350 14
Chris@350 15 # Be more Bourne compatible
Chris@350 16 DUALCASE=1; export DUALCASE # for MKS sh
Chris@350 17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
Chris@350 18 emulate sh
Chris@350 19 NULLCMD=:
Chris@350 20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
Chris@350 21 # is contrary to our usage. Disable this feature.
Chris@350 22 alias -g '${1+"$@"}'='"$@"'
Chris@350 23 setopt NO_GLOB_SUBST
Chris@350 24 else
Chris@350 25 case `(set -o) 2>/dev/null` in #(
Chris@350 26 *posix*) :
Chris@350 27 set -o posix ;; #(
Chris@350 28 *) :
Chris@350 29 ;;
Chris@350 30 esac
Chris@350 31 fi
Chris@350 32
Chris@350 33
Chris@350 34 as_nl='
Chris@350 35 '
Chris@350 36 export as_nl
Chris@350 37 # Printing a long string crashes Solaris 7 /usr/bin/printf.
Chris@350 38 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
Chris@350 39 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
Chris@350 40 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
Chris@350 41 # Prefer a ksh shell builtin over an external printf program on Solaris,
Chris@350 42 # but without wasting forks for bash or zsh.
Chris@350 43 if test -z "$BASH_VERSION$ZSH_VERSION" \
Chris@350 44 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
Chris@350 45 as_echo='print -r --'
Chris@350 46 as_echo_n='print -rn --'
Chris@350 47 elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
Chris@350 48 as_echo='printf %s\n'
Chris@350 49 as_echo_n='printf %s'
Chris@350 50 else
Chris@350 51 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
Chris@350 52 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
Chris@350 53 as_echo_n='/usr/ucb/echo -n'
Chris@350 54 else
Chris@350 55 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
Chris@350 56 as_echo_n_body='eval
Chris@350 57 arg=$1;
Chris@350 58 case $arg in #(
Chris@350 59 *"$as_nl"*)
Chris@350 60 expr "X$arg" : "X\\(.*\\)$as_nl";
Chris@350 61 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
Chris@350 62 esac;
Chris@350 63 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
Chris@350 64 '
Chris@350 65 export as_echo_n_body
Chris@350 66 as_echo_n='sh -c $as_echo_n_body as_echo'
Chris@350 67 fi
Chris@350 68 export as_echo_body
Chris@350 69 as_echo='sh -c $as_echo_body as_echo'
Chris@350 70 fi
Chris@350 71
Chris@350 72 # The user is always right.
Chris@350 73 if test "${PATH_SEPARATOR+set}" != set; then
Chris@350 74 PATH_SEPARATOR=:
Chris@350 75 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
Chris@350 76 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
Chris@350 77 PATH_SEPARATOR=';'
Chris@350 78 }
Chris@350 79 fi
Chris@350 80
Chris@350 81
Chris@350 82 # IFS
Chris@350 83 # We need space, tab and new line, in precisely that order. Quoting is
Chris@350 84 # there to prevent editors from complaining about space-tab.
Chris@350 85 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
Chris@350 86 # splitting by setting IFS to empty value.)
Chris@350 87 IFS=" "" $as_nl"
Chris@350 88
Chris@350 89 # Find who we are. Look in the path if we contain no directory separator.
Chris@594 90 as_myself=
Chris@350 91 case $0 in #((
Chris@350 92 *[\\/]* ) as_myself=$0 ;;
Chris@350 93 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 94 for as_dir in $PATH
Chris@350 95 do
Chris@350 96 IFS=$as_save_IFS
Chris@350 97 test -z "$as_dir" && as_dir=.
Chris@350 98 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
Chris@350 99 done
Chris@350 100 IFS=$as_save_IFS
Chris@350 101
Chris@350 102 ;;
Chris@350 103 esac
Chris@350 104 # We did not find ourselves, most probably we were run as `sh COMMAND'
Chris@350 105 # in which case we are not to be found in the path.
Chris@350 106 if test "x$as_myself" = x; then
Chris@350 107 as_myself=$0
Chris@350 108 fi
Chris@350 109 if test ! -f "$as_myself"; then
Chris@350 110 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
Chris@350 111 exit 1
Chris@350 112 fi
Chris@350 113
Chris@350 114 # Unset variables that we do not need and which cause bugs (e.g. in
Chris@350 115 # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
Chris@350 116 # suppresses any "Segmentation fault" message there. '((' could
Chris@350 117 # trigger a bug in pdksh 5.2.14.
Chris@350 118 for as_var in BASH_ENV ENV MAIL MAILPATH
Chris@350 119 do eval test x\${$as_var+set} = xset \
Chris@350 120 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
Chris@350 121 done
Chris@350 122 PS1='$ '
Chris@350 123 PS2='> '
Chris@350 124 PS4='+ '
Chris@350 125
Chris@350 126 # NLS nuisances.
Chris@350 127 LC_ALL=C
Chris@350 128 export LC_ALL
Chris@350 129 LANGUAGE=C
Chris@350 130 export LANGUAGE
Chris@350 131
Chris@350 132 # CDPATH.
Chris@350 133 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
Chris@350 134
Chris@594 135 # Use a proper internal environment variable to ensure we don't fall
Chris@594 136 # into an infinite loop, continuously re-executing ourselves.
Chris@594 137 if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
Chris@594 138 _as_can_reexec=no; export _as_can_reexec;
Chris@594 139 # We cannot yet assume a decent shell, so we have to provide a
Chris@594 140 # neutralization value for shells without unset; and this also
Chris@594 141 # works around shells that cannot unset nonexistent variables.
Chris@594 142 # Preserve -v and -x to the replacement shell.
Chris@594 143 BASH_ENV=/dev/null
Chris@594 144 ENV=/dev/null
Chris@594 145 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
Chris@594 146 case $- in # ((((
Chris@594 147 *v*x* | *x*v* ) as_opts=-vx ;;
Chris@594 148 *v* ) as_opts=-v ;;
Chris@594 149 *x* ) as_opts=-x ;;
Chris@594 150 * ) as_opts= ;;
Chris@594 151 esac
Chris@594 152 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
Chris@594 153 # Admittedly, this is quite paranoid, since all the known shells bail
Chris@594 154 # out after a failed `exec'.
Chris@594 155 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
Chris@594 156 as_fn_exit 255
Chris@594 157 fi
Chris@594 158 # We don't want this to propagate to other subprocesses.
Chris@594 159 { _as_can_reexec=; unset _as_can_reexec;}
Chris@350 160 if test "x$CONFIG_SHELL" = x; then
Chris@350 161 as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
Chris@350 162 emulate sh
Chris@350 163 NULLCMD=:
Chris@350 164 # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
Chris@350 165 # is contrary to our usage. Disable this feature.
Chris@350 166 alias -g '\${1+\"\$@\"}'='\"\$@\"'
Chris@350 167 setopt NO_GLOB_SUBST
Chris@350 168 else
Chris@350 169 case \`(set -o) 2>/dev/null\` in #(
Chris@350 170 *posix*) :
Chris@350 171 set -o posix ;; #(
Chris@350 172 *) :
Chris@350 173 ;;
Chris@350 174 esac
Chris@350 175 fi
Chris@350 176 "
Chris@350 177 as_required="as_fn_return () { (exit \$1); }
Chris@350 178 as_fn_success () { as_fn_return 0; }
Chris@350 179 as_fn_failure () { as_fn_return 1; }
Chris@350 180 as_fn_ret_success () { return 0; }
Chris@350 181 as_fn_ret_failure () { return 1; }
Chris@350 182
Chris@350 183 exitcode=0
Chris@350 184 as_fn_success || { exitcode=1; echo as_fn_success failed.; }
Chris@350 185 as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
Chris@350 186 as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
Chris@350 187 as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
Chris@350 188 if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
Chris@350 189
Chris@350 190 else
Chris@350 191 exitcode=1; echo positional parameters were not saved.
Chris@350 192 fi
Chris@594 193 test x\$exitcode = x0 || exit 1
Chris@594 194 test -x / || exit 1"
Chris@350 195 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
Chris@350 196 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
Chris@350 197 eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
Chris@350 198 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
Chris@350 199 test \$(( 1 + 1 )) = 2 || exit 1"
Chris@350 200 if (eval "$as_required") 2>/dev/null; then :
Chris@350 201 as_have_required=yes
Chris@350 202 else
Chris@350 203 as_have_required=no
Chris@350 204 fi
Chris@350 205 if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
Chris@350 206
Chris@350 207 else
Chris@350 208 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 209 as_found=false
Chris@350 210 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
Chris@350 211 do
Chris@350 212 IFS=$as_save_IFS
Chris@350 213 test -z "$as_dir" && as_dir=.
Chris@350 214 as_found=:
Chris@350 215 case $as_dir in #(
Chris@350 216 /*)
Chris@350 217 for as_base in sh bash ksh sh5; do
Chris@350 218 # Try only shells that exist, to save several forks.
Chris@350 219 as_shell=$as_dir/$as_base
Chris@350 220 if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
Chris@350 221 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
Chris@350 222 CONFIG_SHELL=$as_shell as_have_required=yes
Chris@350 223 if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
Chris@350 224 break 2
Chris@350 225 fi
Chris@350 226 fi
Chris@350 227 done;;
Chris@350 228 esac
Chris@350 229 as_found=false
Chris@350 230 done
Chris@350 231 $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
Chris@350 232 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
Chris@350 233 CONFIG_SHELL=$SHELL as_have_required=yes
Chris@350 234 fi; }
Chris@350 235 IFS=$as_save_IFS
Chris@350 236
Chris@350 237
Chris@350 238 if test "x$CONFIG_SHELL" != x; then :
Chris@594 239 export CONFIG_SHELL
Chris@594 240 # We cannot yet assume a decent shell, so we have to provide a
Chris@594 241 # neutralization value for shells without unset; and this also
Chris@594 242 # works around shells that cannot unset nonexistent variables.
Chris@594 243 # Preserve -v and -x to the replacement shell.
Chris@594 244 BASH_ENV=/dev/null
Chris@594 245 ENV=/dev/null
Chris@594 246 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
Chris@594 247 case $- in # ((((
Chris@594 248 *v*x* | *x*v* ) as_opts=-vx ;;
Chris@594 249 *v* ) as_opts=-v ;;
Chris@594 250 *x* ) as_opts=-x ;;
Chris@594 251 * ) as_opts= ;;
Chris@594 252 esac
Chris@594 253 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
Chris@594 254 # Admittedly, this is quite paranoid, since all the known shells bail
Chris@594 255 # out after a failed `exec'.
Chris@594 256 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
Chris@594 257 exit 255
Chris@350 258 fi
Chris@350 259
Chris@350 260 if test x$as_have_required = xno; then :
Chris@350 261 $as_echo "$0: This script requires a shell more modern than all"
Chris@350 262 $as_echo "$0: the shells that I found on your system."
Chris@350 263 if test x${ZSH_VERSION+set} = xset ; then
Chris@350 264 $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
Chris@350 265 $as_echo "$0: be upgraded to zsh 4.3.4 or later."
Chris@350 266 else
Chris@941 267 $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
Chris@350 268 $0: including any error possibly output before this
Chris@350 269 $0: message. Then install a modern shell, or manually run
Chris@350 270 $0: the script under such a shell if you do have one."
Chris@350 271 fi
Chris@350 272 exit 1
Chris@350 273 fi
Chris@350 274 fi
Chris@350 275 fi
Chris@350 276 SHELL=${CONFIG_SHELL-/bin/sh}
Chris@350 277 export SHELL
Chris@350 278 # Unset more variables known to interfere with behavior of common tools.
Chris@350 279 CLICOLOR_FORCE= GREP_OPTIONS=
Chris@350 280 unset CLICOLOR_FORCE GREP_OPTIONS
Chris@350 281
Chris@350 282 ## --------------------- ##
Chris@350 283 ## M4sh Shell Functions. ##
Chris@350 284 ## --------------------- ##
Chris@350 285 # as_fn_unset VAR
Chris@350 286 # ---------------
Chris@350 287 # Portably unset VAR.
Chris@350 288 as_fn_unset ()
Chris@350 289 {
Chris@350 290 { eval $1=; unset $1;}
Chris@350 291 }
Chris@350 292 as_unset=as_fn_unset
Chris@350 293
Chris@350 294 # as_fn_set_status STATUS
Chris@350 295 # -----------------------
Chris@350 296 # Set $? to STATUS, without forking.
Chris@350 297 as_fn_set_status ()
Chris@350 298 {
Chris@350 299 return $1
Chris@350 300 } # as_fn_set_status
Chris@350 301
Chris@350 302 # as_fn_exit STATUS
Chris@350 303 # -----------------
Chris@350 304 # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
Chris@350 305 as_fn_exit ()
Chris@350 306 {
Chris@350 307 set +e
Chris@350 308 as_fn_set_status $1
Chris@350 309 exit $1
Chris@350 310 } # as_fn_exit
Chris@350 311
Chris@350 312 # as_fn_mkdir_p
Chris@350 313 # -------------
Chris@350 314 # Create "$as_dir" as a directory, including parents if necessary.
Chris@350 315 as_fn_mkdir_p ()
Chris@350 316 {
Chris@350 317
Chris@350 318 case $as_dir in #(
Chris@350 319 -*) as_dir=./$as_dir;;
Chris@350 320 esac
Chris@350 321 test -d "$as_dir" || eval $as_mkdir_p || {
Chris@350 322 as_dirs=
Chris@350 323 while :; do
Chris@350 324 case $as_dir in #(
Chris@350 325 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
Chris@350 326 *) as_qdir=$as_dir;;
Chris@350 327 esac
Chris@350 328 as_dirs="'$as_qdir' $as_dirs"
Chris@350 329 as_dir=`$as_dirname -- "$as_dir" ||
Chris@350 330 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
Chris@350 331 X"$as_dir" : 'X\(//\)[^/]' \| \
Chris@350 332 X"$as_dir" : 'X\(//\)$' \| \
Chris@350 333 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
Chris@350 334 $as_echo X"$as_dir" |
Chris@350 335 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
Chris@350 336 s//\1/
Chris@350 337 q
Chris@350 338 }
Chris@350 339 /^X\(\/\/\)[^/].*/{
Chris@350 340 s//\1/
Chris@350 341 q
Chris@350 342 }
Chris@350 343 /^X\(\/\/\)$/{
Chris@350 344 s//\1/
Chris@350 345 q
Chris@350 346 }
Chris@350 347 /^X\(\/\).*/{
Chris@350 348 s//\1/
Chris@350 349 q
Chris@350 350 }
Chris@350 351 s/.*/./; q'`
Chris@350 352 test -d "$as_dir" && break
Chris@350 353 done
Chris@350 354 test -z "$as_dirs" || eval "mkdir $as_dirs"
Chris@594 355 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
Chris@350 356
Chris@350 357
Chris@350 358 } # as_fn_mkdir_p
Chris@594 359
Chris@594 360 # as_fn_executable_p FILE
Chris@594 361 # -----------------------
Chris@594 362 # Test if FILE is an executable regular file.
Chris@594 363 as_fn_executable_p ()
Chris@594 364 {
Chris@594 365 test -f "$1" && test -x "$1"
Chris@594 366 } # as_fn_executable_p
Chris@350 367 # as_fn_append VAR VALUE
Chris@350 368 # ----------------------
Chris@350 369 # Append the text in VALUE to the end of the definition contained in VAR. Take
Chris@350 370 # advantage of any shell optimizations that allow amortized linear growth over
Chris@350 371 # repeated appends, instead of the typical quadratic growth present in naive
Chris@350 372 # implementations.
Chris@350 373 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
Chris@350 374 eval 'as_fn_append ()
Chris@350 375 {
Chris@350 376 eval $1+=\$2
Chris@350 377 }'
Chris@350 378 else
Chris@350 379 as_fn_append ()
Chris@350 380 {
Chris@350 381 eval $1=\$$1\$2
Chris@350 382 }
Chris@350 383 fi # as_fn_append
Chris@350 384
Chris@350 385 # as_fn_arith ARG...
Chris@350 386 # ------------------
Chris@350 387 # Perform arithmetic evaluation on the ARGs, and store the result in the
Chris@350 388 # global $as_val. Take advantage of shells that can avoid forks. The arguments
Chris@350 389 # must be portable across $(()) and expr.
Chris@350 390 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
Chris@350 391 eval 'as_fn_arith ()
Chris@350 392 {
Chris@350 393 as_val=$(( $* ))
Chris@350 394 }'
Chris@350 395 else
Chris@350 396 as_fn_arith ()
Chris@350 397 {
Chris@350 398 as_val=`expr "$@" || test $? -eq 1`
Chris@350 399 }
Chris@350 400 fi # as_fn_arith
Chris@350 401
Chris@350 402
Chris@594 403 # as_fn_error STATUS ERROR [LINENO LOG_FD]
Chris@594 404 # ----------------------------------------
Chris@350 405 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
Chris@350 406 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
Chris@594 407 # script with STATUS, using 1 if that was 0.
Chris@350 408 as_fn_error ()
Chris@350 409 {
Chris@594 410 as_status=$1; test $as_status -eq 0 && as_status=1
Chris@594 411 if test "$4"; then
Chris@594 412 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
Chris@594 413 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
Chris@350 414 fi
Chris@594 415 $as_echo "$as_me: error: $2" >&2
Chris@350 416 as_fn_exit $as_status
Chris@350 417 } # as_fn_error
Chris@350 418
Chris@350 419 if expr a : '\(a\)' >/dev/null 2>&1 &&
Chris@350 420 test "X`expr 00001 : '.*\(...\)'`" = X001; then
Chris@350 421 as_expr=expr
Chris@350 422 else
Chris@350 423 as_expr=false
Chris@350 424 fi
Chris@350 425
Chris@350 426 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
Chris@350 427 as_basename=basename
Chris@350 428 else
Chris@350 429 as_basename=false
Chris@350 430 fi
Chris@350 431
Chris@350 432 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
Chris@350 433 as_dirname=dirname
Chris@350 434 else
Chris@350 435 as_dirname=false
Chris@350 436 fi
Chris@350 437
Chris@350 438 as_me=`$as_basename -- "$0" ||
Chris@350 439 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
Chris@350 440 X"$0" : 'X\(//\)$' \| \
Chris@350 441 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
Chris@350 442 $as_echo X/"$0" |
Chris@350 443 sed '/^.*\/\([^/][^/]*\)\/*$/{
Chris@350 444 s//\1/
Chris@350 445 q
Chris@350 446 }
Chris@350 447 /^X\/\(\/\/\)$/{
Chris@350 448 s//\1/
Chris@350 449 q
Chris@350 450 }
Chris@350 451 /^X\/\(\/\).*/{
Chris@350 452 s//\1/
Chris@350 453 q
Chris@350 454 }
Chris@350 455 s/.*/./; q'`
Chris@350 456
Chris@350 457 # Avoid depending upon Character Ranges.
Chris@350 458 as_cr_letters='abcdefghijklmnopqrstuvwxyz'
Chris@350 459 as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
Chris@350 460 as_cr_Letters=$as_cr_letters$as_cr_LETTERS
Chris@350 461 as_cr_digits='0123456789'
Chris@350 462 as_cr_alnum=$as_cr_Letters$as_cr_digits
Chris@350 463
Chris@350 464
Chris@350 465 as_lineno_1=$LINENO as_lineno_1a=$LINENO
Chris@350 466 as_lineno_2=$LINENO as_lineno_2a=$LINENO
Chris@350 467 eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
Chris@350 468 test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
Chris@350 469 # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-)
Chris@350 470 sed -n '
Chris@350 471 p
Chris@350 472 /[$]LINENO/=
Chris@350 473 ' <$as_myself |
Chris@350 474 sed '
Chris@350 475 s/[$]LINENO.*/&-/
Chris@350 476 t lineno
Chris@350 477 b
Chris@350 478 :lineno
Chris@350 479 N
Chris@350 480 :loop
Chris@350 481 s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
Chris@350 482 t loop
Chris@350 483 s/-\n.*//
Chris@350 484 ' >$as_me.lineno &&
Chris@350 485 chmod +x "$as_me.lineno" ||
Chris@350 486 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
Chris@350 487
Chris@594 488 # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
Chris@594 489 # already done that, so ensure we don't try to do so again and fall
Chris@594 490 # in an infinite loop. This has already happened in practice.
Chris@594 491 _as_can_reexec=no; export _as_can_reexec
Chris@350 492 # Don't try to exec as it changes $[0], causing all sort of problems
Chris@350 493 # (the dirname of $[0] is not the place where we might find the
Chris@350 494 # original and so on. Autoconf is especially sensitive to this).
Chris@350 495 . "./$as_me.lineno"
Chris@350 496 # Exit status is that of the last command.
Chris@350 497 exit
Chris@350 498 }
Chris@350 499
Chris@350 500 ECHO_C= ECHO_N= ECHO_T=
Chris@350 501 case `echo -n x` in #(((((
Chris@350 502 -n*)
Chris@350 503 case `echo 'xy\c'` in
Chris@350 504 *c*) ECHO_T=' ';; # ECHO_T is single tab character.
Chris@350 505 xy) ECHO_C='\c';;
Chris@350 506 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
Chris@350 507 ECHO_T=' ';;
Chris@350 508 esac;;
Chris@350 509 *)
Chris@350 510 ECHO_N='-n';;
Chris@350 511 esac
Chris@350 512
Chris@350 513 rm -f conf$$ conf$$.exe conf$$.file
Chris@350 514 if test -d conf$$.dir; then
Chris@350 515 rm -f conf$$.dir/conf$$.file
Chris@350 516 else
Chris@350 517 rm -f conf$$.dir
Chris@350 518 mkdir conf$$.dir 2>/dev/null
Chris@350 519 fi
Chris@350 520 if (echo >conf$$.file) 2>/dev/null; then
Chris@350 521 if ln -s conf$$.file conf$$ 2>/dev/null; then
Chris@350 522 as_ln_s='ln -s'
Chris@350 523 # ... but there are two gotchas:
Chris@350 524 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
Chris@350 525 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
Chris@594 526 # In both cases, we have to default to `cp -pR'.
Chris@350 527 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
Chris@594 528 as_ln_s='cp -pR'
Chris@350 529 elif ln conf$$.file conf$$ 2>/dev/null; then
Chris@350 530 as_ln_s=ln
Chris@350 531 else
Chris@594 532 as_ln_s='cp -pR'
Chris@350 533 fi
Chris@350 534 else
Chris@594 535 as_ln_s='cp -pR'
Chris@350 536 fi
Chris@350 537 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
Chris@350 538 rmdir conf$$.dir 2>/dev/null
Chris@350 539
Chris@350 540 if mkdir -p . 2>/dev/null; then
Chris@350 541 as_mkdir_p='mkdir -p "$as_dir"'
Chris@350 542 else
Chris@350 543 test -d ./-p && rmdir ./-p
Chris@350 544 as_mkdir_p=false
Chris@350 545 fi
Chris@350 546
Chris@594 547 as_test_x='test -x'
Chris@594 548 as_executable_p=as_fn_executable_p
Chris@350 549
Chris@350 550 # Sed expression to map a string onto a valid CPP name.
Chris@350 551 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
Chris@350 552
Chris@350 553 # Sed expression to map a string onto a valid variable name.
Chris@350 554 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
Chris@350 555
Chris@350 556
Chris@350 557 test -n "$DJDIR" || exec 7<&0 </dev/null
Chris@350 558 exec 6>&1
Chris@350 559
Chris@350 560 # Name of the host.
Chris@594 561 # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
Chris@350 562 # so uname gets run too.
Chris@350 563 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
Chris@350 564
Chris@350 565 #
Chris@350 566 # Initializations.
Chris@350 567 #
Chris@350 568 ac_default_prefix=/usr/local
Chris@350 569 ac_clean_files=
Chris@350 570 ac_config_libobj_dir=.
Chris@350 571 LIBOBJS=
Chris@350 572 cross_compiling=no
Chris@350 573 subdirs=
Chris@350 574 MFLAGS=
Chris@350 575 MAKEFLAGS=
Chris@350 576
Chris@350 577 # Identity of this package.
Chris@941 578 PACKAGE_NAME=
Chris@941 579 PACKAGE_TARNAME=
Chris@941 580 PACKAGE_VERSION=
Chris@941 581 PACKAGE_STRING=
Chris@941 582 PACKAGE_BUGREPORT=
Chris@941 583 PACKAGE_URL=
Chris@941 584
Chris@941 585 ac_unique_file="Sonic Visualiser"
Chris@351 586 ac_unique_file="main/main.cpp"
Chris@350 587 # Factoring default headers for most tests.
Chris@350 588 ac_includes_default="\
Chris@350 589 #include <stdio.h>
Chris@350 590 #ifdef HAVE_SYS_TYPES_H
Chris@350 591 # include <sys/types.h>
Chris@350 592 #endif
Chris@350 593 #ifdef HAVE_SYS_STAT_H
Chris@350 594 # include <sys/stat.h>
Chris@350 595 #endif
Chris@350 596 #ifdef STDC_HEADERS
Chris@350 597 # include <stdlib.h>
Chris@350 598 # include <stddef.h>
Chris@350 599 #else
Chris@350 600 # ifdef HAVE_STDLIB_H
Chris@350 601 # include <stdlib.h>
Chris@350 602 # endif
Chris@350 603 #endif
Chris@350 604 #ifdef HAVE_STRING_H
Chris@350 605 # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
Chris@350 606 # include <memory.h>
Chris@350 607 # endif
Chris@350 608 # include <string.h>
Chris@350 609 #endif
Chris@350 610 #ifdef HAVE_STRINGS_H
Chris@350 611 # include <strings.h>
Chris@350 612 #endif
Chris@350 613 #ifdef HAVE_INTTYPES_H
Chris@350 614 # include <inttypes.h>
Chris@350 615 #endif
Chris@350 616 #ifdef HAVE_STDINT_H
Chris@350 617 # include <stdint.h>
Chris@350 618 #endif
Chris@350 619 #ifdef HAVE_UNISTD_H
Chris@350 620 # include <unistd.h>
Chris@350 621 #endif"
Chris@350 622
Chris@350 623 ac_subst_vars='LTLIBOBJS
Chris@350 624 LIBOBJS
Chris@361 625 QMAKE_CONFIG
Chris@350 626 HAVES
Chris@1976 627 CXXSTANDARD
Chris@350 628 CXXFLAGS_MINIMAL
Chris@350 629 CUT
Chris@350 630 SHA1SUM
Chris@350 631 MAKEDEPEND
Chris@350 632 XARGS
Chris@350 633 PERL
Chris@488 634 X11_LIBS
Chris@488 635 X11_CFLAGS
Chris@350 636 id3tag_LIBS
Chris@350 637 id3tag_CFLAGS
Chris@350 638 mad_LIBS
Chris@350 639 mad_CFLAGS
Chris@350 640 fishsound_LIBS
Chris@350 641 fishsound_CFLAGS
Chris@350 642 oggz_LIBS
Chris@350 643 oggz_CFLAGS
Chris@350 644 lrdf_LIBS
Chris@350 645 lrdf_CFLAGS
Chris@350 646 libpulse_LIBS
Chris@350 647 libpulse_CFLAGS
Chris@350 648 JACK_LIBS
Chris@350 649 JACK_CFLAGS
Chris@1035 650 portaudio_LIBS
Chris@1035 651 portaudio_CFLAGS
Chris@350 652 liblo_LIBS
Chris@350 653 liblo_CFLAGS
Chris@1279 654 capnp_LIBS
Chris@1279 655 capnp_CFLAGS
Chris@572 656 serd_LIBS
Chris@572 657 serd_CFLAGS
Chris@572 658 sord_LIBS
Chris@572 659 sord_CFLAGS
Chris@350 660 rubberband_LIBS
Chris@350 661 rubberband_CFLAGS
Chris@1035 662 libsamplerate_LIBS
Chris@1035 663 libsamplerate_CFLAGS
Chris@350 664 sndfile_LIBS
Chris@350 665 sndfile_CFLAGS
Chris@350 666 fftw3f_LIBS
Chris@350 667 fftw3f_CFLAGS
Chris@350 668 fftw3_LIBS
Chris@350 669 fftw3_CFLAGS
Chris@350 670 bz2_LIBS
Chris@350 671 bz2_CFLAGS
Chris@350 672 QMAKE
Chris@594 673 PKG_CONFIG_LIBDIR
Chris@594 674 PKG_CONFIG_PATH
Chris@350 675 PKG_CONFIG
Chris@350 676 EGREP
Chris@350 677 GREP
Chris@350 678 CXXCPP
Chris@884 679 HAVE_CXX11
Chris@350 680 MKDIR_P
Chris@350 681 INSTALL_DATA
Chris@350 682 INSTALL_SCRIPT
Chris@350 683 INSTALL_PROGRAM
Chris@350 684 ac_ct_CXX
Chris@350 685 CXXFLAGS
Chris@350 686 CXX
Chris@350 687 OBJEXT
Chris@350 688 EXEEXT
Chris@350 689 ac_ct_CC
Chris@350 690 CPPFLAGS
Chris@350 691 LDFLAGS
Chris@350 692 CFLAGS
Chris@350 693 CC
Chris@350 694 target_alias
Chris@350 695 host_alias
Chris@350 696 build_alias
Chris@350 697 LIBS
Chris@350 698 ECHO_T
Chris@350 699 ECHO_N
Chris@350 700 ECHO_C
Chris@350 701 DEFS
Chris@350 702 mandir
Chris@350 703 localedir
Chris@350 704 libdir
Chris@350 705 psdir
Chris@350 706 pdfdir
Chris@350 707 dvidir
Chris@350 708 htmldir
Chris@350 709 infodir
Chris@350 710 docdir
Chris@350 711 oldincludedir
Chris@350 712 includedir
Chris@350 713 localstatedir
Chris@350 714 sharedstatedir
Chris@350 715 sysconfdir
Chris@350 716 datadir
Chris@350 717 datarootdir
Chris@350 718 libexecdir
Chris@350 719 sbindir
Chris@350 720 bindir
Chris@350 721 program_transform_name
Chris@350 722 prefix
Chris@350 723 exec_prefix
Chris@350 724 PACKAGE_URL
Chris@350 725 PACKAGE_BUGREPORT
Chris@350 726 PACKAGE_STRING
Chris@350 727 PACKAGE_VERSION
Chris@350 728 PACKAGE_TARNAME
Chris@350 729 PACKAGE_NAME
Chris@350 730 PATH_SEPARATOR
Chris@350 731 SHELL'
Chris@350 732 ac_subst_files=''
Chris@350 733 ac_user_opts='
Chris@350 734 enable_option_checking
Chris@350 735 enable_debug
Chris@350 736 '
Chris@350 737 ac_precious_vars='build_alias
Chris@350 738 host_alias
Chris@350 739 target_alias
Chris@350 740 CC
Chris@350 741 CFLAGS
Chris@350 742 LDFLAGS
Chris@350 743 LIBS
Chris@350 744 CPPFLAGS
Chris@350 745 CXX
Chris@350 746 CXXFLAGS
Chris@350 747 CCC
Chris@350 748 CXXCPP
Chris@350 749 PKG_CONFIG
Chris@594 750 PKG_CONFIG_PATH
Chris@594 751 PKG_CONFIG_LIBDIR
Chris@350 752 bz2_CFLAGS
Chris@350 753 bz2_LIBS
Chris@350 754 fftw3_CFLAGS
Chris@350 755 fftw3_LIBS
Chris@350 756 fftw3f_CFLAGS
Chris@350 757 fftw3f_LIBS
Chris@350 758 sndfile_CFLAGS
Chris@350 759 sndfile_LIBS
Chris@1035 760 libsamplerate_CFLAGS
Chris@1035 761 libsamplerate_LIBS
Chris@350 762 rubberband_CFLAGS
Chris@350 763 rubberband_LIBS
Chris@572 764 sord_CFLAGS
Chris@572 765 sord_LIBS
Chris@572 766 serd_CFLAGS
Chris@572 767 serd_LIBS
Chris@1279 768 capnp_CFLAGS
Chris@1279 769 capnp_LIBS
Chris@350 770 liblo_CFLAGS
Chris@350 771 liblo_LIBS
Chris@1035 772 portaudio_CFLAGS
Chris@1035 773 portaudio_LIBS
Chris@350 774 JACK_CFLAGS
Chris@350 775 JACK_LIBS
Chris@350 776 libpulse_CFLAGS
Chris@350 777 libpulse_LIBS
Chris@350 778 lrdf_CFLAGS
Chris@350 779 lrdf_LIBS
Chris@350 780 oggz_CFLAGS
Chris@350 781 oggz_LIBS
Chris@350 782 fishsound_CFLAGS
Chris@350 783 fishsound_LIBS
Chris@350 784 mad_CFLAGS
Chris@350 785 mad_LIBS
Chris@350 786 id3tag_CFLAGS
Chris@488 787 id3tag_LIBS
Chris@488 788 X11_CFLAGS
Chris@488 789 X11_LIBS'
Chris@1279 790
Chris@350 791
Chris@350 792 # Initialize some variables set by options.
Chris@350 793 ac_init_help=
Chris@350 794 ac_init_version=false
Chris@350 795 ac_unrecognized_opts=
Chris@350 796 ac_unrecognized_sep=
Chris@350 797 # The variables have the same names as the options, with
Chris@350 798 # dashes changed to underlines.
Chris@350 799 cache_file=/dev/null
Chris@350 800 exec_prefix=NONE
Chris@350 801 no_create=
Chris@350 802 no_recursion=
Chris@350 803 prefix=NONE
Chris@350 804 program_prefix=NONE
Chris@350 805 program_suffix=NONE
Chris@350 806 program_transform_name=s,x,x,
Chris@350 807 silent=
Chris@350 808 site=
Chris@350 809 srcdir=
Chris@350 810 verbose=
Chris@350 811 x_includes=NONE
Chris@350 812 x_libraries=NONE
Chris@350 813
Chris@350 814 # Installation directory options.
Chris@350 815 # These are left unexpanded so users can "make install exec_prefix=/foo"
Chris@350 816 # and all the variables that are supposed to be based on exec_prefix
Chris@350 817 # by default will actually change.
Chris@350 818 # Use braces instead of parens because sh, perl, etc. also accept them.
Chris@350 819 # (The list follows the same order as the GNU Coding Standards.)
Chris@350 820 bindir='${exec_prefix}/bin'
Chris@350 821 sbindir='${exec_prefix}/sbin'
Chris@350 822 libexecdir='${exec_prefix}/libexec'
Chris@350 823 datarootdir='${prefix}/share'
Chris@350 824 datadir='${datarootdir}'
Chris@350 825 sysconfdir='${prefix}/etc'
Chris@350 826 sharedstatedir='${prefix}/com'
Chris@350 827 localstatedir='${prefix}/var'
Chris@350 828 includedir='${prefix}/include'
Chris@350 829 oldincludedir='/usr/include'
Chris@941 830 docdir='${datarootdir}/doc/${PACKAGE}'
Chris@350 831 infodir='${datarootdir}/info'
Chris@350 832 htmldir='${docdir}'
Chris@350 833 dvidir='${docdir}'
Chris@350 834 pdfdir='${docdir}'
Chris@350 835 psdir='${docdir}'
Chris@350 836 libdir='${exec_prefix}/lib'
Chris@350 837 localedir='${datarootdir}/locale'
Chris@350 838 mandir='${datarootdir}/man'
Chris@350 839
Chris@350 840 ac_prev=
Chris@350 841 ac_dashdash=
Chris@350 842 for ac_option
Chris@350 843 do
Chris@350 844 # If the previous option needs an argument, assign it.
Chris@350 845 if test -n "$ac_prev"; then
Chris@350 846 eval $ac_prev=\$ac_option
Chris@350 847 ac_prev=
Chris@350 848 continue
Chris@350 849 fi
Chris@350 850
Chris@350 851 case $ac_option in
Chris@594 852 *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
Chris@594 853 *=) ac_optarg= ;;
Chris@594 854 *) ac_optarg=yes ;;
Chris@350 855 esac
Chris@350 856
Chris@350 857 # Accept the important Cygnus configure options, so we can diagnose typos.
Chris@350 858
Chris@350 859 case $ac_dashdash$ac_option in
Chris@350 860 --)
Chris@350 861 ac_dashdash=yes ;;
Chris@350 862
Chris@350 863 -bindir | --bindir | --bindi | --bind | --bin | --bi)
Chris@350 864 ac_prev=bindir ;;
Chris@350 865 -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
Chris@350 866 bindir=$ac_optarg ;;
Chris@350 867
Chris@350 868 -build | --build | --buil | --bui | --bu)
Chris@350 869 ac_prev=build_alias ;;
Chris@350 870 -build=* | --build=* | --buil=* | --bui=* | --bu=*)
Chris@350 871 build_alias=$ac_optarg ;;
Chris@350 872
Chris@350 873 -cache-file | --cache-file | --cache-fil | --cache-fi \
Chris@350 874 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
Chris@350 875 ac_prev=cache_file ;;
Chris@350 876 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
Chris@350 877 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
Chris@350 878 cache_file=$ac_optarg ;;
Chris@350 879
Chris@350 880 --config-cache | -C)
Chris@350 881 cache_file=config.cache ;;
Chris@350 882
Chris@350 883 -datadir | --datadir | --datadi | --datad)
Chris@350 884 ac_prev=datadir ;;
Chris@350 885 -datadir=* | --datadir=* | --datadi=* | --datad=*)
Chris@350 886 datadir=$ac_optarg ;;
Chris@350 887
Chris@350 888 -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
Chris@350 889 | --dataroo | --dataro | --datar)
Chris@350 890 ac_prev=datarootdir ;;
Chris@350 891 -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
Chris@350 892 | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
Chris@350 893 datarootdir=$ac_optarg ;;
Chris@350 894
Chris@350 895 -disable-* | --disable-*)
Chris@350 896 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
Chris@350 897 # Reject names that are not valid shell variable names.
Chris@350 898 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
Chris@594 899 as_fn_error $? "invalid feature name: $ac_useropt"
Chris@350 900 ac_useropt_orig=$ac_useropt
Chris@350 901 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
Chris@350 902 case $ac_user_opts in
Chris@350 903 *"
Chris@350 904 "enable_$ac_useropt"
Chris@350 905 "*) ;;
Chris@350 906 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
Chris@350 907 ac_unrecognized_sep=', ';;
Chris@350 908 esac
Chris@350 909 eval enable_$ac_useropt=no ;;
Chris@350 910
Chris@350 911 -docdir | --docdir | --docdi | --doc | --do)
Chris@350 912 ac_prev=docdir ;;
Chris@350 913 -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
Chris@350 914 docdir=$ac_optarg ;;
Chris@350 915
Chris@350 916 -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
Chris@350 917 ac_prev=dvidir ;;
Chris@350 918 -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
Chris@350 919 dvidir=$ac_optarg ;;
Chris@350 920
Chris@350 921 -enable-* | --enable-*)
Chris@350 922 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
Chris@350 923 # Reject names that are not valid shell variable names.
Chris@350 924 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
Chris@594 925 as_fn_error $? "invalid feature name: $ac_useropt"
Chris@350 926 ac_useropt_orig=$ac_useropt
Chris@350 927 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
Chris@350 928 case $ac_user_opts in
Chris@350 929 *"
Chris@350 930 "enable_$ac_useropt"
Chris@350 931 "*) ;;
Chris@350 932 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
Chris@350 933 ac_unrecognized_sep=', ';;
Chris@350 934 esac
Chris@350 935 eval enable_$ac_useropt=\$ac_optarg ;;
Chris@350 936
Chris@350 937 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
Chris@350 938 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
Chris@350 939 | --exec | --exe | --ex)
Chris@350 940 ac_prev=exec_prefix ;;
Chris@350 941 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
Chris@350 942 | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
Chris@350 943 | --exec=* | --exe=* | --ex=*)
Chris@350 944 exec_prefix=$ac_optarg ;;
Chris@350 945
Chris@350 946 -gas | --gas | --ga | --g)
Chris@350 947 # Obsolete; use --with-gas.
Chris@350 948 with_gas=yes ;;
Chris@350 949
Chris@350 950 -help | --help | --hel | --he | -h)
Chris@350 951 ac_init_help=long ;;
Chris@350 952 -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
Chris@350 953 ac_init_help=recursive ;;
Chris@350 954 -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
Chris@350 955 ac_init_help=short ;;
Chris@350 956
Chris@350 957 -host | --host | --hos | --ho)
Chris@350 958 ac_prev=host_alias ;;
Chris@350 959 -host=* | --host=* | --hos=* | --ho=*)
Chris@350 960 host_alias=$ac_optarg ;;
Chris@350 961
Chris@350 962 -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
Chris@350 963 ac_prev=htmldir ;;
Chris@350 964 -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
Chris@350 965 | --ht=*)
Chris@350 966 htmldir=$ac_optarg ;;
Chris@350 967
Chris@350 968 -includedir | --includedir | --includedi | --included | --include \
Chris@350 969 | --includ | --inclu | --incl | --inc)
Chris@350 970 ac_prev=includedir ;;
Chris@350 971 -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
Chris@350 972 | --includ=* | --inclu=* | --incl=* | --inc=*)
Chris@350 973 includedir=$ac_optarg ;;
Chris@350 974
Chris@350 975 -infodir | --infodir | --infodi | --infod | --info | --inf)
Chris@350 976 ac_prev=infodir ;;
Chris@350 977 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
Chris@350 978 infodir=$ac_optarg ;;
Chris@350 979
Chris@350 980 -libdir | --libdir | --libdi | --libd)
Chris@350 981 ac_prev=libdir ;;
Chris@350 982 -libdir=* | --libdir=* | --libdi=* | --libd=*)
Chris@350 983 libdir=$ac_optarg ;;
Chris@350 984
Chris@350 985 -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
Chris@350 986 | --libexe | --libex | --libe)
Chris@350 987 ac_prev=libexecdir ;;
Chris@350 988 -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
Chris@350 989 | --libexe=* | --libex=* | --libe=*)
Chris@350 990 libexecdir=$ac_optarg ;;
Chris@350 991
Chris@350 992 -localedir | --localedir | --localedi | --localed | --locale)
Chris@350 993 ac_prev=localedir ;;
Chris@350 994 -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
Chris@350 995 localedir=$ac_optarg ;;
Chris@350 996
Chris@350 997 -localstatedir | --localstatedir | --localstatedi | --localstated \
Chris@350 998 | --localstate | --localstat | --localsta | --localst | --locals)
Chris@350 999 ac_prev=localstatedir ;;
Chris@350 1000 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
Chris@350 1001 | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
Chris@350 1002 localstatedir=$ac_optarg ;;
Chris@350 1003
Chris@350 1004 -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
Chris@350 1005 ac_prev=mandir ;;
Chris@350 1006 -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
Chris@350 1007 mandir=$ac_optarg ;;
Chris@350 1008
Chris@350 1009 -nfp | --nfp | --nf)
Chris@350 1010 # Obsolete; use --without-fp.
Chris@350 1011 with_fp=no ;;
Chris@350 1012
Chris@350 1013 -no-create | --no-create | --no-creat | --no-crea | --no-cre \
Chris@350 1014 | --no-cr | --no-c | -n)
Chris@350 1015 no_create=yes ;;
Chris@350 1016
Chris@350 1017 -no-recursion | --no-recursion | --no-recursio | --no-recursi \
Chris@350 1018 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
Chris@350 1019 no_recursion=yes ;;
Chris@350 1020
Chris@350 1021 -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
Chris@350 1022 | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
Chris@350 1023 | --oldin | --oldi | --old | --ol | --o)
Chris@350 1024 ac_prev=oldincludedir ;;
Chris@350 1025 -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
Chris@350 1026 | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
Chris@350 1027 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
Chris@350 1028 oldincludedir=$ac_optarg ;;
Chris@350 1029
Chris@350 1030 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
Chris@350 1031 ac_prev=prefix ;;
Chris@350 1032 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
Chris@350 1033 prefix=$ac_optarg ;;
Chris@350 1034
Chris@350 1035 -program-prefix | --program-prefix | --program-prefi | --program-pref \
Chris@350 1036 | --program-pre | --program-pr | --program-p)
Chris@350 1037 ac_prev=program_prefix ;;
Chris@350 1038 -program-prefix=* | --program-prefix=* | --program-prefi=* \
Chris@350 1039 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
Chris@350 1040 program_prefix=$ac_optarg ;;
Chris@350 1041
Chris@350 1042 -program-suffix | --program-suffix | --program-suffi | --program-suff \
Chris@350 1043 | --program-suf | --program-su | --program-s)
Chris@350 1044 ac_prev=program_suffix ;;
Chris@350 1045 -program-suffix=* | --program-suffix=* | --program-suffi=* \
Chris@350 1046 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
Chris@350 1047 program_suffix=$ac_optarg ;;
Chris@350 1048
Chris@350 1049 -program-transform-name | --program-transform-name \
Chris@350 1050 | --program-transform-nam | --program-transform-na \
Chris@350 1051 | --program-transform-n | --program-transform- \
Chris@350 1052 | --program-transform | --program-transfor \
Chris@350 1053 | --program-transfo | --program-transf \
Chris@350 1054 | --program-trans | --program-tran \
Chris@350 1055 | --progr-tra | --program-tr | --program-t)
Chris@350 1056 ac_prev=program_transform_name ;;
Chris@350 1057 -program-transform-name=* | --program-transform-name=* \
Chris@350 1058 | --program-transform-nam=* | --program-transform-na=* \
Chris@350 1059 | --program-transform-n=* | --program-transform-=* \
Chris@350 1060 | --program-transform=* | --program-transfor=* \
Chris@350 1061 | --program-transfo=* | --program-transf=* \
Chris@350 1062 | --program-trans=* | --program-tran=* \
Chris@350 1063 | --progr-tra=* | --program-tr=* | --program-t=*)
Chris@350 1064 program_transform_name=$ac_optarg ;;
Chris@350 1065
Chris@350 1066 -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
Chris@350 1067 ac_prev=pdfdir ;;
Chris@350 1068 -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
Chris@350 1069 pdfdir=$ac_optarg ;;
Chris@350 1070
Chris@350 1071 -psdir | --psdir | --psdi | --psd | --ps)
Chris@350 1072 ac_prev=psdir ;;
Chris@350 1073 -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
Chris@350 1074 psdir=$ac_optarg ;;
Chris@350 1075
Chris@350 1076 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
Chris@350 1077 | -silent | --silent | --silen | --sile | --sil)
Chris@350 1078 silent=yes ;;
Chris@350 1079
Chris@350 1080 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
Chris@350 1081 ac_prev=sbindir ;;
Chris@350 1082 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
Chris@350 1083 | --sbi=* | --sb=*)
Chris@350 1084 sbindir=$ac_optarg ;;
Chris@350 1085
Chris@350 1086 -sharedstatedir | --sharedstatedir | --sharedstatedi \
Chris@350 1087 | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
Chris@350 1088 | --sharedst | --shareds | --shared | --share | --shar \
Chris@350 1089 | --sha | --sh)
Chris@350 1090 ac_prev=sharedstatedir ;;
Chris@350 1091 -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
Chris@350 1092 | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
Chris@350 1093 | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
Chris@350 1094 | --sha=* | --sh=*)
Chris@350 1095 sharedstatedir=$ac_optarg ;;
Chris@350 1096
Chris@350 1097 -site | --site | --sit)
Chris@350 1098 ac_prev=site ;;
Chris@350 1099 -site=* | --site=* | --sit=*)
Chris@350 1100 site=$ac_optarg ;;
Chris@350 1101
Chris@350 1102 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
Chris@350 1103 ac_prev=srcdir ;;
Chris@350 1104 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
Chris@350 1105 srcdir=$ac_optarg ;;
Chris@350 1106
Chris@350 1107 -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
Chris@350 1108 | --syscon | --sysco | --sysc | --sys | --sy)
Chris@350 1109 ac_prev=sysconfdir ;;
Chris@350 1110 -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
Chris@350 1111 | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
Chris@350 1112 sysconfdir=$ac_optarg ;;
Chris@350 1113
Chris@350 1114 -target | --target | --targe | --targ | --tar | --ta | --t)
Chris@350 1115 ac_prev=target_alias ;;
Chris@350 1116 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
Chris@350 1117 target_alias=$ac_optarg ;;
Chris@350 1118
Chris@350 1119 -v | -verbose | --verbose | --verbos | --verbo | --verb)
Chris@350 1120 verbose=yes ;;
Chris@350 1121
Chris@350 1122 -version | --version | --versio | --versi | --vers | -V)
Chris@350 1123 ac_init_version=: ;;
Chris@350 1124
Chris@350 1125 -with-* | --with-*)
Chris@350 1126 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
Chris@350 1127 # Reject names that are not valid shell variable names.
Chris@350 1128 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
Chris@594 1129 as_fn_error $? "invalid package name: $ac_useropt"
Chris@350 1130 ac_useropt_orig=$ac_useropt
Chris@350 1131 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
Chris@350 1132 case $ac_user_opts in
Chris@350 1133 *"
Chris@350 1134 "with_$ac_useropt"
Chris@350 1135 "*) ;;
Chris@350 1136 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
Chris@350 1137 ac_unrecognized_sep=', ';;
Chris@350 1138 esac
Chris@350 1139 eval with_$ac_useropt=\$ac_optarg ;;
Chris@350 1140
Chris@350 1141 -without-* | --without-*)
Chris@350 1142 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
Chris@350 1143 # Reject names that are not valid shell variable names.
Chris@350 1144 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
Chris@594 1145 as_fn_error $? "invalid package name: $ac_useropt"
Chris@350 1146 ac_useropt_orig=$ac_useropt
Chris@350 1147 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
Chris@350 1148 case $ac_user_opts in
Chris@350 1149 *"
Chris@350 1150 "with_$ac_useropt"
Chris@350 1151 "*) ;;
Chris@350 1152 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
Chris@350 1153 ac_unrecognized_sep=', ';;
Chris@350 1154 esac
Chris@350 1155 eval with_$ac_useropt=no ;;
Chris@350 1156
Chris@350 1157 --x)
Chris@350 1158 # Obsolete; use --with-x.
Chris@350 1159 with_x=yes ;;
Chris@350 1160
Chris@350 1161 -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
Chris@350 1162 | --x-incl | --x-inc | --x-in | --x-i)
Chris@350 1163 ac_prev=x_includes ;;
Chris@350 1164 -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
Chris@350 1165 | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
Chris@350 1166 x_includes=$ac_optarg ;;
Chris@350 1167
Chris@350 1168 -x-libraries | --x-libraries | --x-librarie | --x-librari \
Chris@350 1169 | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
Chris@350 1170 ac_prev=x_libraries ;;
Chris@350 1171 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
Chris@350 1172 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
Chris@350 1173 x_libraries=$ac_optarg ;;
Chris@350 1174
Chris@594 1175 -*) as_fn_error $? "unrecognized option: \`$ac_option'
Chris@594 1176 Try \`$0 --help' for more information"
Chris@350 1177 ;;
Chris@350 1178
Chris@350 1179 *=*)
Chris@350 1180 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
Chris@350 1181 # Reject names that are not valid shell variable names.
Chris@350 1182 case $ac_envvar in #(
Chris@350 1183 '' | [0-9]* | *[!_$as_cr_alnum]* )
Chris@594 1184 as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
Chris@350 1185 esac
Chris@350 1186 eval $ac_envvar=\$ac_optarg
Chris@350 1187 export $ac_envvar ;;
Chris@350 1188
Chris@350 1189 *)
Chris@350 1190 # FIXME: should be removed in autoconf 3.0.
Chris@350 1191 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
Chris@350 1192 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
Chris@350 1193 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
Chris@594 1194 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
Chris@350 1195 ;;
Chris@350 1196
Chris@350 1197 esac
Chris@350 1198 done
Chris@350 1199
Chris@350 1200 if test -n "$ac_prev"; then
Chris@350 1201 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
Chris@594 1202 as_fn_error $? "missing argument to $ac_option"
Chris@350 1203 fi
Chris@350 1204
Chris@350 1205 if test -n "$ac_unrecognized_opts"; then
Chris@350 1206 case $enable_option_checking in
Chris@350 1207 no) ;;
Chris@594 1208 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
Chris@350 1209 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
Chris@350 1210 esac
Chris@350 1211 fi
Chris@350 1212
Chris@350 1213 # Check all directory arguments for consistency.
Chris@350 1214 for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
Chris@350 1215 datadir sysconfdir sharedstatedir localstatedir includedir \
Chris@350 1216 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
Chris@350 1217 libdir localedir mandir
Chris@350 1218 do
Chris@350 1219 eval ac_val=\$$ac_var
Chris@350 1220 # Remove trailing slashes.
Chris@350 1221 case $ac_val in
Chris@350 1222 */ )
Chris@350 1223 ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
Chris@350 1224 eval $ac_var=\$ac_val;;
Chris@350 1225 esac
Chris@350 1226 # Be sure to have absolute directory names.
Chris@350 1227 case $ac_val in
Chris@350 1228 [\\/$]* | ?:[\\/]* ) continue;;
Chris@350 1229 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
Chris@350 1230 esac
Chris@594 1231 as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
Chris@350 1232 done
Chris@350 1233
Chris@350 1234 # There might be people who depend on the old broken behavior: `$host'
Chris@350 1235 # used to hold the argument of --host etc.
Chris@350 1236 # FIXME: To remove some day.
Chris@350 1237 build=$build_alias
Chris@350 1238 host=$host_alias
Chris@350 1239 target=$target_alias
Chris@350 1240
Chris@350 1241 # FIXME: To remove some day.
Chris@350 1242 if test "x$host_alias" != x; then
Chris@350 1243 if test "x$build_alias" = x; then
Chris@350 1244 cross_compiling=maybe
Chris@350 1245 elif test "x$build_alias" != "x$host_alias"; then
Chris@350 1246 cross_compiling=yes
Chris@350 1247 fi
Chris@350 1248 fi
Chris@350 1249
Chris@350 1250 ac_tool_prefix=
Chris@350 1251 test -n "$host_alias" && ac_tool_prefix=$host_alias-
Chris@350 1252
Chris@350 1253 test "$silent" = yes && exec 6>/dev/null
Chris@350 1254
Chris@350 1255
Chris@350 1256 ac_pwd=`pwd` && test -n "$ac_pwd" &&
Chris@350 1257 ac_ls_di=`ls -di .` &&
Chris@350 1258 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
Chris@594 1259 as_fn_error $? "working directory cannot be determined"
Chris@350 1260 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
Chris@594 1261 as_fn_error $? "pwd does not report name of working directory"
Chris@350 1262
Chris@350 1263
Chris@350 1264 # Find the source files, if location was not specified.
Chris@350 1265 if test -z "$srcdir"; then
Chris@350 1266 ac_srcdir_defaulted=yes
Chris@350 1267 # Try the directory containing this script, then the parent directory.
Chris@350 1268 ac_confdir=`$as_dirname -- "$as_myself" ||
Chris@350 1269 $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
Chris@350 1270 X"$as_myself" : 'X\(//\)[^/]' \| \
Chris@350 1271 X"$as_myself" : 'X\(//\)$' \| \
Chris@350 1272 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
Chris@350 1273 $as_echo X"$as_myself" |
Chris@350 1274 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
Chris@350 1275 s//\1/
Chris@350 1276 q
Chris@350 1277 }
Chris@350 1278 /^X\(\/\/\)[^/].*/{
Chris@350 1279 s//\1/
Chris@350 1280 q
Chris@350 1281 }
Chris@350 1282 /^X\(\/\/\)$/{
Chris@350 1283 s//\1/
Chris@350 1284 q
Chris@350 1285 }
Chris@350 1286 /^X\(\/\).*/{
Chris@350 1287 s//\1/
Chris@350 1288 q
Chris@350 1289 }
Chris@350 1290 s/.*/./; q'`
Chris@350 1291 srcdir=$ac_confdir
Chris@350 1292 if test ! -r "$srcdir/$ac_unique_file"; then
Chris@350 1293 srcdir=..
Chris@350 1294 fi
Chris@350 1295 else
Chris@350 1296 ac_srcdir_defaulted=no
Chris@350 1297 fi
Chris@350 1298 if test ! -r "$srcdir/$ac_unique_file"; then
Chris@350 1299 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
Chris@594 1300 as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
Chris@350 1301 fi
Chris@350 1302 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
Chris@350 1303 ac_abs_confdir=`(
Chris@594 1304 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
Chris@350 1305 pwd)`
Chris@350 1306 # When building in place, set srcdir=.
Chris@350 1307 if test "$ac_abs_confdir" = "$ac_pwd"; then
Chris@350 1308 srcdir=.
Chris@350 1309 fi
Chris@350 1310 # Remove unnecessary trailing slashes from srcdir.
Chris@350 1311 # Double slashes in file names in object file debugging info
Chris@350 1312 # mess up M-x gdb in Emacs.
Chris@350 1313 case $srcdir in
Chris@350 1314 */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
Chris@350 1315 esac
Chris@350 1316 for ac_var in $ac_precious_vars; do
Chris@350 1317 eval ac_env_${ac_var}_set=\${${ac_var}+set}
Chris@350 1318 eval ac_env_${ac_var}_value=\$${ac_var}
Chris@350 1319 eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
Chris@350 1320 eval ac_cv_env_${ac_var}_value=\$${ac_var}
Chris@350 1321 done
Chris@350 1322
Chris@350 1323 #
Chris@350 1324 # Report the --help message.
Chris@350 1325 #
Chris@350 1326 if test "$ac_init_help" = "long"; then
Chris@350 1327 # Omit some internal or obsolete options to make the list less imposing.
Chris@350 1328 # This message is too long to be a string in the A/UX 3.1 sh.
Chris@350 1329 cat <<_ACEOF
Chris@941 1330 \`configure' configures this package to adapt to many kinds of systems.
Chris@350 1331
Chris@350 1332 Usage: $0 [OPTION]... [VAR=VALUE]...
Chris@350 1333
Chris@350 1334 To assign environment variables (e.g., CC, CFLAGS...), specify them as
Chris@350 1335 VAR=VALUE. See below for descriptions of some of the useful variables.
Chris@350 1336
Chris@350 1337 Defaults for the options are specified in brackets.
Chris@350 1338
Chris@350 1339 Configuration:
Chris@350 1340 -h, --help display this help and exit
Chris@350 1341 --help=short display options specific to this package
Chris@350 1342 --help=recursive display the short help of all the included packages
Chris@350 1343 -V, --version display version information and exit
Chris@594 1344 -q, --quiet, --silent do not print \`checking ...' messages
Chris@350 1345 --cache-file=FILE cache test results in FILE [disabled]
Chris@350 1346 -C, --config-cache alias for \`--cache-file=config.cache'
Chris@350 1347 -n, --no-create do not create output files
Chris@350 1348 --srcdir=DIR find the sources in DIR [configure dir or \`..']
Chris@350 1349
Chris@350 1350 Installation directories:
Chris@350 1351 --prefix=PREFIX install architecture-independent files in PREFIX
Chris@350 1352 [$ac_default_prefix]
Chris@350 1353 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
Chris@350 1354 [PREFIX]
Chris@350 1355
Chris@350 1356 By default, \`make install' will install all the files in
Chris@350 1357 \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
Chris@350 1358 an installation prefix other than \`$ac_default_prefix' using \`--prefix',
Chris@350 1359 for instance \`--prefix=\$HOME'.
Chris@350 1360
Chris@350 1361 For better control, use the options below.
Chris@350 1362
Chris@350 1363 Fine tuning of the installation directories:
Chris@350 1364 --bindir=DIR user executables [EPREFIX/bin]
Chris@350 1365 --sbindir=DIR system admin executables [EPREFIX/sbin]
Chris@350 1366 --libexecdir=DIR program executables [EPREFIX/libexec]
Chris@350 1367 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
Chris@350 1368 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
Chris@350 1369 --localstatedir=DIR modifiable single-machine data [PREFIX/var]
Chris@350 1370 --libdir=DIR object code libraries [EPREFIX/lib]
Chris@350 1371 --includedir=DIR C header files [PREFIX/include]
Chris@350 1372 --oldincludedir=DIR C header files for non-gcc [/usr/include]
Chris@350 1373 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
Chris@350 1374 --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
Chris@350 1375 --infodir=DIR info documentation [DATAROOTDIR/info]
Chris@350 1376 --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
Chris@350 1377 --mandir=DIR man documentation [DATAROOTDIR/man]
Chris@941 1378 --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE]
Chris@350 1379 --htmldir=DIR html documentation [DOCDIR]
Chris@350 1380 --dvidir=DIR dvi documentation [DOCDIR]
Chris@350 1381 --pdfdir=DIR pdf documentation [DOCDIR]
Chris@350 1382 --psdir=DIR ps documentation [DOCDIR]
Chris@350 1383 _ACEOF
Chris@350 1384
Chris@350 1385 cat <<\_ACEOF
Chris@350 1386 _ACEOF
Chris@350 1387 fi
Chris@350 1388
Chris@350 1389 if test -n "$ac_init_help"; then
Chris@941 1390
Chris@350 1391 cat <<\_ACEOF
Chris@350 1392
Chris@350 1393 Optional Features:
Chris@350 1394 --disable-option-checking ignore unrecognized --enable/--with options
Chris@350 1395 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
Chris@350 1396 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
Chris@350 1397 --enable-debug enable debug support [default=no]
Chris@350 1398
Chris@350 1399 Some influential environment variables:
Chris@350 1400 CC C compiler command
Chris@350 1401 CFLAGS C compiler flags
Chris@350 1402 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
Chris@350 1403 nonstandard directory <lib dir>
Chris@350 1404 LIBS libraries to pass to the linker, e.g. -l<library>
Chris@350 1405 CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
Chris@350 1406 you have headers in a nonstandard directory <include dir>
Chris@350 1407 CXX C++ compiler command
Chris@350 1408 CXXFLAGS C++ compiler flags
Chris@350 1409 CXXCPP C++ preprocessor
Chris@350 1410 PKG_CONFIG path to pkg-config utility
Chris@594 1411 PKG_CONFIG_PATH
Chris@594 1412 directories to add to pkg-config's search path
Chris@594 1413 PKG_CONFIG_LIBDIR
Chris@594 1414 path overriding pkg-config's built-in search path
Chris@350 1415 bz2_CFLAGS C compiler flags for bz2, overriding pkg-config
Chris@350 1416 bz2_LIBS linker flags for bz2, overriding pkg-config
Chris@350 1417 fftw3_CFLAGS
Chris@350 1418 C compiler flags for fftw3, overriding pkg-config
Chris@350 1419 fftw3_LIBS linker flags for fftw3, overriding pkg-config
Chris@350 1420 fftw3f_CFLAGS
Chris@350 1421 C compiler flags for fftw3f, overriding pkg-config
Chris@350 1422 fftw3f_LIBS linker flags for fftw3f, overriding pkg-config
Chris@350 1423 sndfile_CFLAGS
Chris@350 1424 C compiler flags for sndfile, overriding pkg-config
Chris@350 1425 sndfile_LIBS
Chris@350 1426 linker flags for sndfile, overriding pkg-config
Chris@1035 1427 libsamplerate_CFLAGS
Chris@1035 1428 C compiler flags for libsamplerate, overriding pkg-config
Chris@1035 1429 libsamplerate_LIBS
Chris@1035 1430 linker flags for libsamplerate, overriding pkg-config
Chris@350 1431 rubberband_CFLAGS
Chris@350 1432 C compiler flags for rubberband, overriding pkg-config
Chris@350 1433 rubberband_LIBS
Chris@350 1434 linker flags for rubberband, overriding pkg-config
Chris@572 1435 sord_CFLAGS C compiler flags for sord, overriding pkg-config
Chris@572 1436 sord_LIBS linker flags for sord, overriding pkg-config
Chris@572 1437 serd_CFLAGS C compiler flags for serd, overriding pkg-config
Chris@572 1438 serd_LIBS linker flags for serd, overriding pkg-config
Chris@1279 1439 capnp_CFLAGS
Chris@1279 1440 C compiler flags for capnp, overriding pkg-config
Chris@1279 1441 capnp_LIBS linker flags for capnp, overriding pkg-config
Chris@350 1442 liblo_CFLAGS
Chris@350 1443 C compiler flags for liblo, overriding pkg-config
Chris@350 1444 liblo_LIBS linker flags for liblo, overriding pkg-config
Chris@1035 1445 portaudio_CFLAGS
Chris@1035 1446 C compiler flags for portaudio, overriding pkg-config
Chris@1035 1447 portaudio_LIBS
Chris@1035 1448 linker flags for portaudio, overriding pkg-config
Chris@350 1449 JACK_CFLAGS C compiler flags for JACK, overriding pkg-config
Chris@350 1450 JACK_LIBS linker flags for JACK, overriding pkg-config
Chris@350 1451 libpulse_CFLAGS
Chris@350 1452 C compiler flags for libpulse, overriding pkg-config
Chris@350 1453 libpulse_LIBS
Chris@350 1454 linker flags for libpulse, overriding pkg-config
Chris@350 1455 lrdf_CFLAGS C compiler flags for lrdf, overriding pkg-config
Chris@350 1456 lrdf_LIBS linker flags for lrdf, overriding pkg-config
Chris@350 1457 oggz_CFLAGS C compiler flags for oggz, overriding pkg-config
Chris@350 1458 oggz_LIBS linker flags for oggz, overriding pkg-config
Chris@350 1459 fishsound_CFLAGS
Chris@350 1460 C compiler flags for fishsound, overriding pkg-config
Chris@350 1461 fishsound_LIBS
Chris@350 1462 linker flags for fishsound, overriding pkg-config
Chris@350 1463 mad_CFLAGS C compiler flags for mad, overriding pkg-config
Chris@350 1464 mad_LIBS linker flags for mad, overriding pkg-config
Chris@350 1465 id3tag_CFLAGS
Chris@350 1466 C compiler flags for id3tag, overriding pkg-config
Chris@350 1467 id3tag_LIBS linker flags for id3tag, overriding pkg-config
Chris@488 1468 X11_CFLAGS C compiler flags for X11, overriding pkg-config
Chris@488 1469 X11_LIBS linker flags for X11, overriding pkg-config
Chris@350 1470
Chris@350 1471 Use these variables to override the choices made by `configure' or to help
Chris@350 1472 it to find libraries and programs with nonstandard names/locations.
Chris@350 1473
Chris@941 1474 Report bugs to the package provider.
Chris@350 1475 _ACEOF
Chris@350 1476 ac_status=$?
Chris@350 1477 fi
Chris@350 1478
Chris@350 1479 if test "$ac_init_help" = "recursive"; then
Chris@350 1480 # If there are subdirs, report their specific --help.
Chris@350 1481 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
Chris@350 1482 test -d "$ac_dir" ||
Chris@350 1483 { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
Chris@350 1484 continue
Chris@350 1485 ac_builddir=.
Chris@350 1486
Chris@350 1487 case "$ac_dir" in
Chris@350 1488 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
Chris@350 1489 *)
Chris@350 1490 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
Chris@350 1491 # A ".." for each directory in $ac_dir_suffix.
Chris@350 1492 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
Chris@350 1493 case $ac_top_builddir_sub in
Chris@350 1494 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
Chris@350 1495 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
Chris@350 1496 esac ;;
Chris@350 1497 esac
Chris@350 1498 ac_abs_top_builddir=$ac_pwd
Chris@350 1499 ac_abs_builddir=$ac_pwd$ac_dir_suffix
Chris@350 1500 # for backward compatibility:
Chris@350 1501 ac_top_builddir=$ac_top_build_prefix
Chris@350 1502
Chris@350 1503 case $srcdir in
Chris@350 1504 .) # We are building in place.
Chris@350 1505 ac_srcdir=.
Chris@350 1506 ac_top_srcdir=$ac_top_builddir_sub
Chris@350 1507 ac_abs_top_srcdir=$ac_pwd ;;
Chris@350 1508 [\\/]* | ?:[\\/]* ) # Absolute name.
Chris@350 1509 ac_srcdir=$srcdir$ac_dir_suffix;
Chris@350 1510 ac_top_srcdir=$srcdir
Chris@350 1511 ac_abs_top_srcdir=$srcdir ;;
Chris@350 1512 *) # Relative name.
Chris@350 1513 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
Chris@350 1514 ac_top_srcdir=$ac_top_build_prefix$srcdir
Chris@350 1515 ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
Chris@350 1516 esac
Chris@350 1517 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
Chris@350 1518
Chris@350 1519 cd "$ac_dir" || { ac_status=$?; continue; }
Chris@350 1520 # Check for guested configure.
Chris@350 1521 if test -f "$ac_srcdir/configure.gnu"; then
Chris@350 1522 echo &&
Chris@350 1523 $SHELL "$ac_srcdir/configure.gnu" --help=recursive
Chris@350 1524 elif test -f "$ac_srcdir/configure"; then
Chris@350 1525 echo &&
Chris@350 1526 $SHELL "$ac_srcdir/configure" --help=recursive
Chris@350 1527 else
Chris@350 1528 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
Chris@350 1529 fi || ac_status=$?
Chris@350 1530 cd "$ac_pwd" || { ac_status=$?; break; }
Chris@350 1531 done
Chris@350 1532 fi
Chris@350 1533
Chris@350 1534 test -n "$ac_init_help" && exit $ac_status
Chris@350 1535 if $ac_init_version; then
Chris@350 1536 cat <<\_ACEOF
Chris@941 1537 configure
Chris@594 1538 generated by GNU Autoconf 2.69
Chris@594 1539
Chris@594 1540 Copyright (C) 2012 Free Software Foundation, Inc.
Chris@350 1541 This configure script is free software; the Free Software Foundation
Chris@350 1542 gives unlimited permission to copy, distribute and modify it.
Chris@350 1543 _ACEOF
Chris@350 1544 exit
Chris@350 1545 fi
Chris@350 1546
Chris@350 1547 ## ------------------------ ##
Chris@350 1548 ## Autoconf initialization. ##
Chris@350 1549 ## ------------------------ ##
Chris@350 1550
Chris@350 1551 # ac_fn_c_try_compile LINENO
Chris@350 1552 # --------------------------
Chris@350 1553 # Try to compile conftest.$ac_ext, and return whether this succeeded.
Chris@350 1554 ac_fn_c_try_compile ()
Chris@350 1555 {
Chris@350 1556 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
Chris@350 1557 rm -f conftest.$ac_objext
Chris@350 1558 if { { ac_try="$ac_compile"
Chris@350 1559 case "(($ac_try" in
Chris@350 1560 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 1561 *) ac_try_echo=$ac_try;;
Chris@350 1562 esac
Chris@350 1563 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 1564 $as_echo "$ac_try_echo"; } >&5
Chris@350 1565 (eval "$ac_compile") 2>conftest.err
Chris@350 1566 ac_status=$?
Chris@350 1567 if test -s conftest.err; then
Chris@350 1568 grep -v '^ *+' conftest.err >conftest.er1
Chris@350 1569 cat conftest.er1 >&5
Chris@350 1570 mv -f conftest.er1 conftest.err
Chris@350 1571 fi
Chris@350 1572 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 1573 test $ac_status = 0; } && {
Chris@350 1574 test -z "$ac_c_werror_flag" ||
Chris@350 1575 test ! -s conftest.err
Chris@350 1576 } && test -s conftest.$ac_objext; then :
Chris@350 1577 ac_retval=0
Chris@350 1578 else
Chris@350 1579 $as_echo "$as_me: failed program was:" >&5
Chris@350 1580 sed 's/^/| /' conftest.$ac_ext >&5
Chris@350 1581
Chris@350 1582 ac_retval=1
Chris@350 1583 fi
Chris@594 1584 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
Chris@350 1585 as_fn_set_status $ac_retval
Chris@350 1586
Chris@350 1587 } # ac_fn_c_try_compile
Chris@350 1588
Chris@350 1589 # ac_fn_cxx_try_compile LINENO
Chris@350 1590 # ----------------------------
Chris@350 1591 # Try to compile conftest.$ac_ext, and return whether this succeeded.
Chris@350 1592 ac_fn_cxx_try_compile ()
Chris@350 1593 {
Chris@350 1594 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
Chris@350 1595 rm -f conftest.$ac_objext
Chris@350 1596 if { { ac_try="$ac_compile"
Chris@350 1597 case "(($ac_try" in
Chris@350 1598 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 1599 *) ac_try_echo=$ac_try;;
Chris@350 1600 esac
Chris@350 1601 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 1602 $as_echo "$ac_try_echo"; } >&5
Chris@350 1603 (eval "$ac_compile") 2>conftest.err
Chris@350 1604 ac_status=$?
Chris@350 1605 if test -s conftest.err; then
Chris@350 1606 grep -v '^ *+' conftest.err >conftest.er1
Chris@350 1607 cat conftest.er1 >&5
Chris@350 1608 mv -f conftest.er1 conftest.err
Chris@350 1609 fi
Chris@350 1610 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 1611 test $ac_status = 0; } && {
Chris@350 1612 test -z "$ac_cxx_werror_flag" ||
Chris@350 1613 test ! -s conftest.err
Chris@350 1614 } && test -s conftest.$ac_objext; then :
Chris@350 1615 ac_retval=0
Chris@350 1616 else
Chris@350 1617 $as_echo "$as_me: failed program was:" >&5
Chris@350 1618 sed 's/^/| /' conftest.$ac_ext >&5
Chris@350 1619
Chris@350 1620 ac_retval=1
Chris@350 1621 fi
Chris@594 1622 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
Chris@350 1623 as_fn_set_status $ac_retval
Chris@350 1624
Chris@350 1625 } # ac_fn_cxx_try_compile
Chris@350 1626
Chris@350 1627 # ac_fn_cxx_try_cpp LINENO
Chris@350 1628 # ------------------------
Chris@350 1629 # Try to preprocess conftest.$ac_ext, and return whether this succeeded.
Chris@350 1630 ac_fn_cxx_try_cpp ()
Chris@350 1631 {
Chris@350 1632 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
Chris@350 1633 if { { ac_try="$ac_cpp conftest.$ac_ext"
Chris@350 1634 case "(($ac_try" in
Chris@350 1635 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 1636 *) ac_try_echo=$ac_try;;
Chris@350 1637 esac
Chris@350 1638 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 1639 $as_echo "$ac_try_echo"; } >&5
Chris@350 1640 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
Chris@350 1641 ac_status=$?
Chris@350 1642 if test -s conftest.err; then
Chris@350 1643 grep -v '^ *+' conftest.err >conftest.er1
Chris@350 1644 cat conftest.er1 >&5
Chris@350 1645 mv -f conftest.er1 conftest.err
Chris@350 1646 fi
Chris@350 1647 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@594 1648 test $ac_status = 0; } > conftest.i && {
Chris@350 1649 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
Chris@350 1650 test ! -s conftest.err
Chris@350 1651 }; then :
Chris@350 1652 ac_retval=0
Chris@350 1653 else
Chris@350 1654 $as_echo "$as_me: failed program was:" >&5
Chris@350 1655 sed 's/^/| /' conftest.$ac_ext >&5
Chris@350 1656
Chris@350 1657 ac_retval=1
Chris@350 1658 fi
Chris@594 1659 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
Chris@350 1660 as_fn_set_status $ac_retval
Chris@350 1661
Chris@350 1662 } # ac_fn_cxx_try_cpp
Chris@350 1663
Chris@350 1664 # ac_fn_cxx_try_run LINENO
Chris@350 1665 # ------------------------
Chris@350 1666 # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes
Chris@350 1667 # that executables *can* be run.
Chris@350 1668 ac_fn_cxx_try_run ()
Chris@350 1669 {
Chris@350 1670 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
Chris@350 1671 if { { ac_try="$ac_link"
Chris@350 1672 case "(($ac_try" in
Chris@350 1673 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 1674 *) ac_try_echo=$ac_try;;
Chris@350 1675 esac
Chris@350 1676 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 1677 $as_echo "$ac_try_echo"; } >&5
Chris@350 1678 (eval "$ac_link") 2>&5
Chris@350 1679 ac_status=$?
Chris@350 1680 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 1681 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
Chris@350 1682 { { case "(($ac_try" in
Chris@350 1683 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 1684 *) ac_try_echo=$ac_try;;
Chris@350 1685 esac
Chris@350 1686 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 1687 $as_echo "$ac_try_echo"; } >&5
Chris@350 1688 (eval "$ac_try") 2>&5
Chris@350 1689 ac_status=$?
Chris@350 1690 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 1691 test $ac_status = 0; }; }; then :
Chris@350 1692 ac_retval=0
Chris@350 1693 else
Chris@350 1694 $as_echo "$as_me: program exited with status $ac_status" >&5
Chris@350 1695 $as_echo "$as_me: failed program was:" >&5
Chris@350 1696 sed 's/^/| /' conftest.$ac_ext >&5
Chris@350 1697
Chris@350 1698 ac_retval=$ac_status
Chris@350 1699 fi
Chris@350 1700 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
Chris@594 1701 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
Chris@350 1702 as_fn_set_status $ac_retval
Chris@350 1703
Chris@350 1704 } # ac_fn_cxx_try_run
Chris@350 1705
Chris@350 1706 # ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES
Chris@350 1707 # ---------------------------------------------------------
Chris@350 1708 # Tests whether HEADER exists, giving a warning if it cannot be compiled using
Chris@350 1709 # the include files in INCLUDES and setting the cache variable VAR
Chris@350 1710 # accordingly.
Chris@350 1711 ac_fn_cxx_check_header_mongrel ()
Chris@350 1712 {
Chris@350 1713 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
Chris@594 1714 if eval \${$3+:} false; then :
Chris@350 1715 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
Chris@350 1716 $as_echo_n "checking for $2... " >&6; }
Chris@594 1717 if eval \${$3+:} false; then :
Chris@350 1718 $as_echo_n "(cached) " >&6
Chris@350 1719 fi
Chris@350 1720 eval ac_res=\$$3
Chris@350 1721 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 1722 $as_echo "$ac_res" >&6; }
Chris@350 1723 else
Chris@350 1724 # Is the header compilable?
Chris@350 1725 { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
Chris@350 1726 $as_echo_n "checking $2 usability... " >&6; }
Chris@350 1727 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 1728 /* end confdefs.h. */
Chris@350 1729 $4
Chris@350 1730 #include <$2>
Chris@350 1731 _ACEOF
Chris@350 1732 if ac_fn_cxx_try_compile "$LINENO"; then :
Chris@350 1733 ac_header_compiler=yes
Chris@350 1734 else
Chris@350 1735 ac_header_compiler=no
Chris@350 1736 fi
Chris@350 1737 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@350 1738 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
Chris@350 1739 $as_echo "$ac_header_compiler" >&6; }
Chris@350 1740
Chris@350 1741 # Is the header present?
Chris@350 1742 { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
Chris@350 1743 $as_echo_n "checking $2 presence... " >&6; }
Chris@350 1744 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 1745 /* end confdefs.h. */
Chris@350 1746 #include <$2>
Chris@350 1747 _ACEOF
Chris@350 1748 if ac_fn_cxx_try_cpp "$LINENO"; then :
Chris@350 1749 ac_header_preproc=yes
Chris@350 1750 else
Chris@350 1751 ac_header_preproc=no
Chris@350 1752 fi
Chris@594 1753 rm -f conftest.err conftest.i conftest.$ac_ext
Chris@350 1754 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
Chris@350 1755 $as_echo "$ac_header_preproc" >&6; }
Chris@350 1756
Chris@350 1757 # So? What about this header?
Chris@350 1758 case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #((
Chris@350 1759 yes:no: )
Chris@350 1760 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
Chris@350 1761 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
Chris@350 1762 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
Chris@350 1763 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
Chris@350 1764 ;;
Chris@350 1765 no:yes:* )
Chris@350 1766 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
Chris@350 1767 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
Chris@350 1768 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
Chris@350 1769 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
Chris@350 1770 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
Chris@350 1771 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
Chris@350 1772 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5
Chris@350 1773 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
Chris@350 1774 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
Chris@350 1775 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
Chris@350 1776 ;;
Chris@350 1777 esac
Chris@350 1778 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
Chris@350 1779 $as_echo_n "checking for $2... " >&6; }
Chris@594 1780 if eval \${$3+:} false; then :
Chris@350 1781 $as_echo_n "(cached) " >&6
Chris@350 1782 else
Chris@350 1783 eval "$3=\$ac_header_compiler"
Chris@350 1784 fi
Chris@350 1785 eval ac_res=\$$3
Chris@350 1786 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 1787 $as_echo "$ac_res" >&6; }
Chris@350 1788 fi
Chris@594 1789 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
Chris@350 1790
Chris@350 1791 } # ac_fn_cxx_check_header_mongrel
Chris@350 1792
Chris@350 1793 # ac_fn_cxx_check_header_compile LINENO HEADER VAR INCLUDES
Chris@350 1794 # ---------------------------------------------------------
Chris@350 1795 # Tests whether HEADER exists and can be compiled using the include files in
Chris@350 1796 # INCLUDES, setting the cache variable VAR accordingly.
Chris@350 1797 ac_fn_cxx_check_header_compile ()
Chris@350 1798 {
Chris@350 1799 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
Chris@350 1800 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
Chris@350 1801 $as_echo_n "checking for $2... " >&6; }
Chris@594 1802 if eval \${$3+:} false; then :
Chris@350 1803 $as_echo_n "(cached) " >&6
Chris@350 1804 else
Chris@350 1805 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 1806 /* end confdefs.h. */
Chris@350 1807 $4
Chris@350 1808 #include <$2>
Chris@350 1809 _ACEOF
Chris@350 1810 if ac_fn_cxx_try_compile "$LINENO"; then :
Chris@350 1811 eval "$3=yes"
Chris@350 1812 else
Chris@350 1813 eval "$3=no"
Chris@350 1814 fi
Chris@350 1815 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@350 1816 fi
Chris@350 1817 eval ac_res=\$$3
Chris@350 1818 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 1819 $as_echo "$ac_res" >&6; }
Chris@594 1820 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
Chris@350 1821
Chris@350 1822 } # ac_fn_cxx_check_header_compile
Chris@350 1823
Chris@350 1824 # ac_fn_cxx_try_link LINENO
Chris@350 1825 # -------------------------
Chris@350 1826 # Try to link conftest.$ac_ext, and return whether this succeeded.
Chris@350 1827 ac_fn_cxx_try_link ()
Chris@350 1828 {
Chris@350 1829 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
Chris@350 1830 rm -f conftest.$ac_objext conftest$ac_exeext
Chris@350 1831 if { { ac_try="$ac_link"
Chris@350 1832 case "(($ac_try" in
Chris@350 1833 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 1834 *) ac_try_echo=$ac_try;;
Chris@350 1835 esac
Chris@350 1836 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 1837 $as_echo "$ac_try_echo"; } >&5
Chris@350 1838 (eval "$ac_link") 2>conftest.err
Chris@350 1839 ac_status=$?
Chris@350 1840 if test -s conftest.err; then
Chris@350 1841 grep -v '^ *+' conftest.err >conftest.er1
Chris@350 1842 cat conftest.er1 >&5
Chris@350 1843 mv -f conftest.er1 conftest.err
Chris@350 1844 fi
Chris@350 1845 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 1846 test $ac_status = 0; } && {
Chris@350 1847 test -z "$ac_cxx_werror_flag" ||
Chris@350 1848 test ! -s conftest.err
Chris@350 1849 } && test -s conftest$ac_exeext && {
Chris@350 1850 test "$cross_compiling" = yes ||
Chris@594 1851 test -x conftest$ac_exeext
Chris@350 1852 }; then :
Chris@350 1853 ac_retval=0
Chris@350 1854 else
Chris@350 1855 $as_echo "$as_me: failed program was:" >&5
Chris@350 1856 sed 's/^/| /' conftest.$ac_ext >&5
Chris@350 1857
Chris@350 1858 ac_retval=1
Chris@350 1859 fi
Chris@350 1860 # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
Chris@350 1861 # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
Chris@350 1862 # interfere with the next link command; also delete a directory that is
Chris@350 1863 # left behind by Apple's compiler. We do this before executing the actions.
Chris@350 1864 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
Chris@594 1865 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
Chris@350 1866 as_fn_set_status $ac_retval
Chris@350 1867
Chris@350 1868 } # ac_fn_cxx_try_link
Chris@350 1869 cat >config.log <<_ACEOF
Chris@350 1870 This file contains any messages produced by compilers while
Chris@350 1871 running configure, to aid debugging if configure makes a mistake.
Chris@350 1872
Chris@941 1873 It was created by $as_me, which was
Chris@594 1874 generated by GNU Autoconf 2.69. Invocation command line was
Chris@350 1875
Chris@350 1876 $ $0 $@
Chris@350 1877
Chris@350 1878 _ACEOF
Chris@350 1879 exec 5>>config.log
Chris@350 1880 {
Chris@350 1881 cat <<_ASUNAME
Chris@350 1882 ## --------- ##
Chris@350 1883 ## Platform. ##
Chris@350 1884 ## --------- ##
Chris@350 1885
Chris@350 1886 hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
Chris@350 1887 uname -m = `(uname -m) 2>/dev/null || echo unknown`
Chris@350 1888 uname -r = `(uname -r) 2>/dev/null || echo unknown`
Chris@350 1889 uname -s = `(uname -s) 2>/dev/null || echo unknown`
Chris@350 1890 uname -v = `(uname -v) 2>/dev/null || echo unknown`
Chris@350 1891
Chris@350 1892 /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
Chris@350 1893 /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
Chris@350 1894
Chris@350 1895 /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
Chris@350 1896 /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
Chris@350 1897 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
Chris@350 1898 /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
Chris@350 1899 /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
Chris@350 1900 /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
Chris@350 1901 /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
Chris@350 1902
Chris@350 1903 _ASUNAME
Chris@350 1904
Chris@350 1905 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 1906 for as_dir in $PATH
Chris@350 1907 do
Chris@350 1908 IFS=$as_save_IFS
Chris@350 1909 test -z "$as_dir" && as_dir=.
Chris@350 1910 $as_echo "PATH: $as_dir"
Chris@350 1911 done
Chris@350 1912 IFS=$as_save_IFS
Chris@350 1913
Chris@350 1914 } >&5
Chris@350 1915
Chris@350 1916 cat >&5 <<_ACEOF
Chris@350 1917
Chris@350 1918
Chris@350 1919 ## ----------- ##
Chris@350 1920 ## Core tests. ##
Chris@350 1921 ## ----------- ##
Chris@350 1922
Chris@350 1923 _ACEOF
Chris@350 1924
Chris@350 1925
Chris@350 1926 # Keep a trace of the command line.
Chris@350 1927 # Strip out --no-create and --no-recursion so they do not pile up.
Chris@350 1928 # Strip out --silent because we don't want to record it for future runs.
Chris@350 1929 # Also quote any args containing shell meta-characters.
Chris@350 1930 # Make two passes to allow for proper duplicate-argument suppression.
Chris@350 1931 ac_configure_args=
Chris@350 1932 ac_configure_args0=
Chris@350 1933 ac_configure_args1=
Chris@350 1934 ac_must_keep_next=false
Chris@350 1935 for ac_pass in 1 2
Chris@350 1936 do
Chris@350 1937 for ac_arg
Chris@350 1938 do
Chris@350 1939 case $ac_arg in
Chris@350 1940 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
Chris@350 1941 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
Chris@350 1942 | -silent | --silent | --silen | --sile | --sil)
Chris@350 1943 continue ;;
Chris@350 1944 *\'*)
Chris@350 1945 ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
Chris@350 1946 esac
Chris@350 1947 case $ac_pass in
Chris@350 1948 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
Chris@350 1949 2)
Chris@350 1950 as_fn_append ac_configure_args1 " '$ac_arg'"
Chris@350 1951 if test $ac_must_keep_next = true; then
Chris@350 1952 ac_must_keep_next=false # Got value, back to normal.
Chris@350 1953 else
Chris@350 1954 case $ac_arg in
Chris@350 1955 *=* | --config-cache | -C | -disable-* | --disable-* \
Chris@350 1956 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
Chris@350 1957 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
Chris@350 1958 | -with-* | --with-* | -without-* | --without-* | --x)
Chris@350 1959 case "$ac_configure_args0 " in
Chris@350 1960 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
Chris@350 1961 esac
Chris@350 1962 ;;
Chris@350 1963 -* ) ac_must_keep_next=true ;;
Chris@350 1964 esac
Chris@350 1965 fi
Chris@350 1966 as_fn_append ac_configure_args " '$ac_arg'"
Chris@350 1967 ;;
Chris@350 1968 esac
Chris@350 1969 done
Chris@350 1970 done
Chris@350 1971 { ac_configure_args0=; unset ac_configure_args0;}
Chris@350 1972 { ac_configure_args1=; unset ac_configure_args1;}
Chris@350 1973
Chris@350 1974 # When interrupted or exit'd, cleanup temporary files, and complete
Chris@350 1975 # config.log. We remove comments because anyway the quotes in there
Chris@350 1976 # would cause problems or look ugly.
Chris@350 1977 # WARNING: Use '\'' to represent an apostrophe within the trap.
Chris@350 1978 # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
Chris@350 1979 trap 'exit_status=$?
Chris@350 1980 # Save into config.log some information that might help in debugging.
Chris@350 1981 {
Chris@350 1982 echo
Chris@350 1983
Chris@594 1984 $as_echo "## ---------------- ##
Chris@350 1985 ## Cache variables. ##
Chris@594 1986 ## ---------------- ##"
Chris@350 1987 echo
Chris@350 1988 # The following way of writing the cache mishandles newlines in values,
Chris@350 1989 (
Chris@350 1990 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
Chris@350 1991 eval ac_val=\$$ac_var
Chris@350 1992 case $ac_val in #(
Chris@350 1993 *${as_nl}*)
Chris@350 1994 case $ac_var in #(
Chris@350 1995 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
Chris@350 1996 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
Chris@350 1997 esac
Chris@350 1998 case $ac_var in #(
Chris@350 1999 _ | IFS | as_nl) ;; #(
Chris@350 2000 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
Chris@350 2001 *) { eval $ac_var=; unset $ac_var;} ;;
Chris@350 2002 esac ;;
Chris@350 2003 esac
Chris@350 2004 done
Chris@350 2005 (set) 2>&1 |
Chris@350 2006 case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
Chris@350 2007 *${as_nl}ac_space=\ *)
Chris@350 2008 sed -n \
Chris@350 2009 "s/'\''/'\''\\\\'\'''\''/g;
Chris@350 2010 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
Chris@350 2011 ;; #(
Chris@350 2012 *)
Chris@350 2013 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
Chris@350 2014 ;;
Chris@350 2015 esac |
Chris@350 2016 sort
Chris@350 2017 )
Chris@350 2018 echo
Chris@350 2019
Chris@594 2020 $as_echo "## ----------------- ##
Chris@350 2021 ## Output variables. ##
Chris@594 2022 ## ----------------- ##"
Chris@350 2023 echo
Chris@350 2024 for ac_var in $ac_subst_vars
Chris@350 2025 do
Chris@350 2026 eval ac_val=\$$ac_var
Chris@350 2027 case $ac_val in
Chris@350 2028 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
Chris@350 2029 esac
Chris@350 2030 $as_echo "$ac_var='\''$ac_val'\''"
Chris@350 2031 done | sort
Chris@350 2032 echo
Chris@350 2033
Chris@350 2034 if test -n "$ac_subst_files"; then
Chris@594 2035 $as_echo "## ------------------- ##
Chris@350 2036 ## File substitutions. ##
Chris@594 2037 ## ------------------- ##"
Chris@350 2038 echo
Chris@350 2039 for ac_var in $ac_subst_files
Chris@350 2040 do
Chris@350 2041 eval ac_val=\$$ac_var
Chris@350 2042 case $ac_val in
Chris@350 2043 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
Chris@350 2044 esac
Chris@350 2045 $as_echo "$ac_var='\''$ac_val'\''"
Chris@350 2046 done | sort
Chris@350 2047 echo
Chris@350 2048 fi
Chris@350 2049
Chris@350 2050 if test -s confdefs.h; then
Chris@594 2051 $as_echo "## ----------- ##
Chris@350 2052 ## confdefs.h. ##
Chris@594 2053 ## ----------- ##"
Chris@350 2054 echo
Chris@350 2055 cat confdefs.h
Chris@350 2056 echo
Chris@350 2057 fi
Chris@350 2058 test "$ac_signal" != 0 &&
Chris@350 2059 $as_echo "$as_me: caught signal $ac_signal"
Chris@350 2060 $as_echo "$as_me: exit $exit_status"
Chris@350 2061 } >&5
Chris@350 2062 rm -f core *.core core.conftest.* &&
Chris@350 2063 rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
Chris@350 2064 exit $exit_status
Chris@350 2065 ' 0
Chris@350 2066 for ac_signal in 1 2 13 15; do
Chris@350 2067 trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
Chris@350 2068 done
Chris@350 2069 ac_signal=0
Chris@350 2070
Chris@350 2071 # confdefs.h avoids OS command line length limits that DEFS can exceed.
Chris@350 2072 rm -f -r conftest* confdefs.h
Chris@350 2073
Chris@350 2074 $as_echo "/* confdefs.h */" > confdefs.h
Chris@350 2075
Chris@350 2076 # Predefined preprocessor variables.
Chris@350 2077
Chris@350 2078 cat >>confdefs.h <<_ACEOF
Chris@350 2079 #define PACKAGE_NAME "$PACKAGE_NAME"
Chris@350 2080 _ACEOF
Chris@350 2081
Chris@350 2082 cat >>confdefs.h <<_ACEOF
Chris@350 2083 #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
Chris@350 2084 _ACEOF
Chris@350 2085
Chris@350 2086 cat >>confdefs.h <<_ACEOF
Chris@350 2087 #define PACKAGE_VERSION "$PACKAGE_VERSION"
Chris@350 2088 _ACEOF
Chris@350 2089
Chris@350 2090 cat >>confdefs.h <<_ACEOF
Chris@350 2091 #define PACKAGE_STRING "$PACKAGE_STRING"
Chris@350 2092 _ACEOF
Chris@350 2093
Chris@350 2094 cat >>confdefs.h <<_ACEOF
Chris@350 2095 #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
Chris@350 2096 _ACEOF
Chris@350 2097
Chris@350 2098 cat >>confdefs.h <<_ACEOF
Chris@350 2099 #define PACKAGE_URL "$PACKAGE_URL"
Chris@350 2100 _ACEOF
Chris@350 2101
Chris@350 2102
Chris@350 2103 # Let the site file select an alternate cache file if it wants to.
Chris@350 2104 # Prefer an explicitly selected file to automatically selected ones.
Chris@350 2105 ac_site_file1=NONE
Chris@350 2106 ac_site_file2=NONE
Chris@350 2107 if test -n "$CONFIG_SITE"; then
Chris@594 2108 # We do not want a PATH search for config.site.
Chris@594 2109 case $CONFIG_SITE in #((
Chris@594 2110 -*) ac_site_file1=./$CONFIG_SITE;;
Chris@594 2111 */*) ac_site_file1=$CONFIG_SITE;;
Chris@594 2112 *) ac_site_file1=./$CONFIG_SITE;;
Chris@594 2113 esac
Chris@350 2114 elif test "x$prefix" != xNONE; then
Chris@350 2115 ac_site_file1=$prefix/share/config.site
Chris@350 2116 ac_site_file2=$prefix/etc/config.site
Chris@350 2117 else
Chris@350 2118 ac_site_file1=$ac_default_prefix/share/config.site
Chris@350 2119 ac_site_file2=$ac_default_prefix/etc/config.site
Chris@350 2120 fi
Chris@350 2121 for ac_site_file in "$ac_site_file1" "$ac_site_file2"
Chris@350 2122 do
Chris@350 2123 test "x$ac_site_file" = xNONE && continue
Chris@350 2124 if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
Chris@350 2125 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
Chris@350 2126 $as_echo "$as_me: loading site script $ac_site_file" >&6;}
Chris@350 2127 sed 's/^/| /' "$ac_site_file" >&5
Chris@594 2128 . "$ac_site_file" \
Chris@594 2129 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
Chris@594 2130 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
Chris@594 2131 as_fn_error $? "failed to load site script $ac_site_file
Chris@594 2132 See \`config.log' for more details" "$LINENO" 5; }
Chris@350 2133 fi
Chris@350 2134 done
Chris@350 2135
Chris@350 2136 if test -r "$cache_file"; then
Chris@350 2137 # Some versions of bash will fail to source /dev/null (special files
Chris@350 2138 # actually), so we avoid doing that. DJGPP emulates it as a regular file.
Chris@350 2139 if test /dev/null != "$cache_file" && test -f "$cache_file"; then
Chris@350 2140 { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
Chris@350 2141 $as_echo "$as_me: loading cache $cache_file" >&6;}
Chris@350 2142 case $cache_file in
Chris@350 2143 [\\/]* | ?:[\\/]* ) . "$cache_file";;
Chris@350 2144 *) . "./$cache_file";;
Chris@350 2145 esac
Chris@350 2146 fi
Chris@350 2147 else
Chris@350 2148 { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
Chris@350 2149 $as_echo "$as_me: creating cache $cache_file" >&6;}
Chris@350 2150 >$cache_file
Chris@350 2151 fi
Chris@350 2152
Chris@350 2153 # Check that the precious variables saved in the cache have kept the same
Chris@350 2154 # value.
Chris@350 2155 ac_cache_corrupted=false
Chris@350 2156 for ac_var in $ac_precious_vars; do
Chris@350 2157 eval ac_old_set=\$ac_cv_env_${ac_var}_set
Chris@350 2158 eval ac_new_set=\$ac_env_${ac_var}_set
Chris@350 2159 eval ac_old_val=\$ac_cv_env_${ac_var}_value
Chris@350 2160 eval ac_new_val=\$ac_env_${ac_var}_value
Chris@350 2161 case $ac_old_set,$ac_new_set in
Chris@350 2162 set,)
Chris@350 2163 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
Chris@350 2164 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
Chris@350 2165 ac_cache_corrupted=: ;;
Chris@350 2166 ,set)
Chris@350 2167 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
Chris@350 2168 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
Chris@350 2169 ac_cache_corrupted=: ;;
Chris@350 2170 ,);;
Chris@350 2171 *)
Chris@350 2172 if test "x$ac_old_val" != "x$ac_new_val"; then
Chris@350 2173 # differences in whitespace do not lead to failure.
Chris@350 2174 ac_old_val_w=`echo x $ac_old_val`
Chris@350 2175 ac_new_val_w=`echo x $ac_new_val`
Chris@350 2176 if test "$ac_old_val_w" != "$ac_new_val_w"; then
Chris@350 2177 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
Chris@350 2178 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
Chris@350 2179 ac_cache_corrupted=:
Chris@350 2180 else
Chris@350 2181 { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
Chris@350 2182 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
Chris@350 2183 eval $ac_var=\$ac_old_val
Chris@350 2184 fi
Chris@350 2185 { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
Chris@350 2186 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
Chris@350 2187 { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
Chris@350 2188 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
Chris@350 2189 fi;;
Chris@350 2190 esac
Chris@350 2191 # Pass precious variables to config.status.
Chris@350 2192 if test "$ac_new_set" = set; then
Chris@350 2193 case $ac_new_val in
Chris@350 2194 *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
Chris@350 2195 *) ac_arg=$ac_var=$ac_new_val ;;
Chris@350 2196 esac
Chris@350 2197 case " $ac_configure_args " in
Chris@350 2198 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
Chris@350 2199 *) as_fn_append ac_configure_args " '$ac_arg'" ;;
Chris@350 2200 esac
Chris@350 2201 fi
Chris@350 2202 done
Chris@350 2203 if $ac_cache_corrupted; then
Chris@350 2204 { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
Chris@350 2205 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
Chris@350 2206 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
Chris@350 2207 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
Chris@594 2208 as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
Chris@350 2209 fi
Chris@350 2210 ## -------------------- ##
Chris@350 2211 ## Main body of script. ##
Chris@350 2212 ## -------------------- ##
Chris@350 2213
Chris@350 2214 ac_ext=c
Chris@350 2215 ac_cpp='$CPP $CPPFLAGS'
Chris@350 2216 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Chris@350 2217 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
Chris@350 2218 ac_compiler_gnu=$ac_cv_c_compiler_gnu
Chris@350 2219
Chris@350 2220
Chris@350 2221
Chris@350 2222
Chris@350 2223
Chris@350 2224 # Autoconf will set CXXFLAGS; we don't usually want it to, because we
Chris@350 2225 # either define our own flags (at least if GCC is in use) or else use
Chris@350 2226 # the user's preferences. We need to ensure CXXFLAGS is only set if
Chris@350 2227 # the user has expressly set it. So, save the user's (or empty)
Chris@350 2228 # setting now and restore it after Autoconf has done its bit of
Chris@350 2229 # piddling about.
Chris@350 2230 USER_CXXFLAGS="$CXXFLAGS"
Chris@350 2231
Chris@405 2232 # If the user supplied CFLAGS but not CXXFLAGS, use CFLAGS instead
Chris@405 2233 if test x"$USER_CXXFLAGS" = x; then
Chris@405 2234 if test x"$CFLAGS" != x; then
Chris@405 2235 USER_CXXFLAGS="$CFLAGS"
Chris@405 2236 fi
Chris@405 2237 fi
Chris@405 2238
Chris@350 2239 ac_ext=cpp
Chris@350 2240 ac_cpp='$CXXCPP $CPPFLAGS'
Chris@350 2241 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Chris@350 2242 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
Chris@350 2243 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
Chris@350 2244
Chris@350 2245
Chris@350 2246 ac_ext=c
Chris@350 2247 ac_cpp='$CPP $CPPFLAGS'
Chris@350 2248 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Chris@350 2249 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
Chris@350 2250 ac_compiler_gnu=$ac_cv_c_compiler_gnu
Chris@350 2251 if test -n "$ac_tool_prefix"; then
Chris@350 2252 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
Chris@350 2253 set dummy ${ac_tool_prefix}gcc; ac_word=$2
Chris@350 2254 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 2255 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 2256 if ${ac_cv_prog_CC+:} false; then :
Chris@350 2257 $as_echo_n "(cached) " >&6
Chris@350 2258 else
Chris@350 2259 if test -n "$CC"; then
Chris@350 2260 ac_cv_prog_CC="$CC" # Let the user override the test.
Chris@350 2261 else
Chris@350 2262 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 2263 for as_dir in $PATH
Chris@350 2264 do
Chris@350 2265 IFS=$as_save_IFS
Chris@350 2266 test -z "$as_dir" && as_dir=.
Chris@350 2267 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 2268 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 2269 ac_cv_prog_CC="${ac_tool_prefix}gcc"
Chris@350 2270 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 2271 break 2
Chris@350 2272 fi
Chris@350 2273 done
Chris@350 2274 done
Chris@350 2275 IFS=$as_save_IFS
Chris@350 2276
Chris@350 2277 fi
Chris@350 2278 fi
Chris@350 2279 CC=$ac_cv_prog_CC
Chris@350 2280 if test -n "$CC"; then
Chris@350 2281 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
Chris@350 2282 $as_echo "$CC" >&6; }
Chris@350 2283 else
Chris@350 2284 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 2285 $as_echo "no" >&6; }
Chris@350 2286 fi
Chris@350 2287
Chris@350 2288
Chris@350 2289 fi
Chris@350 2290 if test -z "$ac_cv_prog_CC"; then
Chris@350 2291 ac_ct_CC=$CC
Chris@350 2292 # Extract the first word of "gcc", so it can be a program name with args.
Chris@350 2293 set dummy gcc; ac_word=$2
Chris@350 2294 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 2295 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 2296 if ${ac_cv_prog_ac_ct_CC+:} false; then :
Chris@350 2297 $as_echo_n "(cached) " >&6
Chris@350 2298 else
Chris@350 2299 if test -n "$ac_ct_CC"; then
Chris@350 2300 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
Chris@350 2301 else
Chris@350 2302 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 2303 for as_dir in $PATH
Chris@350 2304 do
Chris@350 2305 IFS=$as_save_IFS
Chris@350 2306 test -z "$as_dir" && as_dir=.
Chris@350 2307 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 2308 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 2309 ac_cv_prog_ac_ct_CC="gcc"
Chris@350 2310 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 2311 break 2
Chris@350 2312 fi
Chris@350 2313 done
Chris@350 2314 done
Chris@350 2315 IFS=$as_save_IFS
Chris@350 2316
Chris@350 2317 fi
Chris@350 2318 fi
Chris@350 2319 ac_ct_CC=$ac_cv_prog_ac_ct_CC
Chris@350 2320 if test -n "$ac_ct_CC"; then
Chris@350 2321 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
Chris@350 2322 $as_echo "$ac_ct_CC" >&6; }
Chris@350 2323 else
Chris@350 2324 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 2325 $as_echo "no" >&6; }
Chris@350 2326 fi
Chris@350 2327
Chris@350 2328 if test "x$ac_ct_CC" = x; then
Chris@350 2329 CC=""
Chris@350 2330 else
Chris@350 2331 case $cross_compiling:$ac_tool_warned in
Chris@350 2332 yes:)
Chris@350 2333 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
Chris@350 2334 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
Chris@350 2335 ac_tool_warned=yes ;;
Chris@350 2336 esac
Chris@350 2337 CC=$ac_ct_CC
Chris@350 2338 fi
Chris@350 2339 else
Chris@350 2340 CC="$ac_cv_prog_CC"
Chris@350 2341 fi
Chris@350 2342
Chris@350 2343 if test -z "$CC"; then
Chris@350 2344 if test -n "$ac_tool_prefix"; then
Chris@350 2345 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
Chris@350 2346 set dummy ${ac_tool_prefix}cc; ac_word=$2
Chris@350 2347 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 2348 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 2349 if ${ac_cv_prog_CC+:} false; then :
Chris@350 2350 $as_echo_n "(cached) " >&6
Chris@350 2351 else
Chris@350 2352 if test -n "$CC"; then
Chris@350 2353 ac_cv_prog_CC="$CC" # Let the user override the test.
Chris@350 2354 else
Chris@350 2355 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 2356 for as_dir in $PATH
Chris@350 2357 do
Chris@350 2358 IFS=$as_save_IFS
Chris@350 2359 test -z "$as_dir" && as_dir=.
Chris@350 2360 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 2361 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 2362 ac_cv_prog_CC="${ac_tool_prefix}cc"
Chris@350 2363 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 2364 break 2
Chris@350 2365 fi
Chris@350 2366 done
Chris@350 2367 done
Chris@350 2368 IFS=$as_save_IFS
Chris@350 2369
Chris@350 2370 fi
Chris@350 2371 fi
Chris@350 2372 CC=$ac_cv_prog_CC
Chris@350 2373 if test -n "$CC"; then
Chris@350 2374 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
Chris@350 2375 $as_echo "$CC" >&6; }
Chris@350 2376 else
Chris@350 2377 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 2378 $as_echo "no" >&6; }
Chris@350 2379 fi
Chris@350 2380
Chris@350 2381
Chris@350 2382 fi
Chris@350 2383 fi
Chris@350 2384 if test -z "$CC"; then
Chris@350 2385 # Extract the first word of "cc", so it can be a program name with args.
Chris@350 2386 set dummy cc; ac_word=$2
Chris@350 2387 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 2388 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 2389 if ${ac_cv_prog_CC+:} false; then :
Chris@350 2390 $as_echo_n "(cached) " >&6
Chris@350 2391 else
Chris@350 2392 if test -n "$CC"; then
Chris@350 2393 ac_cv_prog_CC="$CC" # Let the user override the test.
Chris@350 2394 else
Chris@350 2395 ac_prog_rejected=no
Chris@350 2396 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 2397 for as_dir in $PATH
Chris@350 2398 do
Chris@350 2399 IFS=$as_save_IFS
Chris@350 2400 test -z "$as_dir" && as_dir=.
Chris@350 2401 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 2402 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 2403 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
Chris@350 2404 ac_prog_rejected=yes
Chris@350 2405 continue
Chris@350 2406 fi
Chris@350 2407 ac_cv_prog_CC="cc"
Chris@350 2408 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 2409 break 2
Chris@350 2410 fi
Chris@350 2411 done
Chris@350 2412 done
Chris@350 2413 IFS=$as_save_IFS
Chris@350 2414
Chris@350 2415 if test $ac_prog_rejected = yes; then
Chris@350 2416 # We found a bogon in the path, so make sure we never use it.
Chris@350 2417 set dummy $ac_cv_prog_CC
Chris@350 2418 shift
Chris@350 2419 if test $# != 0; then
Chris@350 2420 # We chose a different compiler from the bogus one.
Chris@350 2421 # However, it has the same basename, so the bogon will be chosen
Chris@350 2422 # first if we set CC to just the basename; use the full file name.
Chris@350 2423 shift
Chris@350 2424 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
Chris@350 2425 fi
Chris@350 2426 fi
Chris@350 2427 fi
Chris@350 2428 fi
Chris@350 2429 CC=$ac_cv_prog_CC
Chris@350 2430 if test -n "$CC"; then
Chris@350 2431 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
Chris@350 2432 $as_echo "$CC" >&6; }
Chris@350 2433 else
Chris@350 2434 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 2435 $as_echo "no" >&6; }
Chris@350 2436 fi
Chris@350 2437
Chris@350 2438
Chris@350 2439 fi
Chris@350 2440 if test -z "$CC"; then
Chris@350 2441 if test -n "$ac_tool_prefix"; then
Chris@350 2442 for ac_prog in cl.exe
Chris@350 2443 do
Chris@350 2444 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
Chris@350 2445 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
Chris@350 2446 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 2447 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 2448 if ${ac_cv_prog_CC+:} false; then :
Chris@350 2449 $as_echo_n "(cached) " >&6
Chris@350 2450 else
Chris@350 2451 if test -n "$CC"; then
Chris@350 2452 ac_cv_prog_CC="$CC" # Let the user override the test.
Chris@350 2453 else
Chris@350 2454 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 2455 for as_dir in $PATH
Chris@350 2456 do
Chris@350 2457 IFS=$as_save_IFS
Chris@350 2458 test -z "$as_dir" && as_dir=.
Chris@350 2459 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 2460 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 2461 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
Chris@350 2462 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 2463 break 2
Chris@350 2464 fi
Chris@350 2465 done
Chris@350 2466 done
Chris@350 2467 IFS=$as_save_IFS
Chris@350 2468
Chris@350 2469 fi
Chris@350 2470 fi
Chris@350 2471 CC=$ac_cv_prog_CC
Chris@350 2472 if test -n "$CC"; then
Chris@350 2473 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
Chris@350 2474 $as_echo "$CC" >&6; }
Chris@350 2475 else
Chris@350 2476 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 2477 $as_echo "no" >&6; }
Chris@350 2478 fi
Chris@350 2479
Chris@350 2480
Chris@350 2481 test -n "$CC" && break
Chris@350 2482 done
Chris@350 2483 fi
Chris@350 2484 if test -z "$CC"; then
Chris@350 2485 ac_ct_CC=$CC
Chris@350 2486 for ac_prog in cl.exe
Chris@350 2487 do
Chris@350 2488 # Extract the first word of "$ac_prog", so it can be a program name with args.
Chris@350 2489 set dummy $ac_prog; ac_word=$2
Chris@350 2490 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 2491 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 2492 if ${ac_cv_prog_ac_ct_CC+:} false; then :
Chris@350 2493 $as_echo_n "(cached) " >&6
Chris@350 2494 else
Chris@350 2495 if test -n "$ac_ct_CC"; then
Chris@350 2496 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
Chris@350 2497 else
Chris@350 2498 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 2499 for as_dir in $PATH
Chris@350 2500 do
Chris@350 2501 IFS=$as_save_IFS
Chris@350 2502 test -z "$as_dir" && as_dir=.
Chris@350 2503 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 2504 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 2505 ac_cv_prog_ac_ct_CC="$ac_prog"
Chris@350 2506 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 2507 break 2
Chris@350 2508 fi
Chris@350 2509 done
Chris@350 2510 done
Chris@350 2511 IFS=$as_save_IFS
Chris@350 2512
Chris@350 2513 fi
Chris@350 2514 fi
Chris@350 2515 ac_ct_CC=$ac_cv_prog_ac_ct_CC
Chris@350 2516 if test -n "$ac_ct_CC"; then
Chris@350 2517 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
Chris@350 2518 $as_echo "$ac_ct_CC" >&6; }
Chris@350 2519 else
Chris@350 2520 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 2521 $as_echo "no" >&6; }
Chris@350 2522 fi
Chris@350 2523
Chris@350 2524
Chris@350 2525 test -n "$ac_ct_CC" && break
Chris@350 2526 done
Chris@350 2527
Chris@350 2528 if test "x$ac_ct_CC" = x; then
Chris@350 2529 CC=""
Chris@350 2530 else
Chris@350 2531 case $cross_compiling:$ac_tool_warned in
Chris@350 2532 yes:)
Chris@350 2533 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
Chris@350 2534 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
Chris@350 2535 ac_tool_warned=yes ;;
Chris@350 2536 esac
Chris@350 2537 CC=$ac_ct_CC
Chris@350 2538 fi
Chris@350 2539 fi
Chris@350 2540
Chris@350 2541 fi
Chris@350 2542
Chris@350 2543
Chris@350 2544 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
Chris@350 2545 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
Chris@594 2546 as_fn_error $? "no acceptable C compiler found in \$PATH
Chris@594 2547 See \`config.log' for more details" "$LINENO" 5; }
Chris@350 2548
Chris@350 2549 # Provide some information about the compiler.
Chris@350 2550 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
Chris@350 2551 set X $ac_compile
Chris@350 2552 ac_compiler=$2
Chris@350 2553 for ac_option in --version -v -V -qversion; do
Chris@350 2554 { { ac_try="$ac_compiler $ac_option >&5"
Chris@350 2555 case "(($ac_try" in
Chris@350 2556 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 2557 *) ac_try_echo=$ac_try;;
Chris@350 2558 esac
Chris@350 2559 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 2560 $as_echo "$ac_try_echo"; } >&5
Chris@350 2561 (eval "$ac_compiler $ac_option >&5") 2>conftest.err
Chris@350 2562 ac_status=$?
Chris@350 2563 if test -s conftest.err; then
Chris@350 2564 sed '10a\
Chris@350 2565 ... rest of stderr output deleted ...
Chris@350 2566 10q' conftest.err >conftest.er1
Chris@350 2567 cat conftest.er1 >&5
Chris@350 2568 fi
Chris@350 2569 rm -f conftest.er1 conftest.err
Chris@350 2570 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 2571 test $ac_status = 0; }
Chris@350 2572 done
Chris@350 2573
Chris@350 2574 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 2575 /* end confdefs.h. */
Chris@350 2576
Chris@350 2577 int
Chris@350 2578 main ()
Chris@350 2579 {
Chris@350 2580
Chris@350 2581 ;
Chris@350 2582 return 0;
Chris@350 2583 }
Chris@350 2584 _ACEOF
Chris@350 2585 ac_clean_files_save=$ac_clean_files
Chris@350 2586 ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
Chris@350 2587 # Try to create an executable without -o first, disregard a.out.
Chris@350 2588 # It will help us diagnose broken compilers, and finding out an intuition
Chris@350 2589 # of exeext.
Chris@350 2590 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
Chris@350 2591 $as_echo_n "checking whether the C compiler works... " >&6; }
Chris@350 2592 ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
Chris@350 2593
Chris@350 2594 # The possible output files:
Chris@350 2595 ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
Chris@350 2596
Chris@350 2597 ac_rmfiles=
Chris@350 2598 for ac_file in $ac_files
Chris@350 2599 do
Chris@350 2600 case $ac_file in
Chris@350 2601 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
Chris@350 2602 * ) ac_rmfiles="$ac_rmfiles $ac_file";;
Chris@350 2603 esac
Chris@350 2604 done
Chris@350 2605 rm -f $ac_rmfiles
Chris@350 2606
Chris@350 2607 if { { ac_try="$ac_link_default"
Chris@350 2608 case "(($ac_try" in
Chris@350 2609 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 2610 *) ac_try_echo=$ac_try;;
Chris@350 2611 esac
Chris@350 2612 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 2613 $as_echo "$ac_try_echo"; } >&5
Chris@350 2614 (eval "$ac_link_default") 2>&5
Chris@350 2615 ac_status=$?
Chris@350 2616 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 2617 test $ac_status = 0; }; then :
Chris@350 2618 # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
Chris@350 2619 # So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
Chris@350 2620 # in a Makefile. We should not override ac_cv_exeext if it was cached,
Chris@350 2621 # so that the user can short-circuit this test for compilers unknown to
Chris@350 2622 # Autoconf.
Chris@350 2623 for ac_file in $ac_files ''
Chris@350 2624 do
Chris@350 2625 test -f "$ac_file" || continue
Chris@350 2626 case $ac_file in
Chris@350 2627 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
Chris@350 2628 ;;
Chris@350 2629 [ab].out )
Chris@350 2630 # We found the default executable, but exeext='' is most
Chris@350 2631 # certainly right.
Chris@350 2632 break;;
Chris@350 2633 *.* )
Chris@350 2634 if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
Chris@350 2635 then :; else
Chris@350 2636 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
Chris@350 2637 fi
Chris@350 2638 # We set ac_cv_exeext here because the later test for it is not
Chris@350 2639 # safe: cross compilers may not add the suffix if given an `-o'
Chris@350 2640 # argument, so we may need to know it at that point already.
Chris@350 2641 # Even if this section looks crufty: it has the advantage of
Chris@350 2642 # actually working.
Chris@350 2643 break;;
Chris@350 2644 * )
Chris@350 2645 break;;
Chris@350 2646 esac
Chris@350 2647 done
Chris@350 2648 test "$ac_cv_exeext" = no && ac_cv_exeext=
Chris@350 2649
Chris@350 2650 else
Chris@350 2651 ac_file=''
Chris@350 2652 fi
Chris@350 2653 if test -z "$ac_file"; then :
Chris@350 2654 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 2655 $as_echo "no" >&6; }
Chris@350 2656 $as_echo "$as_me: failed program was:" >&5
Chris@350 2657 sed 's/^/| /' conftest.$ac_ext >&5
Chris@350 2658
Chris@350 2659 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
Chris@350 2660 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
Chris@594 2661 as_fn_error 77 "C compiler cannot create executables
Chris@594 2662 See \`config.log' for more details" "$LINENO" 5; }
Chris@350 2663 else
Chris@350 2664 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 2665 $as_echo "yes" >&6; }
Chris@350 2666 fi
Chris@350 2667 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
Chris@350 2668 $as_echo_n "checking for C compiler default output file name... " >&6; }
Chris@350 2669 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
Chris@350 2670 $as_echo "$ac_file" >&6; }
Chris@350 2671 ac_exeext=$ac_cv_exeext
Chris@350 2672
Chris@350 2673 rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
Chris@350 2674 ac_clean_files=$ac_clean_files_save
Chris@350 2675 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
Chris@350 2676 $as_echo_n "checking for suffix of executables... " >&6; }
Chris@350 2677 if { { ac_try="$ac_link"
Chris@350 2678 case "(($ac_try" in
Chris@350 2679 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 2680 *) ac_try_echo=$ac_try;;
Chris@350 2681 esac
Chris@350 2682 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 2683 $as_echo "$ac_try_echo"; } >&5
Chris@350 2684 (eval "$ac_link") 2>&5
Chris@350 2685 ac_status=$?
Chris@350 2686 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 2687 test $ac_status = 0; }; then :
Chris@350 2688 # If both `conftest.exe' and `conftest' are `present' (well, observable)
Chris@350 2689 # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
Chris@350 2690 # work properly (i.e., refer to `conftest.exe'), while it won't with
Chris@350 2691 # `rm'.
Chris@350 2692 for ac_file in conftest.exe conftest conftest.*; do
Chris@350 2693 test -f "$ac_file" || continue
Chris@350 2694 case $ac_file in
Chris@350 2695 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
Chris@350 2696 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
Chris@350 2697 break;;
Chris@350 2698 * ) break;;
Chris@350 2699 esac
Chris@350 2700 done
Chris@350 2701 else
Chris@350 2702 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
Chris@350 2703 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
Chris@594 2704 as_fn_error $? "cannot compute suffix of executables: cannot compile and link
Chris@594 2705 See \`config.log' for more details" "$LINENO" 5; }
Chris@350 2706 fi
Chris@350 2707 rm -f conftest conftest$ac_cv_exeext
Chris@350 2708 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
Chris@350 2709 $as_echo "$ac_cv_exeext" >&6; }
Chris@350 2710
Chris@350 2711 rm -f conftest.$ac_ext
Chris@350 2712 EXEEXT=$ac_cv_exeext
Chris@350 2713 ac_exeext=$EXEEXT
Chris@350 2714 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 2715 /* end confdefs.h. */
Chris@350 2716 #include <stdio.h>
Chris@350 2717 int
Chris@350 2718 main ()
Chris@350 2719 {
Chris@350 2720 FILE *f = fopen ("conftest.out", "w");
Chris@350 2721 return ferror (f) || fclose (f) != 0;
Chris@350 2722
Chris@350 2723 ;
Chris@350 2724 return 0;
Chris@350 2725 }
Chris@350 2726 _ACEOF
Chris@350 2727 ac_clean_files="$ac_clean_files conftest.out"
Chris@350 2728 # Check that the compiler produces executables we can run. If not, either
Chris@350 2729 # the compiler is broken, or we cross compile.
Chris@350 2730 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
Chris@350 2731 $as_echo_n "checking whether we are cross compiling... " >&6; }
Chris@350 2732 if test "$cross_compiling" != yes; then
Chris@350 2733 { { ac_try="$ac_link"
Chris@350 2734 case "(($ac_try" in
Chris@350 2735 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 2736 *) ac_try_echo=$ac_try;;
Chris@350 2737 esac
Chris@350 2738 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 2739 $as_echo "$ac_try_echo"; } >&5
Chris@350 2740 (eval "$ac_link") 2>&5
Chris@350 2741 ac_status=$?
Chris@350 2742 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 2743 test $ac_status = 0; }
Chris@350 2744 if { ac_try='./conftest$ac_cv_exeext'
Chris@350 2745 { { case "(($ac_try" in
Chris@350 2746 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 2747 *) ac_try_echo=$ac_try;;
Chris@350 2748 esac
Chris@350 2749 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 2750 $as_echo "$ac_try_echo"; } >&5
Chris@350 2751 (eval "$ac_try") 2>&5
Chris@350 2752 ac_status=$?
Chris@350 2753 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 2754 test $ac_status = 0; }; }; then
Chris@350 2755 cross_compiling=no
Chris@350 2756 else
Chris@350 2757 if test "$cross_compiling" = maybe; then
Chris@350 2758 cross_compiling=yes
Chris@350 2759 else
Chris@350 2760 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
Chris@350 2761 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
Chris@594 2762 as_fn_error $? "cannot run C compiled programs.
Chris@350 2763 If you meant to cross compile, use \`--host'.
Chris@594 2764 See \`config.log' for more details" "$LINENO" 5; }
Chris@350 2765 fi
Chris@350 2766 fi
Chris@350 2767 fi
Chris@350 2768 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
Chris@350 2769 $as_echo "$cross_compiling" >&6; }
Chris@350 2770
Chris@350 2771 rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
Chris@350 2772 ac_clean_files=$ac_clean_files_save
Chris@350 2773 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
Chris@350 2774 $as_echo_n "checking for suffix of object files... " >&6; }
Chris@594 2775 if ${ac_cv_objext+:} false; then :
Chris@350 2776 $as_echo_n "(cached) " >&6
Chris@350 2777 else
Chris@350 2778 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 2779 /* end confdefs.h. */
Chris@350 2780
Chris@350 2781 int
Chris@350 2782 main ()
Chris@350 2783 {
Chris@350 2784
Chris@350 2785 ;
Chris@350 2786 return 0;
Chris@350 2787 }
Chris@350 2788 _ACEOF
Chris@350 2789 rm -f conftest.o conftest.obj
Chris@350 2790 if { { ac_try="$ac_compile"
Chris@350 2791 case "(($ac_try" in
Chris@350 2792 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 2793 *) ac_try_echo=$ac_try;;
Chris@350 2794 esac
Chris@350 2795 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 2796 $as_echo "$ac_try_echo"; } >&5
Chris@350 2797 (eval "$ac_compile") 2>&5
Chris@350 2798 ac_status=$?
Chris@350 2799 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 2800 test $ac_status = 0; }; then :
Chris@350 2801 for ac_file in conftest.o conftest.obj conftest.*; do
Chris@350 2802 test -f "$ac_file" || continue;
Chris@350 2803 case $ac_file in
Chris@350 2804 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
Chris@350 2805 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
Chris@350 2806 break;;
Chris@350 2807 esac
Chris@350 2808 done
Chris@350 2809 else
Chris@350 2810 $as_echo "$as_me: failed program was:" >&5
Chris@350 2811 sed 's/^/| /' conftest.$ac_ext >&5
Chris@350 2812
Chris@350 2813 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
Chris@350 2814 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
Chris@594 2815 as_fn_error $? "cannot compute suffix of object files: cannot compile
Chris@594 2816 See \`config.log' for more details" "$LINENO" 5; }
Chris@350 2817 fi
Chris@350 2818 rm -f conftest.$ac_cv_objext conftest.$ac_ext
Chris@350 2819 fi
Chris@350 2820 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
Chris@350 2821 $as_echo "$ac_cv_objext" >&6; }
Chris@350 2822 OBJEXT=$ac_cv_objext
Chris@350 2823 ac_objext=$OBJEXT
Chris@350 2824 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
Chris@350 2825 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
Chris@594 2826 if ${ac_cv_c_compiler_gnu+:} false; then :
Chris@350 2827 $as_echo_n "(cached) " >&6
Chris@350 2828 else
Chris@350 2829 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 2830 /* end confdefs.h. */
Chris@350 2831
Chris@350 2832 int
Chris@350 2833 main ()
Chris@350 2834 {
Chris@350 2835 #ifndef __GNUC__
Chris@350 2836 choke me
Chris@350 2837 #endif
Chris@350 2838
Chris@350 2839 ;
Chris@350 2840 return 0;
Chris@350 2841 }
Chris@350 2842 _ACEOF
Chris@350 2843 if ac_fn_c_try_compile "$LINENO"; then :
Chris@350 2844 ac_compiler_gnu=yes
Chris@350 2845 else
Chris@350 2846 ac_compiler_gnu=no
Chris@350 2847 fi
Chris@350 2848 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@350 2849 ac_cv_c_compiler_gnu=$ac_compiler_gnu
Chris@350 2850
Chris@350 2851 fi
Chris@350 2852 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
Chris@350 2853 $as_echo "$ac_cv_c_compiler_gnu" >&6; }
Chris@350 2854 if test $ac_compiler_gnu = yes; then
Chris@350 2855 GCC=yes
Chris@350 2856 else
Chris@350 2857 GCC=
Chris@350 2858 fi
Chris@350 2859 ac_test_CFLAGS=${CFLAGS+set}
Chris@350 2860 ac_save_CFLAGS=$CFLAGS
Chris@350 2861 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
Chris@350 2862 $as_echo_n "checking whether $CC accepts -g... " >&6; }
Chris@594 2863 if ${ac_cv_prog_cc_g+:} false; then :
Chris@350 2864 $as_echo_n "(cached) " >&6
Chris@350 2865 else
Chris@350 2866 ac_save_c_werror_flag=$ac_c_werror_flag
Chris@350 2867 ac_c_werror_flag=yes
Chris@350 2868 ac_cv_prog_cc_g=no
Chris@350 2869 CFLAGS="-g"
Chris@350 2870 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 2871 /* end confdefs.h. */
Chris@350 2872
Chris@350 2873 int
Chris@350 2874 main ()
Chris@350 2875 {
Chris@350 2876
Chris@350 2877 ;
Chris@350 2878 return 0;
Chris@350 2879 }
Chris@350 2880 _ACEOF
Chris@350 2881 if ac_fn_c_try_compile "$LINENO"; then :
Chris@350 2882 ac_cv_prog_cc_g=yes
Chris@350 2883 else
Chris@350 2884 CFLAGS=""
Chris@350 2885 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 2886 /* end confdefs.h. */
Chris@350 2887
Chris@350 2888 int
Chris@350 2889 main ()
Chris@350 2890 {
Chris@350 2891
Chris@350 2892 ;
Chris@350 2893 return 0;
Chris@350 2894 }
Chris@350 2895 _ACEOF
Chris@350 2896 if ac_fn_c_try_compile "$LINENO"; then :
Chris@350 2897
Chris@350 2898 else
Chris@350 2899 ac_c_werror_flag=$ac_save_c_werror_flag
Chris@350 2900 CFLAGS="-g"
Chris@350 2901 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 2902 /* end confdefs.h. */
Chris@350 2903
Chris@350 2904 int
Chris@350 2905 main ()
Chris@350 2906 {
Chris@350 2907
Chris@350 2908 ;
Chris@350 2909 return 0;
Chris@350 2910 }
Chris@350 2911 _ACEOF
Chris@350 2912 if ac_fn_c_try_compile "$LINENO"; then :
Chris@350 2913 ac_cv_prog_cc_g=yes
Chris@350 2914 fi
Chris@350 2915 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@350 2916 fi
Chris@350 2917 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@350 2918 fi
Chris@350 2919 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@350 2920 ac_c_werror_flag=$ac_save_c_werror_flag
Chris@350 2921 fi
Chris@350 2922 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
Chris@350 2923 $as_echo "$ac_cv_prog_cc_g" >&6; }
Chris@350 2924 if test "$ac_test_CFLAGS" = set; then
Chris@350 2925 CFLAGS=$ac_save_CFLAGS
Chris@350 2926 elif test $ac_cv_prog_cc_g = yes; then
Chris@350 2927 if test "$GCC" = yes; then
Chris@350 2928 CFLAGS="-g -O2"
Chris@350 2929 else
Chris@350 2930 CFLAGS="-g"
Chris@350 2931 fi
Chris@350 2932 else
Chris@350 2933 if test "$GCC" = yes; then
Chris@350 2934 CFLAGS="-O2"
Chris@350 2935 else
Chris@350 2936 CFLAGS=
Chris@350 2937 fi
Chris@350 2938 fi
Chris@350 2939 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
Chris@350 2940 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
Chris@594 2941 if ${ac_cv_prog_cc_c89+:} false; then :
Chris@350 2942 $as_echo_n "(cached) " >&6
Chris@350 2943 else
Chris@350 2944 ac_cv_prog_cc_c89=no
Chris@350 2945 ac_save_CC=$CC
Chris@350 2946 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 2947 /* end confdefs.h. */
Chris@350 2948 #include <stdarg.h>
Chris@350 2949 #include <stdio.h>
Chris@594 2950 struct stat;
Chris@350 2951 /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
Chris@350 2952 struct buf { int x; };
Chris@350 2953 FILE * (*rcsopen) (struct buf *, struct stat *, int);
Chris@350 2954 static char *e (p, i)
Chris@350 2955 char **p;
Chris@350 2956 int i;
Chris@350 2957 {
Chris@350 2958 return p[i];
Chris@350 2959 }
Chris@350 2960 static char *f (char * (*g) (char **, int), char **p, ...)
Chris@350 2961 {
Chris@350 2962 char *s;
Chris@350 2963 va_list v;
Chris@350 2964 va_start (v,p);
Chris@350 2965 s = g (p, va_arg (v,int));
Chris@350 2966 va_end (v);
Chris@350 2967 return s;
Chris@350 2968 }
Chris@350 2969
Chris@350 2970 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
Chris@350 2971 function prototypes and stuff, but not '\xHH' hex character constants.
Chris@350 2972 These don't provoke an error unfortunately, instead are silently treated
Chris@350 2973 as 'x'. The following induces an error, until -std is added to get
Chris@350 2974 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
Chris@350 2975 array size at least. It's necessary to write '\x00'==0 to get something
Chris@350 2976 that's true only with -std. */
Chris@350 2977 int osf4_cc_array ['\x00' == 0 ? 1 : -1];
Chris@350 2978
Chris@350 2979 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
Chris@350 2980 inside strings and character constants. */
Chris@350 2981 #define FOO(x) 'x'
Chris@350 2982 int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
Chris@350 2983
Chris@350 2984 int test (int i, double x);
Chris@350 2985 struct s1 {int (*f) (int a);};
Chris@350 2986 struct s2 {int (*f) (double a);};
Chris@350 2987 int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
Chris@350 2988 int argc;
Chris@350 2989 char **argv;
Chris@350 2990 int
Chris@350 2991 main ()
Chris@350 2992 {
Chris@350 2993 return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
Chris@350 2994 ;
Chris@350 2995 return 0;
Chris@350 2996 }
Chris@350 2997 _ACEOF
Chris@350 2998 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
Chris@350 2999 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
Chris@350 3000 do
Chris@350 3001 CC="$ac_save_CC $ac_arg"
Chris@350 3002 if ac_fn_c_try_compile "$LINENO"; then :
Chris@350 3003 ac_cv_prog_cc_c89=$ac_arg
Chris@350 3004 fi
Chris@350 3005 rm -f core conftest.err conftest.$ac_objext
Chris@350 3006 test "x$ac_cv_prog_cc_c89" != "xno" && break
Chris@350 3007 done
Chris@350 3008 rm -f conftest.$ac_ext
Chris@350 3009 CC=$ac_save_CC
Chris@350 3010
Chris@350 3011 fi
Chris@350 3012 # AC_CACHE_VAL
Chris@350 3013 case "x$ac_cv_prog_cc_c89" in
Chris@350 3014 x)
Chris@350 3015 { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
Chris@350 3016 $as_echo "none needed" >&6; } ;;
Chris@350 3017 xno)
Chris@350 3018 { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
Chris@350 3019 $as_echo "unsupported" >&6; } ;;
Chris@350 3020 *)
Chris@350 3021 CC="$CC $ac_cv_prog_cc_c89"
Chris@350 3022 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
Chris@350 3023 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
Chris@350 3024 esac
Chris@350 3025 if test "x$ac_cv_prog_cc_c89" != xno; then :
Chris@350 3026
Chris@350 3027 fi
Chris@350 3028
Chris@350 3029 ac_ext=cpp
Chris@350 3030 ac_cpp='$CXXCPP $CPPFLAGS'
Chris@350 3031 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Chris@350 3032 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
Chris@350 3033 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
Chris@350 3034
Chris@350 3035 ac_ext=cpp
Chris@350 3036 ac_cpp='$CXXCPP $CPPFLAGS'
Chris@350 3037 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Chris@350 3038 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
Chris@350 3039 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
Chris@350 3040 if test -z "$CXX"; then
Chris@350 3041 if test -n "$CCC"; then
Chris@350 3042 CXX=$CCC
Chris@350 3043 else
Chris@350 3044 if test -n "$ac_tool_prefix"; then
Chris@350 3045 for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
Chris@350 3046 do
Chris@350 3047 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
Chris@350 3048 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
Chris@350 3049 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 3050 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 3051 if ${ac_cv_prog_CXX+:} false; then :
Chris@350 3052 $as_echo_n "(cached) " >&6
Chris@350 3053 else
Chris@350 3054 if test -n "$CXX"; then
Chris@350 3055 ac_cv_prog_CXX="$CXX" # Let the user override the test.
Chris@350 3056 else
Chris@350 3057 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 3058 for as_dir in $PATH
Chris@350 3059 do
Chris@350 3060 IFS=$as_save_IFS
Chris@350 3061 test -z "$as_dir" && as_dir=.
Chris@350 3062 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 3063 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 3064 ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
Chris@350 3065 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 3066 break 2
Chris@350 3067 fi
Chris@350 3068 done
Chris@350 3069 done
Chris@350 3070 IFS=$as_save_IFS
Chris@350 3071
Chris@350 3072 fi
Chris@350 3073 fi
Chris@350 3074 CXX=$ac_cv_prog_CXX
Chris@350 3075 if test -n "$CXX"; then
Chris@350 3076 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
Chris@350 3077 $as_echo "$CXX" >&6; }
Chris@350 3078 else
Chris@350 3079 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 3080 $as_echo "no" >&6; }
Chris@350 3081 fi
Chris@350 3082
Chris@350 3083
Chris@350 3084 test -n "$CXX" && break
Chris@350 3085 done
Chris@350 3086 fi
Chris@350 3087 if test -z "$CXX"; then
Chris@350 3088 ac_ct_CXX=$CXX
Chris@350 3089 for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
Chris@350 3090 do
Chris@350 3091 # Extract the first word of "$ac_prog", so it can be a program name with args.
Chris@350 3092 set dummy $ac_prog; ac_word=$2
Chris@350 3093 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 3094 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 3095 if ${ac_cv_prog_ac_ct_CXX+:} false; then :
Chris@350 3096 $as_echo_n "(cached) " >&6
Chris@350 3097 else
Chris@350 3098 if test -n "$ac_ct_CXX"; then
Chris@350 3099 ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
Chris@350 3100 else
Chris@350 3101 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 3102 for as_dir in $PATH
Chris@350 3103 do
Chris@350 3104 IFS=$as_save_IFS
Chris@350 3105 test -z "$as_dir" && as_dir=.
Chris@350 3106 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 3107 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 3108 ac_cv_prog_ac_ct_CXX="$ac_prog"
Chris@350 3109 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 3110 break 2
Chris@350 3111 fi
Chris@350 3112 done
Chris@350 3113 done
Chris@350 3114 IFS=$as_save_IFS
Chris@350 3115
Chris@350 3116 fi
Chris@350 3117 fi
Chris@350 3118 ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
Chris@350 3119 if test -n "$ac_ct_CXX"; then
Chris@350 3120 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5
Chris@350 3121 $as_echo "$ac_ct_CXX" >&6; }
Chris@350 3122 else
Chris@350 3123 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 3124 $as_echo "no" >&6; }
Chris@350 3125 fi
Chris@350 3126
Chris@350 3127
Chris@350 3128 test -n "$ac_ct_CXX" && break
Chris@350 3129 done
Chris@350 3130
Chris@350 3131 if test "x$ac_ct_CXX" = x; then
Chris@350 3132 CXX="g++"
Chris@350 3133 else
Chris@350 3134 case $cross_compiling:$ac_tool_warned in
Chris@350 3135 yes:)
Chris@350 3136 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
Chris@350 3137 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
Chris@350 3138 ac_tool_warned=yes ;;
Chris@350 3139 esac
Chris@350 3140 CXX=$ac_ct_CXX
Chris@350 3141 fi
Chris@350 3142 fi
Chris@350 3143
Chris@350 3144 fi
Chris@350 3145 fi
Chris@350 3146 # Provide some information about the compiler.
Chris@350 3147 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5
Chris@350 3148 set X $ac_compile
Chris@350 3149 ac_compiler=$2
Chris@350 3150 for ac_option in --version -v -V -qversion; do
Chris@350 3151 { { ac_try="$ac_compiler $ac_option >&5"
Chris@350 3152 case "(($ac_try" in
Chris@350 3153 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
Chris@350 3154 *) ac_try_echo=$ac_try;;
Chris@350 3155 esac
Chris@350 3156 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
Chris@350 3157 $as_echo "$ac_try_echo"; } >&5
Chris@350 3158 (eval "$ac_compiler $ac_option >&5") 2>conftest.err
Chris@350 3159 ac_status=$?
Chris@350 3160 if test -s conftest.err; then
Chris@350 3161 sed '10a\
Chris@350 3162 ... rest of stderr output deleted ...
Chris@350 3163 10q' conftest.err >conftest.er1
Chris@350 3164 cat conftest.er1 >&5
Chris@350 3165 fi
Chris@350 3166 rm -f conftest.er1 conftest.err
Chris@350 3167 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 3168 test $ac_status = 0; }
Chris@350 3169 done
Chris@350 3170
Chris@350 3171 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
Chris@350 3172 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
Chris@594 3173 if ${ac_cv_cxx_compiler_gnu+:} false; then :
Chris@350 3174 $as_echo_n "(cached) " >&6
Chris@350 3175 else
Chris@350 3176 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3177 /* end confdefs.h. */
Chris@350 3178
Chris@350 3179 int
Chris@350 3180 main ()
Chris@350 3181 {
Chris@350 3182 #ifndef __GNUC__
Chris@350 3183 choke me
Chris@350 3184 #endif
Chris@350 3185
Chris@350 3186 ;
Chris@350 3187 return 0;
Chris@350 3188 }
Chris@350 3189 _ACEOF
Chris@350 3190 if ac_fn_cxx_try_compile "$LINENO"; then :
Chris@350 3191 ac_compiler_gnu=yes
Chris@350 3192 else
Chris@350 3193 ac_compiler_gnu=no
Chris@350 3194 fi
Chris@350 3195 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@350 3196 ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
Chris@350 3197
Chris@350 3198 fi
Chris@350 3199 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5
Chris@350 3200 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; }
Chris@350 3201 if test $ac_compiler_gnu = yes; then
Chris@350 3202 GXX=yes
Chris@350 3203 else
Chris@350 3204 GXX=
Chris@350 3205 fi
Chris@350 3206 ac_test_CXXFLAGS=${CXXFLAGS+set}
Chris@350 3207 ac_save_CXXFLAGS=$CXXFLAGS
Chris@350 3208 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
Chris@350 3209 $as_echo_n "checking whether $CXX accepts -g... " >&6; }
Chris@594 3210 if ${ac_cv_prog_cxx_g+:} false; then :
Chris@350 3211 $as_echo_n "(cached) " >&6
Chris@350 3212 else
Chris@350 3213 ac_save_cxx_werror_flag=$ac_cxx_werror_flag
Chris@350 3214 ac_cxx_werror_flag=yes
Chris@350 3215 ac_cv_prog_cxx_g=no
Chris@350 3216 CXXFLAGS="-g"
Chris@350 3217 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3218 /* end confdefs.h. */
Chris@350 3219
Chris@350 3220 int
Chris@350 3221 main ()
Chris@350 3222 {
Chris@350 3223
Chris@350 3224 ;
Chris@350 3225 return 0;
Chris@350 3226 }
Chris@350 3227 _ACEOF
Chris@350 3228 if ac_fn_cxx_try_compile "$LINENO"; then :
Chris@350 3229 ac_cv_prog_cxx_g=yes
Chris@350 3230 else
Chris@350 3231 CXXFLAGS=""
Chris@350 3232 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3233 /* end confdefs.h. */
Chris@350 3234
Chris@350 3235 int
Chris@350 3236 main ()
Chris@350 3237 {
Chris@350 3238
Chris@350 3239 ;
Chris@350 3240 return 0;
Chris@350 3241 }
Chris@350 3242 _ACEOF
Chris@350 3243 if ac_fn_cxx_try_compile "$LINENO"; then :
Chris@350 3244
Chris@350 3245 else
Chris@350 3246 ac_cxx_werror_flag=$ac_save_cxx_werror_flag
Chris@350 3247 CXXFLAGS="-g"
Chris@350 3248 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3249 /* end confdefs.h. */
Chris@350 3250
Chris@350 3251 int
Chris@350 3252 main ()
Chris@350 3253 {
Chris@350 3254
Chris@350 3255 ;
Chris@350 3256 return 0;
Chris@350 3257 }
Chris@350 3258 _ACEOF
Chris@350 3259 if ac_fn_cxx_try_compile "$LINENO"; then :
Chris@350 3260 ac_cv_prog_cxx_g=yes
Chris@350 3261 fi
Chris@350 3262 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@350 3263 fi
Chris@350 3264 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@350 3265 fi
Chris@350 3266 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@350 3267 ac_cxx_werror_flag=$ac_save_cxx_werror_flag
Chris@350 3268 fi
Chris@350 3269 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5
Chris@350 3270 $as_echo "$ac_cv_prog_cxx_g" >&6; }
Chris@350 3271 if test "$ac_test_CXXFLAGS" = set; then
Chris@350 3272 CXXFLAGS=$ac_save_CXXFLAGS
Chris@350 3273 elif test $ac_cv_prog_cxx_g = yes; then
Chris@350 3274 if test "$GXX" = yes; then
Chris@350 3275 CXXFLAGS="-g -O2"
Chris@350 3276 else
Chris@350 3277 CXXFLAGS="-g"
Chris@350 3278 fi
Chris@350 3279 else
Chris@350 3280 if test "$GXX" = yes; then
Chris@350 3281 CXXFLAGS="-O2"
Chris@350 3282 else
Chris@350 3283 CXXFLAGS=
Chris@350 3284 fi
Chris@350 3285 fi
Chris@350 3286 ac_ext=cpp
Chris@350 3287 ac_cpp='$CXXCPP $CPPFLAGS'
Chris@350 3288 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Chris@350 3289 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
Chris@350 3290 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
Chris@350 3291
Chris@350 3292 ac_aux_dir=
Chris@350 3293 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
Chris@594 3294 if test -f "$ac_dir/install-sh"; then
Chris@594 3295 ac_aux_dir=$ac_dir
Chris@594 3296 ac_install_sh="$ac_aux_dir/install-sh -c"
Chris@594 3297 break
Chris@594 3298 elif test -f "$ac_dir/install.sh"; then
Chris@594 3299 ac_aux_dir=$ac_dir
Chris@594 3300 ac_install_sh="$ac_aux_dir/install.sh -c"
Chris@594 3301 break
Chris@594 3302 elif test -f "$ac_dir/shtool"; then
Chris@594 3303 ac_aux_dir=$ac_dir
Chris@594 3304 ac_install_sh="$ac_aux_dir/shtool install -c"
Chris@594 3305 break
Chris@594 3306 fi
Chris@350 3307 done
Chris@350 3308 if test -z "$ac_aux_dir"; then
Chris@594 3309 as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
Chris@350 3310 fi
Chris@350 3311
Chris@350 3312 # These three variables are undocumented and unsupported,
Chris@350 3313 # and are intended to be withdrawn in a future Autoconf release.
Chris@350 3314 # They can cause serious problems if a builder's source tree is in a directory
Chris@350 3315 # whose full name contains unusual characters.
Chris@350 3316 ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
Chris@350 3317 ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
Chris@350 3318 ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
Chris@350 3319
Chris@350 3320
Chris@350 3321 # Find a good install program. We prefer a C program (faster),
Chris@350 3322 # so one script is as good as another. But avoid the broken or
Chris@350 3323 # incompatible versions:
Chris@350 3324 # SysV /etc/install, /usr/sbin/install
Chris@350 3325 # SunOS /usr/etc/install
Chris@350 3326 # IRIX /sbin/install
Chris@350 3327 # AIX /bin/install
Chris@350 3328 # AmigaOS /C/install, which installs bootblocks on floppy discs
Chris@350 3329 # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
Chris@350 3330 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
Chris@350 3331 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
Chris@350 3332 # OS/2's system install, which has a completely different semantic
Chris@350 3333 # ./install, which can be erroneously created by make from ./install.sh.
Chris@350 3334 # Reject install programs that cannot install multiple files.
Chris@350 3335 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
Chris@350 3336 $as_echo_n "checking for a BSD-compatible install... " >&6; }
Chris@350 3337 if test -z "$INSTALL"; then
Chris@594 3338 if ${ac_cv_path_install+:} false; then :
Chris@350 3339 $as_echo_n "(cached) " >&6
Chris@350 3340 else
Chris@350 3341 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 3342 for as_dir in $PATH
Chris@350 3343 do
Chris@350 3344 IFS=$as_save_IFS
Chris@350 3345 test -z "$as_dir" && as_dir=.
Chris@350 3346 # Account for people who put trailing slashes in PATH elements.
Chris@350 3347 case $as_dir/ in #((
Chris@350 3348 ./ | .// | /[cC]/* | \
Chris@350 3349 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
Chris@350 3350 ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
Chris@350 3351 /usr/ucb/* ) ;;
Chris@350 3352 *)
Chris@350 3353 # OSF1 and SCO ODT 3.0 have their own names for install.
Chris@350 3354 # Don't use installbsd from OSF since it installs stuff as root
Chris@350 3355 # by default.
Chris@350 3356 for ac_prog in ginstall scoinst install; do
Chris@350 3357 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 3358 if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
Chris@350 3359 if test $ac_prog = install &&
Chris@350 3360 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
Chris@350 3361 # AIX install. It has an incompatible calling convention.
Chris@350 3362 :
Chris@350 3363 elif test $ac_prog = install &&
Chris@350 3364 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
Chris@350 3365 # program-specific install script used by HP pwplus--don't use.
Chris@350 3366 :
Chris@350 3367 else
Chris@350 3368 rm -rf conftest.one conftest.two conftest.dir
Chris@350 3369 echo one > conftest.one
Chris@350 3370 echo two > conftest.two
Chris@350 3371 mkdir conftest.dir
Chris@350 3372 if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
Chris@350 3373 test -s conftest.one && test -s conftest.two &&
Chris@350 3374 test -s conftest.dir/conftest.one &&
Chris@350 3375 test -s conftest.dir/conftest.two
Chris@350 3376 then
Chris@350 3377 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
Chris@350 3378 break 3
Chris@350 3379 fi
Chris@350 3380 fi
Chris@350 3381 fi
Chris@350 3382 done
Chris@350 3383 done
Chris@350 3384 ;;
Chris@350 3385 esac
Chris@350 3386
Chris@350 3387 done
Chris@350 3388 IFS=$as_save_IFS
Chris@350 3389
Chris@350 3390 rm -rf conftest.one conftest.two conftest.dir
Chris@350 3391
Chris@350 3392 fi
Chris@350 3393 if test "${ac_cv_path_install+set}" = set; then
Chris@350 3394 INSTALL=$ac_cv_path_install
Chris@350 3395 else
Chris@350 3396 # As a last resort, use the slow shell script. Don't cache a
Chris@350 3397 # value for INSTALL within a source directory, because that will
Chris@350 3398 # break other packages using the cache if that directory is
Chris@350 3399 # removed, or if the value is a relative name.
Chris@350 3400 INSTALL=$ac_install_sh
Chris@350 3401 fi
Chris@350 3402 fi
Chris@350 3403 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
Chris@350 3404 $as_echo "$INSTALL" >&6; }
Chris@350 3405
Chris@350 3406 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
Chris@350 3407 # It thinks the first close brace ends the variable substitution.
Chris@350 3408 test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
Chris@350 3409
Chris@350 3410 test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
Chris@350 3411
Chris@350 3412 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
Chris@350 3413
Chris@350 3414 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
Chris@350 3415 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
Chris@350 3416 if test -z "$MKDIR_P"; then
Chris@594 3417 if ${ac_cv_path_mkdir+:} false; then :
Chris@350 3418 $as_echo_n "(cached) " >&6
Chris@350 3419 else
Chris@350 3420 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 3421 for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
Chris@350 3422 do
Chris@350 3423 IFS=$as_save_IFS
Chris@350 3424 test -z "$as_dir" && as_dir=.
Chris@350 3425 for ac_prog in mkdir gmkdir; do
Chris@350 3426 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 3427 as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
Chris@350 3428 case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
Chris@350 3429 'mkdir (GNU coreutils) '* | \
Chris@350 3430 'mkdir (coreutils) '* | \
Chris@350 3431 'mkdir (fileutils) '4.1*)
Chris@350 3432 ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
Chris@350 3433 break 3;;
Chris@350 3434 esac
Chris@350 3435 done
Chris@350 3436 done
Chris@350 3437 done
Chris@350 3438 IFS=$as_save_IFS
Chris@350 3439
Chris@350 3440 fi
Chris@350 3441
Chris@350 3442 test -d ./--version && rmdir ./--version
Chris@350 3443 if test "${ac_cv_path_mkdir+set}" = set; then
Chris@350 3444 MKDIR_P="$ac_cv_path_mkdir -p"
Chris@350 3445 else
Chris@350 3446 # As a last resort, use the slow shell script. Don't cache a
Chris@350 3447 # value for MKDIR_P within a source directory, because that will
Chris@350 3448 # break other packages using the cache if that directory is
Chris@350 3449 # removed, or if the value is a relative name.
Chris@350 3450 MKDIR_P="$ac_install_sh -d"
Chris@350 3451 fi
Chris@350 3452 fi
Chris@350 3453 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
Chris@350 3454 $as_echo "$MKDIR_P" >&6; }
Chris@350 3455
Chris@350 3456
Chris@884 3457 # We are daringly making use of C++11 now
Chris@884 3458
Chris@884 3459 ax_cxx_compile_cxx11_required=true
Chris@884 3460 ac_ext=cpp
Chris@884 3461 ac_cpp='$CXXCPP $CPPFLAGS'
Chris@884 3462 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Chris@884 3463 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
Chris@884 3464 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
Chris@884 3465 ac_success=no
Chris@884 3466 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features by default" >&5
Chris@884 3467 $as_echo_n "checking whether $CXX supports C++11 features by default... " >&6; }
Chris@884 3468 if ${ax_cv_cxx_compile_cxx11+:} false; then :
Chris@884 3469 $as_echo_n "(cached) " >&6
Chris@884 3470 else
Chris@884 3471 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@884 3472 /* end confdefs.h. */
Chris@884 3473
Chris@884 3474 template <typename T>
Chris@884 3475 struct check
Chris@884 3476 {
Chris@884 3477 static_assert(sizeof(int) <= sizeof(T), "not big enough");
Chris@884 3478 };
Chris@884 3479
Chris@884 3480 struct Base {
Chris@884 3481 virtual void f() {}
Chris@884 3482 };
Chris@884 3483 struct Child : public Base {
Chris@884 3484 virtual void f() override {}
Chris@884 3485 };
Chris@884 3486
Chris@884 3487 typedef check<check<bool>> right_angle_brackets;
Chris@884 3488
Chris@884 3489 int a;
Chris@884 3490 decltype(a) b;
Chris@884 3491
Chris@884 3492 typedef check<int> check_type;
Chris@884 3493 check_type c;
Chris@884 3494 check_type&& cr = static_cast<check_type&&>(c);
Chris@884 3495
Chris@884 3496 auto d = a;
Chris@884 3497 auto l = [](){};
Chris@884 3498
Chris@884 3499 _ACEOF
Chris@884 3500 if ac_fn_cxx_try_compile "$LINENO"; then :
Chris@884 3501 ax_cv_cxx_compile_cxx11=yes
Chris@884 3502 else
Chris@884 3503 ax_cv_cxx_compile_cxx11=no
Chris@884 3504 fi
Chris@884 3505 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@884 3506 fi
Chris@884 3507 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_cxx_compile_cxx11" >&5
Chris@884 3508 $as_echo "$ax_cv_cxx_compile_cxx11" >&6; }
Chris@884 3509 if test x$ax_cv_cxx_compile_cxx11 = xyes; then
Chris@884 3510 ac_success=yes
Chris@884 3511 fi
Chris@884 3512
Chris@884 3513
Chris@884 3514
Chris@884 3515 if test x$ac_success = xno; then
Chris@884 3516 for switch in -std=c++11 -std=c++0x; do
Chris@884 3517 cachevar=`$as_echo "ax_cv_cxx_compile_cxx11_$switch" | $as_tr_sh`
Chris@884 3518 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features with $switch" >&5
Chris@884 3519 $as_echo_n "checking whether $CXX supports C++11 features with $switch... " >&6; }
Chris@884 3520 if eval \${$cachevar+:} false; then :
Chris@884 3521 $as_echo_n "(cached) " >&6
Chris@884 3522 else
Chris@884 3523 ac_save_CXXFLAGS="$CXXFLAGS"
Chris@884 3524 CXXFLAGS="$CXXFLAGS $switch"
Chris@884 3525 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@884 3526 /* end confdefs.h. */
Chris@884 3527
Chris@884 3528 template <typename T>
Chris@884 3529 struct check
Chris@884 3530 {
Chris@884 3531 static_assert(sizeof(int) <= sizeof(T), "not big enough");
Chris@884 3532 };
Chris@884 3533
Chris@884 3534 struct Base {
Chris@884 3535 virtual void f() {}
Chris@884 3536 };
Chris@884 3537 struct Child : public Base {
Chris@884 3538 virtual void f() override {}
Chris@884 3539 };
Chris@884 3540
Chris@884 3541 typedef check<check<bool>> right_angle_brackets;
Chris@884 3542
Chris@884 3543 int a;
Chris@884 3544 decltype(a) b;
Chris@884 3545
Chris@884 3546 typedef check<int> check_type;
Chris@884 3547 check_type c;
Chris@884 3548 check_type&& cr = static_cast<check_type&&>(c);
Chris@884 3549
Chris@884 3550 auto d = a;
Chris@884 3551 auto l = [](){};
Chris@884 3552
Chris@884 3553 _ACEOF
Chris@884 3554 if ac_fn_cxx_try_compile "$LINENO"; then :
Chris@884 3555 eval $cachevar=yes
Chris@884 3556 else
Chris@884 3557 eval $cachevar=no
Chris@884 3558 fi
Chris@884 3559 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@884 3560 CXXFLAGS="$ac_save_CXXFLAGS"
Chris@884 3561 fi
Chris@884 3562 eval ac_res=\$$cachevar
Chris@884 3563 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@884 3564 $as_echo "$ac_res" >&6; }
Chris@884 3565 if eval test x\$$cachevar = xyes; then
Chris@884 3566 CXXFLAGS="$CXXFLAGS $switch"
Chris@884 3567 ac_success=yes
Chris@884 3568 break
Chris@884 3569 fi
Chris@884 3570 done
Chris@884 3571 fi
Chris@884 3572 ac_ext=cpp
Chris@884 3573 ac_cpp='$CXXCPP $CPPFLAGS'
Chris@884 3574 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Chris@884 3575 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
Chris@884 3576 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
Chris@884 3577
Chris@884 3578 if test x$ax_cxx_compile_cxx11_required = xtrue; then
Chris@884 3579 if test x$ac_success = xno; then
Chris@884 3580 as_fn_error $? "*** A compiler with support for C++11 language features is required." "$LINENO" 5
Chris@884 3581 fi
Chris@884 3582 else
Chris@884 3583 if test x$ac_success = xno; then
Chris@884 3584 HAVE_CXX11=0
Chris@884 3585 { $as_echo "$as_me:${as_lineno-$LINENO}: No compiler with C++11 support was found" >&5
Chris@884 3586 $as_echo "$as_me: No compiler with C++11 support was found" >&6;}
Chris@884 3587 else
Chris@884 3588 HAVE_CXX11=1
Chris@884 3589
Chris@884 3590 $as_echo "#define HAVE_CXX11 1" >>confdefs.h
Chris@884 3591
Chris@884 3592 fi
Chris@884 3593
Chris@884 3594
Chris@884 3595 fi
Chris@884 3596
Chris@350 3597
Chris@350 3598 ac_ext=cpp
Chris@350 3599 ac_cpp='$CXXCPP $CPPFLAGS'
Chris@350 3600 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Chris@350 3601 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
Chris@350 3602 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
Chris@350 3603 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5
Chris@350 3604 $as_echo_n "checking how to run the C++ preprocessor... " >&6; }
Chris@350 3605 if test -z "$CXXCPP"; then
Chris@594 3606 if ${ac_cv_prog_CXXCPP+:} false; then :
Chris@350 3607 $as_echo_n "(cached) " >&6
Chris@350 3608 else
Chris@350 3609 # Double quotes because CXXCPP needs to be expanded
Chris@350 3610 for CXXCPP in "$CXX -E" "/lib/cpp"
Chris@350 3611 do
Chris@350 3612 ac_preproc_ok=false
Chris@350 3613 for ac_cxx_preproc_warn_flag in '' yes
Chris@350 3614 do
Chris@350 3615 # Use a header file that comes with gcc, so configuring glibc
Chris@350 3616 # with a fresh cross-compiler works.
Chris@350 3617 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
Chris@350 3618 # <limits.h> exists even on freestanding compilers.
Chris@350 3619 # On the NeXT, cc -E runs the code through the compiler's parser,
Chris@350 3620 # not just through cpp. "Syntax error" is here to catch this case.
Chris@350 3621 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3622 /* end confdefs.h. */
Chris@350 3623 #ifdef __STDC__
Chris@350 3624 # include <limits.h>
Chris@350 3625 #else
Chris@350 3626 # include <assert.h>
Chris@350 3627 #endif
Chris@350 3628 Syntax error
Chris@350 3629 _ACEOF
Chris@350 3630 if ac_fn_cxx_try_cpp "$LINENO"; then :
Chris@350 3631
Chris@350 3632 else
Chris@350 3633 # Broken: fails on valid input.
Chris@350 3634 continue
Chris@350 3635 fi
Chris@594 3636 rm -f conftest.err conftest.i conftest.$ac_ext
Chris@350 3637
Chris@350 3638 # OK, works on sane cases. Now check whether nonexistent headers
Chris@350 3639 # can be detected and how.
Chris@350 3640 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3641 /* end confdefs.h. */
Chris@350 3642 #include <ac_nonexistent.h>
Chris@350 3643 _ACEOF
Chris@350 3644 if ac_fn_cxx_try_cpp "$LINENO"; then :
Chris@350 3645 # Broken: success on invalid input.
Chris@350 3646 continue
Chris@350 3647 else
Chris@350 3648 # Passes both tests.
Chris@350 3649 ac_preproc_ok=:
Chris@350 3650 break
Chris@350 3651 fi
Chris@594 3652 rm -f conftest.err conftest.i conftest.$ac_ext
Chris@350 3653
Chris@350 3654 done
Chris@350 3655 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
Chris@594 3656 rm -f conftest.i conftest.err conftest.$ac_ext
Chris@350 3657 if $ac_preproc_ok; then :
Chris@350 3658 break
Chris@350 3659 fi
Chris@350 3660
Chris@350 3661 done
Chris@350 3662 ac_cv_prog_CXXCPP=$CXXCPP
Chris@350 3663
Chris@350 3664 fi
Chris@350 3665 CXXCPP=$ac_cv_prog_CXXCPP
Chris@350 3666 else
Chris@350 3667 ac_cv_prog_CXXCPP=$CXXCPP
Chris@350 3668 fi
Chris@350 3669 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5
Chris@350 3670 $as_echo "$CXXCPP" >&6; }
Chris@350 3671 ac_preproc_ok=false
Chris@350 3672 for ac_cxx_preproc_warn_flag in '' yes
Chris@350 3673 do
Chris@350 3674 # Use a header file that comes with gcc, so configuring glibc
Chris@350 3675 # with a fresh cross-compiler works.
Chris@350 3676 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
Chris@350 3677 # <limits.h> exists even on freestanding compilers.
Chris@350 3678 # On the NeXT, cc -E runs the code through the compiler's parser,
Chris@350 3679 # not just through cpp. "Syntax error" is here to catch this case.
Chris@350 3680 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3681 /* end confdefs.h. */
Chris@350 3682 #ifdef __STDC__
Chris@350 3683 # include <limits.h>
Chris@350 3684 #else
Chris@350 3685 # include <assert.h>
Chris@350 3686 #endif
Chris@350 3687 Syntax error
Chris@350 3688 _ACEOF
Chris@350 3689 if ac_fn_cxx_try_cpp "$LINENO"; then :
Chris@350 3690
Chris@350 3691 else
Chris@350 3692 # Broken: fails on valid input.
Chris@350 3693 continue
Chris@350 3694 fi
Chris@594 3695 rm -f conftest.err conftest.i conftest.$ac_ext
Chris@350 3696
Chris@350 3697 # OK, works on sane cases. Now check whether nonexistent headers
Chris@350 3698 # can be detected and how.
Chris@350 3699 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3700 /* end confdefs.h. */
Chris@350 3701 #include <ac_nonexistent.h>
Chris@350 3702 _ACEOF
Chris@350 3703 if ac_fn_cxx_try_cpp "$LINENO"; then :
Chris@350 3704 # Broken: success on invalid input.
Chris@350 3705 continue
Chris@350 3706 else
Chris@350 3707 # Passes both tests.
Chris@350 3708 ac_preproc_ok=:
Chris@350 3709 break
Chris@350 3710 fi
Chris@594 3711 rm -f conftest.err conftest.i conftest.$ac_ext
Chris@350 3712
Chris@350 3713 done
Chris@350 3714 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
Chris@594 3715 rm -f conftest.i conftest.err conftest.$ac_ext
Chris@350 3716 if $ac_preproc_ok; then :
Chris@350 3717
Chris@350 3718 else
Chris@350 3719 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
Chris@350 3720 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
Chris@594 3721 as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check
Chris@594 3722 See \`config.log' for more details" "$LINENO" 5; }
Chris@350 3723 fi
Chris@350 3724
Chris@350 3725 ac_ext=cpp
Chris@350 3726 ac_cpp='$CXXCPP $CPPFLAGS'
Chris@350 3727 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Chris@350 3728 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
Chris@350 3729 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
Chris@350 3730
Chris@350 3731
Chris@350 3732 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
Chris@350 3733 $as_echo_n "checking for grep that handles long lines and -e... " >&6; }
Chris@594 3734 if ${ac_cv_path_GREP+:} false; then :
Chris@350 3735 $as_echo_n "(cached) " >&6
Chris@350 3736 else
Chris@350 3737 if test -z "$GREP"; then
Chris@350 3738 ac_path_GREP_found=false
Chris@350 3739 # Loop through the user's path and test for each of PROGNAME-LIST
Chris@350 3740 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 3741 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
Chris@350 3742 do
Chris@350 3743 IFS=$as_save_IFS
Chris@350 3744 test -z "$as_dir" && as_dir=.
Chris@350 3745 for ac_prog in grep ggrep; do
Chris@350 3746 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@350 3747 ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
Chris@594 3748 as_fn_executable_p "$ac_path_GREP" || continue
Chris@350 3749 # Check for GNU ac_path_GREP and select it if it is found.
Chris@350 3750 # Check for GNU $ac_path_GREP
Chris@350 3751 case `"$ac_path_GREP" --version 2>&1` in
Chris@350 3752 *GNU*)
Chris@350 3753 ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
Chris@350 3754 *)
Chris@350 3755 ac_count=0
Chris@350 3756 $as_echo_n 0123456789 >"conftest.in"
Chris@350 3757 while :
Chris@350 3758 do
Chris@350 3759 cat "conftest.in" "conftest.in" >"conftest.tmp"
Chris@350 3760 mv "conftest.tmp" "conftest.in"
Chris@350 3761 cp "conftest.in" "conftest.nl"
Chris@350 3762 $as_echo 'GREP' >> "conftest.nl"
Chris@350 3763 "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
Chris@350 3764 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
Chris@350 3765 as_fn_arith $ac_count + 1 && ac_count=$as_val
Chris@350 3766 if test $ac_count -gt ${ac_path_GREP_max-0}; then
Chris@350 3767 # Best one so far, save it but keep looking for a better one
Chris@350 3768 ac_cv_path_GREP="$ac_path_GREP"
Chris@350 3769 ac_path_GREP_max=$ac_count
Chris@350 3770 fi
Chris@350 3771 # 10*(2^10) chars as input seems more than enough
Chris@350 3772 test $ac_count -gt 10 && break
Chris@350 3773 done
Chris@350 3774 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
Chris@350 3775 esac
Chris@350 3776
Chris@350 3777 $ac_path_GREP_found && break 3
Chris@350 3778 done
Chris@350 3779 done
Chris@350 3780 done
Chris@350 3781 IFS=$as_save_IFS
Chris@350 3782 if test -z "$ac_cv_path_GREP"; then
Chris@594 3783 as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
Chris@350 3784 fi
Chris@350 3785 else
Chris@350 3786 ac_cv_path_GREP=$GREP
Chris@350 3787 fi
Chris@350 3788
Chris@350 3789 fi
Chris@350 3790 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
Chris@350 3791 $as_echo "$ac_cv_path_GREP" >&6; }
Chris@350 3792 GREP="$ac_cv_path_GREP"
Chris@350 3793
Chris@350 3794
Chris@350 3795 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
Chris@350 3796 $as_echo_n "checking for egrep... " >&6; }
Chris@594 3797 if ${ac_cv_path_EGREP+:} false; then :
Chris@350 3798 $as_echo_n "(cached) " >&6
Chris@350 3799 else
Chris@350 3800 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
Chris@350 3801 then ac_cv_path_EGREP="$GREP -E"
Chris@350 3802 else
Chris@350 3803 if test -z "$EGREP"; then
Chris@350 3804 ac_path_EGREP_found=false
Chris@350 3805 # Loop through the user's path and test for each of PROGNAME-LIST
Chris@350 3806 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 3807 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
Chris@350 3808 do
Chris@350 3809 IFS=$as_save_IFS
Chris@350 3810 test -z "$as_dir" && as_dir=.
Chris@350 3811 for ac_prog in egrep; do
Chris@350 3812 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@350 3813 ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
Chris@594 3814 as_fn_executable_p "$ac_path_EGREP" || continue
Chris@350 3815 # Check for GNU ac_path_EGREP and select it if it is found.
Chris@350 3816 # Check for GNU $ac_path_EGREP
Chris@350 3817 case `"$ac_path_EGREP" --version 2>&1` in
Chris@350 3818 *GNU*)
Chris@350 3819 ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
Chris@350 3820 *)
Chris@350 3821 ac_count=0
Chris@350 3822 $as_echo_n 0123456789 >"conftest.in"
Chris@350 3823 while :
Chris@350 3824 do
Chris@350 3825 cat "conftest.in" "conftest.in" >"conftest.tmp"
Chris@350 3826 mv "conftest.tmp" "conftest.in"
Chris@350 3827 cp "conftest.in" "conftest.nl"
Chris@350 3828 $as_echo 'EGREP' >> "conftest.nl"
Chris@350 3829 "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
Chris@350 3830 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
Chris@350 3831 as_fn_arith $ac_count + 1 && ac_count=$as_val
Chris@350 3832 if test $ac_count -gt ${ac_path_EGREP_max-0}; then
Chris@350 3833 # Best one so far, save it but keep looking for a better one
Chris@350 3834 ac_cv_path_EGREP="$ac_path_EGREP"
Chris@350 3835 ac_path_EGREP_max=$ac_count
Chris@350 3836 fi
Chris@350 3837 # 10*(2^10) chars as input seems more than enough
Chris@350 3838 test $ac_count -gt 10 && break
Chris@350 3839 done
Chris@350 3840 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
Chris@350 3841 esac
Chris@350 3842
Chris@350 3843 $ac_path_EGREP_found && break 3
Chris@350 3844 done
Chris@350 3845 done
Chris@350 3846 done
Chris@350 3847 IFS=$as_save_IFS
Chris@350 3848 if test -z "$ac_cv_path_EGREP"; then
Chris@594 3849 as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
Chris@350 3850 fi
Chris@350 3851 else
Chris@350 3852 ac_cv_path_EGREP=$EGREP
Chris@350 3853 fi
Chris@350 3854
Chris@350 3855 fi
Chris@350 3856 fi
Chris@350 3857 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
Chris@350 3858 $as_echo "$ac_cv_path_EGREP" >&6; }
Chris@350 3859 EGREP="$ac_cv_path_EGREP"
Chris@350 3860
Chris@350 3861
Chris@350 3862 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
Chris@350 3863 $as_echo_n "checking for ANSI C header files... " >&6; }
Chris@594 3864 if ${ac_cv_header_stdc+:} false; then :
Chris@350 3865 $as_echo_n "(cached) " >&6
Chris@350 3866 else
Chris@350 3867 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3868 /* end confdefs.h. */
Chris@350 3869 #include <stdlib.h>
Chris@350 3870 #include <stdarg.h>
Chris@350 3871 #include <string.h>
Chris@350 3872 #include <float.h>
Chris@350 3873
Chris@350 3874 int
Chris@350 3875 main ()
Chris@350 3876 {
Chris@350 3877
Chris@350 3878 ;
Chris@350 3879 return 0;
Chris@350 3880 }
Chris@350 3881 _ACEOF
Chris@350 3882 if ac_fn_cxx_try_compile "$LINENO"; then :
Chris@350 3883 ac_cv_header_stdc=yes
Chris@350 3884 else
Chris@350 3885 ac_cv_header_stdc=no
Chris@350 3886 fi
Chris@350 3887 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@350 3888
Chris@350 3889 if test $ac_cv_header_stdc = yes; then
Chris@350 3890 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
Chris@350 3891 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3892 /* end confdefs.h. */
Chris@350 3893 #include <string.h>
Chris@350 3894
Chris@350 3895 _ACEOF
Chris@350 3896 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
Chris@350 3897 $EGREP "memchr" >/dev/null 2>&1; then :
Chris@350 3898
Chris@350 3899 else
Chris@350 3900 ac_cv_header_stdc=no
Chris@350 3901 fi
Chris@350 3902 rm -f conftest*
Chris@350 3903
Chris@350 3904 fi
Chris@350 3905
Chris@350 3906 if test $ac_cv_header_stdc = yes; then
Chris@350 3907 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
Chris@350 3908 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3909 /* end confdefs.h. */
Chris@350 3910 #include <stdlib.h>
Chris@350 3911
Chris@350 3912 _ACEOF
Chris@350 3913 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
Chris@350 3914 $EGREP "free" >/dev/null 2>&1; then :
Chris@350 3915
Chris@350 3916 else
Chris@350 3917 ac_cv_header_stdc=no
Chris@350 3918 fi
Chris@350 3919 rm -f conftest*
Chris@350 3920
Chris@350 3921 fi
Chris@350 3922
Chris@350 3923 if test $ac_cv_header_stdc = yes; then
Chris@350 3924 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
Chris@350 3925 if test "$cross_compiling" = yes; then :
Chris@350 3926 :
Chris@350 3927 else
Chris@350 3928 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 3929 /* end confdefs.h. */
Chris@350 3930 #include <ctype.h>
Chris@350 3931 #include <stdlib.h>
Chris@350 3932 #if ((' ' & 0x0FF) == 0x020)
Chris@350 3933 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
Chris@350 3934 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
Chris@350 3935 #else
Chris@350 3936 # define ISLOWER(c) \
Chris@350 3937 (('a' <= (c) && (c) <= 'i') \
Chris@350 3938 || ('j' <= (c) && (c) <= 'r') \
Chris@350 3939 || ('s' <= (c) && (c) <= 'z'))
Chris@350 3940 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
Chris@350 3941 #endif
Chris@350 3942
Chris@350 3943 #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
Chris@350 3944 int
Chris@350 3945 main ()
Chris@350 3946 {
Chris@350 3947 int i;
Chris@350 3948 for (i = 0; i < 256; i++)
Chris@350 3949 if (XOR (islower (i), ISLOWER (i))
Chris@350 3950 || toupper (i) != TOUPPER (i))
Chris@350 3951 return 2;
Chris@350 3952 return 0;
Chris@350 3953 }
Chris@350 3954 _ACEOF
Chris@350 3955 if ac_fn_cxx_try_run "$LINENO"; then :
Chris@350 3956
Chris@350 3957 else
Chris@350 3958 ac_cv_header_stdc=no
Chris@350 3959 fi
Chris@350 3960 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
Chris@350 3961 conftest.$ac_objext conftest.beam conftest.$ac_ext
Chris@350 3962 fi
Chris@350 3963
Chris@350 3964 fi
Chris@350 3965 fi
Chris@350 3966 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5
Chris@350 3967 $as_echo "$ac_cv_header_stdc" >&6; }
Chris@350 3968 if test $ac_cv_header_stdc = yes; then
Chris@350 3969
Chris@350 3970 $as_echo "#define STDC_HEADERS 1" >>confdefs.h
Chris@350 3971
Chris@350 3972 fi
Chris@350 3973
Chris@350 3974
Chris@350 3975 # These are the flags Autoconf guesses for us; we use them later if
Chris@350 3976 # the user has set none and we are not using GCC (so lack our own
Chris@350 3977 # preferred flags)
Chris@350 3978 AUTOCONF_CXXFLAGS="$CXXFLAGS"
Chris@350 3979
Chris@350 3980
Chris@350 3981
Chris@594 3982
Chris@594 3983
Chris@594 3984
Chris@594 3985
Chris@594 3986
Chris@350 3987 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
Chris@350 3988 if test -n "$ac_tool_prefix"; then
Chris@350 3989 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
Chris@350 3990 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
Chris@350 3991 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 3992 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 3993 if ${ac_cv_path_PKG_CONFIG+:} false; then :
Chris@350 3994 $as_echo_n "(cached) " >&6
Chris@350 3995 else
Chris@350 3996 case $PKG_CONFIG in
Chris@350 3997 [\\/]* | ?:[\\/]*)
Chris@350 3998 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
Chris@350 3999 ;;
Chris@350 4000 *)
Chris@350 4001 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 4002 for as_dir in $PATH
Chris@350 4003 do
Chris@350 4004 IFS=$as_save_IFS
Chris@350 4005 test -z "$as_dir" && as_dir=.
Chris@350 4006 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 4007 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 4008 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
Chris@350 4009 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 4010 break 2
Chris@350 4011 fi
Chris@350 4012 done
Chris@350 4013 done
Chris@350 4014 IFS=$as_save_IFS
Chris@350 4015
Chris@350 4016 ;;
Chris@350 4017 esac
Chris@350 4018 fi
Chris@350 4019 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
Chris@350 4020 if test -n "$PKG_CONFIG"; then
Chris@350 4021 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
Chris@350 4022 $as_echo "$PKG_CONFIG" >&6; }
Chris@350 4023 else
Chris@350 4024 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 4025 $as_echo "no" >&6; }
Chris@350 4026 fi
Chris@350 4027
Chris@350 4028
Chris@350 4029 fi
Chris@350 4030 if test -z "$ac_cv_path_PKG_CONFIG"; then
Chris@350 4031 ac_pt_PKG_CONFIG=$PKG_CONFIG
Chris@350 4032 # Extract the first word of "pkg-config", so it can be a program name with args.
Chris@350 4033 set dummy pkg-config; ac_word=$2
Chris@350 4034 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 4035 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 4036 if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
Chris@350 4037 $as_echo_n "(cached) " >&6
Chris@350 4038 else
Chris@350 4039 case $ac_pt_PKG_CONFIG in
Chris@350 4040 [\\/]* | ?:[\\/]*)
Chris@350 4041 ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
Chris@350 4042 ;;
Chris@350 4043 *)
Chris@350 4044 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 4045 for as_dir in $PATH
Chris@350 4046 do
Chris@350 4047 IFS=$as_save_IFS
Chris@350 4048 test -z "$as_dir" && as_dir=.
Chris@350 4049 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 4050 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 4051 ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
Chris@350 4052 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 4053 break 2
Chris@350 4054 fi
Chris@350 4055 done
Chris@350 4056 done
Chris@350 4057 IFS=$as_save_IFS
Chris@350 4058
Chris@350 4059 ;;
Chris@350 4060 esac
Chris@350 4061 fi
Chris@350 4062 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
Chris@350 4063 if test -n "$ac_pt_PKG_CONFIG"; then
Chris@350 4064 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
Chris@350 4065 $as_echo "$ac_pt_PKG_CONFIG" >&6; }
Chris@350 4066 else
Chris@350 4067 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 4068 $as_echo "no" >&6; }
Chris@350 4069 fi
Chris@350 4070
Chris@350 4071 if test "x$ac_pt_PKG_CONFIG" = x; then
Chris@350 4072 PKG_CONFIG=""
Chris@350 4073 else
Chris@350 4074 case $cross_compiling:$ac_tool_warned in
Chris@350 4075 yes:)
Chris@350 4076 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
Chris@350 4077 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
Chris@350 4078 ac_tool_warned=yes ;;
Chris@350 4079 esac
Chris@350 4080 PKG_CONFIG=$ac_pt_PKG_CONFIG
Chris@350 4081 fi
Chris@350 4082 else
Chris@350 4083 PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
Chris@350 4084 fi
Chris@350 4085
Chris@350 4086 fi
Chris@350 4087 if test -n "$PKG_CONFIG"; then
Chris@350 4088 _pkg_min_version=0.9.0
Chris@350 4089 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
Chris@350 4090 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
Chris@350 4091 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
Chris@350 4092 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 4093 $as_echo "yes" >&6; }
Chris@350 4094 else
Chris@350 4095 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 4096 $as_echo "no" >&6; }
Chris@350 4097 PKG_CONFIG=""
Chris@350 4098 fi
Chris@354 4099 fi
Chris@354 4100
Chris@354 4101
Chris@354 4102
Chris@354 4103
Chris@354 4104 if test x$QMAKE = x ; then
Chris@545 4105 # Extract the first word of "qmake-qt5", so it can be a program name with args.
Chris@545 4106 set dummy qmake-qt5; ac_word=$2
Chris@350 4107 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 4108 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 4109 if ${ac_cv_prog_QMAKE+:} false; then :
Chris@350 4110 $as_echo_n "(cached) " >&6
Chris@350 4111 else
Chris@350 4112 if test -n "$QMAKE"; then
Chris@350 4113 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
Chris@350 4114 else
Chris@350 4115 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 4116 for as_dir in $QTDIR/bin/
Chris@350 4117 do
Chris@350 4118 IFS=$as_save_IFS
Chris@350 4119 test -z "$as_dir" && as_dir=.
Chris@350 4120 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 4121 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@545 4122 ac_cv_prog_QMAKE="$QTDIR/bin/qmake-qt5"
Chris@350 4123 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 4124 break 2
Chris@350 4125 fi
Chris@350 4126 done
Chris@350 4127 done
Chris@350 4128 IFS=$as_save_IFS
Chris@350 4129
Chris@350 4130 fi
Chris@350 4131 fi
Chris@350 4132 QMAKE=$ac_cv_prog_QMAKE
Chris@350 4133 if test -n "$QMAKE"; then
Chris@350 4134 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
Chris@350 4135 $as_echo "$QMAKE" >&6; }
Chris@350 4136 else
Chris@350 4137 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 4138 $as_echo "no" >&6; }
Chris@350 4139 fi
Chris@350 4140
Chris@350 4141
Chris@354 4142 fi
Chris@350 4143 if test x$QMAKE = x ; then
Chris@1119 4144 # Extract the first word of "qt5-qmake", so it can be a program name with args.
Chris@1119 4145 set dummy qt5-qmake; ac_word=$2
Chris@1119 4146 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@1119 4147 $as_echo_n "checking for $ac_word... " >&6; }
Chris@1119 4148 if ${ac_cv_prog_QMAKE+:} false; then :
Chris@1119 4149 $as_echo_n "(cached) " >&6
Chris@1119 4150 else
Chris@1119 4151 if test -n "$QMAKE"; then
Chris@1119 4152 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
Chris@1119 4153 else
Chris@1119 4154 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@1119 4155 for as_dir in $QTDIR/bin/
Chris@1119 4156 do
Chris@1119 4157 IFS=$as_save_IFS
Chris@1119 4158 test -z "$as_dir" && as_dir=.
Chris@1119 4159 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@1119 4160 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@1119 4161 ac_cv_prog_QMAKE="$QTDIR/bin/qt5-qmake"
Chris@1119 4162 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@1119 4163 break 2
Chris@1119 4164 fi
Chris@1119 4165 done
Chris@1119 4166 done
Chris@1119 4167 IFS=$as_save_IFS
Chris@1119 4168
Chris@1119 4169 fi
Chris@1119 4170 fi
Chris@1119 4171 QMAKE=$ac_cv_prog_QMAKE
Chris@1119 4172 if test -n "$QMAKE"; then
Chris@1119 4173 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
Chris@1119 4174 $as_echo "$QMAKE" >&6; }
Chris@1119 4175 else
Chris@1119 4176 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@1119 4177 $as_echo "no" >&6; }
Chris@1119 4178 fi
Chris@1119 4179
Chris@1119 4180
Chris@1119 4181 fi
Chris@1119 4182 if test x$QMAKE = x ; then
Chris@354 4183 # Extract the first word of "qmake", so it can be a program name with args.
Chris@350 4184 set dummy qmake; ac_word=$2
Chris@350 4185 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 4186 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 4187 if ${ac_cv_prog_QMAKE+:} false; then :
Chris@350 4188 $as_echo_n "(cached) " >&6
Chris@350 4189 else
Chris@350 4190 if test -n "$QMAKE"; then
Chris@350 4191 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
Chris@350 4192 else
Chris@350 4193 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 4194 for as_dir in $QTDIR/bin/
Chris@350 4195 do
Chris@350 4196 IFS=$as_save_IFS
Chris@350 4197 test -z "$as_dir" && as_dir=.
Chris@350 4198 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 4199 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 4200 ac_cv_prog_QMAKE="$QTDIR/bin/qmake"
Chris@350 4201 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 4202 break 2
Chris@350 4203 fi
Chris@350 4204 done
Chris@350 4205 done
Chris@350 4206 IFS=$as_save_IFS
Chris@350 4207
Chris@350 4208 fi
Chris@350 4209 fi
Chris@350 4210 QMAKE=$ac_cv_prog_QMAKE
Chris@350 4211 if test -n "$QMAKE"; then
Chris@350 4212 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
Chris@350 4213 $as_echo "$QMAKE" >&6; }
Chris@350 4214 else
Chris@350 4215 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 4216 $as_echo "no" >&6; }
Chris@350 4217 fi
Chris@350 4218
Chris@350 4219
Chris@354 4220 fi
Chris@354 4221 if test x$QMAKE = x ; then
Chris@354 4222 # Extract the first word of "qmake.exe", so it can be a program name with args.
Chris@350 4223 set dummy qmake.exe; ac_word=$2
Chris@350 4224 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@350 4225 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 4226 if ${ac_cv_prog_QMAKE+:} false; then :
Chris@350 4227 $as_echo_n "(cached) " >&6
Chris@350 4228 else
Chris@350 4229 if test -n "$QMAKE"; then
Chris@350 4230 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
Chris@350 4231 else
Chris@350 4232 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 4233 for as_dir in $QTDIR/bin/
Chris@350 4234 do
Chris@350 4235 IFS=$as_save_IFS
Chris@350 4236 test -z "$as_dir" && as_dir=.
Chris@350 4237 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 4238 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@350 4239 ac_cv_prog_QMAKE="$QTDIR/bin/qmake.exe"
Chris@350 4240 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@350 4241 break 2
Chris@350 4242 fi
Chris@350 4243 done
Chris@350 4244 done
Chris@350 4245 IFS=$as_save_IFS
Chris@350 4246
Chris@350 4247 fi
Chris@350 4248 fi
Chris@350 4249 QMAKE=$ac_cv_prog_QMAKE
Chris@350 4250 if test -n "$QMAKE"; then
Chris@350 4251 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
Chris@350 4252 $as_echo "$QMAKE" >&6; }
Chris@350 4253 else
Chris@350 4254 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@350 4255 $as_echo "no" >&6; }
Chris@350 4256 fi
Chris@350 4257
Chris@350 4258
Chris@354 4259 fi
Chris@354 4260 if test x$QMAKE = x ; then
Chris@545 4261 # Extract the first word of "qmake-qt5", so it can be a program name with args.
Chris@545 4262 set dummy qmake-qt5; ac_word=$2
Chris@354 4263 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@354 4264 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 4265 if ${ac_cv_prog_QMAKE+:} false; then :
Chris@354 4266 $as_echo_n "(cached) " >&6
Chris@354 4267 else
Chris@354 4268 if test -n "$QMAKE"; then
Chris@354 4269 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
Chris@354 4270 else
Chris@354 4271 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@354 4272 for as_dir in $PATH
Chris@354 4273 do
Chris@354 4274 IFS=$as_save_IFS
Chris@354 4275 test -z "$as_dir" && as_dir=.
Chris@354 4276 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 4277 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@545 4278 ac_cv_prog_QMAKE="qmake-qt5"
Chris@354 4279 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@354 4280 break 2
Chris@354 4281 fi
Chris@354 4282 done
Chris@354 4283 done
Chris@354 4284 IFS=$as_save_IFS
Chris@354 4285
Chris@354 4286 fi
Chris@354 4287 fi
Chris@354 4288 QMAKE=$ac_cv_prog_QMAKE
Chris@354 4289 if test -n "$QMAKE"; then
Chris@354 4290 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
Chris@354 4291 $as_echo "$QMAKE" >&6; }
Chris@354 4292 else
Chris@354 4293 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@354 4294 $as_echo "no" >&6; }
Chris@354 4295 fi
Chris@354 4296
Chris@354 4297
Chris@354 4298 fi
Chris@354 4299 if test x$QMAKE = x ; then
Chris@1119 4300 # Extract the first word of "qt5-qmake", so it can be a program name with args.
Chris@1119 4301 set dummy qt5-qmake; ac_word=$2
Chris@1119 4302 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@1119 4303 $as_echo_n "checking for $ac_word... " >&6; }
Chris@1119 4304 if ${ac_cv_prog_QMAKE+:} false; then :
Chris@1119 4305 $as_echo_n "(cached) " >&6
Chris@1119 4306 else
Chris@1119 4307 if test -n "$QMAKE"; then
Chris@1119 4308 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
Chris@1119 4309 else
Chris@1119 4310 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@1119 4311 for as_dir in $PATH
Chris@1119 4312 do
Chris@1119 4313 IFS=$as_save_IFS
Chris@1119 4314 test -z "$as_dir" && as_dir=.
Chris@1119 4315 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@1119 4316 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@1119 4317 ac_cv_prog_QMAKE="qt5-qmake"
Chris@1119 4318 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@1119 4319 break 2
Chris@1119 4320 fi
Chris@1119 4321 done
Chris@1119 4322 done
Chris@1119 4323 IFS=$as_save_IFS
Chris@1119 4324
Chris@1119 4325 fi
Chris@1119 4326 fi
Chris@1119 4327 QMAKE=$ac_cv_prog_QMAKE
Chris@1119 4328 if test -n "$QMAKE"; then
Chris@1119 4329 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
Chris@1119 4330 $as_echo "$QMAKE" >&6; }
Chris@1119 4331 else
Chris@1119 4332 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@1119 4333 $as_echo "no" >&6; }
Chris@1119 4334 fi
Chris@1119 4335
Chris@1119 4336
Chris@1119 4337 fi
Chris@1119 4338 if test x$QMAKE = x ; then
Chris@354 4339 # Extract the first word of "qmake", so it can be a program name with args.
Chris@354 4340 set dummy qmake; ac_word=$2
Chris@354 4341 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
Chris@354 4342 $as_echo_n "checking for $ac_word... " >&6; }
Chris@594 4343 if ${ac_cv_prog_QMAKE+:} false; then :
Chris@354 4344 $as_echo_n "(cached) " >&6
Chris@354 4345 else
Chris@354 4346 if test -n "$QMAKE"; then
Chris@354 4347 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
Chris@354 4348 else
Chris@354 4349 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@354 4350 for as_dir in $PATH
Chris@354 4351 do
Chris@354 4352 IFS=$as_save_IFS
Chris@354 4353 test -z "$as_dir" && as_dir=.
Chris@354 4354 for ac_exec_ext in '' $ac_executable_extensions; do
Chris@594 4355 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
Chris@354 4356 ac_cv_prog_QMAKE="qmake"
Chris@354 4357 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
Chris@354 4358 break 2
Chris@354 4359 fi
Chris@354 4360 done
Chris@354 4361 done
Chris@354 4362 IFS=$as_save_IFS
Chris@354 4363
Chris@354 4364 fi
Chris@354 4365 fi
Chris@354 4366 QMAKE=$ac_cv_prog_QMAKE
Chris@354 4367 if test -n "$QMAKE"; then
Chris@354 4368 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
Chris@354 4369 $as_echo "$QMAKE" >&6; }
Chris@354 4370 else
Chris@354 4371 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@354 4372 $as_echo "no" >&6; }
Chris@354 4373 fi
Chris@354 4374
Chris@354 4375
Chris@354 4376 fi
Chris@354 4377 if test x$QMAKE = x ; then
Chris@594 4378 as_fn_error $? "
Chris@545 4379 Failed to find the required qmake-qt5 or qmake program. Please
Chris@545 4380 ensure you have the necessary Qt5 development files installed, and
Chris@545 4381 if necessary set QTDIR to the location of your Qt5 installation.
Chris@350 4382 " "$LINENO" 5
Chris@350 4383 fi
Chris@350 4384
Chris@350 4385 # Suitable versions of qmake should print out something like:
Chris@350 4386 #
Chris@350 4387 # QMake version 2.01a
Chris@350 4388 # Using Qt version 4.6.3 in /usr/lib
Chris@350 4389 #
Chris@350 4390 # This may be translated, so we check only for the numbers (2.x and 4.x
Chris@350 4391 # in that order).
Chris@350 4392 #
Chris@350 4393 QMAKE_VERSION_OUTPUT=`$QMAKE -v`
Chris@350 4394 case "$QMAKE_VERSION_OUTPUT" in
Chris@545 4395 *5.*) ;;
Chris@350 4396 *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
Chris@350 4397 *** The version of qmake found in \"$QMAKE\" looks like it might be
Chris@545 4398 from the wrong version of Qt (Qt5 is required). Please check
Chris@545 4399 that this is the correct version of qmake for Qt5 builds.
Chris@350 4400 " >&5
Chris@350 4401 $as_echo "$as_me: WARNING:
Chris@350 4402 *** The version of qmake found in \"$QMAKE\" looks like it might be
Chris@545 4403 from the wrong version of Qt (Qt5 is required). Please check
Chris@545 4404 that this is the correct version of qmake for Qt5 builds.
Chris@350 4405 " >&2;}
Chris@350 4406 esac
Chris@350 4407
Chris@359 4408 case "`uname`" in
Chris@360 4409 *Darwin*) QMAKE="$QMAKE -spec macx-g++";;
Chris@359 4410 esac
Chris@359 4411
Chris@350 4412
Chris@350 4413
Chris@350 4414 SV_DEFINES_DEBUG="-DDEBUG -DBUILD_DEBUG -DWANT_TIMING"
Chris@1483 4415 SV_DEFINES_RELEASE="-DNDEBUG -DBUILD_RELEASE -DNO_TIMING -DNO_HIT_COUNTS"
Chris@350 4416 SV_DEFINES_MINIMAL="$SV_DEFINES_RELEASE"
Chris@350 4417
Chris@350 4418 # Now we have: USER_CXXFLAGS contains any flags the user set
Chris@350 4419 # explicitly; AUTOCONF_CXXFLAGS contains flags that Autoconf thought
Chris@350 4420 # we should use. If we have GCC, we override the latter but then
Chris@350 4421 # allow ourselves to be overridden (later) by the former
Chris@350 4422
Chris@350 4423 CXXFLAGS_DEBUG="$AUTOCONF_CXXFLAGS"
Chris@350 4424 CXXFLAGS_RELEASE="$AUTOCONF_CXXFLAGS"
Chris@350 4425 CXXFLAGS_MINIMAL="$AUTOCONF_CXXFLAGS"
Chris@1976 4426 CXXSTANDARD=c++14
Chris@350 4427
Chris@350 4428 if test "x$GCC" = "xyes"; then
Chris@1969 4429 CXXFLAGS_ANY="-fpic -Wall -Wextra -Woverloaded-virtual -Wformat-nonliteral -Wformat-security -Winit-self -Wswitch-enum -Wconversion -pipe"
Chris@1789 4430 CXXFLAGS_DEBUG="$CXXFLAGS_ANY -g -O2 -Werror"
Chris@1465 4431 CXXFLAGS_RELEASE="$CXXFLAGS_ANY -g0 -O3 -ffast-math"
Chris@922 4432 CXXFLAGS_MINIMAL="$CXXFLAGS_ANY -g0 -O0"
Chris@1976 4433 LIBS_DEBUG="$LIBS"
Chris@1976 4434 as_CACHEVAR=`$as_echo "ax_cv_check_cxxflags__--std=$CXXSTANDARD" | $as_tr_sh`
Chris@1976 4435 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts --std=$CXXSTANDARD" >&5
Chris@1976 4436 $as_echo_n "checking whether C++ compiler accepts --std=$CXXSTANDARD... " >&6; }
Chris@1976 4437 if eval \${$as_CACHEVAR+:} false; then :
Chris@1976 4438 $as_echo_n "(cached) " >&6
Chris@1976 4439 else
Chris@1976 4440
Chris@1976 4441 ax_check_save_flags=$CXXFLAGS
Chris@1976 4442 CXXFLAGS="$CXXFLAGS --std=$CXXSTANDARD"
Chris@1976 4443 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@1976 4444 /* end confdefs.h. */
Chris@1976 4445
Chris@1976 4446 int
Chris@1976 4447 main ()
Chris@1976 4448 {
Chris@1976 4449
Chris@1976 4450 ;
Chris@1976 4451 return 0;
Chris@1976 4452 }
Chris@1976 4453 _ACEOF
Chris@1976 4454 if ac_fn_cxx_try_compile "$LINENO"; then :
Chris@1976 4455 eval "$as_CACHEVAR=yes"
Chris@1976 4456 else
Chris@1976 4457 eval "$as_CACHEVAR=no"
Chris@1976 4458 fi
Chris@1976 4459 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@1976 4460 CXXFLAGS=$ax_check_save_flags
Chris@1976 4461 fi
Chris@1976 4462 eval ac_res=\$$as_CACHEVAR
Chris@1976 4463 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@1976 4464 $as_echo "$ac_res" >&6; }
Chris@1976 4465 if eval test \"x\$"$as_CACHEVAR"\" = x"yes"; then :
Chris@1976 4466 :
Chris@1976 4467 else
Chris@1976 4468 { $as_echo "$as_me:${as_lineno-$LINENO}: Compiler does not appear to support $CXXSTANDARD, falling back to c++11" >&5
Chris@1976 4469 $as_echo "$as_me: Compiler does not appear to support $CXXSTANDARD, falling back to c++11" >&6;}
Chris@1976 4470 CXXSTANDARD=c++11
Chris@1976 4471 fi
Chris@1976 4472
Chris@350 4473 fi
Chris@350 4474
Chris@350 4475 CXXFLAGS_BUILD="$CXXFLAGS_RELEASE"
Chris@350 4476 SV_DEFINES_BUILD="$SV_DEFINES_RELEASE"
Chris@350 4477
Chris@361 4478 QMAKE_CONFIG="release"
Chris@361 4479
Chris@350 4480 # Check whether --enable-debug was given.
Chris@350 4481 if test "${enable_debug+set}" = set; then :
Chris@350 4482 enableval=$enable_debug; { $as_echo "$as_me:${as_lineno-$LINENO}: enabling debug build" >&5
Chris@350 4483 $as_echo "$as_me: enabling debug build" >&6;}
Chris@361 4484 QMAKE_CONFIG="debug"
Chris@350 4485 CXXFLAGS_BUILD="$CXXFLAGS_DEBUG"
Chris@1789 4486 SV_DEFINES_BUILD="$SV_DEFINES_DEBUG"
Chris@1754 4487 LIBS="$LIBS_DEBUG"
Chris@350 4488 fi
Chris@350 4489
Chris@350 4490
Chris@350 4491 if test x"$USER_CXXFLAGS" != x; then
Chris@350 4492 { $as_echo "$as_me:${as_lineno-$LINENO}: The CXXFLAGS environment variable is set to \"$USER_CXXFLAGS\"." >&5
Chris@350 4493 $as_echo "$as_me: The CXXFLAGS environment variable is set to \"$USER_CXXFLAGS\"." >&6;}
Chris@350 4494 { $as_echo "$as_me:${as_lineno-$LINENO}: Overriding default compiler flags with the above user setting." >&5
Chris@350 4495 $as_echo "$as_me: Overriding default compiler flags with the above user setting." >&6;}
Chris@350 4496 CXXFLAGS_BUILD="$USER_CXXFLAGS"
Chris@350 4497 CXXFLAGS_MINIMAL="$USER_CXXFLAGS"
Chris@350 4498 fi
Chris@350 4499
Chris@350 4500 CXXFLAGS="$CXXFLAGS_BUILD $SV_DEFINES_BUILD"
Chris@350 4501
Chris@350 4502 # On IRIX 5.3, sys/types and inttypes.h are conflicting.
Chris@350 4503 for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
Chris@350 4504 inttypes.h stdint.h unistd.h
Chris@350 4505 do :
Chris@350 4506 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
Chris@350 4507 ac_fn_cxx_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
Chris@350 4508 "
Chris@594 4509 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 4510 cat >>confdefs.h <<_ACEOF
Chris@350 4511 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
Chris@350 4512 _ACEOF
Chris@350 4513
Chris@350 4514 fi
Chris@350 4515
Chris@350 4516 done
Chris@350 4517
Chris@350 4518
Chris@350 4519
Chris@350 4520 SV_MODULE_MODULE=bz2
Chris@350 4521 SV_MODULE_VERSION_TEST=""
Chris@350 4522 SV_MODULE_HEADER=bzlib.h
Chris@350 4523 SV_MODULE_LIB=bz2
Chris@350 4524 SV_MODULE_FUNC=BZ2_bzReadOpen
Chris@350 4525 SV_MODULE_HAVE=HAVE_$(echo bz2 | tr 'a-z' 'A-Z')
Chris@350 4526 SV_MODULE_FAILED=1
Chris@405 4527 if test -n "$bz2_LIBS" ; then
Chris@405 4528 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 4529 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@405 4530 CXXFLAGS="$CXXFLAGS $bz2_CFLAGS"
Chris@405 4531 LIBS="$LIBS $bz2_LIBS"
Chris@405 4532 SV_MODULE_FAILED=""
Chris@405 4533 fi
Chris@350 4534 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 4535 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 4536 fi
Chris@405 4537 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 4538
Chris@350 4539 pkg_failed=no
Chris@1969 4540 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bz2" >&5
Chris@1969 4541 $as_echo_n "checking for bz2... " >&6; }
Chris@350 4542
Chris@594 4543 if test -n "$bz2_CFLAGS"; then
Chris@594 4544 pkg_cv_bz2_CFLAGS="$bz2_CFLAGS"
Chris@594 4545 elif test -n "$PKG_CONFIG"; then
Chris@594 4546 if test -n "$PKG_CONFIG" && \
Chris@350 4547 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 4548 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 4549 ac_status=$?
Chris@350 4550 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 4551 test $ac_status = 0; }; then
Chris@350 4552 pkg_cv_bz2_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 4553 test "x$?" != "x0" && pkg_failed=yes
Chris@350 4554 else
Chris@350 4555 pkg_failed=yes
Chris@350 4556 fi
Chris@594 4557 else
Chris@594 4558 pkg_failed=untried
Chris@594 4559 fi
Chris@594 4560 if test -n "$bz2_LIBS"; then
Chris@594 4561 pkg_cv_bz2_LIBS="$bz2_LIBS"
Chris@594 4562 elif test -n "$PKG_CONFIG"; then
Chris@594 4563 if test -n "$PKG_CONFIG" && \
Chris@350 4564 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 4565 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 4566 ac_status=$?
Chris@350 4567 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 4568 test $ac_status = 0; }; then
Chris@350 4569 pkg_cv_bz2_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 4570 test "x$?" != "x0" && pkg_failed=yes
Chris@350 4571 else
Chris@350 4572 pkg_failed=yes
Chris@350 4573 fi
Chris@594 4574 else
Chris@594 4575 pkg_failed=untried
Chris@350 4576 fi
Chris@350 4577
Chris@350 4578
Chris@350 4579
Chris@350 4580 if test $pkg_failed = yes; then
Chris@1969 4581 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 4582 $as_echo "no" >&6; }
Chris@350 4583
Chris@350 4584 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 4585 _pkg_short_errors_supported=yes
Chris@350 4586 else
Chris@350 4587 _pkg_short_errors_supported=no
Chris@350 4588 fi
Chris@350 4589 if test $_pkg_short_errors_supported = yes; then
Chris@594 4590 bz2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 4591 else
Chris@594 4592 bz2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 4593 fi
Chris@350 4594 # Put the nasty error message in config.log where it belongs
Chris@350 4595 echo "$bz2_PKG_ERRORS" >&5
Chris@350 4596
Chris@594 4597 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 4598 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 4599 elif test $pkg_failed = untried; then
Chris@1969 4600 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 4601 $as_echo "no" >&6; }
Chris@350 4602 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 4603 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 4604 else
Chris@350 4605 bz2_CFLAGS=$pkg_cv_bz2_CFLAGS
Chris@350 4606 bz2_LIBS=$pkg_cv_bz2_LIBS
Chris@350 4607 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 4608 $as_echo "yes" >&6; }
Chris@350 4609 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $bz2_CFLAGS";LIBS="$LIBS $bz2_LIBS";SV_MODULE_FAILED=""
Chris@350 4610 fi
Chris@350 4611 fi
Chris@350 4612 if test -n "$SV_MODULE_FAILED"; then
Chris@350 4613 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 4614 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 4615 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 4616 HAVES="$HAVES $SV_MODULE_HAVE"
Chris@350 4617 else
Chris@594 4618 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 4619 fi
Chris@350 4620
Chris@350 4621
Chris@350 4622 if test -n "$SV_MODULE_LIB"; then
Chris@350 4623 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 4624 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 4625 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 4626 if eval \${$as_ac_Lib+:} false; then :
Chris@350 4627 $as_echo_n "(cached) " >&6
Chris@350 4628 else
Chris@350 4629 ac_check_lib_save_LIBS=$LIBS
Chris@350 4630 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 4631 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 4632 /* end confdefs.h. */
Chris@350 4633
Chris@350 4634 /* Override any GCC internal prototype to avoid an error.
Chris@350 4635 Use char because int might match the return type of a GCC
Chris@350 4636 builtin and then its argument prototype would still apply. */
Chris@350 4637 #ifdef __cplusplus
Chris@350 4638 extern "C"
Chris@350 4639 #endif
Chris@350 4640 char $SV_MODULE_FUNC ();
Chris@350 4641 int
Chris@350 4642 main ()
Chris@350 4643 {
Chris@350 4644 return $SV_MODULE_FUNC ();
Chris@350 4645 ;
Chris@350 4646 return 0;
Chris@350 4647 }
Chris@350 4648 _ACEOF
Chris@350 4649 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 4650 eval "$as_ac_Lib=yes"
Chris@350 4651 else
Chris@350 4652 eval "$as_ac_Lib=no"
Chris@350 4653 fi
Chris@350 4654 rm -f core conftest.err conftest.$ac_objext \
Chris@350 4655 conftest$ac_exeext conftest.$ac_ext
Chris@350 4656 LIBS=$ac_check_lib_save_LIBS
Chris@350 4657 fi
Chris@350 4658 eval ac_res=\$$as_ac_Lib
Chris@350 4659 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 4660 $as_echo "$ac_res" >&6; }
Chris@594 4661 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 4662 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 4663 else
Chris@594 4664 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 4665 fi
Chris@350 4666
Chris@350 4667 fi
Chris@350 4668 fi
Chris@350 4669
Chris@350 4670
Chris@350 4671 SV_MODULE_MODULE=fftw3
Chris@350 4672 SV_MODULE_VERSION_TEST="fftw3 >= 3.0.0"
Chris@350 4673 SV_MODULE_HEADER=fftw3.h
Chris@350 4674 SV_MODULE_LIB=fftw3
Chris@350 4675 SV_MODULE_FUNC=fftw_execute
Chris@350 4676 SV_MODULE_HAVE=HAVE_$(echo fftw3 | tr 'a-z' 'A-Z')
Chris@350 4677 SV_MODULE_FAILED=1
Chris@405 4678 if test -n "$fftw3_LIBS" ; then
Chris@405 4679 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 4680 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@405 4681 CXXFLAGS="$CXXFLAGS $fftw3_CFLAGS"
Chris@405 4682 LIBS="$LIBS $fftw3_LIBS"
Chris@405 4683 SV_MODULE_FAILED=""
Chris@405 4684 fi
Chris@350 4685 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 4686 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 4687 fi
Chris@405 4688 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 4689
Chris@350 4690 pkg_failed=no
Chris@1969 4691 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fftw3" >&5
Chris@1969 4692 $as_echo_n "checking for fftw3... " >&6; }
Chris@350 4693
Chris@594 4694 if test -n "$fftw3_CFLAGS"; then
Chris@594 4695 pkg_cv_fftw3_CFLAGS="$fftw3_CFLAGS"
Chris@594 4696 elif test -n "$PKG_CONFIG"; then
Chris@594 4697 if test -n "$PKG_CONFIG" && \
Chris@350 4698 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 4699 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 4700 ac_status=$?
Chris@350 4701 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 4702 test $ac_status = 0; }; then
Chris@350 4703 pkg_cv_fftw3_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 4704 test "x$?" != "x0" && pkg_failed=yes
Chris@350 4705 else
Chris@350 4706 pkg_failed=yes
Chris@350 4707 fi
Chris@594 4708 else
Chris@594 4709 pkg_failed=untried
Chris@594 4710 fi
Chris@594 4711 if test -n "$fftw3_LIBS"; then
Chris@594 4712 pkg_cv_fftw3_LIBS="$fftw3_LIBS"
Chris@594 4713 elif test -n "$PKG_CONFIG"; then
Chris@594 4714 if test -n "$PKG_CONFIG" && \
Chris@350 4715 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 4716 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 4717 ac_status=$?
Chris@350 4718 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 4719 test $ac_status = 0; }; then
Chris@350 4720 pkg_cv_fftw3_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 4721 test "x$?" != "x0" && pkg_failed=yes
Chris@350 4722 else
Chris@350 4723 pkg_failed=yes
Chris@350 4724 fi
Chris@594 4725 else
Chris@594 4726 pkg_failed=untried
Chris@350 4727 fi
Chris@350 4728
Chris@350 4729
Chris@350 4730
Chris@350 4731 if test $pkg_failed = yes; then
Chris@1969 4732 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 4733 $as_echo "no" >&6; }
Chris@350 4734
Chris@350 4735 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 4736 _pkg_short_errors_supported=yes
Chris@350 4737 else
Chris@350 4738 _pkg_short_errors_supported=no
Chris@350 4739 fi
Chris@350 4740 if test $_pkg_short_errors_supported = yes; then
Chris@594 4741 fftw3_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 4742 else
Chris@594 4743 fftw3_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 4744 fi
Chris@350 4745 # Put the nasty error message in config.log where it belongs
Chris@350 4746 echo "$fftw3_PKG_ERRORS" >&5
Chris@350 4747
Chris@594 4748 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 4749 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 4750 elif test $pkg_failed = untried; then
Chris@1969 4751 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 4752 $as_echo "no" >&6; }
Chris@350 4753 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 4754 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 4755 else
Chris@350 4756 fftw3_CFLAGS=$pkg_cv_fftw3_CFLAGS
Chris@350 4757 fftw3_LIBS=$pkg_cv_fftw3_LIBS
Chris@350 4758 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 4759 $as_echo "yes" >&6; }
Chris@350 4760 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $fftw3_CFLAGS";LIBS="$LIBS $fftw3_LIBS";SV_MODULE_FAILED=""
Chris@350 4761 fi
Chris@350 4762 fi
Chris@350 4763 if test -n "$SV_MODULE_FAILED"; then
Chris@350 4764 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 4765 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 4766 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 4767 HAVES="$HAVES $SV_MODULE_HAVE"
Chris@350 4768 else
Chris@594 4769 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 4770 fi
Chris@350 4771
Chris@350 4772
Chris@350 4773 if test -n "$SV_MODULE_LIB"; then
Chris@350 4774 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 4775 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 4776 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 4777 if eval \${$as_ac_Lib+:} false; then :
Chris@350 4778 $as_echo_n "(cached) " >&6
Chris@350 4779 else
Chris@350 4780 ac_check_lib_save_LIBS=$LIBS
Chris@350 4781 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 4782 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 4783 /* end confdefs.h. */
Chris@350 4784
Chris@350 4785 /* Override any GCC internal prototype to avoid an error.
Chris@350 4786 Use char because int might match the return type of a GCC
Chris@350 4787 builtin and then its argument prototype would still apply. */
Chris@350 4788 #ifdef __cplusplus
Chris@350 4789 extern "C"
Chris@350 4790 #endif
Chris@350 4791 char $SV_MODULE_FUNC ();
Chris@350 4792 int
Chris@350 4793 main ()
Chris@350 4794 {
Chris@350 4795 return $SV_MODULE_FUNC ();
Chris@350 4796 ;
Chris@350 4797 return 0;
Chris@350 4798 }
Chris@350 4799 _ACEOF
Chris@350 4800 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 4801 eval "$as_ac_Lib=yes"
Chris@350 4802 else
Chris@350 4803 eval "$as_ac_Lib=no"
Chris@350 4804 fi
Chris@350 4805 rm -f core conftest.err conftest.$ac_objext \
Chris@350 4806 conftest$ac_exeext conftest.$ac_ext
Chris@350 4807 LIBS=$ac_check_lib_save_LIBS
Chris@350 4808 fi
Chris@350 4809 eval ac_res=\$$as_ac_Lib
Chris@350 4810 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 4811 $as_echo "$ac_res" >&6; }
Chris@594 4812 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 4813 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 4814 else
Chris@594 4815 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 4816 fi
Chris@350 4817
Chris@350 4818 fi
Chris@350 4819 fi
Chris@350 4820
Chris@350 4821
Chris@350 4822 SV_MODULE_MODULE=fftw3f
Chris@350 4823 SV_MODULE_VERSION_TEST="fftw3f >= 3.0.0"
Chris@350 4824 SV_MODULE_HEADER=fftw3.h
Chris@350 4825 SV_MODULE_LIB=fftw3f
Chris@350 4826 SV_MODULE_FUNC=fftwf_execute
Chris@350 4827 SV_MODULE_HAVE=HAVE_$(echo fftw3f | tr 'a-z' 'A-Z')
Chris@350 4828 SV_MODULE_FAILED=1
Chris@405 4829 if test -n "$fftw3f_LIBS" ; then
Chris@405 4830 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 4831 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@405 4832 CXXFLAGS="$CXXFLAGS $fftw3f_CFLAGS"
Chris@405 4833 LIBS="$LIBS $fftw3f_LIBS"
Chris@405 4834 SV_MODULE_FAILED=""
Chris@405 4835 fi
Chris@350 4836 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 4837 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 4838 fi
Chris@405 4839 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 4840
Chris@350 4841 pkg_failed=no
Chris@1969 4842 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fftw3f" >&5
Chris@1969 4843 $as_echo_n "checking for fftw3f... " >&6; }
Chris@350 4844
Chris@594 4845 if test -n "$fftw3f_CFLAGS"; then
Chris@594 4846 pkg_cv_fftw3f_CFLAGS="$fftw3f_CFLAGS"
Chris@594 4847 elif test -n "$PKG_CONFIG"; then
Chris@594 4848 if test -n "$PKG_CONFIG" && \
Chris@350 4849 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 4850 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 4851 ac_status=$?
Chris@350 4852 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 4853 test $ac_status = 0; }; then
Chris@350 4854 pkg_cv_fftw3f_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 4855 test "x$?" != "x0" && pkg_failed=yes
Chris@350 4856 else
Chris@350 4857 pkg_failed=yes
Chris@350 4858 fi
Chris@594 4859 else
Chris@594 4860 pkg_failed=untried
Chris@594 4861 fi
Chris@594 4862 if test -n "$fftw3f_LIBS"; then
Chris@594 4863 pkg_cv_fftw3f_LIBS="$fftw3f_LIBS"
Chris@594 4864 elif test -n "$PKG_CONFIG"; then
Chris@594 4865 if test -n "$PKG_CONFIG" && \
Chris@350 4866 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 4867 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 4868 ac_status=$?
Chris@350 4869 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 4870 test $ac_status = 0; }; then
Chris@350 4871 pkg_cv_fftw3f_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 4872 test "x$?" != "x0" && pkg_failed=yes
Chris@350 4873 else
Chris@350 4874 pkg_failed=yes
Chris@350 4875 fi
Chris@594 4876 else
Chris@594 4877 pkg_failed=untried
Chris@350 4878 fi
Chris@350 4879
Chris@350 4880
Chris@350 4881
Chris@350 4882 if test $pkg_failed = yes; then
Chris@1969 4883 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 4884 $as_echo "no" >&6; }
Chris@350 4885
Chris@350 4886 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 4887 _pkg_short_errors_supported=yes
Chris@350 4888 else
Chris@350 4889 _pkg_short_errors_supported=no
Chris@350 4890 fi
Chris@350 4891 if test $_pkg_short_errors_supported = yes; then
Chris@594 4892 fftw3f_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 4893 else
Chris@594 4894 fftw3f_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 4895 fi
Chris@350 4896 # Put the nasty error message in config.log where it belongs
Chris@350 4897 echo "$fftw3f_PKG_ERRORS" >&5
Chris@350 4898
Chris@594 4899 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 4900 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 4901 elif test $pkg_failed = untried; then
Chris@1969 4902 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 4903 $as_echo "no" >&6; }
Chris@350 4904 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 4905 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 4906 else
Chris@350 4907 fftw3f_CFLAGS=$pkg_cv_fftw3f_CFLAGS
Chris@350 4908 fftw3f_LIBS=$pkg_cv_fftw3f_LIBS
Chris@350 4909 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 4910 $as_echo "yes" >&6; }
Chris@350 4911 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $fftw3f_CFLAGS";LIBS="$LIBS $fftw3f_LIBS";SV_MODULE_FAILED=""
Chris@350 4912 fi
Chris@350 4913 fi
Chris@350 4914 if test -n "$SV_MODULE_FAILED"; then
Chris@350 4915 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 4916 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 4917 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 4918 HAVES="$HAVES $SV_MODULE_HAVE"
Chris@350 4919 else
Chris@594 4920 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 4921 fi
Chris@350 4922
Chris@350 4923
Chris@350 4924 if test -n "$SV_MODULE_LIB"; then
Chris@350 4925 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 4926 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 4927 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 4928 if eval \${$as_ac_Lib+:} false; then :
Chris@350 4929 $as_echo_n "(cached) " >&6
Chris@350 4930 else
Chris@350 4931 ac_check_lib_save_LIBS=$LIBS
Chris@350 4932 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 4933 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 4934 /* end confdefs.h. */
Chris@350 4935
Chris@350 4936 /* Override any GCC internal prototype to avoid an error.
Chris@350 4937 Use char because int might match the return type of a GCC
Chris@350 4938 builtin and then its argument prototype would still apply. */
Chris@350 4939 #ifdef __cplusplus
Chris@350 4940 extern "C"
Chris@350 4941 #endif
Chris@350 4942 char $SV_MODULE_FUNC ();
Chris@350 4943 int
Chris@350 4944 main ()
Chris@350 4945 {
Chris@350 4946 return $SV_MODULE_FUNC ();
Chris@350 4947 ;
Chris@350 4948 return 0;
Chris@350 4949 }
Chris@350 4950 _ACEOF
Chris@350 4951 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 4952 eval "$as_ac_Lib=yes"
Chris@350 4953 else
Chris@350 4954 eval "$as_ac_Lib=no"
Chris@350 4955 fi
Chris@350 4956 rm -f core conftest.err conftest.$ac_objext \
Chris@350 4957 conftest$ac_exeext conftest.$ac_ext
Chris@350 4958 LIBS=$ac_check_lib_save_LIBS
Chris@350 4959 fi
Chris@350 4960 eval ac_res=\$$as_ac_Lib
Chris@350 4961 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 4962 $as_echo "$ac_res" >&6; }
Chris@594 4963 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 4964 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 4965 else
Chris@594 4966 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 4967 fi
Chris@350 4968
Chris@350 4969 fi
Chris@350 4970 fi
Chris@350 4971
Chris@350 4972
Chris@350 4973 SV_MODULE_MODULE=sndfile
Chris@350 4974 SV_MODULE_VERSION_TEST="sndfile >= 1.0.16"
Chris@350 4975 SV_MODULE_HEADER=sndfile.h
Chris@350 4976 SV_MODULE_LIB=sndfile
Chris@350 4977 SV_MODULE_FUNC=sf_open
Chris@350 4978 SV_MODULE_HAVE=HAVE_$(echo sndfile | tr 'a-z' 'A-Z')
Chris@350 4979 SV_MODULE_FAILED=1
Chris@405 4980 if test -n "$sndfile_LIBS" ; then
Chris@405 4981 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 4982 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@405 4983 CXXFLAGS="$CXXFLAGS $sndfile_CFLAGS"
Chris@405 4984 LIBS="$LIBS $sndfile_LIBS"
Chris@405 4985 SV_MODULE_FAILED=""
Chris@405 4986 fi
Chris@350 4987 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 4988 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 4989 fi
Chris@405 4990 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 4991
Chris@350 4992 pkg_failed=no
Chris@1969 4993 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sndfile" >&5
Chris@1969 4994 $as_echo_n "checking for sndfile... " >&6; }
Chris@350 4995
Chris@594 4996 if test -n "$sndfile_CFLAGS"; then
Chris@594 4997 pkg_cv_sndfile_CFLAGS="$sndfile_CFLAGS"
Chris@594 4998 elif test -n "$PKG_CONFIG"; then
Chris@594 4999 if test -n "$PKG_CONFIG" && \
Chris@350 5000 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5001 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5002 ac_status=$?
Chris@350 5003 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5004 test $ac_status = 0; }; then
Chris@350 5005 pkg_cv_sndfile_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5006 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5007 else
Chris@350 5008 pkg_failed=yes
Chris@350 5009 fi
Chris@594 5010 else
Chris@594 5011 pkg_failed=untried
Chris@594 5012 fi
Chris@594 5013 if test -n "$sndfile_LIBS"; then
Chris@594 5014 pkg_cv_sndfile_LIBS="$sndfile_LIBS"
Chris@594 5015 elif test -n "$PKG_CONFIG"; then
Chris@594 5016 if test -n "$PKG_CONFIG" && \
Chris@350 5017 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5018 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5019 ac_status=$?
Chris@350 5020 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5021 test $ac_status = 0; }; then
Chris@350 5022 pkg_cv_sndfile_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5023 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5024 else
Chris@350 5025 pkg_failed=yes
Chris@350 5026 fi
Chris@594 5027 else
Chris@594 5028 pkg_failed=untried
Chris@350 5029 fi
Chris@350 5030
Chris@350 5031
Chris@350 5032
Chris@350 5033 if test $pkg_failed = yes; then
Chris@1969 5034 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5035 $as_echo "no" >&6; }
Chris@350 5036
Chris@350 5037 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 5038 _pkg_short_errors_supported=yes
Chris@350 5039 else
Chris@350 5040 _pkg_short_errors_supported=no
Chris@350 5041 fi
Chris@350 5042 if test $_pkg_short_errors_supported = yes; then
Chris@594 5043 sndfile_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5044 else
Chris@594 5045 sndfile_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5046 fi
Chris@350 5047 # Put the nasty error message in config.log where it belongs
Chris@350 5048 echo "$sndfile_PKG_ERRORS" >&5
Chris@350 5049
Chris@594 5050 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 5051 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 5052 elif test $pkg_failed = untried; then
Chris@1969 5053 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5054 $as_echo "no" >&6; }
Chris@350 5055 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 5056 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 5057 else
Chris@350 5058 sndfile_CFLAGS=$pkg_cv_sndfile_CFLAGS
Chris@350 5059 sndfile_LIBS=$pkg_cv_sndfile_LIBS
Chris@350 5060 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 5061 $as_echo "yes" >&6; }
Chris@350 5062 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $sndfile_CFLAGS";LIBS="$LIBS $sndfile_LIBS";SV_MODULE_FAILED=""
Chris@350 5063 fi
Chris@350 5064 fi
Chris@350 5065 if test -n "$SV_MODULE_FAILED"; then
Chris@350 5066 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 5067 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 5068 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 5069 HAVES="$HAVES $SV_MODULE_HAVE"
Chris@350 5070 else
Chris@594 5071 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 5072 fi
Chris@350 5073
Chris@350 5074
Chris@350 5075 if test -n "$SV_MODULE_LIB"; then
Chris@350 5076 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 5077 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 5078 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 5079 if eval \${$as_ac_Lib+:} false; then :
Chris@350 5080 $as_echo_n "(cached) " >&6
Chris@350 5081 else
Chris@350 5082 ac_check_lib_save_LIBS=$LIBS
Chris@350 5083 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 5084 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 5085 /* end confdefs.h. */
Chris@350 5086
Chris@350 5087 /* Override any GCC internal prototype to avoid an error.
Chris@350 5088 Use char because int might match the return type of a GCC
Chris@350 5089 builtin and then its argument prototype would still apply. */
Chris@350 5090 #ifdef __cplusplus
Chris@350 5091 extern "C"
Chris@350 5092 #endif
Chris@350 5093 char $SV_MODULE_FUNC ();
Chris@350 5094 int
Chris@350 5095 main ()
Chris@350 5096 {
Chris@350 5097 return $SV_MODULE_FUNC ();
Chris@350 5098 ;
Chris@350 5099 return 0;
Chris@350 5100 }
Chris@350 5101 _ACEOF
Chris@350 5102 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 5103 eval "$as_ac_Lib=yes"
Chris@350 5104 else
Chris@350 5105 eval "$as_ac_Lib=no"
Chris@350 5106 fi
Chris@350 5107 rm -f core conftest.err conftest.$ac_objext \
Chris@350 5108 conftest$ac_exeext conftest.$ac_ext
Chris@350 5109 LIBS=$ac_check_lib_save_LIBS
Chris@350 5110 fi
Chris@350 5111 eval ac_res=\$$as_ac_Lib
Chris@350 5112 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 5113 $as_echo "$ac_res" >&6; }
Chris@594 5114 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 5115 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 5116 else
Chris@594 5117 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 5118 fi
Chris@350 5119
Chris@350 5120 fi
Chris@350 5121 fi
Chris@350 5122
Chris@350 5123
Chris@1035 5124 SV_MODULE_MODULE=libsamplerate
Chris@350 5125 SV_MODULE_VERSION_TEST="samplerate >= 0.1.2"
Chris@350 5126 SV_MODULE_HEADER=samplerate.h
Chris@350 5127 SV_MODULE_LIB=samplerate
Chris@350 5128 SV_MODULE_FUNC=src_new
Chris@1035 5129 SV_MODULE_HAVE=HAVE_$(echo libsamplerate | tr 'a-z' 'A-Z')
Chris@350 5130 SV_MODULE_FAILED=1
Chris@1035 5131 if test -n "$libsamplerate_LIBS" ; then
Chris@405 5132 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 5133 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@1035 5134 CXXFLAGS="$CXXFLAGS $libsamplerate_CFLAGS"
Chris@1035 5135 LIBS="$LIBS $libsamplerate_LIBS"
Chris@405 5136 SV_MODULE_FAILED=""
Chris@405 5137 fi
Chris@350 5138 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 5139 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 5140 fi
Chris@405 5141 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 5142
Chris@350 5143 pkg_failed=no
Chris@1969 5144 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libsamplerate" >&5
Chris@1969 5145 $as_echo_n "checking for libsamplerate... " >&6; }
Chris@1035 5146
Chris@1035 5147 if test -n "$libsamplerate_CFLAGS"; then
Chris@1035 5148 pkg_cv_libsamplerate_CFLAGS="$libsamplerate_CFLAGS"
Chris@594 5149 elif test -n "$PKG_CONFIG"; then
Chris@594 5150 if test -n "$PKG_CONFIG" && \
Chris@350 5151 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5152 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5153 ac_status=$?
Chris@350 5154 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5155 test $ac_status = 0; }; then
Chris@1035 5156 pkg_cv_libsamplerate_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5157 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5158 else
Chris@350 5159 pkg_failed=yes
Chris@350 5160 fi
Chris@594 5161 else
Chris@594 5162 pkg_failed=untried
Chris@594 5163 fi
Chris@1035 5164 if test -n "$libsamplerate_LIBS"; then
Chris@1035 5165 pkg_cv_libsamplerate_LIBS="$libsamplerate_LIBS"
Chris@594 5166 elif test -n "$PKG_CONFIG"; then
Chris@594 5167 if test -n "$PKG_CONFIG" && \
Chris@350 5168 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5169 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5170 ac_status=$?
Chris@350 5171 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5172 test $ac_status = 0; }; then
Chris@1035 5173 pkg_cv_libsamplerate_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5174 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5175 else
Chris@350 5176 pkg_failed=yes
Chris@350 5177 fi
Chris@594 5178 else
Chris@594 5179 pkg_failed=untried
Chris@350 5180 fi
Chris@350 5181
Chris@350 5182
Chris@350 5183
Chris@350 5184 if test $pkg_failed = yes; then
Chris@1969 5185 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5186 $as_echo "no" >&6; }
Chris@350 5187
Chris@350 5188 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 5189 _pkg_short_errors_supported=yes
Chris@350 5190 else
Chris@350 5191 _pkg_short_errors_supported=no
Chris@350 5192 fi
Chris@350 5193 if test $_pkg_short_errors_supported = yes; then
Chris@1035 5194 libsamplerate_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5195 else
Chris@1035 5196 libsamplerate_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5197 fi
Chris@350 5198 # Put the nasty error message in config.log where it belongs
Chris@1035 5199 echo "$libsamplerate_PKG_ERRORS" >&5
Chris@350 5200
Chris@594 5201 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 5202 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 5203 elif test $pkg_failed = untried; then
Chris@1969 5204 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5205 $as_echo "no" >&6; }
Chris@350 5206 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 5207 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 5208 else
Chris@1035 5209 libsamplerate_CFLAGS=$pkg_cv_libsamplerate_CFLAGS
Chris@1035 5210 libsamplerate_LIBS=$pkg_cv_libsamplerate_LIBS
Chris@350 5211 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 5212 $as_echo "yes" >&6; }
Chris@1035 5213 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $libsamplerate_CFLAGS";LIBS="$LIBS $libsamplerate_LIBS";SV_MODULE_FAILED=""
Chris@350 5214 fi
Chris@350 5215 fi
Chris@350 5216 if test -n "$SV_MODULE_FAILED"; then
Chris@350 5217 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 5218 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 5219 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 5220 HAVES="$HAVES $SV_MODULE_HAVE"
Chris@350 5221 else
Chris@594 5222 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 5223 fi
Chris@350 5224
Chris@350 5225
Chris@350 5226 if test -n "$SV_MODULE_LIB"; then
Chris@350 5227 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 5228 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 5229 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 5230 if eval \${$as_ac_Lib+:} false; then :
Chris@350 5231 $as_echo_n "(cached) " >&6
Chris@350 5232 else
Chris@350 5233 ac_check_lib_save_LIBS=$LIBS
Chris@350 5234 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 5235 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 5236 /* end confdefs.h. */
Chris@350 5237
Chris@350 5238 /* Override any GCC internal prototype to avoid an error.
Chris@350 5239 Use char because int might match the return type of a GCC
Chris@350 5240 builtin and then its argument prototype would still apply. */
Chris@350 5241 #ifdef __cplusplus
Chris@350 5242 extern "C"
Chris@350 5243 #endif
Chris@350 5244 char $SV_MODULE_FUNC ();
Chris@350 5245 int
Chris@350 5246 main ()
Chris@350 5247 {
Chris@350 5248 return $SV_MODULE_FUNC ();
Chris@350 5249 ;
Chris@350 5250 return 0;
Chris@350 5251 }
Chris@350 5252 _ACEOF
Chris@350 5253 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 5254 eval "$as_ac_Lib=yes"
Chris@350 5255 else
Chris@350 5256 eval "$as_ac_Lib=no"
Chris@350 5257 fi
Chris@350 5258 rm -f core conftest.err conftest.$ac_objext \
Chris@350 5259 conftest$ac_exeext conftest.$ac_ext
Chris@350 5260 LIBS=$ac_check_lib_save_LIBS
Chris@350 5261 fi
Chris@350 5262 eval ac_res=\$$as_ac_Lib
Chris@350 5263 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 5264 $as_echo "$ac_res" >&6; }
Chris@594 5265 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 5266 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 5267 else
Chris@594 5268 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 5269 fi
Chris@350 5270
Chris@350 5271 fi
Chris@350 5272 fi
Chris@350 5273
Chris@350 5274
Chris@1279 5275 SV_MODULE_MODULE=rubberband
Chris@1279 5276 SV_MODULE_VERSION_TEST="rubberband"
Chris@1279 5277 SV_MODULE_HEADER=rubberband/RubberBandStretcher.h
Chris@1279 5278 SV_MODULE_LIB=rubberband
Chris@1279 5279 SV_MODULE_FUNC=rubberband_new
Chris@1279 5280 SV_MODULE_HAVE=HAVE_$(echo rubberband | tr 'a-z' 'A-Z')
Chris@350 5281 SV_MODULE_FAILED=1
Chris@1279 5282 if test -n "$rubberband_LIBS" ; then
Chris@405 5283 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 5284 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@1279 5285 CXXFLAGS="$CXXFLAGS $rubberband_CFLAGS"
Chris@1279 5286 LIBS="$LIBS $rubberband_LIBS"
Chris@405 5287 SV_MODULE_FAILED=""
Chris@405 5288 fi
Chris@350 5289 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 5290 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 5291 fi
Chris@405 5292 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 5293
Chris@350 5294 pkg_failed=no
Chris@1969 5295 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rubberband" >&5
Chris@1969 5296 $as_echo_n "checking for rubberband... " >&6; }
Chris@1279 5297
Chris@1279 5298 if test -n "$rubberband_CFLAGS"; then
Chris@1279 5299 pkg_cv_rubberband_CFLAGS="$rubberband_CFLAGS"
Chris@594 5300 elif test -n "$PKG_CONFIG"; then
Chris@594 5301 if test -n "$PKG_CONFIG" && \
Chris@350 5302 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5303 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5304 ac_status=$?
Chris@350 5305 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5306 test $ac_status = 0; }; then
Chris@1279 5307 pkg_cv_rubberband_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5308 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5309 else
Chris@350 5310 pkg_failed=yes
Chris@350 5311 fi
Chris@594 5312 else
Chris@594 5313 pkg_failed=untried
Chris@594 5314 fi
Chris@1279 5315 if test -n "$rubberband_LIBS"; then
Chris@1279 5316 pkg_cv_rubberband_LIBS="$rubberband_LIBS"
Chris@594 5317 elif test -n "$PKG_CONFIG"; then
Chris@594 5318 if test -n "$PKG_CONFIG" && \
Chris@350 5319 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5320 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5321 ac_status=$?
Chris@350 5322 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5323 test $ac_status = 0; }; then
Chris@1279 5324 pkg_cv_rubberband_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5325 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5326 else
Chris@350 5327 pkg_failed=yes
Chris@350 5328 fi
Chris@594 5329 else
Chris@594 5330 pkg_failed=untried
Chris@350 5331 fi
Chris@350 5332
Chris@350 5333
Chris@350 5334
Chris@350 5335 if test $pkg_failed = yes; then
Chris@1969 5336 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5337 $as_echo "no" >&6; }
Chris@350 5338
Chris@350 5339 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 5340 _pkg_short_errors_supported=yes
Chris@350 5341 else
Chris@350 5342 _pkg_short_errors_supported=no
Chris@350 5343 fi
Chris@350 5344 if test $_pkg_short_errors_supported = yes; then
Chris@1279 5345 rubberband_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5346 else
Chris@1279 5347 rubberband_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5348 fi
Chris@350 5349 # Put the nasty error message in config.log where it belongs
Chris@1279 5350 echo "$rubberband_PKG_ERRORS" >&5
Chris@350 5351
Chris@594 5352 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 5353 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 5354 elif test $pkg_failed = untried; then
Chris@1969 5355 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5356 $as_echo "no" >&6; }
Chris@350 5357 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 5358 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 5359 else
Chris@1279 5360 rubberband_CFLAGS=$pkg_cv_rubberband_CFLAGS
Chris@1279 5361 rubberband_LIBS=$pkg_cv_rubberband_LIBS
Chris@350 5362 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 5363 $as_echo "yes" >&6; }
Chris@1279 5364 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $rubberband_CFLAGS";LIBS="$LIBS $rubberband_LIBS";SV_MODULE_FAILED=""
Chris@350 5365 fi
Chris@350 5366 fi
Chris@350 5367 if test -n "$SV_MODULE_FAILED"; then
Chris@350 5368 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 5369 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 5370 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 5371 HAVES="$HAVES $SV_MODULE_HAVE"
Chris@350 5372 else
Chris@594 5373 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 5374 fi
Chris@350 5375
Chris@350 5376
Chris@350 5377 if test -n "$SV_MODULE_LIB"; then
Chris@350 5378 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 5379 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 5380 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 5381 if eval \${$as_ac_Lib+:} false; then :
Chris@350 5382 $as_echo_n "(cached) " >&6
Chris@350 5383 else
Chris@350 5384 ac_check_lib_save_LIBS=$LIBS
Chris@350 5385 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 5386 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 5387 /* end confdefs.h. */
Chris@350 5388
Chris@350 5389 /* Override any GCC internal prototype to avoid an error.
Chris@350 5390 Use char because int might match the return type of a GCC
Chris@350 5391 builtin and then its argument prototype would still apply. */
Chris@350 5392 #ifdef __cplusplus
Chris@350 5393 extern "C"
Chris@350 5394 #endif
Chris@350 5395 char $SV_MODULE_FUNC ();
Chris@350 5396 int
Chris@350 5397 main ()
Chris@350 5398 {
Chris@350 5399 return $SV_MODULE_FUNC ();
Chris@350 5400 ;
Chris@350 5401 return 0;
Chris@350 5402 }
Chris@350 5403 _ACEOF
Chris@350 5404 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 5405 eval "$as_ac_Lib=yes"
Chris@350 5406 else
Chris@350 5407 eval "$as_ac_Lib=no"
Chris@350 5408 fi
Chris@350 5409 rm -f core conftest.err conftest.$ac_objext \
Chris@350 5410 conftest$ac_exeext conftest.$ac_ext
Chris@350 5411 LIBS=$ac_check_lib_save_LIBS
Chris@350 5412 fi
Chris@350 5413 eval ac_res=\$$as_ac_Lib
Chris@350 5414 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 5415 $as_echo "$ac_res" >&6; }
Chris@594 5416 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 5417 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 5418 else
Chris@594 5419 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 5420 fi
Chris@350 5421
Chris@350 5422 fi
Chris@350 5423 fi
Chris@350 5424
Chris@350 5425
Chris@1279 5426 SV_MODULE_MODULE=sord
Chris@1279 5427 SV_MODULE_VERSION_TEST="sord-0 >= 0.5"
Chris@1279 5428 SV_MODULE_HEADER=sord/sord.h
Chris@1279 5429 SV_MODULE_LIB=sord-0
Chris@1279 5430 SV_MODULE_FUNC=sord_world_new
Chris@1279 5431 SV_MODULE_HAVE=HAVE_$(echo sord | tr 'a-z' 'A-Z')
Chris@350 5432 SV_MODULE_FAILED=1
Chris@1279 5433 if test -n "$sord_LIBS" ; then
Chris@405 5434 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 5435 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@1279 5436 CXXFLAGS="$CXXFLAGS $sord_CFLAGS"
Chris@1279 5437 LIBS="$LIBS $sord_LIBS"
Chris@405 5438 SV_MODULE_FAILED=""
Chris@405 5439 fi
Chris@350 5440 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 5441 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 5442 fi
Chris@405 5443 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 5444
Chris@350 5445 pkg_failed=no
Chris@1969 5446 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sord" >&5
Chris@1969 5447 $as_echo_n "checking for sord... " >&6; }
Chris@1279 5448
Chris@1279 5449 if test -n "$sord_CFLAGS"; then
Chris@1279 5450 pkg_cv_sord_CFLAGS="$sord_CFLAGS"
Chris@594 5451 elif test -n "$PKG_CONFIG"; then
Chris@594 5452 if test -n "$PKG_CONFIG" && \
Chris@350 5453 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5454 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5455 ac_status=$?
Chris@350 5456 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5457 test $ac_status = 0; }; then
Chris@1279 5458 pkg_cv_sord_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5459 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5460 else
Chris@350 5461 pkg_failed=yes
Chris@350 5462 fi
Chris@594 5463 else
Chris@594 5464 pkg_failed=untried
Chris@594 5465 fi
Chris@1279 5466 if test -n "$sord_LIBS"; then
Chris@1279 5467 pkg_cv_sord_LIBS="$sord_LIBS"
Chris@594 5468 elif test -n "$PKG_CONFIG"; then
Chris@594 5469 if test -n "$PKG_CONFIG" && \
Chris@350 5470 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5471 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5472 ac_status=$?
Chris@350 5473 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5474 test $ac_status = 0; }; then
Chris@1279 5475 pkg_cv_sord_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5476 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5477 else
Chris@350 5478 pkg_failed=yes
Chris@350 5479 fi
Chris@594 5480 else
Chris@594 5481 pkg_failed=untried
Chris@350 5482 fi
Chris@350 5483
Chris@350 5484
Chris@350 5485
Chris@350 5486 if test $pkg_failed = yes; then
Chris@1969 5487 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5488 $as_echo "no" >&6; }
Chris@350 5489
Chris@350 5490 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 5491 _pkg_short_errors_supported=yes
Chris@350 5492 else
Chris@350 5493 _pkg_short_errors_supported=no
Chris@350 5494 fi
Chris@350 5495 if test $_pkg_short_errors_supported = yes; then
Chris@1279 5496 sord_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5497 else
Chris@1279 5498 sord_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5499 fi
Chris@350 5500 # Put the nasty error message in config.log where it belongs
Chris@1279 5501 echo "$sord_PKG_ERRORS" >&5
Chris@350 5502
Chris@594 5503 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 5504 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 5505 elif test $pkg_failed = untried; then
Chris@1969 5506 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5507 $as_echo "no" >&6; }
Chris@350 5508 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 5509 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 5510 else
Chris@1279 5511 sord_CFLAGS=$pkg_cv_sord_CFLAGS
Chris@1279 5512 sord_LIBS=$pkg_cv_sord_LIBS
Chris@350 5513 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 5514 $as_echo "yes" >&6; }
Chris@1279 5515 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $sord_CFLAGS";LIBS="$LIBS $sord_LIBS";SV_MODULE_FAILED=""
Chris@350 5516 fi
Chris@350 5517 fi
Chris@350 5518 if test -n "$SV_MODULE_FAILED"; then
Chris@350 5519 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 5520 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 5521 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 5522 HAVES="$HAVES $SV_MODULE_HAVE"
Chris@350 5523 else
Chris@594 5524 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 5525 fi
Chris@350 5526
Chris@350 5527
Chris@350 5528 if test -n "$SV_MODULE_LIB"; then
Chris@350 5529 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 5530 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 5531 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 5532 if eval \${$as_ac_Lib+:} false; then :
Chris@350 5533 $as_echo_n "(cached) " >&6
Chris@350 5534 else
Chris@350 5535 ac_check_lib_save_LIBS=$LIBS
Chris@350 5536 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 5537 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 5538 /* end confdefs.h. */
Chris@350 5539
Chris@350 5540 /* Override any GCC internal prototype to avoid an error.
Chris@350 5541 Use char because int might match the return type of a GCC
Chris@350 5542 builtin and then its argument prototype would still apply. */
Chris@350 5543 #ifdef __cplusplus
Chris@350 5544 extern "C"
Chris@350 5545 #endif
Chris@350 5546 char $SV_MODULE_FUNC ();
Chris@350 5547 int
Chris@350 5548 main ()
Chris@350 5549 {
Chris@350 5550 return $SV_MODULE_FUNC ();
Chris@350 5551 ;
Chris@350 5552 return 0;
Chris@350 5553 }
Chris@350 5554 _ACEOF
Chris@350 5555 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 5556 eval "$as_ac_Lib=yes"
Chris@350 5557 else
Chris@350 5558 eval "$as_ac_Lib=no"
Chris@350 5559 fi
Chris@350 5560 rm -f core conftest.err conftest.$ac_objext \
Chris@350 5561 conftest$ac_exeext conftest.$ac_ext
Chris@350 5562 LIBS=$ac_check_lib_save_LIBS
Chris@350 5563 fi
Chris@350 5564 eval ac_res=\$$as_ac_Lib
Chris@350 5565 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 5566 $as_echo "$ac_res" >&6; }
Chris@594 5567 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 5568 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 5569 else
Chris@594 5570 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 5571 fi
Chris@350 5572
Chris@350 5573 fi
Chris@350 5574 fi
Chris@350 5575
Chris@350 5576
Chris@1279 5577 SV_MODULE_MODULE=serd
Chris@1279 5578 SV_MODULE_VERSION_TEST="serd-0 >= 0.5"
Chris@1279 5579 SV_MODULE_HEADER=serd/serd.h
Chris@1279 5580 SV_MODULE_LIB=serd-0
Chris@1279 5581 SV_MODULE_FUNC=serd_reader_read_file
Chris@1279 5582 SV_MODULE_HAVE=HAVE_$(echo serd | tr 'a-z' 'A-Z')
Chris@350 5583 SV_MODULE_FAILED=1
Chris@1279 5584 if test -n "$serd_LIBS" ; then
Chris@405 5585 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 5586 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@1279 5587 CXXFLAGS="$CXXFLAGS $serd_CFLAGS"
Chris@1279 5588 LIBS="$LIBS $serd_LIBS"
Chris@405 5589 SV_MODULE_FAILED=""
Chris@405 5590 fi
Chris@350 5591 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 5592 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 5593 fi
Chris@405 5594 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 5595
Chris@350 5596 pkg_failed=no
Chris@1969 5597 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for serd" >&5
Chris@1969 5598 $as_echo_n "checking for serd... " >&6; }
Chris@1279 5599
Chris@1279 5600 if test -n "$serd_CFLAGS"; then
Chris@1279 5601 pkg_cv_serd_CFLAGS="$serd_CFLAGS"
Chris@594 5602 elif test -n "$PKG_CONFIG"; then
Chris@594 5603 if test -n "$PKG_CONFIG" && \
Chris@350 5604 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5605 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5606 ac_status=$?
Chris@350 5607 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5608 test $ac_status = 0; }; then
Chris@1279 5609 pkg_cv_serd_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5610 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5611 else
Chris@350 5612 pkg_failed=yes
Chris@350 5613 fi
Chris@594 5614 else
Chris@594 5615 pkg_failed=untried
Chris@594 5616 fi
Chris@1279 5617 if test -n "$serd_LIBS"; then
Chris@1279 5618 pkg_cv_serd_LIBS="$serd_LIBS"
Chris@594 5619 elif test -n "$PKG_CONFIG"; then
Chris@594 5620 if test -n "$PKG_CONFIG" && \
Chris@350 5621 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5622 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5623 ac_status=$?
Chris@350 5624 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5625 test $ac_status = 0; }; then
Chris@1279 5626 pkg_cv_serd_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5627 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5628 else
Chris@350 5629 pkg_failed=yes
Chris@350 5630 fi
Chris@594 5631 else
Chris@594 5632 pkg_failed=untried
Chris@350 5633 fi
Chris@350 5634
Chris@350 5635
Chris@350 5636
Chris@350 5637 if test $pkg_failed = yes; then
Chris@1969 5638 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5639 $as_echo "no" >&6; }
Chris@350 5640
Chris@350 5641 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 5642 _pkg_short_errors_supported=yes
Chris@350 5643 else
Chris@350 5644 _pkg_short_errors_supported=no
Chris@350 5645 fi
Chris@350 5646 if test $_pkg_short_errors_supported = yes; then
Chris@1279 5647 serd_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5648 else
Chris@1279 5649 serd_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5650 fi
Chris@350 5651 # Put the nasty error message in config.log where it belongs
Chris@1279 5652 echo "$serd_PKG_ERRORS" >&5
Chris@350 5653
Chris@594 5654 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 5655 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 5656 elif test $pkg_failed = untried; then
Chris@1969 5657 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5658 $as_echo "no" >&6; }
Chris@350 5659 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 5660 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 5661 else
Chris@1279 5662 serd_CFLAGS=$pkg_cv_serd_CFLAGS
Chris@1279 5663 serd_LIBS=$pkg_cv_serd_LIBS
Chris@350 5664 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 5665 $as_echo "yes" >&6; }
Chris@1279 5666 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $serd_CFLAGS";LIBS="$LIBS $serd_LIBS";SV_MODULE_FAILED=""
Chris@350 5667 fi
Chris@350 5668 fi
Chris@350 5669 if test -n "$SV_MODULE_FAILED"; then
Chris@350 5670 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 5671 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 5672 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 5673 HAVES="$HAVES $SV_MODULE_HAVE"
Chris@350 5674 else
Chris@594 5675 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 5676 fi
Chris@350 5677
Chris@350 5678
Chris@350 5679 if test -n "$SV_MODULE_LIB"; then
Chris@350 5680 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 5681 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 5682 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 5683 if eval \${$as_ac_Lib+:} false; then :
Chris@350 5684 $as_echo_n "(cached) " >&6
Chris@350 5685 else
Chris@350 5686 ac_check_lib_save_LIBS=$LIBS
Chris@350 5687 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 5688 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 5689 /* end confdefs.h. */
Chris@350 5690
Chris@350 5691 /* Override any GCC internal prototype to avoid an error.
Chris@350 5692 Use char because int might match the return type of a GCC
Chris@350 5693 builtin and then its argument prototype would still apply. */
Chris@350 5694 #ifdef __cplusplus
Chris@350 5695 extern "C"
Chris@350 5696 #endif
Chris@350 5697 char $SV_MODULE_FUNC ();
Chris@350 5698 int
Chris@350 5699 main ()
Chris@350 5700 {
Chris@350 5701 return $SV_MODULE_FUNC ();
Chris@350 5702 ;
Chris@350 5703 return 0;
Chris@350 5704 }
Chris@350 5705 _ACEOF
Chris@350 5706 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 5707 eval "$as_ac_Lib=yes"
Chris@350 5708 else
Chris@350 5709 eval "$as_ac_Lib=no"
Chris@350 5710 fi
Chris@350 5711 rm -f core conftest.err conftest.$ac_objext \
Chris@350 5712 conftest$ac_exeext conftest.$ac_ext
Chris@350 5713 LIBS=$ac_check_lib_save_LIBS
Chris@350 5714 fi
Chris@350 5715 eval ac_res=\$$as_ac_Lib
Chris@350 5716 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 5717 $as_echo "$ac_res" >&6; }
Chris@594 5718 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 5719 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 5720 else
Chris@594 5721 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
Chris@350 5722 fi
Chris@350 5723
Chris@350 5724 fi
Chris@350 5725 fi
Chris@350 5726
Chris@350 5727
Chris@1695 5728 # We need a Cap'n Proto version with the expectedSizeInWordsFromPrefix
Chris@1695 5729 # function, which appeared in v0.6. If we can't find at least that
Chris@1695 5730 # version with pkg-config, we check for the symbol with the compiler.
Chris@350 5731
Chris@350 5732 pkg_failed=no
Chris@1969 5733 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for capnp" >&5
Chris@1969 5734 $as_echo_n "checking for capnp... " >&6; }
Chris@1279 5735
Chris@1279 5736 if test -n "$capnp_CFLAGS"; then
Chris@1279 5737 pkg_cv_capnp_CFLAGS="$capnp_CFLAGS"
Chris@594 5738 elif test -n "$PKG_CONFIG"; then
Chris@594 5739 if test -n "$PKG_CONFIG" && \
Chris@1695 5740 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"capnp >= 0.6\""; } >&5
Chris@1695 5741 ($PKG_CONFIG --exists --print-errors "capnp >= 0.6") 2>&5
Chris@350 5742 ac_status=$?
Chris@350 5743 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5744 test $ac_status = 0; }; then
Chris@1695 5745 pkg_cv_capnp_CFLAGS=`$PKG_CONFIG --cflags "capnp >= 0.6" 2>/dev/null`
Chris@594 5746 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5747 else
Chris@350 5748 pkg_failed=yes
Chris@350 5749 fi
Chris@594 5750 else
Chris@594 5751 pkg_failed=untried
Chris@594 5752 fi
Chris@1279 5753 if test -n "$capnp_LIBS"; then
Chris@1279 5754 pkg_cv_capnp_LIBS="$capnp_LIBS"
Chris@594 5755 elif test -n "$PKG_CONFIG"; then
Chris@594 5756 if test -n "$PKG_CONFIG" && \
Chris@1695 5757 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"capnp >= 0.6\""; } >&5
Chris@1695 5758 ($PKG_CONFIG --exists --print-errors "capnp >= 0.6") 2>&5
Chris@350 5759 ac_status=$?
Chris@350 5760 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5761 test $ac_status = 0; }; then
Chris@1695 5762 pkg_cv_capnp_LIBS=`$PKG_CONFIG --libs "capnp >= 0.6" 2>/dev/null`
Chris@594 5763 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5764 else
Chris@350 5765 pkg_failed=yes
Chris@350 5766 fi
Chris@594 5767 else
Chris@594 5768 pkg_failed=untried
Chris@350 5769 fi
Chris@350 5770
Chris@350 5771
Chris@350 5772
Chris@350 5773 if test $pkg_failed = yes; then
Chris@1969 5774 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5775 $as_echo "no" >&6; }
Chris@350 5776
Chris@350 5777 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 5778 _pkg_short_errors_supported=yes
Chris@350 5779 else
Chris@350 5780 _pkg_short_errors_supported=no
Chris@350 5781 fi
Chris@350 5782 if test $_pkg_short_errors_supported = yes; then
Chris@1695 5783 capnp_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "capnp >= 0.6" 2>&1`
Chris@350 5784 else
Chris@1695 5785 capnp_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "capnp >= 0.6" 2>&1`
Chris@350 5786 fi
Chris@350 5787 # Put the nasty error message in config.log where it belongs
Chris@1279 5788 echo "$capnp_PKG_ERRORS" >&5
Chris@572 5789
Chris@1614 5790 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module capnp using pkg-config, trying again by old-fashioned means" >&5
Chris@1614 5791 $as_echo "$as_me: Failed to find required module capnp using pkg-config, trying again by old-fashioned means" >&6;}
Chris@350 5792 elif test $pkg_failed = untried; then
Chris@1969 5793 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5794 $as_echo "no" >&6; }
Chris@1614 5795 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module capnp using pkg-config, trying again by old-fashioned means" >&5
Chris@1614 5796 $as_echo "$as_me: Failed to find required module capnp using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 5797 else
Chris@1279 5798 capnp_CFLAGS=$pkg_cv_capnp_CFLAGS
Chris@1279 5799 capnp_LIBS=$pkg_cv_capnp_LIBS
Chris@350 5800 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 5801 $as_echo "yes" >&6; }
Chris@1614 5802 HAVES="$HAVES HAVE_CAPNP";CXXFLAGS="$CXXFLAGS $capnp_CFLAGS";LIBS="$LIBS $capnp_LIBS"
Chris@1614 5803 fi
Chris@1614 5804 if test -z "$capnp_LIBS" ; then
Chris@1614 5805 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 5806 /* end confdefs.h. */
Chris@350 5807
Chris@1614 5808
Chris@1614 5809 #include <capnp/serialize.h>
Chris@1614 5810 int main() {
Chris@1614 5811 kj::Array<capnp::word> prefix;
Chris@1614 5812 return capnp::expectedSizeInWordsFromPrefix(prefix.asPtr());
Chris@1614 5813 }
Chris@350 5814 _ACEOF
Chris@1614 5815 if ac_fn_cxx_try_compile "$LINENO"; then :
Chris@1614 5816 HAVES="$HAVES HAVE_CAPNP";LIBS="$LIBS -lcapnp -lkj"
Chris@1614 5817 else
Chris@1614 5818 as_fn_error $? "Failed to find appropriate capnp library" "$LINENO" 5
Chris@1614 5819
Chris@1614 5820 fi
Chris@1614 5821 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
Chris@1614 5822 fi
Chris@350 5823
Chris@572 5824
Chris@572 5825 SV_MODULE_MODULE=liblo
Chris@572 5826 SV_MODULE_VERSION_TEST=""
Chris@572 5827 SV_MODULE_HEADER=lo/lo.h
Chris@572 5828 SV_MODULE_LIB=lo
Chris@572 5829 SV_MODULE_FUNC=lo_address_new
Chris@572 5830 SV_MODULE_HAVE=HAVE_$(echo liblo | tr 'a-z' 'A-Z')
Chris@350 5831 SV_MODULE_FAILED=1
Chris@572 5832 if test -n "$liblo_LIBS" ; then
Chris@405 5833 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 5834 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@572 5835 CXXFLAGS="$CXXFLAGS $liblo_CFLAGS"
Chris@572 5836 LIBS="$LIBS $liblo_LIBS"
Chris@405 5837 SV_MODULE_FAILED=""
Chris@405 5838 fi
Chris@350 5839 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 5840 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 5841 fi
Chris@405 5842 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 5843
Chris@350 5844 pkg_failed=no
Chris@1969 5845 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for liblo" >&5
Chris@1969 5846 $as_echo_n "checking for liblo... " >&6; }
Chris@572 5847
Chris@594 5848 if test -n "$liblo_CFLAGS"; then
Chris@594 5849 pkg_cv_liblo_CFLAGS="$liblo_CFLAGS"
Chris@594 5850 elif test -n "$PKG_CONFIG"; then
Chris@594 5851 if test -n "$PKG_CONFIG" && \
Chris@350 5852 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5853 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5854 ac_status=$?
Chris@350 5855 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5856 test $ac_status = 0; }; then
Chris@572 5857 pkg_cv_liblo_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5858 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5859 else
Chris@350 5860 pkg_failed=yes
Chris@350 5861 fi
Chris@594 5862 else
Chris@594 5863 pkg_failed=untried
Chris@594 5864 fi
Chris@594 5865 if test -n "$liblo_LIBS"; then
Chris@594 5866 pkg_cv_liblo_LIBS="$liblo_LIBS"
Chris@594 5867 elif test -n "$PKG_CONFIG"; then
Chris@594 5868 if test -n "$PKG_CONFIG" && \
Chris@350 5869 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 5870 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 5871 ac_status=$?
Chris@350 5872 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 5873 test $ac_status = 0; }; then
Chris@572 5874 pkg_cv_liblo_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 5875 test "x$?" != "x0" && pkg_failed=yes
Chris@350 5876 else
Chris@350 5877 pkg_failed=yes
Chris@350 5878 fi
Chris@594 5879 else
Chris@594 5880 pkg_failed=untried
Chris@350 5881 fi
Chris@350 5882
Chris@350 5883
Chris@350 5884
Chris@350 5885 if test $pkg_failed = yes; then
Chris@1969 5886 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5887 $as_echo "no" >&6; }
Chris@350 5888
Chris@350 5889 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 5890 _pkg_short_errors_supported=yes
Chris@350 5891 else
Chris@350 5892 _pkg_short_errors_supported=no
Chris@350 5893 fi
Chris@350 5894 if test $_pkg_short_errors_supported = yes; then
Chris@594 5895 liblo_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5896 else
Chris@594 5897 liblo_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 5898 fi
Chris@350 5899 # Put the nasty error message in config.log where it belongs
Chris@572 5900 echo "$liblo_PKG_ERRORS" >&5
Chris@572 5901
Chris@594 5902 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 5903 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 5904 elif test $pkg_failed = untried; then
Chris@1969 5905 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 5906 $as_echo "no" >&6; }
Chris@457 5907 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 5908 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 5909 else
Chris@572 5910 liblo_CFLAGS=$pkg_cv_liblo_CFLAGS
Chris@572 5911 liblo_LIBS=$pkg_cv_liblo_LIBS
Chris@350 5912 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 5913 $as_echo "yes" >&6; }
Chris@572 5914 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $liblo_CFLAGS";LIBS="$LIBS $liblo_LIBS";SV_MODULE_FAILED=""
Chris@350 5915 fi
Chris@350 5916 fi
Chris@350 5917 if test -n "$SV_MODULE_FAILED"; then
Chris@350 5918 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 5919 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 5920 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 5921 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
Chris@350 5922 else
Chris@350 5923 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
Chris@350 5924 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 5925 fi
Chris@350 5926
Chris@350 5927
Chris@350 5928 if test -z "$SV_MODULE_FAILED"; then
Chris@350 5929 if test -n "$SV_MODULE_LIB"; then
Chris@350 5930 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 5931 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 5932 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 5933 if eval \${$as_ac_Lib+:} false; then :
Chris@350 5934 $as_echo_n "(cached) " >&6
Chris@350 5935 else
Chris@350 5936 ac_check_lib_save_LIBS=$LIBS
Chris@350 5937 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 5938 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 5939 /* end confdefs.h. */
Chris@350 5940
Chris@350 5941 /* Override any GCC internal prototype to avoid an error.
Chris@350 5942 Use char because int might match the return type of a GCC
Chris@350 5943 builtin and then its argument prototype would still apply. */
Chris@350 5944 #ifdef __cplusplus
Chris@350 5945 extern "C"
Chris@350 5946 #endif
Chris@350 5947 char $SV_MODULE_FUNC ();
Chris@350 5948 int
Chris@350 5949 main ()
Chris@350 5950 {
Chris@350 5951 return $SV_MODULE_FUNC ();
Chris@350 5952 ;
Chris@350 5953 return 0;
Chris@350 5954 }
Chris@350 5955 _ACEOF
Chris@350 5956 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 5957 eval "$as_ac_Lib=yes"
Chris@350 5958 else
Chris@350 5959 eval "$as_ac_Lib=no"
Chris@350 5960 fi
Chris@350 5961 rm -f core conftest.err conftest.$ac_objext \
Chris@350 5962 conftest$ac_exeext conftest.$ac_ext
Chris@350 5963 LIBS=$ac_check_lib_save_LIBS
Chris@350 5964 fi
Chris@350 5965 eval ac_res=\$$as_ac_Lib
Chris@350 5966 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 5967 $as_echo "$ac_res" >&6; }
Chris@594 5968 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 5969 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 5970 else
Chris@350 5971 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
Chris@350 5972 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 5973 fi
Chris@350 5974
Chris@350 5975 fi
Chris@350 5976 fi
Chris@350 5977 fi
Chris@350 5978
Chris@350 5979
Chris@1035 5980 SV_MODULE_MODULE=portaudio
Chris@572 5981 SV_MODULE_VERSION_TEST="portaudio-2.0 >= 19"
Chris@572 5982 SV_MODULE_HEADER=portaudio.h
Chris@572 5983 SV_MODULE_LIB=portaudio
Chris@572 5984 SV_MODULE_FUNC=Pa_IsFormatSupported
Chris@1035 5985 SV_MODULE_HAVE=HAVE_$(echo portaudio | tr 'a-z' 'A-Z')
Chris@358 5986 SV_MODULE_FAILED=1
Chris@1035 5987 if test -n "$portaudio_LIBS" ; then
Chris@405 5988 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 5989 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@1035 5990 CXXFLAGS="$CXXFLAGS $portaudio_CFLAGS"
Chris@1035 5991 LIBS="$LIBS $portaudio_LIBS"
Chris@405 5992 SV_MODULE_FAILED=""
Chris@405 5993 fi
Chris@358 5994 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@358 5995 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@358 5996 fi
Chris@405 5997 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@358 5998
Chris@358 5999 pkg_failed=no
Chris@1969 6000 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for portaudio" >&5
Chris@1969 6001 $as_echo_n "checking for portaudio... " >&6; }
Chris@1035 6002
Chris@1035 6003 if test -n "$portaudio_CFLAGS"; then
Chris@1035 6004 pkg_cv_portaudio_CFLAGS="$portaudio_CFLAGS"
Chris@594 6005 elif test -n "$PKG_CONFIG"; then
Chris@594 6006 if test -n "$PKG_CONFIG" && \
Chris@358 6007 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@358 6008 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@358 6009 ac_status=$?
Chris@358 6010 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@358 6011 test $ac_status = 0; }; then
Chris@1035 6012 pkg_cv_portaudio_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6013 test "x$?" != "x0" && pkg_failed=yes
Chris@358 6014 else
Chris@358 6015 pkg_failed=yes
Chris@358 6016 fi
Chris@594 6017 else
Chris@594 6018 pkg_failed=untried
Chris@594 6019 fi
Chris@1035 6020 if test -n "$portaudio_LIBS"; then
Chris@1035 6021 pkg_cv_portaudio_LIBS="$portaudio_LIBS"
Chris@594 6022 elif test -n "$PKG_CONFIG"; then
Chris@594 6023 if test -n "$PKG_CONFIG" && \
Chris@358 6024 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@358 6025 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@358 6026 ac_status=$?
Chris@358 6027 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@358 6028 test $ac_status = 0; }; then
Chris@1035 6029 pkg_cv_portaudio_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6030 test "x$?" != "x0" && pkg_failed=yes
Chris@358 6031 else
Chris@358 6032 pkg_failed=yes
Chris@358 6033 fi
Chris@594 6034 else
Chris@594 6035 pkg_failed=untried
Chris@358 6036 fi
Chris@358 6037
Chris@358 6038
Chris@358 6039
Chris@358 6040 if test $pkg_failed = yes; then
Chris@1969 6041 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6042 $as_echo "no" >&6; }
Chris@358 6043
Chris@358 6044 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@358 6045 _pkg_short_errors_supported=yes
Chris@358 6046 else
Chris@358 6047 _pkg_short_errors_supported=no
Chris@358 6048 fi
Chris@358 6049 if test $_pkg_short_errors_supported = yes; then
Chris@1035 6050 portaudio_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@358 6051 else
Chris@1035 6052 portaudio_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@358 6053 fi
Chris@358 6054 # Put the nasty error message in config.log where it belongs
Chris@1035 6055 echo "$portaudio_PKG_ERRORS" >&5
Chris@572 6056
Chris@594 6057 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 6058 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6059 elif test $pkg_failed = untried; then
Chris@1969 6060 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6061 $as_echo "no" >&6; }
Chris@457 6062 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@358 6063 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6064 else
Chris@1035 6065 portaudio_CFLAGS=$pkg_cv_portaudio_CFLAGS
Chris@1035 6066 portaudio_LIBS=$pkg_cv_portaudio_LIBS
Chris@358 6067 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@358 6068 $as_echo "yes" >&6; }
Chris@1035 6069 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $portaudio_CFLAGS";LIBS="$LIBS $portaudio_LIBS";SV_MODULE_FAILED=""
Chris@358 6070 fi
Chris@358 6071 fi
Chris@358 6072 if test -n "$SV_MODULE_FAILED"; then
Chris@358 6073 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@358 6074 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 6075 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@358 6076 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
Chris@358 6077 else
Chris@358 6078 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
Chris@358 6079 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
Chris@358 6080 fi
Chris@358 6081
Chris@358 6082
Chris@358 6083 if test -z "$SV_MODULE_FAILED"; then
Chris@358 6084 if test -n "$SV_MODULE_LIB"; then
Chris@358 6085 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@358 6086 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@358 6087 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 6088 if eval \${$as_ac_Lib+:} false; then :
Chris@358 6089 $as_echo_n "(cached) " >&6
Chris@358 6090 else
Chris@358 6091 ac_check_lib_save_LIBS=$LIBS
Chris@358 6092 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@358 6093 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@358 6094 /* end confdefs.h. */
Chris@358 6095
Chris@358 6096 /* Override any GCC internal prototype to avoid an error.
Chris@358 6097 Use char because int might match the return type of a GCC
Chris@358 6098 builtin and then its argument prototype would still apply. */
Chris@358 6099 #ifdef __cplusplus
Chris@358 6100 extern "C"
Chris@358 6101 #endif
Chris@358 6102 char $SV_MODULE_FUNC ();
Chris@358 6103 int
Chris@358 6104 main ()
Chris@358 6105 {
Chris@358 6106 return $SV_MODULE_FUNC ();
Chris@358 6107 ;
Chris@358 6108 return 0;
Chris@358 6109 }
Chris@358 6110 _ACEOF
Chris@358 6111 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@358 6112 eval "$as_ac_Lib=yes"
Chris@358 6113 else
Chris@358 6114 eval "$as_ac_Lib=no"
Chris@358 6115 fi
Chris@358 6116 rm -f core conftest.err conftest.$ac_objext \
Chris@358 6117 conftest$ac_exeext conftest.$ac_ext
Chris@358 6118 LIBS=$ac_check_lib_save_LIBS
Chris@358 6119 fi
Chris@358 6120 eval ac_res=\$$as_ac_Lib
Chris@358 6121 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@358 6122 $as_echo "$ac_res" >&6; }
Chris@594 6123 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@358 6124 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@358 6125 else
Chris@358 6126 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
Chris@358 6127 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
Chris@358 6128 fi
Chris@358 6129
Chris@358 6130 fi
Chris@358 6131 fi
Chris@358 6132 fi
Chris@358 6133
Chris@358 6134
Chris@572 6135 SV_MODULE_MODULE=JACK
Chris@572 6136 SV_MODULE_VERSION_TEST="jack >= 0.100"
Chris@572 6137 SV_MODULE_HEADER=jack/jack.h
Chris@572 6138 SV_MODULE_LIB=jack
Chris@572 6139 SV_MODULE_FUNC=jack_client_open
Chris@572 6140 SV_MODULE_HAVE=HAVE_$(echo JACK | tr 'a-z' 'A-Z')
Chris@350 6141 SV_MODULE_FAILED=1
Chris@572 6142 if test -n "$JACK_LIBS" ; then
Chris@405 6143 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 6144 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@572 6145 CXXFLAGS="$CXXFLAGS $JACK_CFLAGS"
Chris@572 6146 LIBS="$LIBS $JACK_LIBS"
Chris@405 6147 SV_MODULE_FAILED=""
Chris@405 6148 fi
Chris@350 6149 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 6150 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 6151 fi
Chris@405 6152 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 6153
Chris@350 6154 pkg_failed=no
Chris@1969 6155 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for JACK" >&5
Chris@1969 6156 $as_echo_n "checking for JACK... " >&6; }
Chris@572 6157
Chris@594 6158 if test -n "$JACK_CFLAGS"; then
Chris@594 6159 pkg_cv_JACK_CFLAGS="$JACK_CFLAGS"
Chris@594 6160 elif test -n "$PKG_CONFIG"; then
Chris@594 6161 if test -n "$PKG_CONFIG" && \
Chris@350 6162 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6163 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6164 ac_status=$?
Chris@350 6165 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6166 test $ac_status = 0; }; then
Chris@572 6167 pkg_cv_JACK_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6168 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6169 else
Chris@350 6170 pkg_failed=yes
Chris@350 6171 fi
Chris@594 6172 else
Chris@594 6173 pkg_failed=untried
Chris@594 6174 fi
Chris@594 6175 if test -n "$JACK_LIBS"; then
Chris@594 6176 pkg_cv_JACK_LIBS="$JACK_LIBS"
Chris@594 6177 elif test -n "$PKG_CONFIG"; then
Chris@594 6178 if test -n "$PKG_CONFIG" && \
Chris@350 6179 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6180 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6181 ac_status=$?
Chris@350 6182 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6183 test $ac_status = 0; }; then
Chris@572 6184 pkg_cv_JACK_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6185 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6186 else
Chris@350 6187 pkg_failed=yes
Chris@350 6188 fi
Chris@594 6189 else
Chris@594 6190 pkg_failed=untried
Chris@350 6191 fi
Chris@350 6192
Chris@350 6193
Chris@350 6194
Chris@350 6195 if test $pkg_failed = yes; then
Chris@1969 6196 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6197 $as_echo "no" >&6; }
Chris@350 6198
Chris@350 6199 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 6200 _pkg_short_errors_supported=yes
Chris@350 6201 else
Chris@350 6202 _pkg_short_errors_supported=no
Chris@350 6203 fi
Chris@350 6204 if test $_pkg_short_errors_supported = yes; then
Chris@594 6205 JACK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6206 else
Chris@594 6207 JACK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6208 fi
Chris@350 6209 # Put the nasty error message in config.log where it belongs
Chris@572 6210 echo "$JACK_PKG_ERRORS" >&5
Chris@572 6211
Chris@594 6212 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 6213 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6214 elif test $pkg_failed = untried; then
Chris@1969 6215 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6216 $as_echo "no" >&6; }
Chris@457 6217 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 6218 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6219 else
Chris@572 6220 JACK_CFLAGS=$pkg_cv_JACK_CFLAGS
Chris@572 6221 JACK_LIBS=$pkg_cv_JACK_LIBS
Chris@350 6222 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 6223 $as_echo "yes" >&6; }
Chris@572 6224 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $JACK_CFLAGS";LIBS="$LIBS $JACK_LIBS";SV_MODULE_FAILED=""
Chris@350 6225 fi
Chris@350 6226 fi
Chris@350 6227 if test -n "$SV_MODULE_FAILED"; then
Chris@350 6228 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 6229 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 6230 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 6231 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
Chris@350 6232 else
Chris@350 6233 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
Chris@350 6234 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 6235 fi
Chris@350 6236
Chris@350 6237
Chris@350 6238 if test -z "$SV_MODULE_FAILED"; then
Chris@350 6239 if test -n "$SV_MODULE_LIB"; then
Chris@350 6240 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 6241 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 6242 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 6243 if eval \${$as_ac_Lib+:} false; then :
Chris@350 6244 $as_echo_n "(cached) " >&6
Chris@350 6245 else
Chris@350 6246 ac_check_lib_save_LIBS=$LIBS
Chris@350 6247 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 6248 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 6249 /* end confdefs.h. */
Chris@350 6250
Chris@350 6251 /* Override any GCC internal prototype to avoid an error.
Chris@350 6252 Use char because int might match the return type of a GCC
Chris@350 6253 builtin and then its argument prototype would still apply. */
Chris@350 6254 #ifdef __cplusplus
Chris@350 6255 extern "C"
Chris@350 6256 #endif
Chris@350 6257 char $SV_MODULE_FUNC ();
Chris@350 6258 int
Chris@350 6259 main ()
Chris@350 6260 {
Chris@350 6261 return $SV_MODULE_FUNC ();
Chris@350 6262 ;
Chris@350 6263 return 0;
Chris@350 6264 }
Chris@350 6265 _ACEOF
Chris@350 6266 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 6267 eval "$as_ac_Lib=yes"
Chris@350 6268 else
Chris@350 6269 eval "$as_ac_Lib=no"
Chris@350 6270 fi
Chris@350 6271 rm -f core conftest.err conftest.$ac_objext \
Chris@350 6272 conftest$ac_exeext conftest.$ac_ext
Chris@350 6273 LIBS=$ac_check_lib_save_LIBS
Chris@350 6274 fi
Chris@350 6275 eval ac_res=\$$as_ac_Lib
Chris@350 6276 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 6277 $as_echo "$ac_res" >&6; }
Chris@594 6278 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 6279 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 6280 else
Chris@350 6281 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
Chris@350 6282 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 6283 fi
Chris@350 6284
Chris@350 6285 fi
Chris@350 6286 fi
Chris@350 6287 fi
Chris@350 6288
Chris@350 6289
Chris@572 6290 SV_MODULE_MODULE=libpulse
Chris@572 6291 SV_MODULE_VERSION_TEST="libpulse >= 0.9"
Chris@572 6292 SV_MODULE_HEADER=pulse/pulseaudio.h
Chris@572 6293 SV_MODULE_LIB=pulse
Chris@572 6294 SV_MODULE_FUNC=pa_stream_new
Chris@572 6295 SV_MODULE_HAVE=HAVE_$(echo libpulse | tr 'a-z' 'A-Z')
Chris@350 6296 SV_MODULE_FAILED=1
Chris@572 6297 if test -n "$libpulse_LIBS" ; then
Chris@405 6298 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 6299 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@572 6300 CXXFLAGS="$CXXFLAGS $libpulse_CFLAGS"
Chris@572 6301 LIBS="$LIBS $libpulse_LIBS"
Chris@405 6302 SV_MODULE_FAILED=""
Chris@405 6303 fi
Chris@350 6304 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 6305 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 6306 fi
Chris@405 6307 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 6308
Chris@350 6309 pkg_failed=no
Chris@1969 6310 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libpulse" >&5
Chris@1969 6311 $as_echo_n "checking for libpulse... " >&6; }
Chris@572 6312
Chris@594 6313 if test -n "$libpulse_CFLAGS"; then
Chris@594 6314 pkg_cv_libpulse_CFLAGS="$libpulse_CFLAGS"
Chris@594 6315 elif test -n "$PKG_CONFIG"; then
Chris@594 6316 if test -n "$PKG_CONFIG" && \
Chris@350 6317 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6318 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6319 ac_status=$?
Chris@350 6320 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6321 test $ac_status = 0; }; then
Chris@572 6322 pkg_cv_libpulse_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6323 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6324 else
Chris@350 6325 pkg_failed=yes
Chris@350 6326 fi
Chris@594 6327 else
Chris@594 6328 pkg_failed=untried
Chris@594 6329 fi
Chris@594 6330 if test -n "$libpulse_LIBS"; then
Chris@594 6331 pkg_cv_libpulse_LIBS="$libpulse_LIBS"
Chris@594 6332 elif test -n "$PKG_CONFIG"; then
Chris@594 6333 if test -n "$PKG_CONFIG" && \
Chris@350 6334 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6335 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6336 ac_status=$?
Chris@350 6337 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6338 test $ac_status = 0; }; then
Chris@572 6339 pkg_cv_libpulse_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6340 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6341 else
Chris@350 6342 pkg_failed=yes
Chris@350 6343 fi
Chris@594 6344 else
Chris@594 6345 pkg_failed=untried
Chris@350 6346 fi
Chris@350 6347
Chris@350 6348
Chris@350 6349
Chris@350 6350 if test $pkg_failed = yes; then
Chris@1969 6351 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6352 $as_echo "no" >&6; }
Chris@350 6353
Chris@350 6354 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 6355 _pkg_short_errors_supported=yes
Chris@350 6356 else
Chris@350 6357 _pkg_short_errors_supported=no
Chris@350 6358 fi
Chris@350 6359 if test $_pkg_short_errors_supported = yes; then
Chris@594 6360 libpulse_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6361 else
Chris@594 6362 libpulse_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6363 fi
Chris@350 6364 # Put the nasty error message in config.log where it belongs
Chris@572 6365 echo "$libpulse_PKG_ERRORS" >&5
Chris@572 6366
Chris@594 6367 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 6368 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6369 elif test $pkg_failed = untried; then
Chris@1969 6370 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6371 $as_echo "no" >&6; }
Chris@457 6372 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 6373 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6374 else
Chris@572 6375 libpulse_CFLAGS=$pkg_cv_libpulse_CFLAGS
Chris@572 6376 libpulse_LIBS=$pkg_cv_libpulse_LIBS
Chris@350 6377 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 6378 $as_echo "yes" >&6; }
Chris@572 6379 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $libpulse_CFLAGS";LIBS="$LIBS $libpulse_LIBS";SV_MODULE_FAILED=""
Chris@350 6380 fi
Chris@350 6381 fi
Chris@350 6382 if test -n "$SV_MODULE_FAILED"; then
Chris@350 6383 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 6384 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 6385 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 6386 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
Chris@350 6387 else
Chris@350 6388 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
Chris@350 6389 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 6390 fi
Chris@350 6391
Chris@350 6392
Chris@350 6393 if test -z "$SV_MODULE_FAILED"; then
Chris@350 6394 if test -n "$SV_MODULE_LIB"; then
Chris@350 6395 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 6396 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 6397 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 6398 if eval \${$as_ac_Lib+:} false; then :
Chris@350 6399 $as_echo_n "(cached) " >&6
Chris@350 6400 else
Chris@350 6401 ac_check_lib_save_LIBS=$LIBS
Chris@350 6402 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 6403 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 6404 /* end confdefs.h. */
Chris@350 6405
Chris@350 6406 /* Override any GCC internal prototype to avoid an error.
Chris@350 6407 Use char because int might match the return type of a GCC
Chris@350 6408 builtin and then its argument prototype would still apply. */
Chris@350 6409 #ifdef __cplusplus
Chris@350 6410 extern "C"
Chris@350 6411 #endif
Chris@350 6412 char $SV_MODULE_FUNC ();
Chris@350 6413 int
Chris@350 6414 main ()
Chris@350 6415 {
Chris@350 6416 return $SV_MODULE_FUNC ();
Chris@350 6417 ;
Chris@350 6418 return 0;
Chris@350 6419 }
Chris@350 6420 _ACEOF
Chris@350 6421 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 6422 eval "$as_ac_Lib=yes"
Chris@350 6423 else
Chris@350 6424 eval "$as_ac_Lib=no"
Chris@350 6425 fi
Chris@350 6426 rm -f core conftest.err conftest.$ac_objext \
Chris@350 6427 conftest$ac_exeext conftest.$ac_ext
Chris@350 6428 LIBS=$ac_check_lib_save_LIBS
Chris@350 6429 fi
Chris@350 6430 eval ac_res=\$$as_ac_Lib
Chris@350 6431 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 6432 $as_echo "$ac_res" >&6; }
Chris@594 6433 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 6434 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 6435 else
Chris@350 6436 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
Chris@350 6437 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 6438 fi
Chris@350 6439
Chris@350 6440 fi
Chris@350 6441 fi
Chris@350 6442 fi
Chris@350 6443
Chris@350 6444
Chris@572 6445 SV_MODULE_MODULE=lrdf
Chris@572 6446 SV_MODULE_VERSION_TEST="lrdf >= 0.2"
Chris@572 6447 SV_MODULE_HEADER=lrdf.h
Chris@572 6448 SV_MODULE_LIB=lrdf
Chris@572 6449 SV_MODULE_FUNC=lrdf_init
Chris@572 6450 SV_MODULE_HAVE=HAVE_$(echo lrdf | tr 'a-z' 'A-Z')
Chris@350 6451 SV_MODULE_FAILED=1
Chris@572 6452 if test -n "$lrdf_LIBS" ; then
Chris@405 6453 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 6454 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@572 6455 CXXFLAGS="$CXXFLAGS $lrdf_CFLAGS"
Chris@572 6456 LIBS="$LIBS $lrdf_LIBS"
Chris@405 6457 SV_MODULE_FAILED=""
Chris@405 6458 fi
Chris@350 6459 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 6460 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 6461 fi
Chris@405 6462 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 6463
Chris@350 6464 pkg_failed=no
Chris@1969 6465 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lrdf" >&5
Chris@1969 6466 $as_echo_n "checking for lrdf... " >&6; }
Chris@572 6467
Chris@594 6468 if test -n "$lrdf_CFLAGS"; then
Chris@594 6469 pkg_cv_lrdf_CFLAGS="$lrdf_CFLAGS"
Chris@594 6470 elif test -n "$PKG_CONFIG"; then
Chris@594 6471 if test -n "$PKG_CONFIG" && \
Chris@350 6472 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6473 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6474 ac_status=$?
Chris@350 6475 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6476 test $ac_status = 0; }; then
Chris@572 6477 pkg_cv_lrdf_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6478 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6479 else
Chris@350 6480 pkg_failed=yes
Chris@350 6481 fi
Chris@594 6482 else
Chris@594 6483 pkg_failed=untried
Chris@594 6484 fi
Chris@594 6485 if test -n "$lrdf_LIBS"; then
Chris@594 6486 pkg_cv_lrdf_LIBS="$lrdf_LIBS"
Chris@594 6487 elif test -n "$PKG_CONFIG"; then
Chris@594 6488 if test -n "$PKG_CONFIG" && \
Chris@350 6489 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6490 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6491 ac_status=$?
Chris@350 6492 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6493 test $ac_status = 0; }; then
Chris@572 6494 pkg_cv_lrdf_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6495 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6496 else
Chris@350 6497 pkg_failed=yes
Chris@350 6498 fi
Chris@594 6499 else
Chris@594 6500 pkg_failed=untried
Chris@350 6501 fi
Chris@350 6502
Chris@350 6503
Chris@350 6504
Chris@350 6505 if test $pkg_failed = yes; then
Chris@1969 6506 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6507 $as_echo "no" >&6; }
Chris@350 6508
Chris@350 6509 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 6510 _pkg_short_errors_supported=yes
Chris@350 6511 else
Chris@350 6512 _pkg_short_errors_supported=no
Chris@350 6513 fi
Chris@350 6514 if test $_pkg_short_errors_supported = yes; then
Chris@594 6515 lrdf_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6516 else
Chris@594 6517 lrdf_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6518 fi
Chris@350 6519 # Put the nasty error message in config.log where it belongs
Chris@572 6520 echo "$lrdf_PKG_ERRORS" >&5
Chris@572 6521
Chris@594 6522 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 6523 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6524 elif test $pkg_failed = untried; then
Chris@1969 6525 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6526 $as_echo "no" >&6; }
Chris@457 6527 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 6528 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6529 else
Chris@572 6530 lrdf_CFLAGS=$pkg_cv_lrdf_CFLAGS
Chris@572 6531 lrdf_LIBS=$pkg_cv_lrdf_LIBS
Chris@350 6532 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 6533 $as_echo "yes" >&6; }
Chris@572 6534 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $lrdf_CFLAGS";LIBS="$LIBS $lrdf_LIBS";SV_MODULE_FAILED=""
Chris@350 6535 fi
Chris@350 6536 fi
Chris@350 6537 if test -n "$SV_MODULE_FAILED"; then
Chris@350 6538 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 6539 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 6540 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 6541 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
Chris@350 6542 else
Chris@350 6543 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
Chris@350 6544 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 6545 fi
Chris@350 6546
Chris@350 6547
Chris@350 6548 if test -z "$SV_MODULE_FAILED"; then
Chris@350 6549 if test -n "$SV_MODULE_LIB"; then
Chris@350 6550 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 6551 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 6552 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 6553 if eval \${$as_ac_Lib+:} false; then :
Chris@350 6554 $as_echo_n "(cached) " >&6
Chris@350 6555 else
Chris@350 6556 ac_check_lib_save_LIBS=$LIBS
Chris@350 6557 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 6558 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 6559 /* end confdefs.h. */
Chris@350 6560
Chris@350 6561 /* Override any GCC internal prototype to avoid an error.
Chris@350 6562 Use char because int might match the return type of a GCC
Chris@350 6563 builtin and then its argument prototype would still apply. */
Chris@350 6564 #ifdef __cplusplus
Chris@350 6565 extern "C"
Chris@350 6566 #endif
Chris@350 6567 char $SV_MODULE_FUNC ();
Chris@350 6568 int
Chris@350 6569 main ()
Chris@350 6570 {
Chris@350 6571 return $SV_MODULE_FUNC ();
Chris@350 6572 ;
Chris@350 6573 return 0;
Chris@350 6574 }
Chris@350 6575 _ACEOF
Chris@350 6576 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 6577 eval "$as_ac_Lib=yes"
Chris@350 6578 else
Chris@350 6579 eval "$as_ac_Lib=no"
Chris@350 6580 fi
Chris@350 6581 rm -f core conftest.err conftest.$ac_objext \
Chris@350 6582 conftest$ac_exeext conftest.$ac_ext
Chris@350 6583 LIBS=$ac_check_lib_save_LIBS
Chris@350 6584 fi
Chris@350 6585 eval ac_res=\$$as_ac_Lib
Chris@350 6586 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 6587 $as_echo "$ac_res" >&6; }
Chris@594 6588 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 6589 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 6590 else
Chris@350 6591 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
Chris@350 6592 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 6593 fi
Chris@350 6594
Chris@350 6595 fi
Chris@350 6596 fi
Chris@350 6597 fi
Chris@350 6598
Chris@350 6599
Chris@572 6600 SV_MODULE_MODULE=oggz
Chris@572 6601 SV_MODULE_VERSION_TEST="oggz >= 1.0.0"
Chris@572 6602 SV_MODULE_HEADER=oggz/oggz.h
Chris@572 6603 SV_MODULE_LIB=oggz
Chris@572 6604 SV_MODULE_FUNC=oggz_run
Chris@572 6605 SV_MODULE_HAVE=HAVE_$(echo oggz | tr 'a-z' 'A-Z')
Chris@350 6606 SV_MODULE_FAILED=1
Chris@572 6607 if test -n "$oggz_LIBS" ; then
Chris@405 6608 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 6609 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@572 6610 CXXFLAGS="$CXXFLAGS $oggz_CFLAGS"
Chris@572 6611 LIBS="$LIBS $oggz_LIBS"
Chris@405 6612 SV_MODULE_FAILED=""
Chris@405 6613 fi
Chris@350 6614 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 6615 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 6616 fi
Chris@405 6617 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 6618
Chris@350 6619 pkg_failed=no
Chris@1969 6620 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for oggz" >&5
Chris@1969 6621 $as_echo_n "checking for oggz... " >&6; }
Chris@572 6622
Chris@594 6623 if test -n "$oggz_CFLAGS"; then
Chris@594 6624 pkg_cv_oggz_CFLAGS="$oggz_CFLAGS"
Chris@594 6625 elif test -n "$PKG_CONFIG"; then
Chris@594 6626 if test -n "$PKG_CONFIG" && \
Chris@350 6627 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6628 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6629 ac_status=$?
Chris@350 6630 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6631 test $ac_status = 0; }; then
Chris@572 6632 pkg_cv_oggz_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6633 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6634 else
Chris@350 6635 pkg_failed=yes
Chris@350 6636 fi
Chris@594 6637 else
Chris@594 6638 pkg_failed=untried
Chris@594 6639 fi
Chris@594 6640 if test -n "$oggz_LIBS"; then
Chris@594 6641 pkg_cv_oggz_LIBS="$oggz_LIBS"
Chris@594 6642 elif test -n "$PKG_CONFIG"; then
Chris@594 6643 if test -n "$PKG_CONFIG" && \
Chris@350 6644 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6645 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6646 ac_status=$?
Chris@350 6647 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6648 test $ac_status = 0; }; then
Chris@572 6649 pkg_cv_oggz_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6650 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6651 else
Chris@350 6652 pkg_failed=yes
Chris@350 6653 fi
Chris@594 6654 else
Chris@594 6655 pkg_failed=untried
Chris@350 6656 fi
Chris@350 6657
Chris@350 6658
Chris@350 6659
Chris@350 6660 if test $pkg_failed = yes; then
Chris@1969 6661 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6662 $as_echo "no" >&6; }
Chris@350 6663
Chris@350 6664 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 6665 _pkg_short_errors_supported=yes
Chris@350 6666 else
Chris@350 6667 _pkg_short_errors_supported=no
Chris@350 6668 fi
Chris@350 6669 if test $_pkg_short_errors_supported = yes; then
Chris@594 6670 oggz_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6671 else
Chris@594 6672 oggz_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6673 fi
Chris@350 6674 # Put the nasty error message in config.log where it belongs
Chris@572 6675 echo "$oggz_PKG_ERRORS" >&5
Chris@572 6676
Chris@594 6677 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 6678 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6679 elif test $pkg_failed = untried; then
Chris@1969 6680 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6681 $as_echo "no" >&6; }
Chris@457 6682 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 6683 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6684 else
Chris@572 6685 oggz_CFLAGS=$pkg_cv_oggz_CFLAGS
Chris@572 6686 oggz_LIBS=$pkg_cv_oggz_LIBS
Chris@350 6687 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 6688 $as_echo "yes" >&6; }
Chris@572 6689 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $oggz_CFLAGS";LIBS="$LIBS $oggz_LIBS";SV_MODULE_FAILED=""
Chris@350 6690 fi
Chris@350 6691 fi
Chris@350 6692 if test -n "$SV_MODULE_FAILED"; then
Chris@350 6693 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 6694 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 6695 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 6696 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
Chris@350 6697 else
Chris@350 6698 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
Chris@350 6699 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 6700 fi
Chris@350 6701
Chris@350 6702
Chris@350 6703 if test -z "$SV_MODULE_FAILED"; then
Chris@350 6704 if test -n "$SV_MODULE_LIB"; then
Chris@350 6705 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 6706 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 6707 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 6708 if eval \${$as_ac_Lib+:} false; then :
Chris@350 6709 $as_echo_n "(cached) " >&6
Chris@350 6710 else
Chris@350 6711 ac_check_lib_save_LIBS=$LIBS
Chris@350 6712 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 6713 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 6714 /* end confdefs.h. */
Chris@350 6715
Chris@350 6716 /* Override any GCC internal prototype to avoid an error.
Chris@350 6717 Use char because int might match the return type of a GCC
Chris@350 6718 builtin and then its argument prototype would still apply. */
Chris@350 6719 #ifdef __cplusplus
Chris@350 6720 extern "C"
Chris@350 6721 #endif
Chris@350 6722 char $SV_MODULE_FUNC ();
Chris@350 6723 int
Chris@350 6724 main ()
Chris@350 6725 {
Chris@350 6726 return $SV_MODULE_FUNC ();
Chris@350 6727 ;
Chris@350 6728 return 0;
Chris@350 6729 }
Chris@350 6730 _ACEOF
Chris@350 6731 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 6732 eval "$as_ac_Lib=yes"
Chris@350 6733 else
Chris@350 6734 eval "$as_ac_Lib=no"
Chris@350 6735 fi
Chris@350 6736 rm -f core conftest.err conftest.$ac_objext \
Chris@350 6737 conftest$ac_exeext conftest.$ac_ext
Chris@350 6738 LIBS=$ac_check_lib_save_LIBS
Chris@350 6739 fi
Chris@350 6740 eval ac_res=\$$as_ac_Lib
Chris@350 6741 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 6742 $as_echo "$ac_res" >&6; }
Chris@594 6743 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 6744 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 6745 else
Chris@350 6746 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
Chris@350 6747 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 6748 fi
Chris@350 6749
Chris@350 6750 fi
Chris@350 6751 fi
Chris@350 6752 fi
Chris@350 6753
Chris@350 6754
Chris@572 6755 SV_MODULE_MODULE=fishsound
Chris@572 6756 SV_MODULE_VERSION_TEST="fishsound >= 1.0.0"
Chris@572 6757 SV_MODULE_HEADER=fishsound/fishsound.h
Chris@572 6758 SV_MODULE_LIB=fishsound
Chris@572 6759 SV_MODULE_FUNC=fish_sound_new
Chris@572 6760 SV_MODULE_HAVE=HAVE_$(echo fishsound | tr 'a-z' 'A-Z')
Chris@350 6761 SV_MODULE_FAILED=1
Chris@572 6762 if test -n "$fishsound_LIBS" ; then
Chris@405 6763 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 6764 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@572 6765 CXXFLAGS="$CXXFLAGS $fishsound_CFLAGS"
Chris@572 6766 LIBS="$LIBS $fishsound_LIBS"
Chris@405 6767 SV_MODULE_FAILED=""
Chris@405 6768 fi
Chris@350 6769 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 6770 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 6771 fi
Chris@405 6772 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 6773
Chris@350 6774 pkg_failed=no
Chris@1969 6775 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fishsound" >&5
Chris@1969 6776 $as_echo_n "checking for fishsound... " >&6; }
Chris@572 6777
Chris@594 6778 if test -n "$fishsound_CFLAGS"; then
Chris@594 6779 pkg_cv_fishsound_CFLAGS="$fishsound_CFLAGS"
Chris@594 6780 elif test -n "$PKG_CONFIG"; then
Chris@594 6781 if test -n "$PKG_CONFIG" && \
Chris@350 6782 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6783 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6784 ac_status=$?
Chris@350 6785 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6786 test $ac_status = 0; }; then
Chris@572 6787 pkg_cv_fishsound_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6788 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6789 else
Chris@350 6790 pkg_failed=yes
Chris@350 6791 fi
Chris@594 6792 else
Chris@594 6793 pkg_failed=untried
Chris@594 6794 fi
Chris@594 6795 if test -n "$fishsound_LIBS"; then
Chris@594 6796 pkg_cv_fishsound_LIBS="$fishsound_LIBS"
Chris@594 6797 elif test -n "$PKG_CONFIG"; then
Chris@594 6798 if test -n "$PKG_CONFIG" && \
Chris@350 6799 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6800 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6801 ac_status=$?
Chris@350 6802 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6803 test $ac_status = 0; }; then
Chris@572 6804 pkg_cv_fishsound_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6805 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6806 else
Chris@350 6807 pkg_failed=yes
Chris@350 6808 fi
Chris@594 6809 else
Chris@594 6810 pkg_failed=untried
Chris@350 6811 fi
Chris@350 6812
Chris@350 6813
Chris@350 6814
Chris@350 6815 if test $pkg_failed = yes; then
Chris@1969 6816 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6817 $as_echo "no" >&6; }
Chris@350 6818
Chris@350 6819 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 6820 _pkg_short_errors_supported=yes
Chris@350 6821 else
Chris@350 6822 _pkg_short_errors_supported=no
Chris@350 6823 fi
Chris@350 6824 if test $_pkg_short_errors_supported = yes; then
Chris@594 6825 fishsound_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6826 else
Chris@594 6827 fishsound_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6828 fi
Chris@350 6829 # Put the nasty error message in config.log where it belongs
Chris@572 6830 echo "$fishsound_PKG_ERRORS" >&5
Chris@572 6831
Chris@594 6832 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 6833 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6834 elif test $pkg_failed = untried; then
Chris@1969 6835 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6836 $as_echo "no" >&6; }
Chris@457 6837 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 6838 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6839 else
Chris@572 6840 fishsound_CFLAGS=$pkg_cv_fishsound_CFLAGS
Chris@572 6841 fishsound_LIBS=$pkg_cv_fishsound_LIBS
Chris@350 6842 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 6843 $as_echo "yes" >&6; }
Chris@572 6844 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $fishsound_CFLAGS";LIBS="$LIBS $fishsound_LIBS";SV_MODULE_FAILED=""
Chris@350 6845 fi
Chris@350 6846 fi
Chris@350 6847 if test -n "$SV_MODULE_FAILED"; then
Chris@350 6848 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 6849 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 6850 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 6851 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
Chris@350 6852 else
Chris@350 6853 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
Chris@350 6854 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 6855 fi
Chris@350 6856
Chris@350 6857
Chris@350 6858 if test -z "$SV_MODULE_FAILED"; then
Chris@350 6859 if test -n "$SV_MODULE_LIB"; then
Chris@350 6860 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 6861 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 6862 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 6863 if eval \${$as_ac_Lib+:} false; then :
Chris@350 6864 $as_echo_n "(cached) " >&6
Chris@350 6865 else
Chris@350 6866 ac_check_lib_save_LIBS=$LIBS
Chris@350 6867 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@350 6868 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@350 6869 /* end confdefs.h. */
Chris@350 6870
Chris@350 6871 /* Override any GCC internal prototype to avoid an error.
Chris@350 6872 Use char because int might match the return type of a GCC
Chris@350 6873 builtin and then its argument prototype would still apply. */
Chris@350 6874 #ifdef __cplusplus
Chris@350 6875 extern "C"
Chris@350 6876 #endif
Chris@350 6877 char $SV_MODULE_FUNC ();
Chris@350 6878 int
Chris@350 6879 main ()
Chris@350 6880 {
Chris@350 6881 return $SV_MODULE_FUNC ();
Chris@350 6882 ;
Chris@350 6883 return 0;
Chris@350 6884 }
Chris@350 6885 _ACEOF
Chris@350 6886 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@350 6887 eval "$as_ac_Lib=yes"
Chris@350 6888 else
Chris@350 6889 eval "$as_ac_Lib=no"
Chris@350 6890 fi
Chris@350 6891 rm -f core conftest.err conftest.$ac_objext \
Chris@350 6892 conftest$ac_exeext conftest.$ac_ext
Chris@350 6893 LIBS=$ac_check_lib_save_LIBS
Chris@350 6894 fi
Chris@350 6895 eval ac_res=\$$as_ac_Lib
Chris@350 6896 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@350 6897 $as_echo "$ac_res" >&6; }
Chris@594 6898 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@350 6899 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@350 6900 else
Chris@350 6901 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
Chris@350 6902 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 6903 fi
Chris@350 6904
Chris@350 6905 fi
Chris@350 6906 fi
Chris@350 6907 fi
Chris@350 6908
Chris@350 6909
Chris@572 6910 SV_MODULE_MODULE=mad
Chris@572 6911 SV_MODULE_VERSION_TEST="mad >= 0.15.0"
Chris@572 6912 SV_MODULE_HEADER=mad.h
Chris@572 6913 SV_MODULE_LIB=mad
Chris@572 6914 SV_MODULE_FUNC=mad_decoder_init
Chris@572 6915 SV_MODULE_HAVE=HAVE_$(echo mad | tr 'a-z' 'A-Z')
Chris@350 6916 SV_MODULE_FAILED=1
Chris@572 6917 if test -n "$mad_LIBS" ; then
Chris@405 6918 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@405 6919 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@572 6920 CXXFLAGS="$CXXFLAGS $mad_CFLAGS"
Chris@572 6921 LIBS="$LIBS $mad_LIBS"
Chris@405 6922 SV_MODULE_FAILED=""
Chris@405 6923 fi
Chris@350 6924 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@350 6925 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@350 6926 fi
Chris@405 6927 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@350 6928
Chris@350 6929 pkg_failed=no
Chris@1969 6930 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mad" >&5
Chris@1969 6931 $as_echo_n "checking for mad... " >&6; }
Chris@572 6932
Chris@594 6933 if test -n "$mad_CFLAGS"; then
Chris@594 6934 pkg_cv_mad_CFLAGS="$mad_CFLAGS"
Chris@594 6935 elif test -n "$PKG_CONFIG"; then
Chris@594 6936 if test -n "$PKG_CONFIG" && \
Chris@350 6937 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6938 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6939 ac_status=$?
Chris@350 6940 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6941 test $ac_status = 0; }; then
Chris@572 6942 pkg_cv_mad_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6943 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6944 else
Chris@350 6945 pkg_failed=yes
Chris@350 6946 fi
Chris@594 6947 else
Chris@594 6948 pkg_failed=untried
Chris@594 6949 fi
Chris@594 6950 if test -n "$mad_LIBS"; then
Chris@594 6951 pkg_cv_mad_LIBS="$mad_LIBS"
Chris@594 6952 elif test -n "$PKG_CONFIG"; then
Chris@594 6953 if test -n "$PKG_CONFIG" && \
Chris@350 6954 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@350 6955 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@350 6956 ac_status=$?
Chris@350 6957 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@350 6958 test $ac_status = 0; }; then
Chris@572 6959 pkg_cv_mad_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 6960 test "x$?" != "x0" && pkg_failed=yes
Chris@350 6961 else
Chris@350 6962 pkg_failed=yes
Chris@350 6963 fi
Chris@594 6964 else
Chris@594 6965 pkg_failed=untried
Chris@350 6966 fi
Chris@350 6967
Chris@350 6968
Chris@350 6969
Chris@350 6970 if test $pkg_failed = yes; then
Chris@1969 6971 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6972 $as_echo "no" >&6; }
Chris@350 6973
Chris@350 6974 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@350 6975 _pkg_short_errors_supported=yes
Chris@350 6976 else
Chris@350 6977 _pkg_short_errors_supported=no
Chris@350 6978 fi
Chris@350 6979 if test $_pkg_short_errors_supported = yes; then
Chris@594 6980 mad_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6981 else
Chris@594 6982 mad_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@350 6983 fi
Chris@350 6984 # Put the nasty error message in config.log where it belongs
Chris@572 6985 echo "$mad_PKG_ERRORS" >&5
Chris@572 6986
Chris@594 6987 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 6988 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6989 elif test $pkg_failed = untried; then
Chris@1969 6990 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 6991 $as_echo "no" >&6; }
Chris@457 6992 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@350 6993 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 6994 else
Chris@572 6995 mad_CFLAGS=$pkg_cv_mad_CFLAGS
Chris@572 6996 mad_LIBS=$pkg_cv_mad_LIBS
Chris@350 6997 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@350 6998 $as_echo "yes" >&6; }
Chris@572 6999 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $mad_CFLAGS";LIBS="$LIBS $mad_LIBS";SV_MODULE_FAILED=""
Chris@350 7000 fi
Chris@350 7001 fi
Chris@350 7002 if test -n "$SV_MODULE_FAILED"; then
Chris@350 7003 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@350 7004 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 7005 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@350 7006 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
Chris@350 7007 else
Chris@350 7008 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
Chris@350 7009 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
Chris@350 7010 fi
Chris@350 7011
Chris@350 7012
Chris@350 7013 if test -z "$SV_MODULE_FAILED"; then
Chris@350 7014 if test -n "$SV_MODULE_LIB"; then
Chris@350 7015 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@350 7016 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@350 7017 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 7018 if eval \${$as_ac_Lib+:} false; then :
Chris@488 7019 $as_echo_n "(cached) " >&6
Chris@488 7020 else
Chris@488 7021 ac_check_lib_save_LIBS=$LIBS
Chris@488 7022 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@488 7023 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@488 7024 /* end confdefs.h. */
Chris@488 7025
Chris@488 7026 /* Override any GCC internal prototype to avoid an error.
Chris@488 7027 Use char because int might match the return type of a GCC
Chris@488 7028 builtin and then its argument prototype would still apply. */
Chris@488 7029 #ifdef __cplusplus
Chris@488 7030 extern "C"
Chris@488 7031 #endif
Chris@488 7032 char $SV_MODULE_FUNC ();
Chris@488 7033 int
Chris@488 7034 main ()
Chris@488 7035 {
Chris@488 7036 return $SV_MODULE_FUNC ();
Chris@488 7037 ;
Chris@488 7038 return 0;
Chris@488 7039 }
Chris@488 7040 _ACEOF
Chris@488 7041 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@488 7042 eval "$as_ac_Lib=yes"
Chris@488 7043 else
Chris@488 7044 eval "$as_ac_Lib=no"
Chris@488 7045 fi
Chris@488 7046 rm -f core conftest.err conftest.$ac_objext \
Chris@488 7047 conftest$ac_exeext conftest.$ac_ext
Chris@488 7048 LIBS=$ac_check_lib_save_LIBS
Chris@488 7049 fi
Chris@488 7050 eval ac_res=\$$as_ac_Lib
Chris@488 7051 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@488 7052 $as_echo "$ac_res" >&6; }
Chris@594 7053 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@572 7054 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@572 7055 else
Chris@572 7056 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
Chris@572 7057 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
Chris@572 7058 fi
Chris@572 7059
Chris@572 7060 fi
Chris@572 7061 fi
Chris@572 7062 fi
Chris@572 7063
Chris@572 7064
Chris@572 7065 SV_MODULE_MODULE=id3tag
Chris@572 7066 SV_MODULE_VERSION_TEST="id3tag >= 0.15.0"
Chris@572 7067 SV_MODULE_HEADER=id3tag.h
Chris@572 7068 SV_MODULE_LIB=id3tag
Chris@572 7069 SV_MODULE_FUNC=id3_tag_new
Chris@572 7070 SV_MODULE_HAVE=HAVE_$(echo id3tag | tr 'a-z' 'A-Z')
Chris@572 7071 SV_MODULE_FAILED=1
Chris@572 7072 if test -n "$id3tag_LIBS" ; then
Chris@572 7073 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@572 7074 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@572 7075 CXXFLAGS="$CXXFLAGS $id3tag_CFLAGS"
Chris@572 7076 LIBS="$LIBS $id3tag_LIBS"
Chris@572 7077 SV_MODULE_FAILED=""
Chris@572 7078 fi
Chris@572 7079 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@572 7080 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@572 7081 fi
Chris@572 7082 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@572 7083
Chris@572 7084 pkg_failed=no
Chris@1969 7085 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for id3tag" >&5
Chris@1969 7086 $as_echo_n "checking for id3tag... " >&6; }
Chris@572 7087
Chris@594 7088 if test -n "$id3tag_CFLAGS"; then
Chris@594 7089 pkg_cv_id3tag_CFLAGS="$id3tag_CFLAGS"
Chris@594 7090 elif test -n "$PKG_CONFIG"; then
Chris@594 7091 if test -n "$PKG_CONFIG" && \
Chris@572 7092 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@572 7093 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@572 7094 ac_status=$?
Chris@572 7095 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@572 7096 test $ac_status = 0; }; then
Chris@572 7097 pkg_cv_id3tag_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 7098 test "x$?" != "x0" && pkg_failed=yes
Chris@572 7099 else
Chris@572 7100 pkg_failed=yes
Chris@572 7101 fi
Chris@594 7102 else
Chris@594 7103 pkg_failed=untried
Chris@594 7104 fi
Chris@594 7105 if test -n "$id3tag_LIBS"; then
Chris@594 7106 pkg_cv_id3tag_LIBS="$id3tag_LIBS"
Chris@594 7107 elif test -n "$PKG_CONFIG"; then
Chris@594 7108 if test -n "$PKG_CONFIG" && \
Chris@572 7109 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@572 7110 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@572 7111 ac_status=$?
Chris@572 7112 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@572 7113 test $ac_status = 0; }; then
Chris@572 7114 pkg_cv_id3tag_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 7115 test "x$?" != "x0" && pkg_failed=yes
Chris@572 7116 else
Chris@572 7117 pkg_failed=yes
Chris@572 7118 fi
Chris@594 7119 else
Chris@594 7120 pkg_failed=untried
Chris@572 7121 fi
Chris@572 7122
Chris@572 7123
Chris@572 7124
Chris@572 7125 if test $pkg_failed = yes; then
Chris@1969 7126 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 7127 $as_echo "no" >&6; }
Chris@572 7128
Chris@572 7129 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@572 7130 _pkg_short_errors_supported=yes
Chris@572 7131 else
Chris@572 7132 _pkg_short_errors_supported=no
Chris@572 7133 fi
Chris@572 7134 if test $_pkg_short_errors_supported = yes; then
Chris@594 7135 id3tag_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@572 7136 else
Chris@594 7137 id3tag_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@572 7138 fi
Chris@572 7139 # Put the nasty error message in config.log where it belongs
Chris@572 7140 echo "$id3tag_PKG_ERRORS" >&5
Chris@572 7141
Chris@594 7142 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 7143 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 7144 elif test $pkg_failed = untried; then
Chris@1969 7145 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 7146 $as_echo "no" >&6; }
Chris@572 7147 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 7148 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 7149 else
Chris@572 7150 id3tag_CFLAGS=$pkg_cv_id3tag_CFLAGS
Chris@572 7151 id3tag_LIBS=$pkg_cv_id3tag_LIBS
Chris@572 7152 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@572 7153 $as_echo "yes" >&6; }
Chris@572 7154 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $id3tag_CFLAGS";LIBS="$LIBS $id3tag_LIBS";SV_MODULE_FAILED=""
Chris@572 7155 fi
Chris@572 7156 fi
Chris@572 7157 if test -n "$SV_MODULE_FAILED"; then
Chris@572 7158 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@572 7159 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 7160 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@572 7161 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
Chris@572 7162 else
Chris@572 7163 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
Chris@572 7164 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
Chris@572 7165 fi
Chris@572 7166
Chris@572 7167
Chris@572 7168 if test -z "$SV_MODULE_FAILED"; then
Chris@572 7169 if test -n "$SV_MODULE_LIB"; then
Chris@572 7170 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@572 7171 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@572 7172 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 7173 if eval \${$as_ac_Lib+:} false; then :
Chris@572 7174 $as_echo_n "(cached) " >&6
Chris@572 7175 else
Chris@572 7176 ac_check_lib_save_LIBS=$LIBS
Chris@572 7177 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@572 7178 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@572 7179 /* end confdefs.h. */
Chris@572 7180
Chris@572 7181 /* Override any GCC internal prototype to avoid an error.
Chris@572 7182 Use char because int might match the return type of a GCC
Chris@572 7183 builtin and then its argument prototype would still apply. */
Chris@572 7184 #ifdef __cplusplus
Chris@572 7185 extern "C"
Chris@572 7186 #endif
Chris@572 7187 char $SV_MODULE_FUNC ();
Chris@572 7188 int
Chris@572 7189 main ()
Chris@572 7190 {
Chris@572 7191 return $SV_MODULE_FUNC ();
Chris@572 7192 ;
Chris@572 7193 return 0;
Chris@572 7194 }
Chris@572 7195 _ACEOF
Chris@572 7196 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@572 7197 eval "$as_ac_Lib=yes"
Chris@572 7198 else
Chris@572 7199 eval "$as_ac_Lib=no"
Chris@572 7200 fi
Chris@572 7201 rm -f core conftest.err conftest.$ac_objext \
Chris@572 7202 conftest$ac_exeext conftest.$ac_ext
Chris@572 7203 LIBS=$ac_check_lib_save_LIBS
Chris@572 7204 fi
Chris@572 7205 eval ac_res=\$$as_ac_Lib
Chris@572 7206 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@572 7207 $as_echo "$ac_res" >&6; }
Chris@594 7208 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@572 7209 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@572 7210 else
Chris@572 7211 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
Chris@572 7212 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
Chris@572 7213 fi
Chris@572 7214
Chris@572 7215 fi
Chris@572 7216 fi
Chris@572 7217 fi
Chris@572 7218
Chris@572 7219
Chris@572 7220 # Link in -lX11 if it exists -- this is for the X error handler
Chris@572 7221
Chris@572 7222 SV_MODULE_MODULE=X11
Chris@572 7223 SV_MODULE_VERSION_TEST="x11 >= 1.0.0"
Chris@572 7224 SV_MODULE_HEADER=X11/X.h
Chris@572 7225 SV_MODULE_LIB=x11
Chris@572 7226 SV_MODULE_FUNC=XGetErrorText
Chris@572 7227 SV_MODULE_HAVE=HAVE_$(echo X11 | tr 'a-z' 'A-Z')
Chris@572 7228 SV_MODULE_FAILED=1
Chris@572 7229 if test -n "$X11_LIBS" ; then
Chris@572 7230 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
Chris@572 7231 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
Chris@572 7232 CXXFLAGS="$CXXFLAGS $X11_CFLAGS"
Chris@572 7233 LIBS="$LIBS $X11_LIBS"
Chris@572 7234 SV_MODULE_FAILED=""
Chris@572 7235 fi
Chris@572 7236 if test -z "$SV_MODULE_VERSION_TEST" ; then
Chris@572 7237 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
Chris@572 7238 fi
Chris@572 7239 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
Chris@572 7240
Chris@572 7241 pkg_failed=no
Chris@1969 7242 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for X11" >&5
Chris@1969 7243 $as_echo_n "checking for X11... " >&6; }
Chris@572 7244
Chris@594 7245 if test -n "$X11_CFLAGS"; then
Chris@594 7246 pkg_cv_X11_CFLAGS="$X11_CFLAGS"
Chris@594 7247 elif test -n "$PKG_CONFIG"; then
Chris@594 7248 if test -n "$PKG_CONFIG" && \
Chris@572 7249 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@572 7250 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@572 7251 ac_status=$?
Chris@572 7252 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@572 7253 test $ac_status = 0; }; then
Chris@572 7254 pkg_cv_X11_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 7255 test "x$?" != "x0" && pkg_failed=yes
Chris@572 7256 else
Chris@572 7257 pkg_failed=yes
Chris@572 7258 fi
Chris@594 7259 else
Chris@594 7260 pkg_failed=untried
Chris@594 7261 fi
Chris@594 7262 if test -n "$X11_LIBS"; then
Chris@594 7263 pkg_cv_X11_LIBS="$X11_LIBS"
Chris@594 7264 elif test -n "$PKG_CONFIG"; then
Chris@594 7265 if test -n "$PKG_CONFIG" && \
Chris@572 7266 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
Chris@572 7267 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
Chris@572 7268 ac_status=$?
Chris@572 7269 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
Chris@572 7270 test $ac_status = 0; }; then
Chris@572 7271 pkg_cv_X11_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
Chris@594 7272 test "x$?" != "x0" && pkg_failed=yes
Chris@572 7273 else
Chris@572 7274 pkg_failed=yes
Chris@572 7275 fi
Chris@594 7276 else
Chris@594 7277 pkg_failed=untried
Chris@572 7278 fi
Chris@572 7279
Chris@572 7280
Chris@572 7281
Chris@572 7282 if test $pkg_failed = yes; then
Chris@1969 7283 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 7284 $as_echo "no" >&6; }
Chris@572 7285
Chris@572 7286 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
Chris@572 7287 _pkg_short_errors_supported=yes
Chris@572 7288 else
Chris@572 7289 _pkg_short_errors_supported=no
Chris@572 7290 fi
Chris@572 7291 if test $_pkg_short_errors_supported = yes; then
Chris@594 7292 X11_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@572 7293 else
Chris@594 7294 X11_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
Chris@572 7295 fi
Chris@572 7296 # Put the nasty error message in config.log where it belongs
Chris@572 7297 echo "$X11_PKG_ERRORS" >&5
Chris@572 7298
Chris@594 7299 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 7300 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 7301 elif test $pkg_failed = untried; then
Chris@1969 7302 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
Chris@594 7303 $as_echo "no" >&6; }
Chris@572 7304 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
Chris@572 7305 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
Chris@572 7306 else
Chris@572 7307 X11_CFLAGS=$pkg_cv_X11_CFLAGS
Chris@572 7308 X11_LIBS=$pkg_cv_X11_LIBS
Chris@572 7309 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
Chris@572 7310 $as_echo "yes" >&6; }
Chris@572 7311 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $X11_CFLAGS";LIBS="$LIBS $X11_LIBS";SV_MODULE_FAILED=""
Chris@572 7312 fi
Chris@572 7313 fi
Chris@572 7314 if test -n "$SV_MODULE_FAILED"; then
Chris@572 7315 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
Chris@572 7316 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
Chris@594 7317 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
Chris@572 7318 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
Chris@572 7319 else
Chris@572 7320 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
Chris@572 7321 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
Chris@572 7322 fi
Chris@572 7323
Chris@572 7324
Chris@572 7325 if test -z "$SV_MODULE_FAILED"; then
Chris@572 7326 if test -n "$SV_MODULE_LIB"; then
Chris@572 7327 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
Chris@572 7328 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
Chris@572 7329 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
Chris@594 7330 if eval \${$as_ac_Lib+:} false; then :
Chris@572 7331 $as_echo_n "(cached) " >&6
Chris@572 7332 else
Chris@572 7333 ac_check_lib_save_LIBS=$LIBS
Chris@572 7334 LIBS="-l$SV_MODULE_LIB $LIBS"
Chris@572 7335 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Chris@572 7336 /* end confdefs.h. */
Chris@572 7337
Chris@572 7338 /* Override any GCC internal prototype to avoid an error.
Chris@572 7339 Use char because int might match the return type of a GCC
Chris@572 7340 builtin and then its argument prototype would still apply. */
Chris@572 7341 #ifdef __cplusplus
Chris@572 7342 extern "C"
Chris@572 7343 #endif
Chris@572 7344 char $SV_MODULE_FUNC ();
Chris@572 7345 int
Chris@572 7346 main ()
Chris@572 7347 {
Chris@572 7348 return $SV_MODULE_FUNC ();
Chris@572 7349 ;
Chris@572 7350 return 0;
Chris@572 7351 }
Chris@572 7352 _ACEOF
Chris@572 7353 if ac_fn_cxx_try_link "$LINENO"; then :
Chris@572 7354 eval "$as_ac_Lib=yes"
Chris@572 7355 else
Chris@572 7356 eval "$as_ac_Lib=no"
Chris@572 7357 fi
Chris@572 7358 rm -f core conftest.err conftest.$ac_objext \
Chris@572 7359 conftest$ac_exeext conftest.$ac_ext
Chris@572 7360 LIBS=$ac_check_lib_save_LIBS
Chris@572 7361 fi
Chris@572 7362 eval ac_res=\$$as_ac_Lib
Chris@572 7363 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
Chris@572 7364 $as_echo "$ac_res" >&6; }
Chris@594 7365 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
Chris@488 7366 LIBS="$LIBS -l$SV_MODULE_LIB"
Chris@488 7367 else
Chris@488 7368 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
Chris@488 7369 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
Chris@488 7370 fi
Chris@488 7371
Chris@488 7372 fi
Chris@488 7373 fi
Chris@488 7374 fi
Chris@488 7375
Chris@488 7376
Chris@350 7377
Chris@350 7378
Chris@350 7379
Chris@350 7380
Chris@350 7381
Chris@350 7382
Chris@350 7383
Chris@350 7384
Chris@350 7385
Chris@350 7386
Chris@350 7387
Chris@350 7388
Chris@350 7389
Chris@350 7390
Chris@350 7391
Chris@350 7392
Chris@350 7393
Chris@350 7394
Chris@1753 7395
Chris@1753 7396
Chris@1976 7397
Chris@941 7398 ac_config_files="$ac_config_files config.pri"
Chris@517 7399
Chris@350 7400
Chris@350 7401 cat >confcache <<\_ACEOF
Chris@350 7402 # This file is a shell script that caches the results of configure
Chris@350 7403 # tests run on this system so they can be shared between configure
Chris@350 7404 # scripts and configure runs, see configure's option --config-cache.
Chris@350 7405 # It is not useful on other systems. If it contains results you don't
Chris@350 7406 # want to keep, you may remove or edit it.
Chris@350 7407 #
Chris@350 7408 # config.status only pays attention to the cache file if you give it
Chris@350 7409 # the --recheck option to rerun configure.
Chris@350 7410 #
Chris@350 7411 # `ac_cv_env_foo' variables (set or unset) will be overridden when
Chris@350 7412 # loading this file, other *unset* `ac_cv_foo' will be assigned the
Chris@350 7413 # following values.
Chris@350 7414
Chris@350 7415 _ACEOF
Chris@350 7416
Chris@350 7417 # The following way of writing the cache mishandles newlines in values,
Chris@350 7418 # but we know of no workaround that is simple, portable, and efficient.
Chris@350 7419 # So, we kill variables containing newlines.
Chris@350 7420 # Ultrix sh set writes to stderr and can't be redirected directly,
Chris@350 7421 # and sets the high bit in the cache file unless we assign to the vars.
Chris@350 7422 (
Chris@350 7423 for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
Chris@350 7424 eval ac_val=\$$ac_var
Chris@350 7425 case $ac_val in #(
Chris@350 7426 *${as_nl}*)
Chris@350 7427 case $ac_var in #(
Chris@350 7428 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
Chris@350 7429 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
Chris@350 7430 esac
Chris@350 7431 case $ac_var in #(
Chris@350 7432 _ | IFS | as_nl) ;; #(
Chris@350 7433 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
Chris@350 7434 *) { eval $ac_var=; unset $ac_var;} ;;
Chris@350 7435 esac ;;
Chris@350 7436 esac
Chris@350 7437 done
Chris@350 7438
Chris@350 7439 (set) 2>&1 |
Chris@350 7440 case $as_nl`(ac_space=' '; set) 2>&1` in #(
Chris@350 7441 *${as_nl}ac_space=\ *)
Chris@350 7442 # `set' does not quote correctly, so add quotes: double-quote
Chris@350 7443 # substitution turns \\\\ into \\, and sed turns \\ into \.
Chris@350 7444 sed -n \
Chris@350 7445 "s/'/'\\\\''/g;
Chris@350 7446 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
Chris@350 7447 ;; #(
Chris@350 7448 *)
Chris@350 7449 # `set' quotes correctly as required by POSIX, so do not add quotes.
Chris@350 7450 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
Chris@350 7451 ;;
Chris@350 7452 esac |
Chris@350 7453 sort
Chris@350 7454 ) |
Chris@350 7455 sed '
Chris@350 7456 /^ac_cv_env_/b end
Chris@350 7457 t clear
Chris@350 7458 :clear
Chris@350 7459 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
Chris@350 7460 t end
Chris@350 7461 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
Chris@350 7462 :end' >>confcache
Chris@350 7463 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
Chris@350 7464 if test -w "$cache_file"; then
Chris@594 7465 if test "x$cache_file" != "x/dev/null"; then
Chris@350 7466 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
Chris@350 7467 $as_echo "$as_me: updating cache $cache_file" >&6;}
Chris@594 7468 if test ! -f "$cache_file" || test -h "$cache_file"; then
Chris@594 7469 cat confcache >"$cache_file"
Chris@594 7470 else
Chris@594 7471 case $cache_file in #(
Chris@594 7472 */* | ?:*)
Chris@594 7473 mv -f confcache "$cache_file"$$ &&
Chris@594 7474 mv -f "$cache_file"$$ "$cache_file" ;; #(
Chris@594 7475 *)
Chris@594 7476 mv -f confcache "$cache_file" ;;
Chris@594 7477 esac
Chris@594 7478 fi
Chris@594 7479 fi
Chris@350 7480 else
Chris@350 7481 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
Chris@350 7482 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
Chris@350 7483 fi
Chris@350 7484 fi
Chris@350 7485 rm -f confcache
Chris@350 7486
Chris@350 7487 test "x$prefix" = xNONE && prefix=$ac_default_prefix
Chris@350 7488 # Let make expand exec_prefix.
Chris@350 7489 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
Chris@350 7490
Chris@350 7491 # Transform confdefs.h into DEFS.
Chris@350 7492 # Protect against shell expansion while executing Makefile rules.
Chris@350 7493 # Protect against Makefile macro expansion.
Chris@350 7494 #
Chris@350 7495 # If the first sed substitution is executed (which looks for macros that
Chris@350 7496 # take arguments), then branch to the quote section. Otherwise,
Chris@350 7497 # look for a macro that doesn't take arguments.
Chris@350 7498 ac_script='
Chris@350 7499 :mline
Chris@350 7500 /\\$/{
Chris@350 7501 N
Chris@350 7502 s,\\\n,,
Chris@350 7503 b mline
Chris@350 7504 }
Chris@350 7505 t clear
Chris@350 7506 :clear
Chris@350 7507 s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g
Chris@350 7508 t quote
Chris@350 7509 s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g
Chris@350 7510 t quote
Chris@350 7511 b any
Chris@350 7512 :quote
Chris@350 7513 s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g
Chris@350 7514 s/\[/\\&/g
Chris@350 7515 s/\]/\\&/g
Chris@350 7516 s/\$/$$/g
Chris@350 7517 H
Chris@350 7518 :any
Chris@350 7519 ${
Chris@350 7520 g
Chris@350 7521 s/^\n//
Chris@350 7522 s/\n/ /g
Chris@350 7523 p
Chris@350 7524 }
Chris@350 7525 '
Chris@350 7526 DEFS=`sed -n "$ac_script" confdefs.h`
Chris@350 7527
Chris@350 7528
Chris@350 7529 ac_libobjs=
Chris@350 7530 ac_ltlibobjs=
Chris@594 7531 U=
Chris@350 7532 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
Chris@350 7533 # 1. Remove the extension, and $U if already installed.
Chris@350 7534 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
Chris@350 7535 ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
Chris@350 7536 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
Chris@350 7537 # will be set to the directory where LIBOBJS objects are built.
Chris@350 7538 as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
Chris@350 7539 as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
Chris@350 7540 done
Chris@350 7541 LIBOBJS=$ac_libobjs
Chris@350 7542
Chris@350 7543 LTLIBOBJS=$ac_ltlibobjs
Chris@350 7544
Chris@350 7545
Chris@350 7546
Chris@594 7547 : "${CONFIG_STATUS=./config.status}"
Chris@350 7548 ac_write_fail=0
Chris@350 7549 ac_clean_files_save=$ac_clean_files
Chris@350 7550 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
Chris@350 7551 { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
Chris@350 7552 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
Chris@350 7553 as_write_fail=0
Chris@350 7554 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
Chris@350 7555 #! $SHELL
Chris@350 7556 # Generated by $as_me.
Chris@350 7557 # Run this file to recreate the current configuration.
Chris@350 7558 # Compiler output produced by configure, useful for debugging
Chris@350 7559 # configure, is in config.log if it exists.
Chris@350 7560
Chris@350 7561 debug=false
Chris@350 7562 ac_cs_recheck=false
Chris@350 7563 ac_cs_silent=false
Chris@350 7564
Chris@350 7565 SHELL=\${CONFIG_SHELL-$SHELL}
Chris@350 7566 export SHELL
Chris@350 7567 _ASEOF
Chris@350 7568 cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
Chris@350 7569 ## -------------------- ##
Chris@350 7570 ## M4sh Initialization. ##
Chris@350 7571 ## -------------------- ##
Chris@350 7572
Chris@350 7573 # Be more Bourne compatible
Chris@350 7574 DUALCASE=1; export DUALCASE # for MKS sh
Chris@350 7575 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
Chris@350 7576 emulate sh
Chris@350 7577 NULLCMD=:
Chris@350 7578 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
Chris@350 7579 # is contrary to our usage. Disable this feature.
Chris@350 7580 alias -g '${1+"$@"}'='"$@"'
Chris@350 7581 setopt NO_GLOB_SUBST
Chris@350 7582 else
Chris@350 7583 case `(set -o) 2>/dev/null` in #(
Chris@350 7584 *posix*) :
Chris@350 7585 set -o posix ;; #(
Chris@350 7586 *) :
Chris@350 7587 ;;
Chris@350 7588 esac
Chris@350 7589 fi
Chris@350 7590
Chris@350 7591
Chris@350 7592 as_nl='
Chris@350 7593 '
Chris@350 7594 export as_nl
Chris@350 7595 # Printing a long string crashes Solaris 7 /usr/bin/printf.
Chris@350 7596 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
Chris@350 7597 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
Chris@350 7598 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
Chris@350 7599 # Prefer a ksh shell builtin over an external printf program on Solaris,
Chris@350 7600 # but without wasting forks for bash or zsh.
Chris@350 7601 if test -z "$BASH_VERSION$ZSH_VERSION" \
Chris@350 7602 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
Chris@350 7603 as_echo='print -r --'
Chris@350 7604 as_echo_n='print -rn --'
Chris@350 7605 elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
Chris@350 7606 as_echo='printf %s\n'
Chris@350 7607 as_echo_n='printf %s'
Chris@350 7608 else
Chris@350 7609 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
Chris@350 7610 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
Chris@350 7611 as_echo_n='/usr/ucb/echo -n'
Chris@350 7612 else
Chris@350 7613 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
Chris@350 7614 as_echo_n_body='eval
Chris@350 7615 arg=$1;
Chris@350 7616 case $arg in #(
Chris@350 7617 *"$as_nl"*)
Chris@350 7618 expr "X$arg" : "X\\(.*\\)$as_nl";
Chris@350 7619 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
Chris@350 7620 esac;
Chris@350 7621 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
Chris@350 7622 '
Chris@350 7623 export as_echo_n_body
Chris@350 7624 as_echo_n='sh -c $as_echo_n_body as_echo'
Chris@350 7625 fi
Chris@350 7626 export as_echo_body
Chris@350 7627 as_echo='sh -c $as_echo_body as_echo'
Chris@350 7628 fi
Chris@350 7629
Chris@350 7630 # The user is always right.
Chris@350 7631 if test "${PATH_SEPARATOR+set}" != set; then
Chris@350 7632 PATH_SEPARATOR=:
Chris@350 7633 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
Chris@350 7634 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
Chris@350 7635 PATH_SEPARATOR=';'
Chris@350 7636 }
Chris@350 7637 fi
Chris@350 7638
Chris@350 7639
Chris@350 7640 # IFS
Chris@350 7641 # We need space, tab and new line, in precisely that order. Quoting is
Chris@350 7642 # there to prevent editors from complaining about space-tab.
Chris@350 7643 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
Chris@350 7644 # splitting by setting IFS to empty value.)
Chris@350 7645 IFS=" "" $as_nl"
Chris@350 7646
Chris@350 7647 # Find who we are. Look in the path if we contain no directory separator.
Chris@594 7648 as_myself=
Chris@350 7649 case $0 in #((
Chris@350 7650 *[\\/]* ) as_myself=$0 ;;
Chris@350 7651 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
Chris@350 7652 for as_dir in $PATH
Chris@350 7653 do
Chris@350 7654 IFS=$as_save_IFS
Chris@350 7655 test -z "$as_dir" && as_dir=.
Chris@350 7656 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
Chris@350 7657 done
Chris@350 7658 IFS=$as_save_IFS
Chris@350 7659
Chris@350 7660 ;;
Chris@350 7661 esac
Chris@350 7662 # We did not find ourselves, most probably we were run as `sh COMMAND'
Chris@350 7663 # in which case we are not to be found in the path.
Chris@350 7664 if test "x$as_myself" = x; then
Chris@350 7665 as_myself=$0
Chris@350 7666 fi
Chris@350 7667 if test ! -f "$as_myself"; then
Chris@350 7668 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
Chris@350 7669 exit 1
Chris@350 7670 fi
Chris@350 7671
Chris@350 7672 # Unset variables that we do not need and which cause bugs (e.g. in
Chris@350 7673 # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
Chris@350 7674 # suppresses any "Segmentation fault" message there. '((' could
Chris@350 7675 # trigger a bug in pdksh 5.2.14.
Chris@350 7676 for as_var in BASH_ENV ENV MAIL MAILPATH
Chris@350 7677 do eval test x\${$as_var+set} = xset \
Chris@350 7678 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
Chris@350 7679 done
Chris@350 7680 PS1='$ '
Chris@350 7681 PS2='> '
Chris@350 7682 PS4='+ '
Chris@350 7683
Chris@350 7684 # NLS nuisances.
Chris@350 7685 LC_ALL=C
Chris@350 7686 export LC_ALL
Chris@350 7687 LANGUAGE=C
Chris@350 7688 export LANGUAGE
Chris@350 7689
Chris@350 7690 # CDPATH.
Chris@350 7691 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
Chris@350 7692
Chris@350 7693
Chris@594 7694 # as_fn_error STATUS ERROR [LINENO LOG_FD]
Chris@594 7695 # ----------------------------------------
Chris@350 7696 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
Chris@350 7697 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
Chris@594 7698 # script with STATUS, using 1 if that was 0.
Chris@350 7699 as_fn_error ()
Chris@350 7700 {
Chris@594 7701 as_status=$1; test $as_status -eq 0 && as_status=1
Chris@594 7702 if test "$4"; then
Chris@594 7703 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
Chris@594 7704 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
Chris@350 7705 fi
Chris@594 7706 $as_echo "$as_me: error: $2" >&2
Chris@350 7707 as_fn_exit $as_status
Chris@350 7708 } # as_fn_error
Chris@350 7709
Chris@350 7710
Chris@350 7711 # as_fn_set_status STATUS
Chris@350 7712 # -----------------------
Chris@350 7713 # Set $? to STATUS, without forking.
Chris@350 7714 as_fn_set_status ()
Chris@350 7715 {
Chris@350 7716 return $1
Chris@350 7717 } # as_fn_set_status
Chris@350 7718
Chris@350 7719 # as_fn_exit STATUS
Chris@350 7720 # -----------------
Chris@350 7721 # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
Chris@350 7722 as_fn_exit ()
Chris@350 7723 {
Chris@350 7724 set +e
Chris@350 7725 as_fn_set_status $1
Chris@350 7726 exit $1
Chris@350 7727 } # as_fn_exit
Chris@350 7728
Chris@350 7729 # as_fn_unset VAR
Chris@350 7730 # ---------------
Chris@350 7731 # Portably unset VAR.
Chris@350 7732 as_fn_unset ()
Chris@350 7733 {
Chris@350 7734 { eval $1=; unset $1;}
Chris@350 7735 }
Chris@350 7736 as_unset=as_fn_unset
Chris@350 7737 # as_fn_append VAR VALUE
Chris@350 7738 # ----------------------
Chris@350 7739 # Append the text in VALUE to the end of the definition contained in VAR. Take
Chris@350 7740 # advantage of any shell optimizations that allow amortized linear growth over
Chris@350 7741 # repeated appends, instead of the typical quadratic growth present in naive
Chris@350 7742 # implementations.
Chris@350 7743 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
Chris@350 7744 eval 'as_fn_append ()
Chris@350 7745 {
Chris@350 7746 eval $1+=\$2
Chris@350 7747 }'
Chris@350 7748 else
Chris@350 7749 as_fn_append ()
Chris@350 7750 {
Chris@350 7751 eval $1=\$$1\$2
Chris@350 7752 }
Chris@350 7753 fi # as_fn_append
Chris@350 7754
Chris@350 7755 # as_fn_arith ARG...
Chris@350 7756 # ------------------
Chris@350 7757 # Perform arithmetic evaluation on the ARGs, and store the result in the
Chris@350 7758 # global $as_val. Take advantage of shells that can avoid forks. The arguments
Chris@350 7759 # must be portable across $(()) and expr.
Chris@350 7760 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
Chris@350 7761 eval 'as_fn_arith ()
Chris@350 7762 {
Chris@350 7763 as_val=$(( $* ))
Chris@350 7764 }'
Chris@350 7765 else
Chris@350 7766 as_fn_arith ()
Chris@350 7767 {
Chris@350 7768 as_val=`expr "$@" || test $? -eq 1`
Chris@350 7769 }
Chris@350 7770 fi # as_fn_arith
Chris@350 7771
Chris@350 7772
Chris@350 7773 if expr a : '\(a\)' >/dev/null 2>&1 &&
Chris@350 7774 test "X`expr 00001 : '.*\(...\)'`" = X001; then
Chris@350 7775 as_expr=expr
Chris@350 7776 else
Chris@350 7777 as_expr=false
Chris@350 7778 fi
Chris@350 7779
Chris@350 7780 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
Chris@350 7781 as_basename=basename
Chris@350 7782 else
Chris@350 7783 as_basename=false
Chris@350 7784 fi
Chris@350 7785
Chris@350 7786 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
Chris@350 7787 as_dirname=dirname
Chris@350 7788 else
Chris@350 7789 as_dirname=false
Chris@350 7790 fi
Chris@350 7791
Chris@350 7792 as_me=`$as_basename -- "$0" ||
Chris@350 7793 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
Chris@350 7794 X"$0" : 'X\(//\)$' \| \
Chris@350 7795 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
Chris@350 7796 $as_echo X/"$0" |
Chris@350 7797 sed '/^.*\/\([^/][^/]*\)\/*$/{
Chris@350 7798 s//\1/
Chris@350 7799 q
Chris@350 7800 }
Chris@350 7801 /^X\/\(\/\/\)$/{
Chris@350 7802 s//\1/
Chris@350 7803 q
Chris@350 7804 }
Chris@350 7805 /^X\/\(\/\).*/{
Chris@350 7806 s//\1/
Chris@350 7807 q
Chris@350 7808 }
Chris@350 7809 s/.*/./; q'`
Chris@350 7810
Chris@350 7811 # Avoid depending upon Character Ranges.
Chris@350 7812 as_cr_letters='abcdefghijklmnopqrstuvwxyz'
Chris@350 7813 as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
Chris@350 7814 as_cr_Letters=$as_cr_letters$as_cr_LETTERS
Chris@350 7815 as_cr_digits='0123456789'
Chris@350 7816 as_cr_alnum=$as_cr_Letters$as_cr_digits
Chris@350 7817
Chris@350 7818 ECHO_C= ECHO_N= ECHO_T=
Chris@350 7819 case `echo -n x` in #(((((
Chris@350 7820 -n*)
Chris@350 7821 case `echo 'xy\c'` in
Chris@350 7822 *c*) ECHO_T=' ';; # ECHO_T is single tab character.
Chris@350 7823 xy) ECHO_C='\c';;
Chris@350 7824 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
Chris@350 7825 ECHO_T=' ';;
Chris@350 7826 esac;;
Chris@350 7827 *)
Chris@350 7828 ECHO_N='-n';;
Chris@350 7829 esac
Chris@350 7830
Chris@350 7831 rm -f conf$$ conf$$.exe conf$$.file
Chris@350 7832 if test -d conf$$.dir; then
Chris@350 7833 rm -f conf$$.dir/conf$$.file
Chris@350 7834 else
Chris@350 7835 rm -f conf$$.dir
Chris@350 7836 mkdir conf$$.dir 2>/dev/null
Chris@350 7837 fi
Chris@350 7838 if (echo >conf$$.file) 2>/dev/null; then
Chris@350 7839 if ln -s conf$$.file conf$$ 2>/dev/null; then
Chris@350 7840 as_ln_s='ln -s'
Chris@350 7841 # ... but there are two gotchas:
Chris@350 7842 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
Chris@350 7843 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
Chris@594 7844 # In both cases, we have to default to `cp -pR'.
Chris@350 7845 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
Chris@594 7846 as_ln_s='cp -pR'
Chris@350 7847 elif ln conf$$.file conf$$ 2>/dev/null; then
Chris@350 7848 as_ln_s=ln
Chris@350 7849 else
Chris@594 7850 as_ln_s='cp -pR'
Chris@350 7851 fi
Chris@350 7852 else
Chris@594 7853 as_ln_s='cp -pR'
Chris@350 7854 fi
Chris@350 7855 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
Chris@350 7856 rmdir conf$$.dir 2>/dev/null
Chris@350 7857
Chris@350 7858
Chris@350 7859 # as_fn_mkdir_p
Chris@350 7860 # -------------
Chris@350 7861 # Create "$as_dir" as a directory, including parents if necessary.
Chris@350 7862 as_fn_mkdir_p ()
Chris@350 7863 {
Chris@350 7864
Chris@350 7865 case $as_dir in #(
Chris@350 7866 -*) as_dir=./$as_dir;;
Chris@350 7867 esac
Chris@350 7868 test -d "$as_dir" || eval $as_mkdir_p || {
Chris@350 7869 as_dirs=
Chris@350 7870 while :; do
Chris@350 7871 case $as_dir in #(
Chris@350 7872 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
Chris@350 7873 *) as_qdir=$as_dir;;
Chris@350 7874 esac
Chris@350 7875 as_dirs="'$as_qdir' $as_dirs"
Chris@350 7876 as_dir=`$as_dirname -- "$as_dir" ||
Chris@350 7877 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
Chris@350 7878 X"$as_dir" : 'X\(//\)[^/]' \| \
Chris@350 7879 X"$as_dir" : 'X\(//\)$' \| \
Chris@350 7880 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
Chris@350 7881 $as_echo X"$as_dir" |
Chris@350 7882 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
Chris@350 7883 s//\1/
Chris@350 7884 q
Chris@350 7885 }
Chris@350 7886 /^X\(\/\/\)[^/].*/{
Chris@350 7887 s//\1/
Chris@350 7888 q
Chris@350 7889 }
Chris@350 7890 /^X\(\/\/\)$/{
Chris@350 7891 s//\1/
Chris@350 7892 q
Chris@350 7893 }
Chris@350 7894 /^X\(\/\).*/{
Chris@350 7895 s//\1/
Chris@350 7896 q
Chris@350 7897 }
Chris@350 7898 s/.*/./; q'`
Chris@350 7899 test -d "$as_dir" && break
Chris@350 7900 done
Chris@350 7901 test -z "$as_dirs" || eval "mkdir $as_dirs"
Chris@594 7902 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
Chris@350 7903
Chris@350 7904
Chris@350 7905 } # as_fn_mkdir_p
Chris@350 7906 if mkdir -p . 2>/dev/null; then
Chris@350 7907 as_mkdir_p='mkdir -p "$as_dir"'
Chris@350 7908 else
Chris@350 7909 test -d ./-p && rmdir ./-p
Chris@350 7910 as_mkdir_p=false
Chris@350 7911 fi
Chris@350 7912
Chris@594 7913
Chris@594 7914 # as_fn_executable_p FILE
Chris@594 7915 # -----------------------
Chris@594 7916 # Test if FILE is an executable regular file.
Chris@594 7917 as_fn_executable_p ()
Chris@594 7918 {
Chris@594 7919 test -f "$1" && test -x "$1"
Chris@594 7920 } # as_fn_executable_p
Chris@594 7921 as_test_x='test -x'
Chris@594 7922 as_executable_p=as_fn_executable_p
Chris@350 7923
Chris@350 7924 # Sed expression to map a string onto a valid CPP name.
Chris@350 7925 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
Chris@350 7926
Chris@350 7927 # Sed expression to map a string onto a valid variable name.
Chris@350 7928 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
Chris@350 7929
Chris@350 7930
Chris@350 7931 exec 6>&1
Chris@350 7932 ## ----------------------------------- ##
Chris@350 7933 ## Main body of $CONFIG_STATUS script. ##
Chris@350 7934 ## ----------------------------------- ##
Chris@350 7935 _ASEOF
Chris@350 7936 test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
Chris@350 7937
Chris@350 7938 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
Chris@350 7939 # Save the log message, to keep $0 and so on meaningful, and to
Chris@350 7940 # report actual input values of CONFIG_FILES etc. instead of their
Chris@350 7941 # values after options handling.
Chris@350 7942 ac_log="
Chris@941 7943 This file was extended by $as_me, which was
Chris@594 7944 generated by GNU Autoconf 2.69. Invocation command line was
Chris@350 7945
Chris@350 7946 CONFIG_FILES = $CONFIG_FILES
Chris@350 7947 CONFIG_HEADERS = $CONFIG_HEADERS
Chris@350 7948 CONFIG_LINKS = $CONFIG_LINKS
Chris@350 7949 CONFIG_COMMANDS = $CONFIG_COMMANDS
Chris@350 7950 $ $0 $@
Chris@350 7951
Chris@350 7952 on `(hostname || uname -n) 2>/dev/null | sed 1q`
Chris@350 7953 "
Chris@350 7954
Chris@350 7955 _ACEOF
Chris@350 7956
Chris@350 7957 case $ac_config_files in *"
Chris@350 7958 "*) set x $ac_config_files; shift; ac_config_files=$*;;
Chris@350 7959 esac
Chris@350 7960
Chris@350 7961
Chris@350 7962
Chris@350 7963 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
Chris@350 7964 # Files that config.status was made for.
Chris@350 7965 config_files="$ac_config_files"
Chris@350 7966
Chris@350 7967 _ACEOF
Chris@350 7968
Chris@350 7969 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
Chris@350 7970 ac_cs_usage="\
Chris@350 7971 \`$as_me' instantiates files and other configuration actions
Chris@350 7972 from templates according to the current configuration. Unless the files
Chris@350 7973 and actions are specified as TAGs, all are instantiated by default.
Chris@350 7974
Chris@350 7975 Usage: $0 [OPTION]... [TAG]...
Chris@350 7976
Chris@350 7977 -h, --help print this help, then exit
Chris@350 7978 -V, --version print version number and configuration settings, then exit
Chris@350 7979 --config print configuration, then exit
Chris@350 7980 -q, --quiet, --silent
Chris@350 7981 do not print progress messages
Chris@350 7982 -d, --debug don't remove temporary files
Chris@350 7983 --recheck update $as_me by reconfiguring in the same conditions
Chris@350 7984 --file=FILE[:TEMPLATE]
Chris@350 7985 instantiate the configuration file FILE
Chris@350 7986
Chris@350 7987 Configuration files:
Chris@350 7988 $config_files
Chris@350 7989
Chris@941 7990 Report bugs to the package provider."
Chris@350 7991
Chris@350 7992 _ACEOF
Chris@350 7993 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
Chris@350 7994 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
Chris@350 7995 ac_cs_version="\\
Chris@941 7996 config.status
Chris@594 7997 configured by $0, generated by GNU Autoconf 2.69,
Chris@350 7998 with options \\"\$ac_cs_config\\"
Chris@350 7999
Chris@594 8000 Copyright (C) 2012 Free Software Foundation, Inc.
Chris@350 8001 This config.status script is free software; the Free Software Foundation
Chris@350 8002 gives unlimited permission to copy, distribute and modify it."
Chris@350 8003
Chris@350 8004 ac_pwd='$ac_pwd'
Chris@350 8005 srcdir='$srcdir'
Chris@350 8006 INSTALL='$INSTALL'
Chris@350 8007 MKDIR_P='$MKDIR_P'
Chris@350 8008 test -n "\$AWK" || AWK=awk
Chris@350 8009 _ACEOF
Chris@350 8010
Chris@350 8011 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
Chris@350 8012 # The default lists apply if the user does not specify any file.
Chris@350 8013 ac_need_defaults=:
Chris@350 8014 while test $# != 0
Chris@350 8015 do
Chris@350 8016 case $1 in
Chris@594 8017 --*=?*)
Chris@350 8018 ac_option=`expr "X$1" : 'X\([^=]*\)='`
Chris@350 8019 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
Chris@350 8020 ac_shift=:
Chris@350 8021 ;;
Chris@594 8022 --*=)
Chris@594 8023 ac_option=`expr "X$1" : 'X\([^=]*\)='`
Chris@594 8024 ac_optarg=
Chris@594 8025 ac_shift=:
Chris@594 8026 ;;
Chris@350 8027 *)
Chris@350 8028 ac_option=$1
Chris@350 8029 ac_optarg=$2
Chris@350 8030 ac_shift=shift
Chris@350 8031 ;;
Chris@350 8032 esac
Chris@350 8033
Chris@350 8034 case $ac_option in
Chris@350 8035 # Handling of the options.
Chris@350 8036 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
Chris@350 8037 ac_cs_recheck=: ;;
Chris@350 8038 --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
Chris@350 8039 $as_echo "$ac_cs_version"; exit ;;
Chris@350 8040 --config | --confi | --conf | --con | --co | --c )
Chris@350 8041 $as_echo "$ac_cs_config"; exit ;;
Chris@350 8042 --debug | --debu | --deb | --de | --d | -d )
Chris@350 8043 debug=: ;;
Chris@350 8044 --file | --fil | --fi | --f )
Chris@350 8045 $ac_shift
Chris@350 8046 case $ac_optarg in
Chris@350 8047 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
Chris@594 8048 '') as_fn_error $? "missing file argument" ;;
Chris@350 8049 esac
Chris@350 8050 as_fn_append CONFIG_FILES " '$ac_optarg'"
Chris@350 8051 ac_need_defaults=false;;
Chris@350 8052 --he | --h | --help | --hel | -h )
Chris@350 8053 $as_echo "$ac_cs_usage"; exit ;;
Chris@350 8054 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
Chris@350 8055 | -silent | --silent | --silen | --sile | --sil | --si | --s)
Chris@350 8056 ac_cs_silent=: ;;
Chris@350 8057
Chris@350 8058 # This is an error.
Chris@594 8059 -*) as_fn_error $? "unrecognized option: \`$1'
Chris@350 8060 Try \`$0 --help' for more information." ;;
Chris@350 8061
Chris@350 8062 *) as_fn_append ac_config_targets " $1"
Chris@350 8063 ac_need_defaults=false ;;
Chris@350 8064
Chris@350 8065 esac
Chris@350 8066 shift
Chris@350 8067 done
Chris@350 8068
Chris@350 8069 ac_configure_extra_args=
Chris@350 8070
Chris@350 8071 if $ac_cs_silent; then
Chris@350 8072 exec 6>/dev/null
Chris@350 8073 ac_configure_extra_args="$ac_configure_extra_args --silent"
Chris@350 8074 fi
Chris@350 8075
Chris@350 8076 _ACEOF
Chris@350 8077 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
Chris@350 8078 if \$ac_cs_recheck; then
Chris@594 8079 set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
Chris@350 8080 shift
Chris@350 8081 \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
Chris@350 8082 CONFIG_SHELL='$SHELL'
Chris@350 8083 export CONFIG_SHELL
Chris@350 8084 exec "\$@"
Chris@350 8085 fi
Chris@350 8086
Chris@350 8087 _ACEOF
Chris@350 8088 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
Chris@350 8089 exec 5>>config.log
Chris@350 8090 {
Chris@350 8091 echo
Chris@350 8092 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
Chris@350 8093 ## Running $as_me. ##
Chris@350 8094 _ASBOX
Chris@350 8095 $as_echo "$ac_log"
Chris@350 8096 } >&5
Chris@350 8097
Chris@350 8098 _ACEOF
Chris@350 8099 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
Chris@350 8100 _ACEOF
Chris@350 8101
Chris@350 8102 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
Chris@350 8103
Chris@350 8104 # Handling of arguments.
Chris@350 8105 for ac_config_target in $ac_config_targets
Chris@350 8106 do
Chris@350 8107 case $ac_config_target in
Chris@350 8108 "config.pri") CONFIG_FILES="$CONFIG_FILES config.pri" ;;
Chris@350 8109
Chris@594 8110 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
Chris@350 8111 esac
Chris@350 8112 done
Chris@350 8113
Chris@350 8114
Chris@350 8115 # If the user did not use the arguments to specify the items to instantiate,
Chris@350 8116 # then the envvar interface is used. Set only those that are not.
Chris@350 8117 # We use the long form for the default assignment because of an extremely
Chris@350 8118 # bizarre bug on SunOS 4.1.3.
Chris@350 8119 if $ac_need_defaults; then
Chris@350 8120 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
Chris@350 8121 fi
Chris@350 8122
Chris@350 8123 # Have a temporary directory for convenience. Make it in the build tree
Chris@350 8124 # simply because there is no reason against having it here, and in addition,
Chris@350 8125 # creating and moving files from /tmp can sometimes cause problems.
Chris@350 8126 # Hook for its removal unless debugging.
Chris@350 8127 # Note that there is a small window in which the directory will not be cleaned:
Chris@350 8128 # after its creation but before its name has been assigned to `$tmp'.
Chris@350 8129 $debug ||
Chris@350 8130 {
Chris@594 8131 tmp= ac_tmp=
Chris@350 8132 trap 'exit_status=$?
Chris@594 8133 : "${ac_tmp:=$tmp}"
Chris@594 8134 { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
Chris@350 8135 ' 0
Chris@350 8136 trap 'as_fn_exit 1' 1 2 13 15
Chris@350 8137 }
Chris@350 8138 # Create a (secure) tmp directory for tmp files.
Chris@350 8139
Chris@350 8140 {
Chris@350 8141 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
Chris@594 8142 test -d "$tmp"
Chris@350 8143 } ||
Chris@350 8144 {
Chris@350 8145 tmp=./conf$$-$RANDOM
Chris@350 8146 (umask 077 && mkdir "$tmp")
Chris@594 8147 } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
Chris@594 8148 ac_tmp=$tmp
Chris@350 8149
Chris@350 8150 # Set up the scripts for CONFIG_FILES section.
Chris@350 8151 # No need to generate them if there are no CONFIG_FILES.
Chris@350 8152 # This happens for instance with `./config.status config.h'.
Chris@350 8153 if test -n "$CONFIG_FILES"; then
Chris@350 8154
Chris@350 8155
Chris@350 8156 ac_cr=`echo X | tr X '\015'`
Chris@350 8157 # On cygwin, bash can eat \r inside `` if the user requested igncr.
Chris@350 8158 # But we know of no other shell where ac_cr would be empty at this
Chris@350 8159 # point, so we can use a bashism as a fallback.
Chris@350 8160 if test "x$ac_cr" = x; then
Chris@350 8161 eval ac_cr=\$\'\\r\'
Chris@350 8162 fi
Chris@350 8163 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
Chris@350 8164 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
Chris@594 8165 ac_cs_awk_cr='\\r'
Chris@350 8166 else
Chris@350 8167 ac_cs_awk_cr=$ac_cr
Chris@350 8168 fi
Chris@350 8169
Chris@594 8170 echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
Chris@350 8171 _ACEOF
Chris@350 8172
Chris@350 8173
Chris@350 8174 {
Chris@350 8175 echo "cat >conf$$subs.awk <<_ACEOF" &&
Chris@350 8176 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
Chris@350 8177 echo "_ACEOF"
Chris@350 8178 } >conf$$subs.sh ||
Chris@594 8179 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
Chris@594 8180 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
Chris@350 8181 ac_delim='%!_!# '
Chris@350 8182 for ac_last_try in false false false false false :; do
Chris@350 8183 . ./conf$$subs.sh ||
Chris@594 8184 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
Chris@350 8185
Chris@350 8186 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
Chris@350 8187 if test $ac_delim_n = $ac_delim_num; then
Chris@350 8188 break
Chris@350 8189 elif $ac_last_try; then
Chris@594 8190 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
Chris@350 8191 else
Chris@350 8192 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
Chris@350 8193 fi
Chris@350 8194 done
Chris@350 8195 rm -f conf$$subs.sh
Chris@350 8196
Chris@350 8197 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
Chris@594 8198 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
Chris@350 8199 _ACEOF
Chris@350 8200 sed -n '
Chris@350 8201 h
Chris@350 8202 s/^/S["/; s/!.*/"]=/
Chris@350 8203 p
Chris@350 8204 g
Chris@350 8205 s/^[^!]*!//
Chris@350 8206 :repl
Chris@350 8207 t repl
Chris@350 8208 s/'"$ac_delim"'$//
Chris@350 8209 t delim
Chris@350 8210 :nl
Chris@350 8211 h
Chris@350 8212 s/\(.\{148\}\)..*/\1/
Chris@350 8213 t more1
Chris@350 8214 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
Chris@350 8215 p
Chris@350 8216 n
Chris@350 8217 b repl
Chris@350 8218 :more1
Chris@350 8219 s/["\\]/\\&/g; s/^/"/; s/$/"\\/
Chris@350 8220 p
Chris@350 8221 g
Chris@350 8222 s/.\{148\}//
Chris@350 8223 t nl
Chris@350 8224 :delim
Chris@350 8225 h
Chris@350 8226 s/\(.\{148\}\)..*/\1/
Chris@350 8227 t more2
Chris@350 8228 s/["\\]/\\&/g; s/^/"/; s/$/"/
Chris@350 8229 p
Chris@350 8230 b
Chris@350 8231 :more2
Chris@350 8232 s/["\\]/\\&/g; s/^/"/; s/$/"\\/
Chris@350 8233 p
Chris@350 8234 g
Chris@350 8235 s/.\{148\}//
Chris@350 8236 t delim
Chris@350 8237 ' <conf$$subs.awk | sed '
Chris@350 8238 /^[^""]/{
Chris@350 8239 N
Chris@350 8240 s/\n//
Chris@350 8241 }
Chris@350 8242 ' >>$CONFIG_STATUS || ac_write_fail=1
Chris@350 8243 rm -f conf$$subs.awk
Chris@350 8244 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
Chris@350 8245 _ACAWK
Chris@594 8246 cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
Chris@350 8247 for (key in S) S_is_set[key] = 1
Chris@350 8248 FS = ""
Chris@350 8249
Chris@350 8250 }
Chris@350 8251 {
Chris@350 8252 line = $ 0
Chris@350 8253 nfields = split(line, field, "@")
Chris@350 8254 substed = 0
Chris@350 8255 len = length(field[1])
Chris@350 8256 for (i = 2; i < nfields; i++) {
Chris@350 8257 key = field[i]
Chris@350 8258 keylen = length(key)
Chris@350 8259 if (S_is_set[key]) {
Chris@350 8260 value = S[key]
Chris@350 8261 line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
Chris@350 8262 len += length(value) + length(field[++i])
Chris@350 8263 substed = 1
Chris@350 8264 } else
Chris@350 8265 len += 1 + keylen
Chris@350 8266 }
Chris@350 8267
Chris@350 8268 print line
Chris@350 8269 }
Chris@350 8270
Chris@350 8271 _ACAWK
Chris@350 8272 _ACEOF
Chris@350 8273 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
Chris@350 8274 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
Chris@350 8275 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
Chris@350 8276 else
Chris@350 8277 cat
Chris@594 8278 fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
Chris@594 8279 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
Chris@350 8280 _ACEOF
Chris@350 8281
Chris@594 8282 # VPATH may cause trouble with some makes, so we remove sole $(srcdir),
Chris@594 8283 # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
Chris@350 8284 # trailing colons and then remove the whole line if VPATH becomes empty
Chris@350 8285 # (actually we leave an empty line to preserve line numbers).
Chris@350 8286 if test "x$srcdir" = x.; then
Chris@594 8287 ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
Chris@594 8288 h
Chris@594 8289 s///
Chris@594 8290 s/^/:/
Chris@594 8291 s/[ ]*$/:/
Chris@594 8292 s/:\$(srcdir):/:/g
Chris@594 8293 s/:\${srcdir}:/:/g
Chris@594 8294 s/:@srcdir@:/:/g
Chris@594 8295 s/^:*//
Chris@350 8296 s/:*$//
Chris@594 8297 x
Chris@594 8298 s/\(=[ ]*\).*/\1/
Chris@594 8299 G
Chris@594 8300 s/\n//
Chris@350 8301 s/^[^=]*=[ ]*$//
Chris@350 8302 }'
Chris@350 8303 fi
Chris@350 8304
Chris@350 8305 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
Chris@350 8306 fi # test -n "$CONFIG_FILES"
Chris@350 8307
Chris@350 8308
Chris@350 8309 eval set X " :F $CONFIG_FILES "
Chris@350 8310 shift
Chris@350 8311 for ac_tag
Chris@350 8312 do
Chris@350 8313 case $ac_tag in
Chris@350 8314 :[FHLC]) ac_mode=$ac_tag; continue;;
Chris@350 8315 esac
Chris@350 8316 case $ac_mode$ac_tag in
Chris@350 8317 :[FHL]*:*);;
Chris@594 8318 :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
Chris@350 8319 :[FH]-) ac_tag=-:-;;
Chris@350 8320 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
Chris@350 8321 esac
Chris@350 8322 ac_save_IFS=$IFS
Chris@350 8323 IFS=:
Chris@350 8324 set x $ac_tag
Chris@350 8325 IFS=$ac_save_IFS
Chris@350 8326 shift
Chris@350 8327 ac_file=$1
Chris@350 8328 shift
Chris@350 8329
Chris@350 8330 case $ac_mode in
Chris@350 8331 :L) ac_source=$1;;
Chris@350 8332 :[FH])
Chris@350 8333 ac_file_inputs=
Chris@350 8334 for ac_f
Chris@350 8335 do
Chris@350 8336 case $ac_f in
Chris@594 8337 -) ac_f="$ac_tmp/stdin";;
Chris@350 8338 *) # Look for the file first in the build tree, then in the source tree
Chris@350 8339 # (if the path is not absolute). The absolute path cannot be DOS-style,
Chris@350 8340 # because $ac_f cannot contain `:'.
Chris@350 8341 test -f "$ac_f" ||
Chris@350 8342 case $ac_f in
Chris@350 8343 [\\/$]*) false;;
Chris@350 8344 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
Chris@350 8345 esac ||
Chris@594 8346 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
Chris@350 8347 esac
Chris@350 8348 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
Chris@350 8349 as_fn_append ac_file_inputs " '$ac_f'"
Chris@350 8350 done
Chris@350 8351
Chris@350 8352 # Let's still pretend it is `configure' which instantiates (i.e., don't
Chris@350 8353 # use $as_me), people would be surprised to read:
Chris@350 8354 # /* config.h. Generated by config.status. */
Chris@350 8355 configure_input='Generated from '`
Chris@350 8356 $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
Chris@350 8357 `' by configure.'
Chris@350 8358 if test x"$ac_file" != x-; then
Chris@350 8359 configure_input="$ac_file. $configure_input"
Chris@350 8360 { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
Chris@350 8361 $as_echo "$as_me: creating $ac_file" >&6;}
Chris@350 8362 fi
Chris@350 8363 # Neutralize special characters interpreted by sed in replacement strings.
Chris@350 8364 case $configure_input in #(
Chris@350 8365 *\&* | *\|* | *\\* )
Chris@350 8366 ac_sed_conf_input=`$as_echo "$configure_input" |
Chris@350 8367 sed 's/[\\\\&|]/\\\\&/g'`;; #(
Chris@350 8368 *) ac_sed_conf_input=$configure_input;;
Chris@350 8369 esac
Chris@350 8370
Chris@350 8371 case $ac_tag in
Chris@594 8372 *:-:* | *:-) cat >"$ac_tmp/stdin" \
Chris@594 8373 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
Chris@350 8374 esac
Chris@350 8375 ;;
Chris@350 8376 esac
Chris@350 8377
Chris@350 8378 ac_dir=`$as_dirname -- "$ac_file" ||
Chris@350 8379 $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
Chris@350 8380 X"$ac_file" : 'X\(//\)[^/]' \| \
Chris@350 8381 X"$ac_file" : 'X\(//\)$' \| \
Chris@350 8382 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
Chris@350 8383 $as_echo X"$ac_file" |
Chris@350 8384 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
Chris@350 8385 s//\1/
Chris@350 8386 q
Chris@350 8387 }
Chris@350 8388 /^X\(\/\/\)[^/].*/{
Chris@350 8389 s//\1/
Chris@350 8390 q
Chris@350 8391 }
Chris@350 8392 /^X\(\/\/\)$/{
Chris@350 8393 s//\1/
Chris@350 8394 q
Chris@350 8395 }
Chris@350 8396 /^X\(\/\).*/{
Chris@350 8397 s//\1/
Chris@350 8398 q
Chris@350 8399 }
Chris@350 8400 s/.*/./; q'`
Chris@350 8401 as_dir="$ac_dir"; as_fn_mkdir_p
Chris@350 8402 ac_builddir=.
Chris@350 8403
Chris@350 8404 case "$ac_dir" in
Chris@350 8405 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
Chris@350 8406 *)
Chris@350 8407 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
Chris@350 8408 # A ".." for each directory in $ac_dir_suffix.
Chris@350 8409 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
Chris@350 8410 case $ac_top_builddir_sub in
Chris@350 8411 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
Chris@350 8412 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
Chris@350 8413 esac ;;
Chris@350 8414 esac
Chris@350 8415 ac_abs_top_builddir=$ac_pwd
Chris@350 8416 ac_abs_builddir=$ac_pwd$ac_dir_suffix
Chris@350 8417 # for backward compatibility:
Chris@350 8418 ac_top_builddir=$ac_top_build_prefix
Chris@350 8419
Chris@350 8420 case $srcdir in
Chris@350 8421 .) # We are building in place.
Chris@350 8422 ac_srcdir=.
Chris@350 8423 ac_top_srcdir=$ac_top_builddir_sub
Chris@350 8424 ac_abs_top_srcdir=$ac_pwd ;;
Chris@350 8425 [\\/]* | ?:[\\/]* ) # Absolute name.
Chris@350 8426 ac_srcdir=$srcdir$ac_dir_suffix;
Chris@350 8427 ac_top_srcdir=$srcdir
Chris@350 8428 ac_abs_top_srcdir=$srcdir ;;
Chris@350 8429 *) # Relative name.
Chris@350 8430 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
Chris@350 8431 ac_top_srcdir=$ac_top_build_prefix$srcdir
Chris@350 8432 ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
Chris@350 8433 esac
Chris@350 8434 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
Chris@350 8435
Chris@350 8436
Chris@350 8437 case $ac_mode in
Chris@350 8438 :F)
Chris@350 8439 #
Chris@350 8440 # CONFIG_FILE
Chris@350 8441 #
Chris@350 8442
Chris@350 8443 case $INSTALL in
Chris@350 8444 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
Chris@350 8445 *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
Chris@350 8446 esac
Chris@350 8447 ac_MKDIR_P=$MKDIR_P
Chris@350 8448 case $MKDIR_P in
Chris@350 8449 [\\/$]* | ?:[\\/]* ) ;;
Chris@350 8450 */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
Chris@350 8451 esac
Chris@350 8452 _ACEOF
Chris@350 8453
Chris@350 8454 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
Chris@350 8455 # If the template does not know about datarootdir, expand it.
Chris@350 8456 # FIXME: This hack should be removed a few years after 2.60.
Chris@350 8457 ac_datarootdir_hack=; ac_datarootdir_seen=
Chris@350 8458 ac_sed_dataroot='
Chris@350 8459 /datarootdir/ {
Chris@350 8460 p
Chris@350 8461 q
Chris@350 8462 }
Chris@350 8463 /@datadir@/p
Chris@350 8464 /@docdir@/p
Chris@350 8465 /@infodir@/p
Chris@350 8466 /@localedir@/p
Chris@350 8467 /@mandir@/p'
Chris@350 8468 case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
Chris@350 8469 *datarootdir*) ac_datarootdir_seen=yes;;
Chris@350 8470 *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
Chris@350 8471 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
Chris@350 8472 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
Chris@350 8473 _ACEOF
Chris@350 8474 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
Chris@350 8475 ac_datarootdir_hack='
Chris@350 8476 s&@datadir@&$datadir&g
Chris@350 8477 s&@docdir@&$docdir&g
Chris@350 8478 s&@infodir@&$infodir&g
Chris@350 8479 s&@localedir@&$localedir&g
Chris@350 8480 s&@mandir@&$mandir&g
Chris@350 8481 s&\\\${datarootdir}&$datarootdir&g' ;;
Chris@350 8482 esac
Chris@350 8483 _ACEOF
Chris@350 8484
Chris@350 8485 # Neutralize VPATH when `$srcdir' = `.'.
Chris@350 8486 # Shell code in configure.ac might set extrasub.
Chris@350 8487 # FIXME: do we really want to maintain this feature?
Chris@350 8488 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
Chris@350 8489 ac_sed_extra="$ac_vpsub
Chris@350 8490 $extrasub
Chris@350 8491 _ACEOF
Chris@350 8492 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
Chris@350 8493 :t
Chris@350 8494 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
Chris@350 8495 s|@configure_input@|$ac_sed_conf_input|;t t
Chris@350 8496 s&@top_builddir@&$ac_top_builddir_sub&;t t
Chris@350 8497 s&@top_build_prefix@&$ac_top_build_prefix&;t t
Chris@350 8498 s&@srcdir@&$ac_srcdir&;t t
Chris@350 8499 s&@abs_srcdir@&$ac_abs_srcdir&;t t
Chris@350 8500 s&@top_srcdir@&$ac_top_srcdir&;t t
Chris@350 8501 s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
Chris@350 8502 s&@builddir@&$ac_builddir&;t t
Chris@350 8503 s&@abs_builddir@&$ac_abs_builddir&;t t
Chris@350 8504 s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
Chris@350 8505 s&@INSTALL@&$ac_INSTALL&;t t
Chris@350 8506 s&@MKDIR_P@&$ac_MKDIR_P&;t t
Chris@350 8507 $ac_datarootdir_hack
Chris@350 8508 "
Chris@594 8509 eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
Chris@594 8510 >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
Chris@350 8511
Chris@350 8512 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
Chris@594 8513 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
Chris@594 8514 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
Chris@594 8515 "$ac_tmp/out"`; test -z "$ac_out"; } &&
Chris@350 8516 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
Chris@594 8517 which seems to be undefined. Please make sure it is defined" >&5
Chris@350 8518 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
Chris@594 8519 which seems to be undefined. Please make sure it is defined" >&2;}
Chris@594 8520
Chris@594 8521 rm -f "$ac_tmp/stdin"
Chris@350 8522 case $ac_file in
Chris@594 8523 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
Chris@594 8524 *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
Chris@350 8525 esac \
Chris@594 8526 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
Chris@350 8527 ;;
Chris@350 8528
Chris@350 8529
Chris@350 8530
Chris@350 8531 esac
Chris@350 8532
Chris@350 8533 done # for ac_tag
Chris@350 8534
Chris@350 8535
Chris@350 8536 as_fn_exit 0
Chris@350 8537 _ACEOF
Chris@350 8538 ac_clean_files=$ac_clean_files_save
Chris@350 8539
Chris@350 8540 test $ac_write_fail = 0 ||
Chris@594 8541 as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
Chris@350 8542
Chris@350 8543
Chris@350 8544 # configure is writing to config.log, and then calls config.status.
Chris@350 8545 # config.status does its own redirection, appending to config.log.
Chris@350 8546 # Unfortunately, on DOS this fails, as config.log is still kept open
Chris@350 8547 # by configure, so config.status won't be able to write to it; its
Chris@350 8548 # output is simply discarded. So we exec the FD to /dev/null,
Chris@350 8549 # effectively closing config.log, so it can be properly (re)opened and
Chris@350 8550 # appended to by config.status. When coming back to configure, we
Chris@350 8551 # need to make the FD available again.
Chris@350 8552 if test "$no_create" != yes; then
Chris@350 8553 ac_cs_success=:
Chris@350 8554 ac_config_status_args=
Chris@350 8555 test "$silent" = yes &&
Chris@350 8556 ac_config_status_args="$ac_config_status_args --quiet"
Chris@350 8557 exec 5>/dev/null
Chris@350 8558 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
Chris@350 8559 exec 5>>config.log
Chris@350 8560 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
Chris@350 8561 # would make configure fail if this is the last instruction.
Chris@594 8562 $ac_cs_success || as_fn_exit 1
Chris@350 8563 fi
Chris@351 8564 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
Chris@351 8565 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
Chris@351 8566 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
Chris@351 8567 fi
Chris@351 8568
Chris@350 8569
Chris@1808 8570 if test -x repoint ; then
Chris@1709 8571 if test -d .hg -o -d .git ; then
Chris@1808 8572 if ! ./repoint install; then
Chris@1808 8573 as_fn_error $? "Repoint failed; please fix any reported errors and try again" "$LINENO" 5
Chris@1709 8574 fi
Chris@1709 8575 else
Chris@1808 8576 { $as_echo "$as_me:${as_lineno-$LINENO}: Repoint executable found but not in an Hg or Git working-copy: not running it" >&5
Chris@1808 8577 $as_echo "$as_me: Repoint executable found but not in an Hg or Git working-copy: not running it" >&6;}
Chris@1709 8578 if ! test -d vamp-plugin-sdk ; then
Chris@1709 8579 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: No vamp-plugin-sdk directory present, so external libraries might not have been updated" >&5
Chris@1709 8580 $as_echo "$as_me: WARNING: No vamp-plugin-sdk directory present, so external libraries might not have been updated" >&2;}
Chris@1709 8581 fi
Chris@1707 8582 fi
Chris@1709 8583 else
Chris@1808 8584 { $as_echo "$as_me:${as_lineno-$LINENO}: No Repoint executable found: assuming external libraries are already here" >&5
Chris@1808 8585 $as_echo "$as_me: No Repoint executable found: assuming external libraries are already here" >&6;}
Chris@1709 8586 if ! test -d vamp-plugin-sdk ; then
Chris@1709 8587 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: No vamp-plugin-sdk directory present, so external libraries might not have been updated" >&5
Chris@1709 8588 $as_echo "$as_me: WARNING: No vamp-plugin-sdk directory present, so external libraries might not have been updated" >&2;}
Chris@1709 8589 fi
Chris@1709 8590 fi
Chris@1709 8591
Chris@521 8592 if ! $QMAKE -r sonic-visualiser.pro; then
Chris@594 8593 as_fn_error $? "qmake failed: Command was \"$QMAKE -r\"" "$LINENO" 5
Chris@350 8594 fi
Chris@350 8595
Chris@350 8596 { $as_echo "$as_me:${as_lineno-$LINENO}:
Chris@350 8597
Chris@350 8598 Configuration complete.
Chris@350 8599 Please check the above messages for any warnings that you
Chris@350 8600 might care about, and then run \"make\".
Chris@350 8601
Chris@350 8602 The file config.pri contains the configuration settings for
Chris@350 8603 qmake. If you want to adjust these by hand, edit config.pri
Chris@548 8604 and run \"$QMAKE -r\" again to regenerate the Makefile.
Chris@350 8605 " >&5
Chris@350 8606 $as_echo "$as_me:
Chris@350 8607
Chris@350 8608 Configuration complete.
Chris@350 8609 Please check the above messages for any warnings that you
Chris@350 8610 might care about, and then run \"make\".
Chris@350 8611
Chris@350 8612 The file config.pri contains the configuration settings for
Chris@350 8613 qmake. If you want to adjust these by hand, edit config.pri
Chris@548 8614 and run \"$QMAKE -r\" again to regenerate the Makefile.
Chris@350 8615 " >&6;}