twinkle/patches/twinkle.patch

Mon, 23 Feb 2009 18:09:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Mon, 23 Feb 2009 18:09:09 +0100
changeset 2
d2271dd2b481
permissions
-rw-r--r--

Import custom package specs to build for undistributed platforms.

     1 Index: configure
     2 diff -Nau configure.orig configure
     3 --- configure.orig	2009-01-31 05:48:59.000000000 +0100
     4 +++ configure	2009-02-23 14:32:54.000000000 +0100
     5 @@ -1,6 +1,6 @@
     6  #! /bin/sh
     7  # Guess values for system-dependent variables and create Makefiles.
     8 -# Generated by GNU Autoconf 2.60.
     9 +# Generated by GNU Autoconf 2.61.
    10  #
    11  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
    12  # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
    13 @@ -10,7 +10,8 @@
    14  ## M4sh Initialization.  ##
    15  ## --------------------- ##
    17 -# Be Bourne compatible
    18 +# Be more Bourne compatible
    19 +DUALCASE=1; export DUALCASE # for MKS sh
    20  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
    21    emulate sh
    22    NULLCMD=:
    23 @@ -19,10 +20,13 @@
    24    alias -g '${1+"$@"}'='"$@"'
    25    setopt NO_GLOB_SUBST
    26  else
    27 -  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
    28 +  case `(set -o) 2>/dev/null` in
    29 +  *posix*) set -o posix ;;
    30 +esac
    31 +
    32  fi
    33 -BIN_SH=xpg4; export BIN_SH # for Tru64
    34 -DUALCASE=1; export DUALCASE # for MKS sh
    35 +
    36 +
    39  # PATH needs CR
    40 @@ -215,7 +219,7 @@
    41  else
    42    as_candidate_shells=
    43      as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
    44 -for as_dir in /usr/bin/posix$PATH_SEPARATOR/bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
    45 +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
    46  do
    47    IFS=$as_save_IFS
    48    test -z "$as_dir" && as_dir=.
    49 @@ -233,7 +237,6 @@
    50  	 # Try only shells that exist, to save several forks.
    51  	 if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
    52  		{ ("$as_shell") 2> /dev/null <<\_ASEOF
    53 -# Be Bourne compatible
    54  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
    55    emulate sh
    56    NULLCMD=:
    57 @@ -242,10 +245,12 @@
    58    alias -g '${1+"$@"}'='"$@"'
    59    setopt NO_GLOB_SUBST
    60  else
    61 -  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
    62 +  case `(set -o) 2>/dev/null` in
    63 +  *posix*) set -o posix ;;
    64 +esac
    65 +
    66  fi
    67 -BIN_SH=xpg4; export BIN_SH # for Tru64
    68 -DUALCASE=1; export DUALCASE # for MKS sh
    69 +
    71  :
    72  _ASEOF
    73 @@ -253,7 +258,6 @@
    74    CONFIG_SHELL=$as_shell
    75  	       as_have_required=yes
    76  	       if { "$as_shell" 2> /dev/null <<\_ASEOF
    77 -# Be Bourne compatible
    78  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
    79    emulate sh
    80    NULLCMD=:
    81 @@ -262,10 +266,12 @@
    82    alias -g '${1+"$@"}'='"$@"'
    83    setopt NO_GLOB_SUBST
    84  else
    85 -  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
    86 +  case `(set -o) 2>/dev/null` in
    87 +  *posix*) set -o posix ;;
    88 +esac
    89 +
    90  fi
    91 -BIN_SH=xpg4; export BIN_SH # for Tru64
    92 -DUALCASE=1; export DUALCASE # for MKS sh
    93 +
    95  :
    96  (as_func_return () {
    97 @@ -512,19 +518,28 @@
    98    as_mkdir_p=false
    99  fi
   101 -# Find out whether ``test -x'' works.  Don't use a zero-byte file, as
   102 -# systems may use methods other than mode bits to determine executability.
   103 -cat >conf$$.file <<_ASEOF
   104 -#! /bin/sh
   105 -exit 0
   106 -_ASEOF
   107 -chmod +x conf$$.file
   108 -if test -x conf$$.file >/dev/null 2>&1; then
   109 -  as_executable_p="test -x"
   110 +if test -x / >/dev/null 2>&1; then
   111 +  as_test_x='test -x'
   112  else
   113 -  as_executable_p=:
   114 +  if ls -dL / >/dev/null 2>&1; then
   115 +    as_ls_L_option=L
   116 +  else
   117 +    as_ls_L_option=
   118 +  fi
   119 +  as_test_x='
   120 +    eval sh -c '\''
   121 +      if test -d "$1"; then
   122 +        test -d "$1/.";
   123 +      else
   124 +	case $1 in
   125 +        -*)set "./$1";;
   126 +	esac;
   127 +	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
   128 +	???[sx]*):;;*)false;;esac;fi
   129 +    '\'' sh
   130 +  '
   131  fi
   132 -rm -f conf$$.file
   133 +as_executable_p=$as_test_x
   135  # Sed expression to map a string onto a valid CPP name.
   136  as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
   137 @@ -565,36 +580,36 @@
   138  # Factoring default headers for most tests.
   139  ac_includes_default="\
   140  #include <stdio.h>
   141 -#if HAVE_SYS_TYPES_H
   142 +#ifdef HAVE_SYS_TYPES_H
   143  # include <sys/types.h>
   144  #endif
   145 -#if HAVE_SYS_STAT_H
   146 +#ifdef HAVE_SYS_STAT_H
   147  # include <sys/stat.h>
   148  #endif
   149 -#if STDC_HEADERS
   150 +#ifdef STDC_HEADERS
   151  # include <stdlib.h>
   152  # include <stddef.h>
   153  #else
   154 -# if HAVE_STDLIB_H
   155 +# ifdef HAVE_STDLIB_H
   156  #  include <stdlib.h>
   157  # endif
   158  #endif
   159 -#if HAVE_STRING_H
   160 -# if !STDC_HEADERS && HAVE_MEMORY_H
   161 +#ifdef HAVE_STRING_H
   162 +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
   163  #  include <memory.h>
   164  # endif
   165  # include <string.h>
   166  #endif
   167 -#if HAVE_STRINGS_H
   168 +#ifdef HAVE_STRINGS_H
   169  # include <strings.h>
   170  #endif
   171 -#if HAVE_INTTYPES_H
   172 +#ifdef HAVE_INTTYPES_H
   173  # include <inttypes.h>
   174  #endif
   175 -#if HAVE_STDINT_H
   176 +#ifdef HAVE_STDINT_H
   177  # include <stdint.h>
   178  #endif
   179 -#if HAVE_UNISTD_H
   180 +#ifdef HAVE_UNISTD_H
   181  # include <unistd.h>
   182  #endif"
   184 @@ -696,8 +711,8 @@
   185  CXXCPP
   186  RANLIB
   187  LEX
   188 -LEXLIB
   189  LEX_OUTPUT_ROOT
   190 +LEXLIB
   191  YACC
   192  YFLAGS
   193  GREP
   194 @@ -840,6 +855,7 @@
   195  CC
   196  CFLAGS
   197  LDFLAGS
   198 +LIBS
   199  CPPFLAGS
   200  CXX
   201  CXXFLAGS
   202 @@ -954,10 +970,10 @@
   203    -disable-* | --disable-*)
   204      ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
   205      # Reject names that are not valid shell variable names.
   206 -    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
   207 +    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
   208        { echo "$as_me: error: invalid feature name: $ac_feature" >&2
   209     { (exit 1); exit 1; }; }
   210 -    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
   211 +    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
   212      eval enable_$ac_feature=no ;;
   214    -docdir | --docdir | --docdi | --doc | --do)
   215 @@ -973,10 +989,10 @@
   216    -enable-* | --enable-*)
   217      ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
   218      # Reject names that are not valid shell variable names.
   219 -    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
   220 +    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
   221        { echo "$as_me: error: invalid feature name: $ac_feature" >&2
   222     { (exit 1); exit 1; }; }
   223 -    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
   224 +    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
   225      eval enable_$ac_feature=\$ac_optarg ;;
   227    -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
   228 @@ -1170,19 +1186,19 @@
   229    -with-* | --with-*)
   230      ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
   231      # Reject names that are not valid shell variable names.
   232 -    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
   233 +    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
   234        { echo "$as_me: error: invalid package name: $ac_package" >&2
   235     { (exit 1); exit 1; }; }
   236 -    ac_package=`echo $ac_package| sed 's/-/_/g'`
   237 +    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
   238      eval with_$ac_package=\$ac_optarg ;;
   240    -without-* | --without-*)
   241      ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
   242      # Reject names that are not valid shell variable names.
   243 -    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
   244 +    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
   245        { echo "$as_me: error: invalid package name: $ac_package" >&2
   246     { (exit 1); exit 1; }; }
   247 -    ac_package=`echo $ac_package | sed 's/-/_/g'`
   248 +    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
   249      eval with_$ac_package=no ;;
   251    --x)
   252 @@ -1461,6 +1477,7 @@
   253    CFLAGS      C compiler flags
   254    LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
   255                nonstandard directory <lib dir>
   256 +  LIBS        libraries to pass to the linker, e.g. -l<library>
   257    CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
   258                you have headers in a nonstandard directory <include dir>
   259    CXX         C++ compiler command
   260 @@ -1538,7 +1555,7 @@
   261  if $ac_init_version; then
   262    cat <<\_ACEOF
   263  configure
   264 -generated by GNU Autoconf 2.60
   265 +generated by GNU Autoconf 2.61
   267  Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
   268  2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   269 @@ -1552,7 +1569,7 @@
   270  running configure, to aid debugging if configure makes a mistake.
   272  It was created by $as_me, which was
   273 -generated by GNU Autoconf 2.60.  Invocation command line was
   274 +generated by GNU Autoconf 2.61.  Invocation command line was
   276    $ $0 $@
   278 @@ -2150,7 +2167,7 @@
   279      # by default.
   280      for ac_prog in ginstall scoinst install; do
   281        for ac_exec_ext in '' $ac_executable_extensions; do
   282 -	if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; }; then
   283 +	if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
   284  	  if test $ac_prog = install &&
   285  	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
   286  	    # AIX install.  It has an incompatible calling convention.
   287 @@ -2344,7 +2361,7 @@
   288    IFS=$as_save_IFS
   289    test -z "$as_dir" && as_dir=.
   290    for ac_exec_ext in '' $ac_executable_extensions; do
   291 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   292 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   293      ac_cv_prog_AWK="$ac_prog"
   294      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   295      break 2
   296 @@ -2479,7 +2496,7 @@
   297    IFS=$as_save_IFS
   298    test -z "$as_dir" && as_dir=.
   299    for ac_exec_ext in '' $ac_executable_extensions; do
   300 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   301 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   302      ac_cv_prog_STRIP="${ac_tool_prefix}strip"
   303      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   304      break 2
   305 @@ -2519,7 +2536,7 @@
   306    IFS=$as_save_IFS
   307    test -z "$as_dir" && as_dir=.
   308    for ac_exec_ext in '' $ac_executable_extensions; do
   309 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   310 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   311      ac_cv_prog_ac_ct_STRIP="strip"
   312      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   313      break 2
   314 @@ -2600,7 +2617,7 @@
   315    IFS=$as_save_IFS
   316    test -z "$as_dir" && as_dir=.
   317    for ac_exec_ext in '' $ac_executable_extensions; do
   318 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   319 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   320      ac_cv_prog_CC="${ac_tool_prefix}gcc"
   321      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   322      break 2
   323 @@ -2640,7 +2657,7 @@
   324    IFS=$as_save_IFS
   325    test -z "$as_dir" && as_dir=.
   326    for ac_exec_ext in '' $ac_executable_extensions; do
   327 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   328 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   329      ac_cv_prog_ac_ct_CC="gcc"
   330      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   331      break 2
   332 @@ -2697,7 +2714,7 @@
   333    IFS=$as_save_IFS
   334    test -z "$as_dir" && as_dir=.
   335    for ac_exec_ext in '' $ac_executable_extensions; do
   336 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   337 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   338      ac_cv_prog_CC="${ac_tool_prefix}cc"
   339      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   340      break 2
   341 @@ -2738,7 +2755,7 @@
   342    IFS=$as_save_IFS
   343    test -z "$as_dir" && as_dir=.
   344    for ac_exec_ext in '' $ac_executable_extensions; do
   345 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   346 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   347      if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
   348         ac_prog_rejected=yes
   349         continue
   350 @@ -2796,7 +2813,7 @@
   351    IFS=$as_save_IFS
   352    test -z "$as_dir" && as_dir=.
   353    for ac_exec_ext in '' $ac_executable_extensions; do
   354 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   355 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   356      ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
   357      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   358      break 2
   359 @@ -2840,7 +2857,7 @@
   360    IFS=$as_save_IFS
   361    test -z "$as_dir" && as_dir=.
   362    for ac_exec_ext in '' $ac_executable_extensions; do
   363 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   364 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   365      ac_cv_prog_ac_ct_CC="$ac_prog"
   366      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   367      break 2
   368 @@ -2981,7 +2998,7 @@
   369  # in a Makefile.  We should not override ac_cv_exeext if it was cached,
   370  # so that the user can short-circuit this test for compilers unknown to
   371  # Autoconf.
   372 -for ac_file in $ac_files
   373 +for ac_file in $ac_files ''
   374  do
   375    test -f "$ac_file" || continue
   376    case $ac_file in
   377 @@ -3009,6 +3026,12 @@
   378  test "$ac_cv_exeext" = no && ac_cv_exeext=
   380  else
   381 +  ac_file=''
   382 +fi
   383 +
   384 +{ echo "$as_me:$LINENO: result: $ac_file" >&5
   385 +echo "${ECHO_T}$ac_file" >&6; }
   386 +if test -z "$ac_file"; then
   387    echo "$as_me: failed program was:" >&5
   388  sed 's/^/| /' conftest.$ac_ext >&5
   390 @@ -3020,8 +3043,6 @@
   391  fi
   393  ac_exeext=$ac_cv_exeext
   394 -{ echo "$as_me:$LINENO: result: $ac_file" >&5
   395 -echo "${ECHO_T}$ac_file" >&6; }
   397  # Check that the compiler produces executables we can run.  If not, either
   398  # the compiler is broken, or we cross compile.
   399 @@ -3199,27 +3220,10 @@
   400    rm -f conftest.er1
   401    cat conftest.err >&5
   402    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   403 -  (exit $ac_status); } &&
   404 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
   405 -  { (case "(($ac_try" in
   406 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   407 -  *) ac_try_echo=$ac_try;;
   408 -esac
   409 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   410 -  (eval "$ac_try") 2>&5
   411 -  ac_status=$?
   412 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   413 -  (exit $ac_status); }; } &&
   414 -	 { ac_try='test -s conftest.$ac_objext'
   415 -  { (case "(($ac_try" in
   416 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   417 -  *) ac_try_echo=$ac_try;;
   418 -esac
   419 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   420 -  (eval "$ac_try") 2>&5
   421 -  ac_status=$?
   422 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   423 -  (exit $ac_status); }; }; then
   424 +  (exit $ac_status); } && {
   425 +	 test -z "$ac_c_werror_flag" ||
   426 +	 test ! -s conftest.err
   427 +       } && test -s conftest.$ac_objext; then
   428    ac_compiler_gnu=yes
   429  else
   430    echo "$as_me: failed program was:" >&5
   431 @@ -3274,27 +3278,10 @@
   432    rm -f conftest.er1
   433    cat conftest.err >&5
   434    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   435 -  (exit $ac_status); } &&
   436 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
   437 -  { (case "(($ac_try" in
   438 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   439 -  *) ac_try_echo=$ac_try;;
   440 -esac
   441 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   442 -  (eval "$ac_try") 2>&5
   443 -  ac_status=$?
   444 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   445 -  (exit $ac_status); }; } &&
   446 -	 { ac_try='test -s conftest.$ac_objext'
   447 -  { (case "(($ac_try" in
   448 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   449 -  *) ac_try_echo=$ac_try;;
   450 -esac
   451 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   452 -  (eval "$ac_try") 2>&5
   453 -  ac_status=$?
   454 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   455 -  (exit $ac_status); }; }; then
   456 +  (exit $ac_status); } && {
   457 +	 test -z "$ac_c_werror_flag" ||
   458 +	 test ! -s conftest.err
   459 +       } && test -s conftest.$ac_objext; then
   460    ac_cv_prog_cc_g=yes
   461  else
   462    echo "$as_me: failed program was:" >&5
   463 @@ -3329,27 +3316,10 @@
   464    rm -f conftest.er1
   465    cat conftest.err >&5
   466    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   467 -  (exit $ac_status); } &&
   468 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
   469 -  { (case "(($ac_try" in
   470 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   471 -  *) ac_try_echo=$ac_try;;
   472 -esac
   473 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   474 -  (eval "$ac_try") 2>&5
   475 -  ac_status=$?
   476 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   477 -  (exit $ac_status); }; } &&
   478 -	 { ac_try='test -s conftest.$ac_objext'
   479 -  { (case "(($ac_try" in
   480 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   481 -  *) ac_try_echo=$ac_try;;
   482 -esac
   483 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   484 -  (eval "$ac_try") 2>&5
   485 -  ac_status=$?
   486 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   487 -  (exit $ac_status); }; }; then
   488 +  (exit $ac_status); } && {
   489 +	 test -z "$ac_c_werror_flag" ||
   490 +	 test ! -s conftest.err
   491 +       } && test -s conftest.$ac_objext; then
   492    :
   493  else
   494    echo "$as_me: failed program was:" >&5
   495 @@ -3385,27 +3355,10 @@
   496    rm -f conftest.er1
   497    cat conftest.err >&5
   498    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   499 -  (exit $ac_status); } &&
   500 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
   501 -  { (case "(($ac_try" in
   502 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   503 -  *) ac_try_echo=$ac_try;;
   504 -esac
   505 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   506 -  (eval "$ac_try") 2>&5
   507 -  ac_status=$?
   508 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   509 -  (exit $ac_status); }; } &&
   510 -	 { ac_try='test -s conftest.$ac_objext'
   511 -  { (case "(($ac_try" in
   512 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   513 -  *) ac_try_echo=$ac_try;;
   514 -esac
   515 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   516 -  (eval "$ac_try") 2>&5
   517 -  ac_status=$?
   518 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   519 -  (exit $ac_status); }; }; then
   520 +  (exit $ac_status); } && {
   521 +	 test -z "$ac_c_werror_flag" ||
   522 +	 test ! -s conftest.err
   523 +       } && test -s conftest.$ac_objext; then
   524    ac_cv_prog_cc_g=yes
   525  else
   526    echo "$as_me: failed program was:" >&5
   527 @@ -3521,27 +3474,10 @@
   528    rm -f conftest.er1
   529    cat conftest.err >&5
   530    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   531 -  (exit $ac_status); } &&
   532 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
   533 -  { (case "(($ac_try" in
   534 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   535 -  *) ac_try_echo=$ac_try;;
   536 -esac
   537 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   538 -  (eval "$ac_try") 2>&5
   539 -  ac_status=$?
   540 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   541 -  (exit $ac_status); }; } &&
   542 -	 { ac_try='test -s conftest.$ac_objext'
   543 -  { (case "(($ac_try" in
   544 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   545 -  *) ac_try_echo=$ac_try;;
   546 -esac
   547 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   548 -  (eval "$ac_try") 2>&5
   549 -  ac_status=$?
   550 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   551 -  (exit $ac_status); }; }; then
   552 +  (exit $ac_status); } && {
   553 +	 test -z "$ac_c_werror_flag" ||
   554 +	 test ! -s conftest.err
   555 +       } && test -s conftest.$ac_objext; then
   556    ac_cv_prog_cc_c89=$ac_arg
   557  else
   558    echo "$as_me: failed program was:" >&5
   559 @@ -3780,7 +3716,7 @@
   560    IFS=$as_save_IFS
   561    test -z "$as_dir" && as_dir=.
   562    for ac_exec_ext in '' $ac_executable_extensions; do
   563 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   564 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   565      ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
   566      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   567      break 2
   568 @@ -3824,7 +3760,7 @@
   569    IFS=$as_save_IFS
   570    test -z "$as_dir" && as_dir=.
   571    for ac_exec_ext in '' $ac_executable_extensions; do
   572 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   573 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   574      ac_cv_prog_ac_ct_CXX="$ac_prog"
   575      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   576      break 2
   577 @@ -3937,27 +3873,10 @@
   578    rm -f conftest.er1
   579    cat conftest.err >&5
   580    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   581 -  (exit $ac_status); } &&
   582 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
   583 -  { (case "(($ac_try" in
   584 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   585 -  *) ac_try_echo=$ac_try;;
   586 -esac
   587 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   588 -  (eval "$ac_try") 2>&5
   589 -  ac_status=$?
   590 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   591 -  (exit $ac_status); }; } &&
   592 -	 { ac_try='test -s conftest.$ac_objext'
   593 -  { (case "(($ac_try" in
   594 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   595 -  *) ac_try_echo=$ac_try;;
   596 -esac
   597 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   598 -  (eval "$ac_try") 2>&5
   599 -  ac_status=$?
   600 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   601 -  (exit $ac_status); }; }; then
   602 +  (exit $ac_status); } && {
   603 +	 test -z "$ac_cxx_werror_flag" ||
   604 +	 test ! -s conftest.err
   605 +       } && test -s conftest.$ac_objext; then
   606    ac_compiler_gnu=yes
   607  else
   608    echo "$as_me: failed program was:" >&5
   609 @@ -4012,27 +3931,10 @@
   610    rm -f conftest.er1
   611    cat conftest.err >&5
   612    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   613 -  (exit $ac_status); } &&
   614 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
   615 -  { (case "(($ac_try" in
   616 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   617 -  *) ac_try_echo=$ac_try;;
   618 -esac
   619 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   620 -  (eval "$ac_try") 2>&5
   621 -  ac_status=$?
   622 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   623 -  (exit $ac_status); }; } &&
   624 -	 { ac_try='test -s conftest.$ac_objext'
   625 -  { (case "(($ac_try" in
   626 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   627 -  *) ac_try_echo=$ac_try;;
   628 -esac
   629 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   630 -  (eval "$ac_try") 2>&5
   631 -  ac_status=$?
   632 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   633 -  (exit $ac_status); }; }; then
   634 +  (exit $ac_status); } && {
   635 +	 test -z "$ac_cxx_werror_flag" ||
   636 +	 test ! -s conftest.err
   637 +       } && test -s conftest.$ac_objext; then
   638    ac_cv_prog_cxx_g=yes
   639  else
   640    echo "$as_me: failed program was:" >&5
   641 @@ -4067,27 +3969,10 @@
   642    rm -f conftest.er1
   643    cat conftest.err >&5
   644    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   645 -  (exit $ac_status); } &&
   646 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
   647 -  { (case "(($ac_try" in
   648 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   649 -  *) ac_try_echo=$ac_try;;
   650 -esac
   651 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   652 -  (eval "$ac_try") 2>&5
   653 -  ac_status=$?
   654 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   655 -  (exit $ac_status); }; } &&
   656 -	 { ac_try='test -s conftest.$ac_objext'
   657 -  { (case "(($ac_try" in
   658 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   659 -  *) ac_try_echo=$ac_try;;
   660 -esac
   661 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   662 -  (eval "$ac_try") 2>&5
   663 -  ac_status=$?
   664 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   665 -  (exit $ac_status); }; }; then
   666 +  (exit $ac_status); } && {
   667 +	 test -z "$ac_cxx_werror_flag" ||
   668 +	 test ! -s conftest.err
   669 +       } && test -s conftest.$ac_objext; then
   670    :
   671  else
   672    echo "$as_me: failed program was:" >&5
   673 @@ -4123,27 +4008,10 @@
   674    rm -f conftest.er1
   675    cat conftest.err >&5
   676    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   677 -  (exit $ac_status); } &&
   678 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
   679 -  { (case "(($ac_try" in
   680 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   681 -  *) ac_try_echo=$ac_try;;
   682 -esac
   683 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   684 -  (eval "$ac_try") 2>&5
   685 -  ac_status=$?
   686 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   687 -  (exit $ac_status); }; } &&
   688 -	 { ac_try='test -s conftest.$ac_objext'
   689 -  { (case "(($ac_try" in
   690 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   691 -  *) ac_try_echo=$ac_try;;
   692 -esac
   693 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   694 -  (eval "$ac_try") 2>&5
   695 -  ac_status=$?
   696 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   697 -  (exit $ac_status); }; }; then
   698 +  (exit $ac_status); } && {
   699 +	 test -z "$ac_cxx_werror_flag" ||
   700 +	 test ! -s conftest.err
   701 +       } && test -s conftest.$ac_objext; then
   702    ac_cv_prog_cxx_g=yes
   703  else
   704    echo "$as_me: failed program was:" >&5
   705 @@ -4345,17 +4213,10 @@
   706    rm -f conftest.er1
   707    cat conftest.err >&5
   708    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   709 -  (exit $ac_status); } >/dev/null; then
   710 -  if test -s conftest.err; then
   711 -    ac_cpp_err=$ac_c_preproc_warn_flag
   712 -    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
   713 -  else
   714 -    ac_cpp_err=
   715 -  fi
   716 -else
   717 -  ac_cpp_err=yes
   718 -fi
   719 -if test -z "$ac_cpp_err"; then
   720 +  (exit $ac_status); } >/dev/null && {
   721 +	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
   722 +	 test ! -s conftest.err
   723 +       }; then
   724    :
   725  else
   726    echo "$as_me: failed program was:" >&5
   727 @@ -4389,17 +4250,10 @@
   728    rm -f conftest.er1
   729    cat conftest.err >&5
   730    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   731 -  (exit $ac_status); } >/dev/null; then
   732 -  if test -s conftest.err; then
   733 -    ac_cpp_err=$ac_c_preproc_warn_flag
   734 -    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
   735 -  else
   736 -    ac_cpp_err=
   737 -  fi
   738 -else
   739 -  ac_cpp_err=yes
   740 -fi
   741 -if test -z "$ac_cpp_err"; then
   742 +  (exit $ac_status); } >/dev/null && {
   743 +	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
   744 +	 test ! -s conftest.err
   745 +       }; then
   746    # Broken: success on invalid input.
   747  continue
   748  else
   749 @@ -4464,17 +4318,10 @@
   750    rm -f conftest.er1
   751    cat conftest.err >&5
   752    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   753 -  (exit $ac_status); } >/dev/null; then
   754 -  if test -s conftest.err; then
   755 -    ac_cpp_err=$ac_c_preproc_warn_flag
   756 -    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
   757 -  else
   758 -    ac_cpp_err=
   759 -  fi
   760 -else
   761 -  ac_cpp_err=yes
   762 -fi
   763 -if test -z "$ac_cpp_err"; then
   764 +  (exit $ac_status); } >/dev/null && {
   765 +	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
   766 +	 test ! -s conftest.err
   767 +       }; then
   768    :
   769  else
   770    echo "$as_me: failed program was:" >&5
   771 @@ -4508,17 +4355,10 @@
   772    rm -f conftest.er1
   773    cat conftest.err >&5
   774    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   775 -  (exit $ac_status); } >/dev/null; then
   776 -  if test -s conftest.err; then
   777 -    ac_cpp_err=$ac_c_preproc_warn_flag
   778 -    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
   779 -  else
   780 -    ac_cpp_err=
   781 -  fi
   782 -else
   783 -  ac_cpp_err=yes
   784 -fi
   785 -if test -z "$ac_cpp_err"; then
   786 +  (exit $ac_status); } >/dev/null && {
   787 +	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
   788 +	 test ! -s conftest.err
   789 +       }; then
   790    # Broken: success on invalid input.
   791  continue
   792  else
   793 @@ -4599,17 +4439,10 @@
   794    rm -f conftest.er1
   795    cat conftest.err >&5
   796    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   797 -  (exit $ac_status); } >/dev/null; then
   798 -  if test -s conftest.err; then
   799 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
   800 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
   801 -  else
   802 -    ac_cpp_err=
   803 -  fi
   804 -else
   805 -  ac_cpp_err=yes
   806 -fi
   807 -if test -z "$ac_cpp_err"; then
   808 +  (exit $ac_status); } >/dev/null && {
   809 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
   810 +	 test ! -s conftest.err
   811 +       }; then
   812    :
   813  else
   814    echo "$as_me: failed program was:" >&5
   815 @@ -4643,17 +4476,10 @@
   816    rm -f conftest.er1
   817    cat conftest.err >&5
   818    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   819 -  (exit $ac_status); } >/dev/null; then
   820 -  if test -s conftest.err; then
   821 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
   822 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
   823 -  else
   824 -    ac_cpp_err=
   825 -  fi
   826 -else
   827 -  ac_cpp_err=yes
   828 -fi
   829 -if test -z "$ac_cpp_err"; then
   830 +  (exit $ac_status); } >/dev/null && {
   831 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
   832 +	 test ! -s conftest.err
   833 +       }; then
   834    # Broken: success on invalid input.
   835  continue
   836  else
   837 @@ -4718,17 +4544,10 @@
   838    rm -f conftest.er1
   839    cat conftest.err >&5
   840    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   841 -  (exit $ac_status); } >/dev/null; then
   842 -  if test -s conftest.err; then
   843 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
   844 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
   845 -  else
   846 -    ac_cpp_err=
   847 -  fi
   848 -else
   849 -  ac_cpp_err=yes
   850 -fi
   851 -if test -z "$ac_cpp_err"; then
   852 +  (exit $ac_status); } >/dev/null && {
   853 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
   854 +	 test ! -s conftest.err
   855 +       }; then
   856    :
   857  else
   858    echo "$as_me: failed program was:" >&5
   859 @@ -4762,17 +4581,10 @@
   860    rm -f conftest.er1
   861    cat conftest.err >&5
   862    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   863 -  (exit $ac_status); } >/dev/null; then
   864 -  if test -s conftest.err; then
   865 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
   866 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
   867 -  else
   868 -    ac_cpp_err=
   869 -  fi
   870 -else
   871 -  ac_cpp_err=yes
   872 -fi
   873 -if test -z "$ac_cpp_err"; then
   874 +  (exit $ac_status); } >/dev/null && {
   875 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
   876 +	 test ! -s conftest.err
   877 +       }; then
   878    # Broken: success on invalid input.
   879  continue
   880  else
   881 @@ -4822,7 +4634,7 @@
   882    IFS=$as_save_IFS
   883    test -z "$as_dir" && as_dir=.
   884    for ac_exec_ext in '' $ac_executable_extensions; do
   885 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   886 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   887      ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
   888      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   889      break 2
   890 @@ -4862,7 +4674,7 @@
   891    IFS=$as_save_IFS
   892    test -z "$as_dir" && as_dir=.
   893    for ac_exec_ext in '' $ac_executable_extensions; do
   894 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   895 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   896      ac_cv_prog_ac_ct_RANLIB="ranlib"
   897      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   898      break 2
   899 @@ -4920,7 +4732,7 @@
   900    IFS=$as_save_IFS
   901    test -z "$as_dir" && as_dir=.
   902    for ac_exec_ext in '' $ac_executable_extensions; do
   903 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
   904 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
   905      ac_cv_prog_LEX="$ac_prog"
   906      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
   907      break 2
   908 @@ -4945,116 +4757,69 @@
   909  done
   910  test -n "$LEX" || LEX=":"
   912 -if test -z "$LEXLIB"
   913 -then
   914 -  { echo "$as_me:$LINENO: checking for yywrap in -lfl" >&5
   915 -echo $ECHO_N "checking for yywrap in -lfl... $ECHO_C" >&6; }
   916 -if test "${ac_cv_lib_fl_yywrap+set}" = set; then
   917 -  echo $ECHO_N "(cached) $ECHO_C" >&6
   918 -else
   919 -  ac_check_lib_save_LIBS=$LIBS
   920 -LIBS="-lfl  $LIBS"
   921 -cat >conftest.$ac_ext <<_ACEOF
   922 -/* confdefs.h.  */
   923 -_ACEOF
   924 -cat confdefs.h >>conftest.$ac_ext
   925 -cat >>conftest.$ac_ext <<_ACEOF
   926 -/* end confdefs.h.  */
   927 -
   928 -/* Override any GCC internal prototype to avoid an error.
   929 -   Use char because int might match the return type of a GCC
   930 -   builtin and then its argument prototype would still apply.  */
   931 -#ifdef __cplusplus
   932 -extern "C"
   933 +if test "x$LEX" != "x:"; then
   934 +  cat >conftest.l <<_ACEOF
   935 +%%
   936 +a { ECHO; }
   937 +b { REJECT; }
   938 +c { yymore (); }
   939 +d { yyless (1); }
   940 +e { yyless (input () != 0); }
   941 +f { unput (yytext[0]); }
   942 +. { BEGIN INITIAL; }
   943 +%%
   944 +#ifdef YYTEXT_POINTER
   945 +extern char *yytext;
   946  #endif
   947 -char yywrap ();
   948  int
   949 -main ()
   950 +main (void)
   951  {
   952 -return yywrap ();
   953 -  ;
   954 -  return 0;
   955 +  return ! yylex () + ! yywrap ();
   956  }
   957  _ACEOF
   958 -rm -f conftest.$ac_objext conftest$ac_exeext
   959 -if { (ac_try="$ac_link"
   960 +{ (ac_try="$LEX conftest.l"
   961  case "(($ac_try" in
   962    *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   963    *) ac_try_echo=$ac_try;;
   964  esac
   965  eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   966 -  (eval "$ac_link") 2>conftest.er1
   967 -  ac_status=$?
   968 -  grep -v '^ *+' conftest.er1 >conftest.err
   969 -  rm -f conftest.er1
   970 -  cat conftest.err >&5
   971 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   972 -  (exit $ac_status); } &&
   973 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
   974 -  { (case "(($ac_try" in
   975 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   976 -  *) ac_try_echo=$ac_try;;
   977 -esac
   978 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   979 -  (eval "$ac_try") 2>&5
   980 -  ac_status=$?
   981 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
   982 -  (exit $ac_status); }; } &&
   983 -	 { ac_try='test -s conftest$ac_exeext'
   984 -  { (case "(($ac_try" in
   985 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
   986 -  *) ac_try_echo=$ac_try;;
   987 -esac
   988 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
   989 -  (eval "$ac_try") 2>&5
   990 +  (eval "$LEX conftest.l") 2>&5
   991    ac_status=$?
   992    echo "$as_me:$LINENO: \$? = $ac_status" >&5
   993 -  (exit $ac_status); }; }; then
   994 -  ac_cv_lib_fl_yywrap=yes
   995 +  (exit $ac_status); }
   996 +{ echo "$as_me:$LINENO: checking lex output file root" >&5
   997 +echo $ECHO_N "checking lex output file root... $ECHO_C" >&6; }
   998 +if test "${ac_cv_prog_lex_root+set}" = set; then
   999 +  echo $ECHO_N "(cached) $ECHO_C" >&6
  1000  else
  1001 -  echo "$as_me: failed program was:" >&5
  1002 -sed 's/^/| /' conftest.$ac_ext >&5
  1004 -	ac_cv_lib_fl_yywrap=no
  1005 +if test -f lex.yy.c; then
  1006 +  ac_cv_prog_lex_root=lex.yy
  1007 +elif test -f lexyy.c; then
  1008 +  ac_cv_prog_lex_root=lexyy
  1009 +else
  1010 +  { { echo "$as_me:$LINENO: error: cannot find output from $LEX; giving up" >&5
  1011 +echo "$as_me: error: cannot find output from $LEX; giving up" >&2;}
  1012 +   { (exit 1); exit 1; }; }
  1013  fi
  1015 -rm -f core conftest.err conftest.$ac_objext \
  1016 -      conftest$ac_exeext conftest.$ac_ext
  1017 -LIBS=$ac_check_lib_save_LIBS
  1018  fi
  1019 -{ echo "$as_me:$LINENO: result: $ac_cv_lib_fl_yywrap" >&5
  1020 -echo "${ECHO_T}$ac_cv_lib_fl_yywrap" >&6; }
  1021 -if test $ac_cv_lib_fl_yywrap = yes; then
  1022 -  LEXLIB="-lfl"
  1023 -else
  1024 -  { echo "$as_me:$LINENO: checking for yywrap in -ll" >&5
  1025 -echo $ECHO_N "checking for yywrap in -ll... $ECHO_C" >&6; }
  1026 -if test "${ac_cv_lib_l_yywrap+set}" = set; then
  1027 +{ echo "$as_me:$LINENO: result: $ac_cv_prog_lex_root" >&5
  1028 +echo "${ECHO_T}$ac_cv_prog_lex_root" >&6; }
  1029 +LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root
  1031 +if test -z "${LEXLIB+set}"; then
  1032 +  { echo "$as_me:$LINENO: checking lex library" >&5
  1033 +echo $ECHO_N "checking lex library... $ECHO_C" >&6; }
  1034 +if test "${ac_cv_lib_lex+set}" = set; then
  1035    echo $ECHO_N "(cached) $ECHO_C" >&6
  1036  else
  1037 -  ac_check_lib_save_LIBS=$LIBS
  1038 -LIBS="-ll  $LIBS"
  1039 -cat >conftest.$ac_ext <<_ACEOF
  1040 -/* confdefs.h.  */
  1041 -_ACEOF
  1042 -cat confdefs.h >>conftest.$ac_ext
  1043 -cat >>conftest.$ac_ext <<_ACEOF
  1044 -/* end confdefs.h.  */
  1046 -/* Override any GCC internal prototype to avoid an error.
  1047 -   Use char because int might match the return type of a GCC
  1048 -   builtin and then its argument prototype would still apply.  */
  1049 -#ifdef __cplusplus
  1050 -extern "C"
  1051 -#endif
  1052 -char yywrap ();
  1053 -int
  1054 -main ()
  1055 -{
  1056 -return yywrap ();
  1057 -  ;
  1058 -  return 0;
  1059 -}
  1060 +    ac_save_LIBS=$LIBS
  1061 +    ac_cv_lib_lex='none needed'
  1062 +    for ac_lib in '' -lfl -ll; do
  1063 +      LIBS="$ac_lib $ac_save_LIBS"
  1064 +      cat >conftest.$ac_ext <<_ACEOF
  1065 +`cat $LEX_OUTPUT_ROOT.c`
  1066  _ACEOF
  1067  rm -f conftest.$ac_objext conftest$ac_exeext
  1068  if { (ac_try="$ac_link"
  1069 @@ -5069,85 +4834,31 @@
  1070    rm -f conftest.er1
  1071    cat conftest.err >&5
  1072    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1073 -  (exit $ac_status); } &&
  1074 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
  1075 -  { (case "(($ac_try" in
  1076 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1077 -  *) ac_try_echo=$ac_try;;
  1078 -esac
  1079 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1080 -  (eval "$ac_try") 2>&5
  1081 -  ac_status=$?
  1082 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1083 -  (exit $ac_status); }; } &&
  1084 -	 { ac_try='test -s conftest$ac_exeext'
  1085 -  { (case "(($ac_try" in
  1086 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1087 -  *) ac_try_echo=$ac_try;;
  1088 -esac
  1089 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1090 -  (eval "$ac_try") 2>&5
  1091 -  ac_status=$?
  1092 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1093 -  (exit $ac_status); }; }; then
  1094 -  ac_cv_lib_l_yywrap=yes
  1095 +  (exit $ac_status); } && {
  1096 +	 test -z "$ac_c_werror_flag" ||
  1097 +	 test ! -s conftest.err
  1098 +       } && test -s conftest$ac_exeext &&
  1099 +       $as_test_x conftest$ac_exeext; then
  1100 +  ac_cv_lib_lex=$ac_lib
  1101  else
  1102    echo "$as_me: failed program was:" >&5
  1103  sed 's/^/| /' conftest.$ac_ext >&5
  1105 -	ac_cv_lib_l_yywrap=no
  1107  fi
  1109 -rm -f core conftest.err conftest.$ac_objext \
  1110 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  1111        conftest$ac_exeext conftest.$ac_ext
  1112 -LIBS=$ac_check_lib_save_LIBS
  1113 -fi
  1114 -{ echo "$as_me:$LINENO: result: $ac_cv_lib_l_yywrap" >&5
  1115 -echo "${ECHO_T}$ac_cv_lib_l_yywrap" >&6; }
  1116 -if test $ac_cv_lib_l_yywrap = yes; then
  1117 -  LEXLIB="-ll"
  1118 -fi
  1119 +      test "$ac_cv_lib_lex" != 'none needed' && break
  1120 +    done
  1121 +    LIBS=$ac_save_LIBS
  1123  fi
  1125 +{ echo "$as_me:$LINENO: result: $ac_cv_lib_lex" >&5
  1126 +echo "${ECHO_T}$ac_cv_lib_lex" >&6; }
  1127 +  test "$ac_cv_lib_lex" != 'none needed' && LEXLIB=$ac_cv_lib_lex
  1128  fi
  1130 -if test "x$LEX" != "x:"; then
  1131 -  { echo "$as_me:$LINENO: checking lex output file root" >&5
  1132 -echo $ECHO_N "checking lex output file root... $ECHO_C" >&6; }
  1133 -if test "${ac_cv_prog_lex_root+set}" = set; then
  1134 -  echo $ECHO_N "(cached) $ECHO_C" >&6
  1135 -else
  1136 -  # The minimal lex program is just a single line: %%.  But some broken lexes
  1137 -# (Solaris, I think it was) want two %% lines, so accommodate them.
  1138 -cat >conftest.l <<_ACEOF
  1139 -%%
  1140 -%%
  1141 -_ACEOF
  1142 -{ (ac_try="$LEX conftest.l"
  1143 -case "(($ac_try" in
  1144 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1145 -  *) ac_try_echo=$ac_try;;
  1146 -esac
  1147 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1148 -  (eval "$LEX conftest.l") 2>&5
  1149 -  ac_status=$?
  1150 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1151 -  (exit $ac_status); }
  1152 -if test -f lex.yy.c; then
  1153 -  ac_cv_prog_lex_root=lex.yy
  1154 -elif test -f lexyy.c; then
  1155 -  ac_cv_prog_lex_root=lexyy
  1156 -else
  1157 -  { { echo "$as_me:$LINENO: error: cannot find output from $LEX; giving up" >&5
  1158 -echo "$as_me: error: cannot find output from $LEX; giving up" >&2;}
  1159 -   { (exit 1); exit 1; }; }
  1160 -fi
  1161 -fi
  1162 -{ echo "$as_me:$LINENO: result: $ac_cv_prog_lex_root" >&5
  1163 -echo "${ECHO_T}$ac_cv_prog_lex_root" >&6; }
  1164 -rm -f conftest.l
  1165 -LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root
  1167  { echo "$as_me:$LINENO: checking whether yytext is a pointer" >&5
  1168  echo $ECHO_N "checking whether yytext is a pointer... $ECHO_C" >&6; }
  1169 @@ -5155,13 +4866,13 @@
  1170    echo $ECHO_N "(cached) $ECHO_C" >&6
  1171  else
  1172    # POSIX says lex can declare yytext either as a pointer or an array; the
  1173 -# default is implementation-dependent. Figure out which it is, since
  1174 +# default is implementation-dependent.  Figure out which it is, since
  1175  # not all implementations provide the %pointer and %array declarations.
  1176  ac_cv_prog_lex_yytext_pointer=no
  1177 -echo 'extern char *yytext;' >>$LEX_OUTPUT_ROOT.c
  1178  ac_save_LIBS=$LIBS
  1179 -LIBS="$LIBS $LEXLIB"
  1180 +LIBS="$LEXLIB $ac_save_LIBS"
  1181  cat >conftest.$ac_ext <<_ACEOF
  1182 +#define YYTEXT_POINTER 1
  1183  `cat $LEX_OUTPUT_ROOT.c`
  1184  _ACEOF
  1185  rm -f conftest.$ac_objext conftest$ac_exeext
  1186 @@ -5177,27 +4888,11 @@
  1187    rm -f conftest.er1
  1188    cat conftest.err >&5
  1189    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1190 -  (exit $ac_status); } &&
  1191 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
  1192 -  { (case "(($ac_try" in
  1193 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1194 -  *) ac_try_echo=$ac_try;;
  1195 -esac
  1196 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1197 -  (eval "$ac_try") 2>&5
  1198 -  ac_status=$?
  1199 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1200 -  (exit $ac_status); }; } &&
  1201 -	 { ac_try='test -s conftest$ac_exeext'
  1202 -  { (case "(($ac_try" in
  1203 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1204 -  *) ac_try_echo=$ac_try;;
  1205 -esac
  1206 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1207 -  (eval "$ac_try") 2>&5
  1208 -  ac_status=$?
  1209 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1210 -  (exit $ac_status); }; }; then
  1211 +  (exit $ac_status); } && {
  1212 +	 test -z "$ac_c_werror_flag" ||
  1213 +	 test ! -s conftest.err
  1214 +       } && test -s conftest$ac_exeext &&
  1215 +       $as_test_x conftest$ac_exeext; then
  1216    ac_cv_prog_lex_yytext_pointer=yes
  1217  else
  1218    echo "$as_me: failed program was:" >&5
  1219 @@ -5206,10 +4901,9 @@
  1221  fi
  1223 -rm -f core conftest.err conftest.$ac_objext \
  1224 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  1225        conftest$ac_exeext conftest.$ac_ext
  1226  LIBS=$ac_save_LIBS
  1227 -rm -f "${LEX_OUTPUT_ROOT}.c"
  1229  fi
  1230  { echo "$as_me:$LINENO: result: $ac_cv_prog_lex_yytext_pointer" >&5
  1231 @@ -5221,6 +4915,7 @@
  1232  _ACEOF
  1234  fi
  1235 +rm -f conftest.l $LEX_OUTPUT_ROOT.c
  1237  fi
  1238  for ac_prog in 'bison -y' byacc
  1239 @@ -5241,7 +4936,7 @@
  1240    IFS=$as_save_IFS
  1241    test -z "$as_dir" && as_dir=.
  1242    for ac_exec_ext in '' $ac_executable_extensions; do
  1243 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
  1244 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1245      ac_cv_prog_YACC="$ac_prog"
  1246      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  1247      break 2
  1248 @@ -5288,7 +4983,7 @@
  1249    for ac_prog in grep ggrep; do
  1250    for ac_exec_ext in '' $ac_executable_extensions; do
  1251      ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
  1252 -    { test -f "$ac_path_GREP" && $as_executable_p "$ac_path_GREP"; } || continue
  1253 +    { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
  1254      # Check for GNU ac_path_GREP and select it if it is found.
  1255    # Check for GNU $ac_path_GREP
  1256  case `"$ac_path_GREP" --version 2>&1` in
  1257 @@ -5370,7 +5065,7 @@
  1258    for ac_prog in egrep; do
  1259    for ac_exec_ext in '' $ac_executable_extensions; do
  1260      ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
  1261 -    { test -f "$ac_path_EGREP" && $as_executable_p "$ac_path_EGREP"; } || continue
  1262 +    { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
  1263      # Check for GNU ac_path_EGREP and select it if it is found.
  1264    # Check for GNU $ac_path_EGREP
  1265  case `"$ac_path_EGREP" --version 2>&1` in
  1266 @@ -5466,27 +5161,10 @@
  1267    rm -f conftest.er1
  1268    cat conftest.err >&5
  1269    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1270 -  (exit $ac_status); } &&
  1271 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
  1272 -  { (case "(($ac_try" in
  1273 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1274 -  *) ac_try_echo=$ac_try;;
  1275 -esac
  1276 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1277 -  (eval "$ac_try") 2>&5
  1278 -  ac_status=$?
  1279 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1280 -  (exit $ac_status); }; } &&
  1281 -	 { ac_try='test -s conftest.$ac_objext'
  1282 -  { (case "(($ac_try" in
  1283 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1284 -  *) ac_try_echo=$ac_try;;
  1285 -esac
  1286 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1287 -  (eval "$ac_try") 2>&5
  1288 -  ac_status=$?
  1289 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1290 -  (exit $ac_status); }; }; then
  1291 +  (exit $ac_status); } && {
  1292 +	 test -z "$ac_c_werror_flag" ||
  1293 +	 test ! -s conftest.err
  1294 +       } && test -s conftest.$ac_objext; then
  1295    ac_cv_header_stdc=yes
  1296  else
  1297    echo "$as_me: failed program was:" >&5
  1298 @@ -5662,27 +5340,10 @@
  1299    rm -f conftest.er1
  1300    cat conftest.err >&5
  1301    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1302 -  (exit $ac_status); } &&
  1303 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
  1304 -  { (case "(($ac_try" in
  1305 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1306 -  *) ac_try_echo=$ac_try;;
  1307 -esac
  1308 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1309 -  (eval "$ac_try") 2>&5
  1310 -  ac_status=$?
  1311 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1312 -  (exit $ac_status); }; } &&
  1313 -	 { ac_try='test -s conftest.$ac_objext'
  1314 -  { (case "(($ac_try" in
  1315 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1316 -  *) ac_try_echo=$ac_try;;
  1317 -esac
  1318 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1319 -  (eval "$ac_try") 2>&5
  1320 -  ac_status=$?
  1321 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1322 -  (exit $ac_status); }; }; then
  1323 +  (exit $ac_status); } && {
  1324 +	 test -z "$ac_c_werror_flag" ||
  1325 +	 test ! -s conftest.err
  1326 +       } && test -s conftest.$ac_objext; then
  1327    eval "$as_ac_Header=yes"
  1328  else
  1329    echo "$as_me: failed program was:" >&5
  1330 @@ -5724,7 +5385,8 @@
  1331  int
  1332  main ()
  1334 -#if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
  1335 +#if  ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN \
  1336 +	&& BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN)
  1337   bogus endian macros
  1338  #endif
  1340 @@ -5745,27 +5407,10 @@
  1341    rm -f conftest.er1
  1342    cat conftest.err >&5
  1343    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1344 -  (exit $ac_status); } &&
  1345 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
  1346 -  { (case "(($ac_try" in
  1347 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1348 -  *) ac_try_echo=$ac_try;;
  1349 -esac
  1350 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1351 -  (eval "$ac_try") 2>&5
  1352 -  ac_status=$?
  1353 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1354 -  (exit $ac_status); }; } &&
  1355 -	 { ac_try='test -s conftest.$ac_objext'
  1356 -  { (case "(($ac_try" in
  1357 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1358 -  *) ac_try_echo=$ac_try;;
  1359 -esac
  1360 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1361 -  (eval "$ac_try") 2>&5
  1362 -  ac_status=$?
  1363 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1364 -  (exit $ac_status); }; }; then
  1365 +  (exit $ac_status); } && {
  1366 +	 test -z "$ac_c_werror_flag" ||
  1367 +	 test ! -s conftest.err
  1368 +       } && test -s conftest.$ac_objext; then
  1369    # It does; now see whether it defined to BIG_ENDIAN or not.
  1370  cat >conftest.$ac_ext <<_ACEOF
  1371  /* confdefs.h.  */
  1372 @@ -5800,27 +5445,10 @@
  1373    rm -f conftest.er1
  1374    cat conftest.err >&5
  1375    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1376 -  (exit $ac_status); } &&
  1377 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
  1378 -  { (case "(($ac_try" in
  1379 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1380 -  *) ac_try_echo=$ac_try;;
  1381 -esac
  1382 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1383 -  (eval "$ac_try") 2>&5
  1384 -  ac_status=$?
  1385 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1386 -  (exit $ac_status); }; } &&
  1387 -	 { ac_try='test -s conftest.$ac_objext'
  1388 -  { (case "(($ac_try" in
  1389 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1390 -  *) ac_try_echo=$ac_try;;
  1391 -esac
  1392 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1393 -  (eval "$ac_try") 2>&5
  1394 -  ac_status=$?
  1395 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1396 -  (exit $ac_status); }; }; then
  1397 +  (exit $ac_status); } && {
  1398 +	 test -z "$ac_c_werror_flag" ||
  1399 +	 test ! -s conftest.err
  1400 +       } && test -s conftest.$ac_objext; then
  1401    ac_cv_c_bigendian=yes
  1402  else
  1403    echo "$as_me: failed program was:" >&5
  1404 @@ -5871,27 +5499,10 @@
  1405    rm -f conftest.er1
  1406    cat conftest.err >&5
  1407    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1408 -  (exit $ac_status); } &&
  1409 -	 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
  1410 -  { (case "(($ac_try" in
  1411 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1412 -  *) ac_try_echo=$ac_try;;
  1413 -esac
  1414 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1415 -  (eval "$ac_try") 2>&5
  1416 -  ac_status=$?
  1417 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1418 -  (exit $ac_status); }; } &&
  1419 -	 { ac_try='test -s conftest.$ac_objext'
  1420 -  { (case "(($ac_try" in
  1421 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1422 -  *) ac_try_echo=$ac_try;;
  1423 -esac
  1424 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1425 -  (eval "$ac_try") 2>&5
  1426 -  ac_status=$?
  1427 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1428 -  (exit $ac_status); }; }; then
  1429 +  (exit $ac_status); } && {
  1430 +	 test -z "$ac_c_werror_flag" ||
  1431 +	 test ! -s conftest.err
  1432 +       } && test -s conftest.$ac_objext; then
  1433    if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then
  1434    ac_cv_c_bigendian=yes
  1435  fi
  1436 @@ -6015,8 +5626,7 @@
  1437  main ()
  1439  #ifndef strerror_r
  1440 -  char *p = (char *) strerror_r;
  1441 -  return !p;
  1442 +  (void) strerror_r;
  1443  #endif
  1446 @@ -6036,27 +5646,10 @@
  1447    rm -f conftest.er1
  1448    cat conftest.err >&5
  1449    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1450 -  (exit $ac_status); } &&
  1451 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1452 -  { (case "(($ac_try" in
  1453 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1454 -  *) ac_try_echo=$ac_try;;
  1455 -esac
  1456 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1457 -  (eval "$ac_try") 2>&5
  1458 -  ac_status=$?
  1459 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1460 -  (exit $ac_status); }; } &&
  1461 -	 { ac_try='test -s conftest.$ac_objext'
  1462 -  { (case "(($ac_try" in
  1463 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1464 -  *) ac_try_echo=$ac_try;;
  1465 -esac
  1466 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1467 -  (eval "$ac_try") 2>&5
  1468 -  ac_status=$?
  1469 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1470 -  (exit $ac_status); }; }; then
  1471 +  (exit $ac_status); } && {
  1472 +	 test -z "$ac_cxx_werror_flag" ||
  1473 +	 test ! -s conftest.err
  1474 +       } && test -s conftest.$ac_objext; then
  1475    ac_cv_have_decl_strerror_r=yes
  1476  else
  1477    echo "$as_me: failed program was:" >&5
  1478 @@ -6152,27 +5745,11 @@
  1479    rm -f conftest.er1
  1480    cat conftest.err >&5
  1481    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1482 -  (exit $ac_status); } &&
  1483 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1484 -  { (case "(($ac_try" in
  1485 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1486 -  *) ac_try_echo=$ac_try;;
  1487 -esac
  1488 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1489 -  (eval "$ac_try") 2>&5
  1490 -  ac_status=$?
  1491 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1492 -  (exit $ac_status); }; } &&
  1493 -	 { ac_try='test -s conftest$ac_exeext'
  1494 -  { (case "(($ac_try" in
  1495 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1496 -  *) ac_try_echo=$ac_try;;
  1497 -esac
  1498 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1499 -  (eval "$ac_try") 2>&5
  1500 -  ac_status=$?
  1501 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1502 -  (exit $ac_status); }; }; then
  1503 +  (exit $ac_status); } && {
  1504 +	 test -z "$ac_cxx_werror_flag" ||
  1505 +	 test ! -s conftest.err
  1506 +       } && test -s conftest$ac_exeext &&
  1507 +       $as_test_x conftest$ac_exeext; then
  1508    eval "$as_ac_var=yes"
  1509  else
  1510    echo "$as_me: failed program was:" >&5
  1511 @@ -6181,7 +5758,7 @@
  1512  	eval "$as_ac_var=no"
  1513  fi
  1515 -rm -f core conftest.err conftest.$ac_objext \
  1516 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  1517        conftest$ac_exeext conftest.$ac_ext
  1518  fi
  1519  ac_res=`eval echo '${'$as_ac_var'}'`
  1520 @@ -6236,27 +5813,10 @@
  1521    rm -f conftest.er1
  1522    cat conftest.err >&5
  1523    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1524 -  (exit $ac_status); } &&
  1525 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1526 -  { (case "(($ac_try" in
  1527 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1528 -  *) ac_try_echo=$ac_try;;
  1529 -esac
  1530 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1531 -  (eval "$ac_try") 2>&5
  1532 -  ac_status=$?
  1533 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1534 -  (exit $ac_status); }; } &&
  1535 -	 { ac_try='test -s conftest.$ac_objext'
  1536 -  { (case "(($ac_try" in
  1537 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1538 -  *) ac_try_echo=$ac_try;;
  1539 -esac
  1540 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1541 -  (eval "$ac_try") 2>&5
  1542 -  ac_status=$?
  1543 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1544 -  (exit $ac_status); }; }; then
  1545 +  (exit $ac_status); } && {
  1546 +	 test -z "$ac_cxx_werror_flag" ||
  1547 +	 test ! -s conftest.err
  1548 +       } && test -s conftest.$ac_objext; then
  1549    ac_cv_func_strerror_r_char_p=yes
  1550  else
  1551    echo "$as_me: failed program was:" >&5
  1552 @@ -6379,27 +5939,10 @@
  1553    rm -f conftest.er1
  1554    cat conftest.err >&5
  1555    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1556 -  (exit $ac_status); } &&
  1557 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1558 -  { (case "(($ac_try" in
  1559 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1560 -  *) ac_try_echo=$ac_try;;
  1561 -esac
  1562 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1563 -  (eval "$ac_try") 2>&5
  1564 -  ac_status=$?
  1565 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1566 -  (exit $ac_status); }; } &&
  1567 -	 { ac_try='test -s conftest.$ac_objext'
  1568 -  { (case "(($ac_try" in
  1569 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1570 -  *) ac_try_echo=$ac_try;;
  1571 -esac
  1572 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1573 -  (eval "$ac_try") 2>&5
  1574 -  ac_status=$?
  1575 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1576 -  (exit $ac_status); }; }; then
  1577 +  (exit $ac_status); } && {
  1578 +	 test -z "$ac_cxx_werror_flag" ||
  1579 +	 test ! -s conftest.err
  1580 +       } && test -s conftest.$ac_objext; then
  1581    ac_header_compiler=yes
  1582  else
  1583    echo "$as_me: failed program was:" >&5
  1584 @@ -6435,17 +5978,10 @@
  1585    rm -f conftest.er1
  1586    cat conftest.err >&5
  1587    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1588 -  (exit $ac_status); } >/dev/null; then
  1589 -  if test -s conftest.err; then
  1590 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  1591 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  1592 -  else
  1593 -    ac_cpp_err=
  1594 -  fi
  1595 -else
  1596 -  ac_cpp_err=yes
  1597 -fi
  1598 -if test -z "$ac_cpp_err"; then
  1599 +  (exit $ac_status); } >/dev/null && {
  1600 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  1601 +	 test ! -s conftest.err
  1602 +       }; then
  1603    ac_header_preproc=yes
  1604  else
  1605    echo "$as_me: failed program was:" >&5
  1606 @@ -6539,27 +6075,10 @@
  1607    rm -f conftest.er1
  1608    cat conftest.err >&5
  1609    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1610 -  (exit $ac_status); } &&
  1611 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1612 -  { (case "(($ac_try" in
  1613 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1614 -  *) ac_try_echo=$ac_try;;
  1615 -esac
  1616 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1617 -  (eval "$ac_try") 2>&5
  1618 -  ac_status=$?
  1619 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1620 -  (exit $ac_status); }; } &&
  1621 -	 { ac_try='test -s conftest.$ac_objext'
  1622 -  { (case "(($ac_try" in
  1623 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1624 -  *) ac_try_echo=$ac_try;;
  1625 -esac
  1626 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1627 -  (eval "$ac_try") 2>&5
  1628 -  ac_status=$?
  1629 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1630 -  (exit $ac_status); }; }; then
  1631 +  (exit $ac_status); } && {
  1632 +	 test -z "$ac_cxx_werror_flag" ||
  1633 +	 test ! -s conftest.err
  1634 +       } && test -s conftest.$ac_objext; then
  1635    eval "$as_ac_Header=yes"
  1636  else
  1637    echo "$as_me: failed program was:" >&5
  1638 @@ -6609,7 +6128,7 @@
  1639    IFS=$as_save_IFS
  1640    test -z "$as_dir" && as_dir=.
  1641    for ac_exec_ext in '' $ac_executable_extensions; do
  1642 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
  1643 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1644      ac_cv_path_CCGNU2_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  1645      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  1646      break 2
  1647 @@ -6739,7 +6258,7 @@
  1648    IFS=$as_save_IFS
  1649    test -z "$as_dir" && as_dir=.
  1650    for ac_exec_ext in '' $ac_executable_extensions; do
  1651 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
  1652 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1653      ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  1654      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  1655      break 2
  1656 @@ -6839,7 +6358,7 @@
  1657    IFS=$as_save_IFS
  1658    test -z "$as_dir" && as_dir=.
  1659    for ac_exec_ext in '' $ac_executable_extensions; do
  1660 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
  1661 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1662      ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  1663      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  1664      break 2
  1665 @@ -6943,7 +6462,7 @@
  1666    IFS=$as_save_IFS
  1667    test -z "$as_dir" && as_dir=.
  1668    for ac_exec_ext in '' $ac_executable_extensions; do
  1669 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
  1670 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1671      ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  1672      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  1673      break 2
  1674 @@ -7117,27 +6636,10 @@
  1675    rm -f conftest.er1
  1676    cat conftest.err >&5
  1677    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1678 -  (exit $ac_status); } &&
  1679 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1680 -  { (case "(($ac_try" in
  1681 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1682 -  *) ac_try_echo=$ac_try;;
  1683 -esac
  1684 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1685 -  (eval "$ac_try") 2>&5
  1686 -  ac_status=$?
  1687 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1688 -  (exit $ac_status); }; } &&
  1689 -	 { ac_try='test -s conftest.$ac_objext'
  1690 -  { (case "(($ac_try" in
  1691 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1692 -  *) ac_try_echo=$ac_try;;
  1693 -esac
  1694 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1695 -  (eval "$ac_try") 2>&5
  1696 -  ac_status=$?
  1697 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1698 -  (exit $ac_status); }; }; then
  1699 +  (exit $ac_status); } && {
  1700 +	 test -z "$ac_cxx_werror_flag" ||
  1701 +	 test ! -s conftest.err
  1702 +       } && test -s conftest.$ac_objext; then
  1703    kde_cv_func_strlcat=yes
  1704  else
  1705    echo "$as_me: failed program was:" >&5
  1706 @@ -7234,27 +6736,11 @@
  1707    rm -f conftest.er1
  1708    cat conftest.err >&5
  1709    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1710 -  (exit $ac_status); } &&
  1711 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1712 -  { (case "(($ac_try" in
  1713 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1714 -  *) ac_try_echo=$ac_try;;
  1715 -esac
  1716 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1717 -  (eval "$ac_try") 2>&5
  1718 -  ac_status=$?
  1719 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1720 -  (exit $ac_status); }; } &&
  1721 -	 { ac_try='test -s conftest$ac_exeext'
  1722 -  { (case "(($ac_try" in
  1723 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1724 -  *) ac_try_echo=$ac_try;;
  1725 -esac
  1726 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1727 -  (eval "$ac_try") 2>&5
  1728 -  ac_status=$?
  1729 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1730 -  (exit $ac_status); }; }; then
  1731 +  (exit $ac_status); } && {
  1732 +	 test -z "$ac_cxx_werror_flag" ||
  1733 +	 test ! -s conftest.err
  1734 +       } && test -s conftest$ac_exeext &&
  1735 +       $as_test_x conftest$ac_exeext; then
  1736     kde_cv_func_strlcat=yes
  1737    kde_cv_proto_strlcat=yes
  1738  else
  1739 @@ -7265,7 +6751,7 @@
  1741  fi
  1743 -rm -f core conftest.err conftest.$ac_objext \
  1744 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  1745        conftest$ac_exeext conftest.$ac_ext
  1746  LIBS=$kde_safe_libs
  1747  ac_ext=cpp
  1748 @@ -7361,27 +6847,10 @@
  1749    rm -f conftest.er1
  1750    cat conftest.err >&5
  1751    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1752 -  (exit $ac_status); } &&
  1753 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1754 -  { (case "(($ac_try" in
  1755 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1756 -  *) ac_try_echo=$ac_try;;
  1757 -esac
  1758 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1759 -  (eval "$ac_try") 2>&5
  1760 -  ac_status=$?
  1761 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1762 -  (exit $ac_status); }; } &&
  1763 -	 { ac_try='test -s conftest.$ac_objext'
  1764 -  { (case "(($ac_try" in
  1765 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1766 -  *) ac_try_echo=$ac_try;;
  1767 -esac
  1768 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1769 -  (eval "$ac_try") 2>&5
  1770 -  ac_status=$?
  1771 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1772 -  (exit $ac_status); }; }; then
  1773 +  (exit $ac_status); } && {
  1774 +	 test -z "$ac_cxx_werror_flag" ||
  1775 +	 test ! -s conftest.err
  1776 +       } && test -s conftest.$ac_objext; then
  1777    kde_cv_func_strlcpy=yes
  1778  else
  1779    echo "$as_me: failed program was:" >&5
  1780 @@ -7477,27 +6946,11 @@
  1781    rm -f conftest.er1
  1782    cat conftest.err >&5
  1783    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1784 -  (exit $ac_status); } &&
  1785 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1786 -  { (case "(($ac_try" in
  1787 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1788 -  *) ac_try_echo=$ac_try;;
  1789 -esac
  1790 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1791 -  (eval "$ac_try") 2>&5
  1792 -  ac_status=$?
  1793 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1794 -  (exit $ac_status); }; } &&
  1795 -	 { ac_try='test -s conftest$ac_exeext'
  1796 -  { (case "(($ac_try" in
  1797 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1798 -  *) ac_try_echo=$ac_try;;
  1799 -esac
  1800 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1801 -  (eval "$ac_try") 2>&5
  1802 -  ac_status=$?
  1803 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1804 -  (exit $ac_status); }; }; then
  1805 +  (exit $ac_status); } && {
  1806 +	 test -z "$ac_cxx_werror_flag" ||
  1807 +	 test ! -s conftest.err
  1808 +       } && test -s conftest$ac_exeext &&
  1809 +       $as_test_x conftest$ac_exeext; then
  1810     kde_cv_func_strlcpy=yes
  1811    kde_cv_proto_strlcpy=yes
  1812  else
  1813 @@ -7508,7 +6961,7 @@
  1815  fi
  1817 -rm -f core conftest.err conftest.$ac_objext \
  1818 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  1819        conftest$ac_exeext conftest.$ac_ext
  1820  LIBS=$kde_safe_libs
  1821  ac_ext=cpp
  1822 @@ -7581,27 +7034,11 @@
  1823    rm -f conftest.er1
  1824    cat conftest.err >&5
  1825    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1826 -  (exit $ac_status); } &&
  1827 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1828 -  { (case "(($ac_try" in
  1829 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1830 -  *) ac_try_echo=$ac_try;;
  1831 -esac
  1832 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1833 -  (eval "$ac_try") 2>&5
  1834 -  ac_status=$?
  1835 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1836 -  (exit $ac_status); }; } &&
  1837 -	 { ac_try='test -s conftest$ac_exeext'
  1838 -  { (case "(($ac_try" in
  1839 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1840 -  *) ac_try_echo=$ac_try;;
  1841 -esac
  1842 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1843 -  (eval "$ac_try") 2>&5
  1844 -  ac_status=$?
  1845 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1846 -  (exit $ac_status); }; }; then
  1847 +  (exit $ac_status); } && {
  1848 +	 test -z "$ac_cxx_werror_flag" ||
  1849 +	 test ! -s conftest.err
  1850 +       } && test -s conftest$ac_exeext &&
  1851 +       $as_test_x conftest$ac_exeext; then
  1852    ac_cv_lib_util_main=yes
  1853  else
  1854    echo "$as_me: failed program was:" >&5
  1855 @@ -7610,7 +7047,7 @@
  1856  	ac_cv_lib_util_main=no
  1857  fi
  1859 -rm -f core conftest.err conftest.$ac_objext \
  1860 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  1861        conftest$ac_exeext conftest.$ac_ext
  1862  LIBS=$ac_check_lib_save_LIBS
  1863  fi
  1864 @@ -7656,27 +7093,11 @@
  1865    rm -f conftest.er1
  1866    cat conftest.err >&5
  1867    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1868 -  (exit $ac_status); } &&
  1869 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1870 -  { (case "(($ac_try" in
  1871 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1872 -  *) ac_try_echo=$ac_try;;
  1873 -esac
  1874 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1875 -  (eval "$ac_try") 2>&5
  1876 -  ac_status=$?
  1877 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1878 -  (exit $ac_status); }; } &&
  1879 -	 { ac_try='test -s conftest$ac_exeext'
  1880 -  { (case "(($ac_try" in
  1881 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1882 -  *) ac_try_echo=$ac_try;;
  1883 -esac
  1884 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1885 -  (eval "$ac_try") 2>&5
  1886 -  ac_status=$?
  1887 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1888 -  (exit $ac_status); }; }; then
  1889 +  (exit $ac_status); } && {
  1890 +	 test -z "$ac_cxx_werror_flag" ||
  1891 +	 test ! -s conftest.err
  1892 +       } && test -s conftest$ac_exeext &&
  1893 +       $as_test_x conftest$ac_exeext; then
  1894    ac_cv_lib_compat_main=yes
  1895  else
  1896    echo "$as_me: failed program was:" >&5
  1897 @@ -7685,7 +7106,7 @@
  1898  	ac_cv_lib_compat_main=no
  1899  fi
  1901 -rm -f core conftest.err conftest.$ac_objext \
  1902 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  1903        conftest$ac_exeext conftest.$ac_ext
  1904  LIBS=$ac_check_lib_save_LIBS
  1905  fi
  1906 @@ -7738,27 +7159,11 @@
  1907    rm -f conftest.er1
  1908    cat conftest.err >&5
  1909    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1910 -  (exit $ac_status); } &&
  1911 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1912 -  { (case "(($ac_try" in
  1913 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1914 -  *) ac_try_echo=$ac_try;;
  1915 -esac
  1916 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1917 -  (eval "$ac_try") 2>&5
  1918 -  ac_status=$?
  1919 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1920 -  (exit $ac_status); }; } &&
  1921 -	 { ac_try='test -s conftest$ac_exeext'
  1922 -  { (case "(($ac_try" in
  1923 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1924 -  *) ac_try_echo=$ac_try;;
  1925 -esac
  1926 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1927 -  (eval "$ac_try") 2>&5
  1928 -  ac_status=$?
  1929 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1930 -  (exit $ac_status); }; }; then
  1931 +  (exit $ac_status); } && {
  1932 +	 test -z "$ac_cxx_werror_flag" ||
  1933 +	 test ! -s conftest.err
  1934 +       } && test -s conftest$ac_exeext &&
  1935 +       $as_test_x conftest$ac_exeext; then
  1936    ac_cv_lib_crypt_crypt=yes
  1937  else
  1938    echo "$as_me: failed program was:" >&5
  1939 @@ -7767,7 +7172,7 @@
  1940  	ac_cv_lib_crypt_crypt=no
  1941  fi
  1943 -rm -f core conftest.err conftest.$ac_objext \
  1944 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  1945        conftest$ac_exeext conftest.$ac_ext
  1946  LIBS=$ac_check_lib_save_LIBS
  1947  fi
  1948 @@ -7818,27 +7223,11 @@
  1949    rm -f conftest.er1
  1950    cat conftest.err >&5
  1951    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1952 -  (exit $ac_status); } &&
  1953 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1954 -  { (case "(($ac_try" in
  1955 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1956 -  *) ac_try_echo=$ac_try;;
  1957 -esac
  1958 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1959 -  (eval "$ac_try") 2>&5
  1960 -  ac_status=$?
  1961 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1962 -  (exit $ac_status); }; } &&
  1963 -	 { ac_try='test -s conftest$ac_exeext'
  1964 -  { (case "(($ac_try" in
  1965 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1966 -  *) ac_try_echo=$ac_try;;
  1967 -esac
  1968 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  1969 -  (eval "$ac_try") 2>&5
  1970 -  ac_status=$?
  1971 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1972 -  (exit $ac_status); }; }; then
  1973 +  (exit $ac_status); } && {
  1974 +	 test -z "$ac_cxx_werror_flag" ||
  1975 +	 test ! -s conftest.err
  1976 +       } && test -s conftest$ac_exeext &&
  1977 +       $as_test_x conftest$ac_exeext; then
  1978    ac_cv_lib_c_crypt=yes
  1979  else
  1980    echo "$as_me: failed program was:" >&5
  1981 @@ -7847,7 +7236,7 @@
  1982  	ac_cv_lib_c_crypt=no
  1983  fi
  1985 -rm -f core conftest.err conftest.$ac_objext \
  1986 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  1987        conftest$ac_exeext conftest.$ac_ext
  1988  LIBS=$ac_check_lib_save_LIBS
  1989  fi
  1990 @@ -7925,27 +7314,10 @@
  1991    rm -f conftest.er1
  1992    cat conftest.err >&5
  1993    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  1994 -  (exit $ac_status); } &&
  1995 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  1996 -  { (case "(($ac_try" in
  1997 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1998 -  *) ac_try_echo=$ac_try;;
  1999 -esac
  2000 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2001 -  (eval "$ac_try") 2>&5
  2002 -  ac_status=$?
  2003 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2004 -  (exit $ac_status); }; } &&
  2005 -	 { ac_try='test -s conftest.$ac_objext'
  2006 -  { (case "(($ac_try" in
  2007 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2008 -  *) ac_try_echo=$ac_try;;
  2009 -esac
  2010 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2011 -  (eval "$ac_try") 2>&5
  2012 -  ac_status=$?
  2013 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2014 -  (exit $ac_status); }; }; then
  2015 +  (exit $ac_status); } && {
  2016 +	 test -z "$ac_cxx_werror_flag" ||
  2017 +	 test ! -s conftest.err
  2018 +       } && test -s conftest.$ac_objext; then
  2020           kde_cv_socklen_t=yes
  2021           kde_cv_socklen_t_equiv=socklen_t
  2022 @@ -8018,27 +7390,10 @@
  2023    rm -f conftest.er1
  2024    cat conftest.err >&5
  2025    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2026 -  (exit $ac_status); } &&
  2027 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2028 -  { (case "(($ac_try" in
  2029 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2030 -  *) ac_try_echo=$ac_try;;
  2031 -esac
  2032 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2033 -  (eval "$ac_try") 2>&5
  2034 -  ac_status=$?
  2035 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2036 -  (exit $ac_status); }; } &&
  2037 -	 { ac_try='test -s conftest.$ac_objext'
  2038 -  { (case "(($ac_try" in
  2039 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2040 -  *) ac_try_echo=$ac_try;;
  2041 -esac
  2042 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2043 -  (eval "$ac_try") 2>&5
  2044 -  ac_status=$?
  2045 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2046 -  (exit $ac_status); }; }; then
  2047 +  (exit $ac_status); } && {
  2048 +	 test -z "$ac_cxx_werror_flag" ||
  2049 +	 test ! -s conftest.err
  2050 +       } && test -s conftest.$ac_objext; then
  2052                 kde_cv_socklen_t_equiv="$t"
  2053                 break
  2054 @@ -8117,27 +7472,11 @@
  2055    rm -f conftest.er1
  2056    cat conftest.err >&5
  2057    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2058 -  (exit $ac_status); } &&
  2059 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2060 -  { (case "(($ac_try" in
  2061 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2062 -  *) ac_try_echo=$ac_try;;
  2063 -esac
  2064 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2065 -  (eval "$ac_try") 2>&5
  2066 -  ac_status=$?
  2067 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2068 -  (exit $ac_status); }; } &&
  2069 -	 { ac_try='test -s conftest$ac_exeext'
  2070 -  { (case "(($ac_try" in
  2071 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2072 -  *) ac_try_echo=$ac_try;;
  2073 -esac
  2074 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2075 -  (eval "$ac_try") 2>&5
  2076 -  ac_status=$?
  2077 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2078 -  (exit $ac_status); }; }; then
  2079 +  (exit $ac_status); } && {
  2080 +	 test -z "$ac_cxx_werror_flag" ||
  2081 +	 test ! -s conftest.err
  2082 +       } && test -s conftest$ac_exeext &&
  2083 +       $as_test_x conftest$ac_exeext; then
  2084    ac_cv_lib_dnet_dnet_ntoa=yes
  2085  else
  2086    echo "$as_me: failed program was:" >&5
  2087 @@ -8146,7 +7485,7 @@
  2088  	ac_cv_lib_dnet_dnet_ntoa=no
  2089  fi
  2091 -rm -f core conftest.err conftest.$ac_objext \
  2092 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2093        conftest$ac_exeext conftest.$ac_ext
  2094  LIBS=$ac_check_lib_save_LIBS
  2095  fi
  2096 @@ -8199,27 +7538,11 @@
  2097    rm -f conftest.er1
  2098    cat conftest.err >&5
  2099    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2100 -  (exit $ac_status); } &&
  2101 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2102 -  { (case "(($ac_try" in
  2103 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2104 -  *) ac_try_echo=$ac_try;;
  2105 -esac
  2106 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2107 -  (eval "$ac_try") 2>&5
  2108 -  ac_status=$?
  2109 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2110 -  (exit $ac_status); }; } &&
  2111 -	 { ac_try='test -s conftest$ac_exeext'
  2112 -  { (case "(($ac_try" in
  2113 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2114 -  *) ac_try_echo=$ac_try;;
  2115 -esac
  2116 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2117 -  (eval "$ac_try") 2>&5
  2118 -  ac_status=$?
  2119 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2120 -  (exit $ac_status); }; }; then
  2121 +  (exit $ac_status); } && {
  2122 +	 test -z "$ac_cxx_werror_flag" ||
  2123 +	 test ! -s conftest.err
  2124 +       } && test -s conftest$ac_exeext &&
  2125 +       $as_test_x conftest$ac_exeext; then
  2126    ac_cv_lib_dnet_stub_dnet_ntoa=yes
  2127  else
  2128    echo "$as_me: failed program was:" >&5
  2129 @@ -8228,7 +7551,7 @@
  2130  	ac_cv_lib_dnet_stub_dnet_ntoa=no
  2131  fi
  2133 -rm -f core conftest.err conftest.$ac_objext \
  2134 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2135        conftest$ac_exeext conftest.$ac_ext
  2136  LIBS=$ac_check_lib_save_LIBS
  2137  fi
  2138 @@ -8302,27 +7625,11 @@
  2139    rm -f conftest.er1
  2140    cat conftest.err >&5
  2141    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2142 -  (exit $ac_status); } &&
  2143 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2144 -  { (case "(($ac_try" in
  2145 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2146 -  *) ac_try_echo=$ac_try;;
  2147 -esac
  2148 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2149 -  (eval "$ac_try") 2>&5
  2150 -  ac_status=$?
  2151 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2152 -  (exit $ac_status); }; } &&
  2153 -	 { ac_try='test -s conftest$ac_exeext'
  2154 -  { (case "(($ac_try" in
  2155 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2156 -  *) ac_try_echo=$ac_try;;
  2157 -esac
  2158 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2159 -  (eval "$ac_try") 2>&5
  2160 -  ac_status=$?
  2161 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2162 -  (exit $ac_status); }; }; then
  2163 +  (exit $ac_status); } && {
  2164 +	 test -z "$ac_cxx_werror_flag" ||
  2165 +	 test ! -s conftest.err
  2166 +       } && test -s conftest$ac_exeext &&
  2167 +       $as_test_x conftest$ac_exeext; then
  2168    ac_cv_func_inet_ntoa=yes
  2169  else
  2170    echo "$as_me: failed program was:" >&5
  2171 @@ -8331,7 +7638,7 @@
  2172  	ac_cv_func_inet_ntoa=no
  2173  fi
  2175 -rm -f core conftest.err conftest.$ac_objext \
  2176 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2177        conftest$ac_exeext conftest.$ac_ext
  2178  fi
  2179  { echo "$as_me:$LINENO: result: $ac_cv_func_inet_ntoa" >&5
  2180 @@ -8380,27 +7687,11 @@
  2181    rm -f conftest.er1
  2182    cat conftest.err >&5
  2183    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2184 -  (exit $ac_status); } &&
  2185 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2186 -  { (case "(($ac_try" in
  2187 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2188 -  *) ac_try_echo=$ac_try;;
  2189 -esac
  2190 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2191 -  (eval "$ac_try") 2>&5
  2192 -  ac_status=$?
  2193 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2194 -  (exit $ac_status); }; } &&
  2195 -	 { ac_try='test -s conftest$ac_exeext'
  2196 -  { (case "(($ac_try" in
  2197 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2198 -  *) ac_try_echo=$ac_try;;
  2199 -esac
  2200 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2201 -  (eval "$ac_try") 2>&5
  2202 -  ac_status=$?
  2203 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2204 -  (exit $ac_status); }; }; then
  2205 +  (exit $ac_status); } && {
  2206 +	 test -z "$ac_cxx_werror_flag" ||
  2207 +	 test ! -s conftest.err
  2208 +       } && test -s conftest$ac_exeext &&
  2209 +       $as_test_x conftest$ac_exeext; then
  2210    ac_cv_lib_nsl_inet_ntoa=yes
  2211  else
  2212    echo "$as_me: failed program was:" >&5
  2213 @@ -8409,7 +7700,7 @@
  2214  	ac_cv_lib_nsl_inet_ntoa=no
  2215  fi
  2217 -rm -f core conftest.err conftest.$ac_objext \
  2218 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2219        conftest$ac_exeext conftest.$ac_ext
  2220  LIBS=$ac_check_lib_save_LIBS
  2221  fi
  2222 @@ -8483,27 +7774,11 @@
  2223    rm -f conftest.er1
  2224    cat conftest.err >&5
  2225    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2226 -  (exit $ac_status); } &&
  2227 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2228 -  { (case "(($ac_try" in
  2229 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2230 -  *) ac_try_echo=$ac_try;;
  2231 -esac
  2232 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2233 -  (eval "$ac_try") 2>&5
  2234 -  ac_status=$?
  2235 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2236 -  (exit $ac_status); }; } &&
  2237 -	 { ac_try='test -s conftest$ac_exeext'
  2238 -  { (case "(($ac_try" in
  2239 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2240 -  *) ac_try_echo=$ac_try;;
  2241 -esac
  2242 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2243 -  (eval "$ac_try") 2>&5
  2244 -  ac_status=$?
  2245 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2246 -  (exit $ac_status); }; }; then
  2247 +  (exit $ac_status); } && {
  2248 +	 test -z "$ac_cxx_werror_flag" ||
  2249 +	 test ! -s conftest.err
  2250 +       } && test -s conftest$ac_exeext &&
  2251 +       $as_test_x conftest$ac_exeext; then
  2252    ac_cv_func_connect=yes
  2253  else
  2254    echo "$as_me: failed program was:" >&5
  2255 @@ -8512,7 +7787,7 @@
  2256  	ac_cv_func_connect=no
  2257  fi
  2259 -rm -f core conftest.err conftest.$ac_objext \
  2260 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2261        conftest$ac_exeext conftest.$ac_ext
  2262  fi
  2263  { echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5
  2264 @@ -8561,27 +7836,11 @@
  2265    rm -f conftest.er1
  2266    cat conftest.err >&5
  2267    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2268 -  (exit $ac_status); } &&
  2269 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2270 -  { (case "(($ac_try" in
  2271 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2272 -  *) ac_try_echo=$ac_try;;
  2273 -esac
  2274 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2275 -  (eval "$ac_try") 2>&5
  2276 -  ac_status=$?
  2277 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2278 -  (exit $ac_status); }; } &&
  2279 -	 { ac_try='test -s conftest$ac_exeext'
  2280 -  { (case "(($ac_try" in
  2281 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2282 -  *) ac_try_echo=$ac_try;;
  2283 -esac
  2284 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2285 -  (eval "$ac_try") 2>&5
  2286 -  ac_status=$?
  2287 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2288 -  (exit $ac_status); }; }; then
  2289 +  (exit $ac_status); } && {
  2290 +	 test -z "$ac_cxx_werror_flag" ||
  2291 +	 test ! -s conftest.err
  2292 +       } && test -s conftest$ac_exeext &&
  2293 +       $as_test_x conftest$ac_exeext; then
  2294    ac_cv_lib_socket_connect=yes
  2295  else
  2296    echo "$as_me: failed program was:" >&5
  2297 @@ -8590,7 +7849,7 @@
  2298  	ac_cv_lib_socket_connect=no
  2299  fi
  2301 -rm -f core conftest.err conftest.$ac_objext \
  2302 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2303        conftest$ac_exeext conftest.$ac_ext
  2304  LIBS=$ac_check_lib_save_LIBS
  2305  fi
  2306 @@ -8665,27 +7924,11 @@
  2307    rm -f conftest.er1
  2308    cat conftest.err >&5
  2309    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2310 -  (exit $ac_status); } &&
  2311 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2312 -  { (case "(($ac_try" in
  2313 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2314 -  *) ac_try_echo=$ac_try;;
  2315 -esac
  2316 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2317 -  (eval "$ac_try") 2>&5
  2318 -  ac_status=$?
  2319 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2320 -  (exit $ac_status); }; } &&
  2321 -	 { ac_try='test -s conftest$ac_exeext'
  2322 -  { (case "(($ac_try" in
  2323 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2324 -  *) ac_try_echo=$ac_try;;
  2325 -esac
  2326 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2327 -  (eval "$ac_try") 2>&5
  2328 -  ac_status=$?
  2329 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2330 -  (exit $ac_status); }; }; then
  2331 +  (exit $ac_status); } && {
  2332 +	 test -z "$ac_cxx_werror_flag" ||
  2333 +	 test ! -s conftest.err
  2334 +       } && test -s conftest$ac_exeext &&
  2335 +       $as_test_x conftest$ac_exeext; then
  2336    ac_cv_func_remove=yes
  2337  else
  2338    echo "$as_me: failed program was:" >&5
  2339 @@ -8694,7 +7937,7 @@
  2340  	ac_cv_func_remove=no
  2341  fi
  2343 -rm -f core conftest.err conftest.$ac_objext \
  2344 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2345        conftest$ac_exeext conftest.$ac_ext
  2346  fi
  2347  { echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5
  2348 @@ -8743,27 +7986,11 @@
  2349    rm -f conftest.er1
  2350    cat conftest.err >&5
  2351    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2352 -  (exit $ac_status); } &&
  2353 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2354 -  { (case "(($ac_try" in
  2355 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2356 -  *) ac_try_echo=$ac_try;;
  2357 -esac
  2358 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2359 -  (eval "$ac_try") 2>&5
  2360 -  ac_status=$?
  2361 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2362 -  (exit $ac_status); }; } &&
  2363 -	 { ac_try='test -s conftest$ac_exeext'
  2364 -  { (case "(($ac_try" in
  2365 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2366 -  *) ac_try_echo=$ac_try;;
  2367 -esac
  2368 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2369 -  (eval "$ac_try") 2>&5
  2370 -  ac_status=$?
  2371 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2372 -  (exit $ac_status); }; }; then
  2373 +  (exit $ac_status); } && {
  2374 +	 test -z "$ac_cxx_werror_flag" ||
  2375 +	 test ! -s conftest.err
  2376 +       } && test -s conftest$ac_exeext &&
  2377 +       $as_test_x conftest$ac_exeext; then
  2378    ac_cv_lib_posix_remove=yes
  2379  else
  2380    echo "$as_me: failed program was:" >&5
  2381 @@ -8772,7 +7999,7 @@
  2382  	ac_cv_lib_posix_remove=no
  2383  fi
  2385 -rm -f core conftest.err conftest.$ac_objext \
  2386 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2387        conftest$ac_exeext conftest.$ac_ext
  2388  LIBS=$ac_check_lib_save_LIBS
  2389  fi
  2390 @@ -8848,27 +8075,11 @@
  2391    rm -f conftest.er1
  2392    cat conftest.err >&5
  2393    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2394 -  (exit $ac_status); } &&
  2395 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2396 -  { (case "(($ac_try" in
  2397 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2398 -  *) ac_try_echo=$ac_try;;
  2399 -esac
  2400 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2401 -  (eval "$ac_try") 2>&5
  2402 -  ac_status=$?
  2403 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2404 -  (exit $ac_status); }; } &&
  2405 -	 { ac_try='test -s conftest$ac_exeext'
  2406 -  { (case "(($ac_try" in
  2407 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2408 -  *) ac_try_echo=$ac_try;;
  2409 -esac
  2410 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2411 -  (eval "$ac_try") 2>&5
  2412 -  ac_status=$?
  2413 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2414 -  (exit $ac_status); }; }; then
  2415 +  (exit $ac_status); } && {
  2416 +	 test -z "$ac_cxx_werror_flag" ||
  2417 +	 test ! -s conftest.err
  2418 +       } && test -s conftest$ac_exeext &&
  2419 +       $as_test_x conftest$ac_exeext; then
  2420    ac_cv_func_shmat=yes
  2421  else
  2422    echo "$as_me: failed program was:" >&5
  2423 @@ -8877,7 +8088,7 @@
  2424  	ac_cv_func_shmat=no
  2425  fi
  2427 -rm -f core conftest.err conftest.$ac_objext \
  2428 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2429        conftest$ac_exeext conftest.$ac_ext
  2430  fi
  2431  { echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5
  2432 @@ -8927,27 +8138,11 @@
  2433    rm -f conftest.er1
  2434    cat conftest.err >&5
  2435    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2436 -  (exit $ac_status); } &&
  2437 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2438 -  { (case "(($ac_try" in
  2439 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2440 -  *) ac_try_echo=$ac_try;;
  2441 -esac
  2442 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2443 -  (eval "$ac_try") 2>&5
  2444 -  ac_status=$?
  2445 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2446 -  (exit $ac_status); }; } &&
  2447 -	 { ac_try='test -s conftest$ac_exeext'
  2448 -  { (case "(($ac_try" in
  2449 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2450 -  *) ac_try_echo=$ac_try;;
  2451 -esac
  2452 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2453 -  (eval "$ac_try") 2>&5
  2454 -  ac_status=$?
  2455 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2456 -  (exit $ac_status); }; }; then
  2457 +  (exit $ac_status); } && {
  2458 +	 test -z "$ac_cxx_werror_flag" ||
  2459 +	 test ! -s conftest.err
  2460 +       } && test -s conftest$ac_exeext &&
  2461 +       $as_test_x conftest$ac_exeext; then
  2462    ac_cv_lib_ipc_shmat=yes
  2463  else
  2464    echo "$as_me: failed program was:" >&5
  2465 @@ -8956,7 +8151,7 @@
  2466  	ac_cv_lib_ipc_shmat=no
  2467  fi
  2469 -rm -f core conftest.err conftest.$ac_objext \
  2470 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2471        conftest$ac_exeext conftest.$ac_ext
  2472  LIBS=$ac_check_lib_save_LIBS
  2473  fi
  2474 @@ -9010,27 +8205,10 @@
  2475    rm -f conftest.er1
  2476    cat conftest.err >&5
  2477    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2478 -  (exit $ac_status); } &&
  2479 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2480 -  { (case "(($ac_try" in
  2481 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2482 -  *) ac_try_echo=$ac_try;;
  2483 -esac
  2484 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2485 -  (eval "$ac_try") 2>&5
  2486 -  ac_status=$?
  2487 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2488 -  (exit $ac_status); }; } &&
  2489 -	 { ac_try='test -s conftest.$ac_objext'
  2490 -  { (case "(($ac_try" in
  2491 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2492 -  *) ac_try_echo=$ac_try;;
  2493 -esac
  2494 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2495 -  (eval "$ac_try") 2>&5
  2496 -  ac_status=$?
  2497 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2498 -  (exit $ac_status); }; }; then
  2499 +  (exit $ac_status); } && {
  2500 +	 test -z "$ac_cxx_werror_flag" ||
  2501 +	 test ! -s conftest.err
  2502 +       } && test -s conftest.$ac_objext; then
  2503    ac_header_compiler=yes
  2504  else
  2505    echo "$as_me: failed program was:" >&5
  2506 @@ -9066,17 +8244,10 @@
  2507    rm -f conftest.er1
  2508    cat conftest.err >&5
  2509    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2510 -  (exit $ac_status); } >/dev/null; then
  2511 -  if test -s conftest.err; then
  2512 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  2513 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  2514 -  else
  2515 -    ac_cpp_err=
  2516 -  fi
  2517 -else
  2518 -  ac_cpp_err=yes
  2519 -fi
  2520 -if test -z "$ac_cpp_err"; then
  2521 +  (exit $ac_status); } >/dev/null && {
  2522 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  2523 +	 test ! -s conftest.err
  2524 +       }; then
  2525    ac_header_preproc=yes
  2526  else
  2527    echo "$as_me: failed program was:" >&5
  2528 @@ -9176,27 +8347,10 @@
  2529    rm -f conftest.er1
  2530    cat conftest.err >&5
  2531    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2532 -  (exit $ac_status); } &&
  2533 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2534 -  { (case "(($ac_try" in
  2535 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2536 -  *) ac_try_echo=$ac_try;;
  2537 -esac
  2538 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2539 -  (eval "$ac_try") 2>&5
  2540 -  ac_status=$?
  2541 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2542 -  (exit $ac_status); }; } &&
  2543 -	 { ac_try='test -s conftest.$ac_objext'
  2544 -  { (case "(($ac_try" in
  2545 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2546 -  *) ac_try_echo=$ac_try;;
  2547 -esac
  2548 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2549 -  (eval "$ac_try") 2>&5
  2550 -  ac_status=$?
  2551 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2552 -  (exit $ac_status); }; }; then
  2553 +  (exit $ac_status); } && {
  2554 +	 test -z "$ac_cxx_werror_flag" ||
  2555 +	 test ! -s conftest.err
  2556 +       } && test -s conftest.$ac_objext; then
  2557    ac_header_compiler=yes
  2558  else
  2559    echo "$as_me: failed program was:" >&5
  2560 @@ -9232,17 +8386,10 @@
  2561    rm -f conftest.er1
  2562    cat conftest.err >&5
  2563    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2564 -  (exit $ac_status); } >/dev/null; then
  2565 -  if test -s conftest.err; then
  2566 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  2567 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  2568 -  else
  2569 -    ac_cpp_err=
  2570 -  fi
  2571 -else
  2572 -  ac_cpp_err=yes
  2573 -fi
  2574 -if test -z "$ac_cpp_err"; then
  2575 +  (exit $ac_status); } >/dev/null && {
  2576 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  2577 +	 test ! -s conftest.err
  2578 +       }; then
  2579    ac_header_preproc=yes
  2580  else
  2581    echo "$as_me: failed program was:" >&5
  2582 @@ -9345,27 +8492,11 @@
  2583    rm -f conftest.er1
  2584    cat conftest.err >&5
  2585    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2586 -  (exit $ac_status); } &&
  2587 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2588 -  { (case "(($ac_try" in
  2589 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2590 -  *) ac_try_echo=$ac_try;;
  2591 -esac
  2592 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2593 -  (eval "$ac_try") 2>&5
  2594 -  ac_status=$?
  2595 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2596 -  (exit $ac_status); }; } &&
  2597 -	 { ac_try='test -s conftest$ac_exeext'
  2598 -  { (case "(($ac_try" in
  2599 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2600 -  *) ac_try_echo=$ac_try;;
  2601 -esac
  2602 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2603 -  (eval "$ac_try") 2>&5
  2604 -  ac_status=$?
  2605 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2606 -  (exit $ac_status); }; }; then
  2607 +  (exit $ac_status); } && {
  2608 +	 test -z "$ac_cxx_werror_flag" ||
  2609 +	 test ! -s conftest.err
  2610 +       } && test -s conftest$ac_exeext &&
  2611 +       $as_test_x conftest$ac_exeext; then
  2612    ac_cv_lib_poll_poll=yes
  2613  else
  2614    echo "$as_me: failed program was:" >&5
  2615 @@ -9374,7 +8505,7 @@
  2616  	ac_cv_lib_poll_poll=no
  2617  fi
  2619 -rm -f core conftest.err conftest.$ac_objext \
  2620 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2621        conftest$ac_exeext conftest.$ac_ext
  2622  LIBS=$ac_check_lib_save_LIBS
  2623  fi
  2624 @@ -9425,27 +8556,10 @@
  2625    rm -f conftest.er1
  2626    cat conftest.err >&5
  2627    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2628 -  (exit $ac_status); } &&
  2629 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2630 -  { (case "(($ac_try" in
  2631 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2632 -  *) ac_try_echo=$ac_try;;
  2633 -esac
  2634 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2635 -  (eval "$ac_try") 2>&5
  2636 -  ac_status=$?
  2637 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2638 -  (exit $ac_status); }; } &&
  2639 -	 { ac_try='test -s conftest.$ac_objext'
  2640 -  { (case "(($ac_try" in
  2641 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2642 -  *) ac_try_echo=$ac_try;;
  2643 -esac
  2644 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2645 -  (eval "$ac_try") 2>&5
  2646 -  ac_status=$?
  2647 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2648 -  (exit $ac_status); }; }; then
  2649 +  (exit $ac_status); } && {
  2650 +	 test -z "$ac_cxx_werror_flag" ||
  2651 +	 test ! -s conftest.err
  2652 +       } && test -s conftest.$ac_objext; then
  2653    ac_header_compiler=yes
  2654  else
  2655    echo "$as_me: failed program was:" >&5
  2656 @@ -9481,17 +8595,10 @@
  2657    rm -f conftest.er1
  2658    cat conftest.err >&5
  2659    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2660 -  (exit $ac_status); } >/dev/null; then
  2661 -  if test -s conftest.err; then
  2662 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  2663 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  2664 -  else
  2665 -    ac_cpp_err=
  2666 -  fi
  2667 -else
  2668 -  ac_cpp_err=yes
  2669 -fi
  2670 -if test -z "$ac_cpp_err"; then
  2671 +  (exit $ac_status); } >/dev/null && {
  2672 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  2673 +	 test ! -s conftest.err
  2674 +       }; then
  2675    ac_header_preproc=yes
  2676  else
  2677    echo "$as_me: failed program was:" >&5
  2678 @@ -9586,27 +8693,10 @@
  2679    rm -f conftest.er1
  2680    cat conftest.err >&5
  2681    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2682 -  (exit $ac_status); } &&
  2683 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2684 -  { (case "(($ac_try" in
  2685 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2686 -  *) ac_try_echo=$ac_try;;
  2687 -esac
  2688 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2689 -  (eval "$ac_try") 2>&5
  2690 -  ac_status=$?
  2691 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2692 -  (exit $ac_status); }; } &&
  2693 -	 { ac_try='test -s conftest.$ac_objext'
  2694 -  { (case "(($ac_try" in
  2695 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2696 -  *) ac_try_echo=$ac_try;;
  2697 -esac
  2698 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2699 -  (eval "$ac_try") 2>&5
  2700 -  ac_status=$?
  2701 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2702 -  (exit $ac_status); }; }; then
  2703 +  (exit $ac_status); } && {
  2704 +	 test -z "$ac_cxx_werror_flag" ||
  2705 +	 test ! -s conftest.err
  2706 +       } && test -s conftest.$ac_objext; then
  2707    ac_header_compiler=yes
  2708  else
  2709    echo "$as_me: failed program was:" >&5
  2710 @@ -9642,17 +8732,10 @@
  2711    rm -f conftest.er1
  2712    cat conftest.err >&5
  2713    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2714 -  (exit $ac_status); } >/dev/null; then
  2715 -  if test -s conftest.err; then
  2716 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  2717 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  2718 -  else
  2719 -    ac_cpp_err=
  2720 -  fi
  2721 -else
  2722 -  ac_cpp_err=yes
  2723 -fi
  2724 -if test -z "$ac_cpp_err"; then
  2725 +  (exit $ac_status); } >/dev/null && {
  2726 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  2727 +	 test ! -s conftest.err
  2728 +       }; then
  2729    ac_header_preproc=yes
  2730  else
  2731    echo "$as_me: failed program was:" >&5
  2732 @@ -9754,27 +8837,11 @@
  2733    rm -f conftest.er1
  2734    cat conftest.err >&5
  2735    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2736 -  (exit $ac_status); } &&
  2737 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2738 -  { (case "(($ac_try" in
  2739 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2740 -  *) ac_try_echo=$ac_try;;
  2741 -esac
  2742 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2743 -  (eval "$ac_try") 2>&5
  2744 -  ac_status=$?
  2745 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2746 -  (exit $ac_status); }; } &&
  2747 -	 { ac_try='test -s conftest$ac_exeext'
  2748 -  { (case "(($ac_try" in
  2749 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2750 -  *) ac_try_echo=$ac_try;;
  2751 -esac
  2752 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2753 -  (eval "$ac_try") 2>&5
  2754 -  ac_status=$?
  2755 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2756 -  (exit $ac_status); }; }; then
  2757 +  (exit $ac_status); } && {
  2758 +	 test -z "$ac_cxx_werror_flag" ||
  2759 +	 test ! -s conftest.err
  2760 +       } && test -s conftest$ac_exeext &&
  2761 +       $as_test_x conftest$ac_exeext; then
  2763        LIBRESOLV="-lresolv"
  2764        { echo "$as_me:$LINENO: result: yes" >&5
  2765 @@ -9794,7 +8861,7 @@
  2767  fi
  2769 -rm -f core conftest.err conftest.$ac_objext \
  2770 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2771        conftest$ac_exeext conftest.$ac_ext
  2772    LIBS=$kde_libs_safe
  2774 @@ -9861,27 +8928,10 @@
  2775    rm -f conftest.er1
  2776    cat conftest.err >&5
  2777    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2778 -  (exit $ac_status); } &&
  2779 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2780 -  { (case "(($ac_try" in
  2781 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2782 -  *) ac_try_echo=$ac_try;;
  2783 -esac
  2784 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2785 -  (eval "$ac_try") 2>&5
  2786 -  ac_status=$?
  2787 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2788 -  (exit $ac_status); }; } &&
  2789 -	 { ac_try='test -s conftest.$ac_objext'
  2790 -  { (case "(($ac_try" in
  2791 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2792 -  *) ac_try_echo=$ac_try;;
  2793 -esac
  2794 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2795 -  (eval "$ac_try") 2>&5
  2796 -  ac_status=$?
  2797 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2798 -  (exit $ac_status); }; }; then
  2799 +  (exit $ac_status); } && {
  2800 +	 test -z "$ac_cxx_werror_flag" ||
  2801 +	 test ! -s conftest.err
  2802 +       } && test -s conftest.$ac_objext; then
  2803    kde_cv_func_res_init=yes
  2804  else
  2805    echo "$as_me: failed program was:" >&5
  2806 @@ -9978,27 +9028,11 @@
  2807    rm -f conftest.er1
  2808    cat conftest.err >&5
  2809    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2810 -  (exit $ac_status); } &&
  2811 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2812 -  { (case "(($ac_try" in
  2813 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2814 -  *) ac_try_echo=$ac_try;;
  2815 -esac
  2816 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2817 -  (eval "$ac_try") 2>&5
  2818 -  ac_status=$?
  2819 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2820 -  (exit $ac_status); }; } &&
  2821 -	 { ac_try='test -s conftest$ac_exeext'
  2822 -  { (case "(($ac_try" in
  2823 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2824 -  *) ac_try_echo=$ac_try;;
  2825 -esac
  2826 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2827 -  (eval "$ac_try") 2>&5
  2828 -  ac_status=$?
  2829 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2830 -  (exit $ac_status); }; }; then
  2831 +  (exit $ac_status); } && {
  2832 +	 test -z "$ac_cxx_werror_flag" ||
  2833 +	 test ! -s conftest.err
  2834 +       } && test -s conftest$ac_exeext &&
  2835 +       $as_test_x conftest$ac_exeext; then
  2836     kde_cv_func_res_init=yes
  2837    kde_cv_proto_res_init=yes
  2838  else
  2839 @@ -10009,7 +9043,7 @@
  2841  fi
  2843 -rm -f core conftest.err conftest.$ac_objext \
  2844 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2845        conftest$ac_exeext conftest.$ac_ext
  2846  LIBS=$kde_safe_libs
  2847  ac_ext=cpp
  2848 @@ -10092,27 +9126,11 @@
  2849    rm -f conftest.er1
  2850    cat conftest.err >&5
  2851    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2852 -  (exit $ac_status); } &&
  2853 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2854 -  { (case "(($ac_try" in
  2855 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2856 -  *) ac_try_echo=$ac_try;;
  2857 -esac
  2858 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2859 -  (eval "$ac_try") 2>&5
  2860 -  ac_status=$?
  2861 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2862 -  (exit $ac_status); }; } &&
  2863 -	 { ac_try='test -s conftest$ac_exeext'
  2864 -  { (case "(($ac_try" in
  2865 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2866 -  *) ac_try_echo=$ac_try;;
  2867 -esac
  2868 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2869 -  (eval "$ac_try") 2>&5
  2870 -  ac_status=$?
  2871 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2872 -  (exit $ac_status); }; }; then
  2873 +  (exit $ac_status); } && {
  2874 +	 test -z "$ac_cxx_werror_flag" ||
  2875 +	 test ! -s conftest.err
  2876 +       } && test -s conftest$ac_exeext &&
  2877 +       $as_test_x conftest$ac_exeext; then
  2878    ac_cv_lib_ucb_killpg=yes
  2879  else
  2880    echo "$as_me: failed program was:" >&5
  2881 @@ -10121,7 +9139,7 @@
  2882  	ac_cv_lib_ucb_killpg=no
  2883  fi
  2885 -rm -f core conftest.err conftest.$ac_objext \
  2886 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2887        conftest$ac_exeext conftest.$ac_ext
  2888  LIBS=$ac_check_lib_save_LIBS
  2889  fi
  2890 @@ -10180,27 +9198,11 @@
  2891    rm -f conftest.er1
  2892    cat conftest.err >&5
  2893    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2894 -  (exit $ac_status); } &&
  2895 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2896 -  { (case "(($ac_try" in
  2897 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2898 -  *) ac_try_echo=$ac_try;;
  2899 -esac
  2900 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2901 -  (eval "$ac_try") 2>&5
  2902 -  ac_status=$?
  2903 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2904 -  (exit $ac_status); }; } &&
  2905 -	 { ac_try='test -s conftest$ac_exeext'
  2906 -  { (case "(($ac_try" in
  2907 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2908 -  *) ac_try_echo=$ac_try;;
  2909 -esac
  2910 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2911 -  (eval "$ac_try") 2>&5
  2912 -  ac_status=$?
  2913 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2914 -  (exit $ac_status); }; }; then
  2915 +  (exit $ac_status); } && {
  2916 +	 test -z "$ac_cxx_werror_flag" ||
  2917 +	 test ! -s conftest.err
  2918 +       } && test -s conftest$ac_exeext &&
  2919 +       $as_test_x conftest$ac_exeext; then
  2920    ac_cv_lib_bsd_gethostbyname=yes
  2921  else
  2922    echo "$as_me: failed program was:" >&5
  2923 @@ -10209,7 +9211,7 @@
  2924  	ac_cv_lib_bsd_gethostbyname=no
  2925  fi
  2927 -rm -f core conftest.err conftest.$ac_objext \
  2928 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  2929        conftest$ac_exeext conftest.$ac_ext
  2930  LIBS=$ac_check_lib_save_LIBS
  2931  fi
  2932 @@ -10258,27 +9260,10 @@
  2933    rm -f conftest.er1
  2934    cat conftest.err >&5
  2935    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2936 -  (exit $ac_status); } &&
  2937 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  2938 -  { (case "(($ac_try" in
  2939 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2940 -  *) ac_try_echo=$ac_try;;
  2941 -esac
  2942 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2943 -  (eval "$ac_try") 2>&5
  2944 -  ac_status=$?
  2945 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2946 -  (exit $ac_status); }; } &&
  2947 -	 { ac_try='test -s conftest.$ac_objext'
  2948 -  { (case "(($ac_try" in
  2949 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2950 -  *) ac_try_echo=$ac_try;;
  2951 -esac
  2952 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  2953 -  (eval "$ac_try") 2>&5
  2954 -  ac_status=$?
  2955 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2956 -  (exit $ac_status); }; }; then
  2957 +  (exit $ac_status); } && {
  2958 +	 test -z "$ac_cxx_werror_flag" ||
  2959 +	 test ! -s conftest.err
  2960 +       } && test -s conftest.$ac_objext; then
  2961    ac_cv_type_int=yes
  2962  else
  2963    echo "$as_me: failed program was:" >&5
  2964 @@ -10292,16 +9277,15 @@
  2965  { echo "$as_me:$LINENO: result: $ac_cv_type_int" >&5
  2966  echo "${ECHO_T}$ac_cv_type_int" >&6; }
  2968 +# The cast to long int works around a bug in the HP C Compiler
  2969 +# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  2970 +# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  2971 +# This bug is HP SR number 8606223364.
  2972  { echo "$as_me:$LINENO: checking size of int" >&5
  2973  echo $ECHO_N "checking size of int... $ECHO_C" >&6; }
  2974  if test "${ac_cv_sizeof_int+set}" = set; then
  2975    echo $ECHO_N "(cached) $ECHO_C" >&6
  2976  else
  2977 -  if test "$ac_cv_type_int" = yes; then
  2978 -  # The cast to long int works around a bug in the HP C Compiler
  2979 -  # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  2980 -  # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  2981 -  # This bug is HP SR number 8606223364.
  2982    if test "$cross_compiling" = yes; then
  2983    # Depending upon the size, compute the lo and hi bounds.
  2984  cat >conftest.$ac_ext <<_ACEOF
  2985 @@ -10311,7 +9295,7 @@
  2986  cat >>conftest.$ac_ext <<_ACEOF
  2987  /* end confdefs.h.  */
  2988  $ac_includes_default
  2989 -		   typedef int ac__type_sizeof_;
  2990 +   typedef int ac__type_sizeof_;
  2991  int
  2992  main ()
  2994 @@ -10335,27 +9319,10 @@
  2995    rm -f conftest.er1
  2996    cat conftest.err >&5
  2997    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  2998 -  (exit $ac_status); } &&
  2999 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3000 -  { (case "(($ac_try" in
  3001 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3002 -  *) ac_try_echo=$ac_try;;
  3003 -esac
  3004 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3005 -  (eval "$ac_try") 2>&5
  3006 -  ac_status=$?
  3007 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3008 -  (exit $ac_status); }; } &&
  3009 -	 { ac_try='test -s conftest.$ac_objext'
  3010 -  { (case "(($ac_try" in
  3011 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3012 -  *) ac_try_echo=$ac_try;;
  3013 -esac
  3014 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3015 -  (eval "$ac_try") 2>&5
  3016 -  ac_status=$?
  3017 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3018 -  (exit $ac_status); }; }; then
  3019 +  (exit $ac_status); } && {
  3020 +	 test -z "$ac_cxx_werror_flag" ||
  3021 +	 test ! -s conftest.err
  3022 +       } && test -s conftest.$ac_objext; then
  3023    ac_lo=0 ac_mid=0
  3024    while :; do
  3025      cat >conftest.$ac_ext <<_ACEOF
  3026 @@ -10365,7 +9332,7 @@
  3027  cat >>conftest.$ac_ext <<_ACEOF
  3028  /* end confdefs.h.  */
  3029  $ac_includes_default
  3030 -		   typedef int ac__type_sizeof_;
  3031 +   typedef int ac__type_sizeof_;
  3032  int
  3033  main ()
  3035 @@ -10389,27 +9356,10 @@
  3036    rm -f conftest.er1
  3037    cat conftest.err >&5
  3038    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3039 -  (exit $ac_status); } &&
  3040 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3041 -  { (case "(($ac_try" in
  3042 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3043 -  *) ac_try_echo=$ac_try;;
  3044 -esac
  3045 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3046 -  (eval "$ac_try") 2>&5
  3047 -  ac_status=$?
  3048 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3049 -  (exit $ac_status); }; } &&
  3050 -	 { ac_try='test -s conftest.$ac_objext'
  3051 -  { (case "(($ac_try" in
  3052 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3053 -  *) ac_try_echo=$ac_try;;
  3054 -esac
  3055 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3056 -  (eval "$ac_try") 2>&5
  3057 -  ac_status=$?
  3058 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3059 -  (exit $ac_status); }; }; then
  3060 +  (exit $ac_status); } && {
  3061 +	 test -z "$ac_cxx_werror_flag" ||
  3062 +	 test ! -s conftest.err
  3063 +       } && test -s conftest.$ac_objext; then
  3064    ac_hi=$ac_mid; break
  3065  else
  3066    echo "$as_me: failed program was:" >&5
  3067 @@ -10436,7 +9386,7 @@
  3068  cat >>conftest.$ac_ext <<_ACEOF
  3069  /* end confdefs.h.  */
  3070  $ac_includes_default
  3071 -		   typedef int ac__type_sizeof_;
  3072 +   typedef int ac__type_sizeof_;
  3073  int
  3074  main ()
  3076 @@ -10460,27 +9410,10 @@
  3077    rm -f conftest.er1
  3078    cat conftest.err >&5
  3079    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3080 -  (exit $ac_status); } &&
  3081 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3082 -  { (case "(($ac_try" in
  3083 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3084 -  *) ac_try_echo=$ac_try;;
  3085 -esac
  3086 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3087 -  (eval "$ac_try") 2>&5
  3088 -  ac_status=$?
  3089 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3090 -  (exit $ac_status); }; } &&
  3091 -	 { ac_try='test -s conftest.$ac_objext'
  3092 -  { (case "(($ac_try" in
  3093 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3094 -  *) ac_try_echo=$ac_try;;
  3095 -esac
  3096 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3097 -  (eval "$ac_try") 2>&5
  3098 -  ac_status=$?
  3099 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3100 -  (exit $ac_status); }; }; then
  3101 +  (exit $ac_status); } && {
  3102 +	 test -z "$ac_cxx_werror_flag" ||
  3103 +	 test ! -s conftest.err
  3104 +       } && test -s conftest.$ac_objext; then
  3105    ac_hi=-1 ac_mid=-1
  3106    while :; do
  3107      cat >conftest.$ac_ext <<_ACEOF
  3108 @@ -10490,7 +9423,7 @@
  3109  cat >>conftest.$ac_ext <<_ACEOF
  3110  /* end confdefs.h.  */
  3111  $ac_includes_default
  3112 -		   typedef int ac__type_sizeof_;
  3113 +   typedef int ac__type_sizeof_;
  3114  int
  3115  main ()
  3117 @@ -10514,27 +9447,10 @@
  3118    rm -f conftest.er1
  3119    cat conftest.err >&5
  3120    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3121 -  (exit $ac_status); } &&
  3122 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3123 -  { (case "(($ac_try" in
  3124 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3125 -  *) ac_try_echo=$ac_try;;
  3126 -esac
  3127 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3128 -  (eval "$ac_try") 2>&5
  3129 -  ac_status=$?
  3130 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3131 -  (exit $ac_status); }; } &&
  3132 -	 { ac_try='test -s conftest.$ac_objext'
  3133 -  { (case "(($ac_try" in
  3134 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3135 -  *) ac_try_echo=$ac_try;;
  3136 -esac
  3137 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3138 -  (eval "$ac_try") 2>&5
  3139 -  ac_status=$?
  3140 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3141 -  (exit $ac_status); }; }; then
  3142 +  (exit $ac_status); } && {
  3143 +	 test -z "$ac_cxx_werror_flag" ||
  3144 +	 test ! -s conftest.err
  3145 +       } && test -s conftest.$ac_objext; then
  3146    ac_lo=$ac_mid; break
  3147  else
  3148    echo "$as_me: failed program was:" >&5
  3149 @@ -10571,7 +9487,7 @@
  3150  cat >>conftest.$ac_ext <<_ACEOF
  3151  /* end confdefs.h.  */
  3152  $ac_includes_default
  3153 -		   typedef int ac__type_sizeof_;
  3154 +   typedef int ac__type_sizeof_;
  3155  int
  3156  main ()
  3158 @@ -10595,27 +9511,10 @@
  3159    rm -f conftest.er1
  3160    cat conftest.err >&5
  3161    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3162 -  (exit $ac_status); } &&
  3163 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3164 -  { (case "(($ac_try" in
  3165 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3166 -  *) ac_try_echo=$ac_try;;
  3167 -esac
  3168 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3169 -  (eval "$ac_try") 2>&5
  3170 -  ac_status=$?
  3171 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3172 -  (exit $ac_status); }; } &&
  3173 -	 { ac_try='test -s conftest.$ac_objext'
  3174 -  { (case "(($ac_try" in
  3175 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3176 -  *) ac_try_echo=$ac_try;;
  3177 -esac
  3178 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3179 -  (eval "$ac_try") 2>&5
  3180 -  ac_status=$?
  3181 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3182 -  (exit $ac_status); }; }; then
  3183 +  (exit $ac_status); } && {
  3184 +	 test -z "$ac_cxx_werror_flag" ||
  3185 +	 test ! -s conftest.err
  3186 +       } && test -s conftest.$ac_objext; then
  3187    ac_hi=$ac_mid
  3188  else
  3189    echo "$as_me: failed program was:" >&5
  3190 @@ -10628,11 +9527,15 @@
  3191  done
  3192  case $ac_lo in
  3193  ?*) ac_cv_sizeof_int=$ac_lo;;
  3194 -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (int)
  3195 +'') if test "$ac_cv_type_int" = yes; then
  3196 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (int)
  3197  See \`config.log' for more details." >&5
  3198  echo "$as_me: error: cannot compute sizeof (int)
  3199  See \`config.log' for more details." >&2;}
  3200 -   { (exit 77); exit 77; }; } ;;
  3201 +   { (exit 77); exit 77; }; }
  3202 +   else
  3203 +     ac_cv_sizeof_int=0
  3204 +   fi ;;
  3205  esac
  3206  else
  3207    cat >conftest.$ac_ext <<_ACEOF
  3208 @@ -10642,7 +9545,7 @@
  3209  cat >>conftest.$ac_ext <<_ACEOF
  3210  /* end confdefs.h.  */
  3211  $ac_includes_default
  3212 -		   typedef int ac__type_sizeof_;
  3213 +   typedef int ac__type_sizeof_;
  3214  static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); }
  3215  static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); }
  3216  #include <stdio.h>
  3217 @@ -10701,21 +9604,25 @@
  3218  sed 's/^/| /' conftest.$ac_ext >&5
  3220  ( exit $ac_status )
  3221 -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (int)
  3222 +if test "$ac_cv_type_int" = yes; then
  3223 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (int)
  3224  See \`config.log' for more details." >&5
  3225  echo "$as_me: error: cannot compute sizeof (int)
  3226  See \`config.log' for more details." >&2;}
  3227     { (exit 77); exit 77; }; }
  3228 +   else
  3229 +     ac_cv_sizeof_int=0
  3230 +   fi
  3231  fi
  3232  rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  3233  fi
  3234  rm -f conftest.val
  3235 -else
  3236 -  ac_cv_sizeof_int=0
  3237 -fi
  3238  fi
  3239  { echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5
  3240  echo "${ECHO_T}$ac_cv_sizeof_int" >&6; }
  3244  cat >>confdefs.h <<_ACEOF
  3245  #define SIZEOF_INT $ac_cv_sizeof_int
  3246  _ACEOF
  3247 @@ -10757,27 +9664,10 @@
  3248    rm -f conftest.er1
  3249    cat conftest.err >&5
  3250    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3251 -  (exit $ac_status); } &&
  3252 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3253 -  { (case "(($ac_try" in
  3254 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3255 -  *) ac_try_echo=$ac_try;;
  3256 -esac
  3257 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3258 -  (eval "$ac_try") 2>&5
  3259 -  ac_status=$?
  3260 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3261 -  (exit $ac_status); }; } &&
  3262 -	 { ac_try='test -s conftest.$ac_objext'
  3263 -  { (case "(($ac_try" in
  3264 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3265 -  *) ac_try_echo=$ac_try;;
  3266 -esac
  3267 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3268 -  (eval "$ac_try") 2>&5
  3269 -  ac_status=$?
  3270 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3271 -  (exit $ac_status); }; }; then
  3272 +  (exit $ac_status); } && {
  3273 +	 test -z "$ac_cxx_werror_flag" ||
  3274 +	 test ! -s conftest.err
  3275 +       } && test -s conftest.$ac_objext; then
  3276    ac_cv_type_short=yes
  3277  else
  3278    echo "$as_me: failed program was:" >&5
  3279 @@ -10791,16 +9681,15 @@
  3280  { echo "$as_me:$LINENO: result: $ac_cv_type_short" >&5
  3281  echo "${ECHO_T}$ac_cv_type_short" >&6; }
  3283 +# The cast to long int works around a bug in the HP C Compiler
  3284 +# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  3285 +# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  3286 +# This bug is HP SR number 8606223364.
  3287  { echo "$as_me:$LINENO: checking size of short" >&5
  3288  echo $ECHO_N "checking size of short... $ECHO_C" >&6; }
  3289  if test "${ac_cv_sizeof_short+set}" = set; then
  3290    echo $ECHO_N "(cached) $ECHO_C" >&6
  3291  else
  3292 -  if test "$ac_cv_type_short" = yes; then
  3293 -  # The cast to long int works around a bug in the HP C Compiler
  3294 -  # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  3295 -  # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  3296 -  # This bug is HP SR number 8606223364.
  3297    if test "$cross_compiling" = yes; then
  3298    # Depending upon the size, compute the lo and hi bounds.
  3299  cat >conftest.$ac_ext <<_ACEOF
  3300 @@ -10810,7 +9699,7 @@
  3301  cat >>conftest.$ac_ext <<_ACEOF
  3302  /* end confdefs.h.  */
  3303  $ac_includes_default
  3304 -		   typedef short ac__type_sizeof_;
  3305 +   typedef short ac__type_sizeof_;
  3306  int
  3307  main ()
  3309 @@ -10834,27 +9723,10 @@
  3310    rm -f conftest.er1
  3311    cat conftest.err >&5
  3312    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3313 -  (exit $ac_status); } &&
  3314 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3315 -  { (case "(($ac_try" in
  3316 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3317 -  *) ac_try_echo=$ac_try;;
  3318 -esac
  3319 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3320 -  (eval "$ac_try") 2>&5
  3321 -  ac_status=$?
  3322 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3323 -  (exit $ac_status); }; } &&
  3324 -	 { ac_try='test -s conftest.$ac_objext'
  3325 -  { (case "(($ac_try" in
  3326 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3327 -  *) ac_try_echo=$ac_try;;
  3328 -esac
  3329 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3330 -  (eval "$ac_try") 2>&5
  3331 -  ac_status=$?
  3332 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3333 -  (exit $ac_status); }; }; then
  3334 +  (exit $ac_status); } && {
  3335 +	 test -z "$ac_cxx_werror_flag" ||
  3336 +	 test ! -s conftest.err
  3337 +       } && test -s conftest.$ac_objext; then
  3338    ac_lo=0 ac_mid=0
  3339    while :; do
  3340      cat >conftest.$ac_ext <<_ACEOF
  3341 @@ -10864,7 +9736,7 @@
  3342  cat >>conftest.$ac_ext <<_ACEOF
  3343  /* end confdefs.h.  */
  3344  $ac_includes_default
  3345 -		   typedef short ac__type_sizeof_;
  3346 +   typedef short ac__type_sizeof_;
  3347  int
  3348  main ()
  3350 @@ -10888,27 +9760,10 @@
  3351    rm -f conftest.er1
  3352    cat conftest.err >&5
  3353    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3354 -  (exit $ac_status); } &&
  3355 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3356 -  { (case "(($ac_try" in
  3357 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3358 -  *) ac_try_echo=$ac_try;;
  3359 -esac
  3360 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3361 -  (eval "$ac_try") 2>&5
  3362 -  ac_status=$?
  3363 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3364 -  (exit $ac_status); }; } &&
  3365 -	 { ac_try='test -s conftest.$ac_objext'
  3366 -  { (case "(($ac_try" in
  3367 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3368 -  *) ac_try_echo=$ac_try;;
  3369 -esac
  3370 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3371 -  (eval "$ac_try") 2>&5
  3372 -  ac_status=$?
  3373 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3374 -  (exit $ac_status); }; }; then
  3375 +  (exit $ac_status); } && {
  3376 +	 test -z "$ac_cxx_werror_flag" ||
  3377 +	 test ! -s conftest.err
  3378 +       } && test -s conftest.$ac_objext; then
  3379    ac_hi=$ac_mid; break
  3380  else
  3381    echo "$as_me: failed program was:" >&5
  3382 @@ -10935,7 +9790,7 @@
  3383  cat >>conftest.$ac_ext <<_ACEOF
  3384  /* end confdefs.h.  */
  3385  $ac_includes_default
  3386 -		   typedef short ac__type_sizeof_;
  3387 +   typedef short ac__type_sizeof_;
  3388  int
  3389  main ()
  3391 @@ -10959,27 +9814,10 @@
  3392    rm -f conftest.er1
  3393    cat conftest.err >&5
  3394    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3395 -  (exit $ac_status); } &&
  3396 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3397 -  { (case "(($ac_try" in
  3398 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3399 -  *) ac_try_echo=$ac_try;;
  3400 -esac
  3401 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3402 -  (eval "$ac_try") 2>&5
  3403 -  ac_status=$?
  3404 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3405 -  (exit $ac_status); }; } &&
  3406 -	 { ac_try='test -s conftest.$ac_objext'
  3407 -  { (case "(($ac_try" in
  3408 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3409 -  *) ac_try_echo=$ac_try;;
  3410 -esac
  3411 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3412 -  (eval "$ac_try") 2>&5
  3413 -  ac_status=$?
  3414 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3415 -  (exit $ac_status); }; }; then
  3416 +  (exit $ac_status); } && {
  3417 +	 test -z "$ac_cxx_werror_flag" ||
  3418 +	 test ! -s conftest.err
  3419 +       } && test -s conftest.$ac_objext; then
  3420    ac_hi=-1 ac_mid=-1
  3421    while :; do
  3422      cat >conftest.$ac_ext <<_ACEOF
  3423 @@ -10989,7 +9827,7 @@
  3424  cat >>conftest.$ac_ext <<_ACEOF
  3425  /* end confdefs.h.  */
  3426  $ac_includes_default
  3427 -		   typedef short ac__type_sizeof_;
  3428 +   typedef short ac__type_sizeof_;
  3429  int
  3430  main ()
  3432 @@ -11013,27 +9851,10 @@
  3433    rm -f conftest.er1
  3434    cat conftest.err >&5
  3435    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3436 -  (exit $ac_status); } &&
  3437 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3438 -  { (case "(($ac_try" in
  3439 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3440 -  *) ac_try_echo=$ac_try;;
  3441 -esac
  3442 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3443 -  (eval "$ac_try") 2>&5
  3444 -  ac_status=$?
  3445 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3446 -  (exit $ac_status); }; } &&
  3447 -	 { ac_try='test -s conftest.$ac_objext'
  3448 -  { (case "(($ac_try" in
  3449 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3450 -  *) ac_try_echo=$ac_try;;
  3451 -esac
  3452 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3453 -  (eval "$ac_try") 2>&5
  3454 -  ac_status=$?
  3455 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3456 -  (exit $ac_status); }; }; then
  3457 +  (exit $ac_status); } && {
  3458 +	 test -z "$ac_cxx_werror_flag" ||
  3459 +	 test ! -s conftest.err
  3460 +       } && test -s conftest.$ac_objext; then
  3461    ac_lo=$ac_mid; break
  3462  else
  3463    echo "$as_me: failed program was:" >&5
  3464 @@ -11070,7 +9891,7 @@
  3465  cat >>conftest.$ac_ext <<_ACEOF
  3466  /* end confdefs.h.  */
  3467  $ac_includes_default
  3468 -		   typedef short ac__type_sizeof_;
  3469 +   typedef short ac__type_sizeof_;
  3470  int
  3471  main ()
  3473 @@ -11094,27 +9915,10 @@
  3474    rm -f conftest.er1
  3475    cat conftest.err >&5
  3476    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3477 -  (exit $ac_status); } &&
  3478 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3479 -  { (case "(($ac_try" in
  3480 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3481 -  *) ac_try_echo=$ac_try;;
  3482 -esac
  3483 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3484 -  (eval "$ac_try") 2>&5
  3485 -  ac_status=$?
  3486 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3487 -  (exit $ac_status); }; } &&
  3488 -	 { ac_try='test -s conftest.$ac_objext'
  3489 -  { (case "(($ac_try" in
  3490 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3491 -  *) ac_try_echo=$ac_try;;
  3492 -esac
  3493 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3494 -  (eval "$ac_try") 2>&5
  3495 -  ac_status=$?
  3496 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3497 -  (exit $ac_status); }; }; then
  3498 +  (exit $ac_status); } && {
  3499 +	 test -z "$ac_cxx_werror_flag" ||
  3500 +	 test ! -s conftest.err
  3501 +       } && test -s conftest.$ac_objext; then
  3502    ac_hi=$ac_mid
  3503  else
  3504    echo "$as_me: failed program was:" >&5
  3505 @@ -11127,11 +9931,15 @@
  3506  done
  3507  case $ac_lo in
  3508  ?*) ac_cv_sizeof_short=$ac_lo;;
  3509 -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (short)
  3510 +'') if test "$ac_cv_type_short" = yes; then
  3511 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (short)
  3512  See \`config.log' for more details." >&5
  3513  echo "$as_me: error: cannot compute sizeof (short)
  3514  See \`config.log' for more details." >&2;}
  3515 -   { (exit 77); exit 77; }; } ;;
  3516 +   { (exit 77); exit 77; }; }
  3517 +   else
  3518 +     ac_cv_sizeof_short=0
  3519 +   fi ;;
  3520  esac
  3521  else
  3522    cat >conftest.$ac_ext <<_ACEOF
  3523 @@ -11141,7 +9949,7 @@
  3524  cat >>conftest.$ac_ext <<_ACEOF
  3525  /* end confdefs.h.  */
  3526  $ac_includes_default
  3527 -		   typedef short ac__type_sizeof_;
  3528 +   typedef short ac__type_sizeof_;
  3529  static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); }
  3530  static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); }
  3531  #include <stdio.h>
  3532 @@ -11200,21 +10008,25 @@
  3533  sed 's/^/| /' conftest.$ac_ext >&5
  3535  ( exit $ac_status )
  3536 -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (short)
  3537 +if test "$ac_cv_type_short" = yes; then
  3538 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (short)
  3539  See \`config.log' for more details." >&5
  3540  echo "$as_me: error: cannot compute sizeof (short)
  3541  See \`config.log' for more details." >&2;}
  3542     { (exit 77); exit 77; }; }
  3543 +   else
  3544 +     ac_cv_sizeof_short=0
  3545 +   fi
  3546  fi
  3547  rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  3548  fi
  3549  rm -f conftest.val
  3550 -else
  3551 -  ac_cv_sizeof_short=0
  3552 -fi
  3553  fi
  3554  { echo "$as_me:$LINENO: result: $ac_cv_sizeof_short" >&5
  3555  echo "${ECHO_T}$ac_cv_sizeof_short" >&6; }
  3559  cat >>confdefs.h <<_ACEOF
  3560  #define SIZEOF_SHORT $ac_cv_sizeof_short
  3561  _ACEOF
  3562 @@ -11256,27 +10068,10 @@
  3563    rm -f conftest.er1
  3564    cat conftest.err >&5
  3565    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3566 -  (exit $ac_status); } &&
  3567 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3568 -  { (case "(($ac_try" in
  3569 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3570 -  *) ac_try_echo=$ac_try;;
  3571 -esac
  3572 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3573 -  (eval "$ac_try") 2>&5
  3574 -  ac_status=$?
  3575 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3576 -  (exit $ac_status); }; } &&
  3577 -	 { ac_try='test -s conftest.$ac_objext'
  3578 -  { (case "(($ac_try" in
  3579 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3580 -  *) ac_try_echo=$ac_try;;
  3581 -esac
  3582 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3583 -  (eval "$ac_try") 2>&5
  3584 -  ac_status=$?
  3585 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3586 -  (exit $ac_status); }; }; then
  3587 +  (exit $ac_status); } && {
  3588 +	 test -z "$ac_cxx_werror_flag" ||
  3589 +	 test ! -s conftest.err
  3590 +       } && test -s conftest.$ac_objext; then
  3591    ac_cv_type_long=yes
  3592  else
  3593    echo "$as_me: failed program was:" >&5
  3594 @@ -11290,16 +10085,15 @@
  3595  { echo "$as_me:$LINENO: result: $ac_cv_type_long" >&5
  3596  echo "${ECHO_T}$ac_cv_type_long" >&6; }
  3598 +# The cast to long int works around a bug in the HP C Compiler
  3599 +# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  3600 +# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  3601 +# This bug is HP SR number 8606223364.
  3602  { echo "$as_me:$LINENO: checking size of long" >&5
  3603  echo $ECHO_N "checking size of long... $ECHO_C" >&6; }
  3604  if test "${ac_cv_sizeof_long+set}" = set; then
  3605    echo $ECHO_N "(cached) $ECHO_C" >&6
  3606  else
  3607 -  if test "$ac_cv_type_long" = yes; then
  3608 -  # The cast to long int works around a bug in the HP C Compiler
  3609 -  # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  3610 -  # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  3611 -  # This bug is HP SR number 8606223364.
  3612    if test "$cross_compiling" = yes; then
  3613    # Depending upon the size, compute the lo and hi bounds.
  3614  cat >conftest.$ac_ext <<_ACEOF
  3615 @@ -11309,7 +10103,7 @@
  3616  cat >>conftest.$ac_ext <<_ACEOF
  3617  /* end confdefs.h.  */
  3618  $ac_includes_default
  3619 -		   typedef long ac__type_sizeof_;
  3620 +   typedef long ac__type_sizeof_;
  3621  int
  3622  main ()
  3624 @@ -11333,27 +10127,10 @@
  3625    rm -f conftest.er1
  3626    cat conftest.err >&5
  3627    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3628 -  (exit $ac_status); } &&
  3629 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3630 -  { (case "(($ac_try" in
  3631 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3632 -  *) ac_try_echo=$ac_try;;
  3633 -esac
  3634 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3635 -  (eval "$ac_try") 2>&5
  3636 -  ac_status=$?
  3637 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3638 -  (exit $ac_status); }; } &&
  3639 -	 { ac_try='test -s conftest.$ac_objext'
  3640 -  { (case "(($ac_try" in
  3641 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3642 -  *) ac_try_echo=$ac_try;;
  3643 -esac
  3644 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3645 -  (eval "$ac_try") 2>&5
  3646 -  ac_status=$?
  3647 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3648 -  (exit $ac_status); }; }; then
  3649 +  (exit $ac_status); } && {
  3650 +	 test -z "$ac_cxx_werror_flag" ||
  3651 +	 test ! -s conftest.err
  3652 +       } && test -s conftest.$ac_objext; then
  3653    ac_lo=0 ac_mid=0
  3654    while :; do
  3655      cat >conftest.$ac_ext <<_ACEOF
  3656 @@ -11363,7 +10140,7 @@
  3657  cat >>conftest.$ac_ext <<_ACEOF
  3658  /* end confdefs.h.  */
  3659  $ac_includes_default
  3660 -		   typedef long ac__type_sizeof_;
  3661 +   typedef long ac__type_sizeof_;
  3662  int
  3663  main ()
  3665 @@ -11387,27 +10164,10 @@
  3666    rm -f conftest.er1
  3667    cat conftest.err >&5
  3668    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3669 -  (exit $ac_status); } &&
  3670 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3671 -  { (case "(($ac_try" in
  3672 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3673 -  *) ac_try_echo=$ac_try;;
  3674 -esac
  3675 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3676 -  (eval "$ac_try") 2>&5
  3677 -  ac_status=$?
  3678 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3679 -  (exit $ac_status); }; } &&
  3680 -	 { ac_try='test -s conftest.$ac_objext'
  3681 -  { (case "(($ac_try" in
  3682 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3683 -  *) ac_try_echo=$ac_try;;
  3684 -esac
  3685 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3686 -  (eval "$ac_try") 2>&5
  3687 -  ac_status=$?
  3688 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3689 -  (exit $ac_status); }; }; then
  3690 +  (exit $ac_status); } && {
  3691 +	 test -z "$ac_cxx_werror_flag" ||
  3692 +	 test ! -s conftest.err
  3693 +       } && test -s conftest.$ac_objext; then
  3694    ac_hi=$ac_mid; break
  3695  else
  3696    echo "$as_me: failed program was:" >&5
  3697 @@ -11434,7 +10194,7 @@
  3698  cat >>conftest.$ac_ext <<_ACEOF
  3699  /* end confdefs.h.  */
  3700  $ac_includes_default
  3701 -		   typedef long ac__type_sizeof_;
  3702 +   typedef long ac__type_sizeof_;
  3703  int
  3704  main ()
  3706 @@ -11458,27 +10218,10 @@
  3707    rm -f conftest.er1
  3708    cat conftest.err >&5
  3709    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3710 -  (exit $ac_status); } &&
  3711 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3712 -  { (case "(($ac_try" in
  3713 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3714 -  *) ac_try_echo=$ac_try;;
  3715 -esac
  3716 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3717 -  (eval "$ac_try") 2>&5
  3718 -  ac_status=$?
  3719 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3720 -  (exit $ac_status); }; } &&
  3721 -	 { ac_try='test -s conftest.$ac_objext'
  3722 -  { (case "(($ac_try" in
  3723 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3724 -  *) ac_try_echo=$ac_try;;
  3725 -esac
  3726 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3727 -  (eval "$ac_try") 2>&5
  3728 -  ac_status=$?
  3729 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3730 -  (exit $ac_status); }; }; then
  3731 +  (exit $ac_status); } && {
  3732 +	 test -z "$ac_cxx_werror_flag" ||
  3733 +	 test ! -s conftest.err
  3734 +       } && test -s conftest.$ac_objext; then
  3735    ac_hi=-1 ac_mid=-1
  3736    while :; do
  3737      cat >conftest.$ac_ext <<_ACEOF
  3738 @@ -11488,7 +10231,7 @@
  3739  cat >>conftest.$ac_ext <<_ACEOF
  3740  /* end confdefs.h.  */
  3741  $ac_includes_default
  3742 -		   typedef long ac__type_sizeof_;
  3743 +   typedef long ac__type_sizeof_;
  3744  int
  3745  main ()
  3747 @@ -11512,27 +10255,10 @@
  3748    rm -f conftest.er1
  3749    cat conftest.err >&5
  3750    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3751 -  (exit $ac_status); } &&
  3752 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3753 -  { (case "(($ac_try" in
  3754 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3755 -  *) ac_try_echo=$ac_try;;
  3756 -esac
  3757 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3758 -  (eval "$ac_try") 2>&5
  3759 -  ac_status=$?
  3760 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3761 -  (exit $ac_status); }; } &&
  3762 -	 { ac_try='test -s conftest.$ac_objext'
  3763 -  { (case "(($ac_try" in
  3764 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3765 -  *) ac_try_echo=$ac_try;;
  3766 -esac
  3767 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3768 -  (eval "$ac_try") 2>&5
  3769 -  ac_status=$?
  3770 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3771 -  (exit $ac_status); }; }; then
  3772 +  (exit $ac_status); } && {
  3773 +	 test -z "$ac_cxx_werror_flag" ||
  3774 +	 test ! -s conftest.err
  3775 +       } && test -s conftest.$ac_objext; then
  3776    ac_lo=$ac_mid; break
  3777  else
  3778    echo "$as_me: failed program was:" >&5
  3779 @@ -11569,7 +10295,7 @@
  3780  cat >>conftest.$ac_ext <<_ACEOF
  3781  /* end confdefs.h.  */
  3782  $ac_includes_default
  3783 -		   typedef long ac__type_sizeof_;
  3784 +   typedef long ac__type_sizeof_;
  3785  int
  3786  main ()
  3788 @@ -11593,27 +10319,10 @@
  3789    rm -f conftest.er1
  3790    cat conftest.err >&5
  3791    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3792 -  (exit $ac_status); } &&
  3793 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3794 -  { (case "(($ac_try" in
  3795 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3796 -  *) ac_try_echo=$ac_try;;
  3797 -esac
  3798 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3799 -  (eval "$ac_try") 2>&5
  3800 -  ac_status=$?
  3801 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3802 -  (exit $ac_status); }; } &&
  3803 -	 { ac_try='test -s conftest.$ac_objext'
  3804 -  { (case "(($ac_try" in
  3805 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3806 -  *) ac_try_echo=$ac_try;;
  3807 -esac
  3808 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3809 -  (eval "$ac_try") 2>&5
  3810 -  ac_status=$?
  3811 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3812 -  (exit $ac_status); }; }; then
  3813 +  (exit $ac_status); } && {
  3814 +	 test -z "$ac_cxx_werror_flag" ||
  3815 +	 test ! -s conftest.err
  3816 +       } && test -s conftest.$ac_objext; then
  3817    ac_hi=$ac_mid
  3818  else
  3819    echo "$as_me: failed program was:" >&5
  3820 @@ -11626,11 +10335,15 @@
  3821  done
  3822  case $ac_lo in
  3823  ?*) ac_cv_sizeof_long=$ac_lo;;
  3824 -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (long)
  3825 +'') if test "$ac_cv_type_long" = yes; then
  3826 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (long)
  3827  See \`config.log' for more details." >&5
  3828  echo "$as_me: error: cannot compute sizeof (long)
  3829  See \`config.log' for more details." >&2;}
  3830 -   { (exit 77); exit 77; }; } ;;
  3831 +   { (exit 77); exit 77; }; }
  3832 +   else
  3833 +     ac_cv_sizeof_long=0
  3834 +   fi ;;
  3835  esac
  3836  else
  3837    cat >conftest.$ac_ext <<_ACEOF
  3838 @@ -11640,7 +10353,7 @@
  3839  cat >>conftest.$ac_ext <<_ACEOF
  3840  /* end confdefs.h.  */
  3841  $ac_includes_default
  3842 -		   typedef long ac__type_sizeof_;
  3843 +   typedef long ac__type_sizeof_;
  3844  static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); }
  3845  static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); }
  3846  #include <stdio.h>
  3847 @@ -11699,21 +10412,25 @@
  3848  sed 's/^/| /' conftest.$ac_ext >&5
  3850  ( exit $ac_status )
  3851 -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (long)
  3852 +if test "$ac_cv_type_long" = yes; then
  3853 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (long)
  3854  See \`config.log' for more details." >&5
  3855  echo "$as_me: error: cannot compute sizeof (long)
  3856  See \`config.log' for more details." >&2;}
  3857     { (exit 77); exit 77; }; }
  3858 +   else
  3859 +     ac_cv_sizeof_long=0
  3860 +   fi
  3861  fi
  3862  rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  3863  fi
  3864  rm -f conftest.val
  3865 -else
  3866 -  ac_cv_sizeof_long=0
  3867 -fi
  3868  fi
  3869  { echo "$as_me:$LINENO: result: $ac_cv_sizeof_long" >&5
  3870  echo "${ECHO_T}$ac_cv_sizeof_long" >&6; }
  3874  cat >>confdefs.h <<_ACEOF
  3875  #define SIZEOF_LONG $ac_cv_sizeof_long
  3876  _ACEOF
  3877 @@ -11755,27 +10472,10 @@
  3878    rm -f conftest.er1
  3879    cat conftest.err >&5
  3880    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3881 -  (exit $ac_status); } &&
  3882 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3883 -  { (case "(($ac_try" in
  3884 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3885 -  *) ac_try_echo=$ac_try;;
  3886 -esac
  3887 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3888 -  (eval "$ac_try") 2>&5
  3889 -  ac_status=$?
  3890 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3891 -  (exit $ac_status); }; } &&
  3892 -	 { ac_try='test -s conftest.$ac_objext'
  3893 -  { (case "(($ac_try" in
  3894 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3895 -  *) ac_try_echo=$ac_try;;
  3896 -esac
  3897 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3898 -  (eval "$ac_try") 2>&5
  3899 -  ac_status=$?
  3900 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3901 -  (exit $ac_status); }; }; then
  3902 +  (exit $ac_status); } && {
  3903 +	 test -z "$ac_cxx_werror_flag" ||
  3904 +	 test ! -s conftest.err
  3905 +       } && test -s conftest.$ac_objext; then
  3906    ac_cv_type_char_p=yes
  3907  else
  3908    echo "$as_me: failed program was:" >&5
  3909 @@ -11789,16 +10489,15 @@
  3910  { echo "$as_me:$LINENO: result: $ac_cv_type_char_p" >&5
  3911  echo "${ECHO_T}$ac_cv_type_char_p" >&6; }
  3913 +# The cast to long int works around a bug in the HP C Compiler
  3914 +# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  3915 +# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  3916 +# This bug is HP SR number 8606223364.
  3917  { echo "$as_me:$LINENO: checking size of char *" >&5
  3918  echo $ECHO_N "checking size of char *... $ECHO_C" >&6; }
  3919  if test "${ac_cv_sizeof_char_p+set}" = set; then
  3920    echo $ECHO_N "(cached) $ECHO_C" >&6
  3921  else
  3922 -  if test "$ac_cv_type_char_p" = yes; then
  3923 -  # The cast to long int works around a bug in the HP C Compiler
  3924 -  # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  3925 -  # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  3926 -  # This bug is HP SR number 8606223364.
  3927    if test "$cross_compiling" = yes; then
  3928    # Depending upon the size, compute the lo and hi bounds.
  3929  cat >conftest.$ac_ext <<_ACEOF
  3930 @@ -11808,7 +10507,7 @@
  3931  cat >>conftest.$ac_ext <<_ACEOF
  3932  /* end confdefs.h.  */
  3933  $ac_includes_default
  3934 -		   typedef char * ac__type_sizeof_;
  3935 +   typedef char * ac__type_sizeof_;
  3936  int
  3937  main ()
  3939 @@ -11832,27 +10531,10 @@
  3940    rm -f conftest.er1
  3941    cat conftest.err >&5
  3942    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3943 -  (exit $ac_status); } &&
  3944 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3945 -  { (case "(($ac_try" in
  3946 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3947 -  *) ac_try_echo=$ac_try;;
  3948 -esac
  3949 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3950 -  (eval "$ac_try") 2>&5
  3951 -  ac_status=$?
  3952 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3953 -  (exit $ac_status); }; } &&
  3954 -	 { ac_try='test -s conftest.$ac_objext'
  3955 -  { (case "(($ac_try" in
  3956 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3957 -  *) ac_try_echo=$ac_try;;
  3958 -esac
  3959 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3960 -  (eval "$ac_try") 2>&5
  3961 -  ac_status=$?
  3962 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3963 -  (exit $ac_status); }; }; then
  3964 +  (exit $ac_status); } && {
  3965 +	 test -z "$ac_cxx_werror_flag" ||
  3966 +	 test ! -s conftest.err
  3967 +       } && test -s conftest.$ac_objext; then
  3968    ac_lo=0 ac_mid=0
  3969    while :; do
  3970      cat >conftest.$ac_ext <<_ACEOF
  3971 @@ -11862,7 +10544,7 @@
  3972  cat >>conftest.$ac_ext <<_ACEOF
  3973  /* end confdefs.h.  */
  3974  $ac_includes_default
  3975 -		   typedef char * ac__type_sizeof_;
  3976 +   typedef char * ac__type_sizeof_;
  3977  int
  3978  main ()
  3980 @@ -11886,27 +10568,10 @@
  3981    rm -f conftest.er1
  3982    cat conftest.err >&5
  3983    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3984 -  (exit $ac_status); } &&
  3985 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  3986 -  { (case "(($ac_try" in
  3987 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3988 -  *) ac_try_echo=$ac_try;;
  3989 -esac
  3990 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  3991 -  (eval "$ac_try") 2>&5
  3992 -  ac_status=$?
  3993 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  3994 -  (exit $ac_status); }; } &&
  3995 -	 { ac_try='test -s conftest.$ac_objext'
  3996 -  { (case "(($ac_try" in
  3997 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  3998 -  *) ac_try_echo=$ac_try;;
  3999 -esac
  4000 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4001 -  (eval "$ac_try") 2>&5
  4002 -  ac_status=$?
  4003 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4004 -  (exit $ac_status); }; }; then
  4005 +  (exit $ac_status); } && {
  4006 +	 test -z "$ac_cxx_werror_flag" ||
  4007 +	 test ! -s conftest.err
  4008 +       } && test -s conftest.$ac_objext; then
  4009    ac_hi=$ac_mid; break
  4010  else
  4011    echo "$as_me: failed program was:" >&5
  4012 @@ -11933,7 +10598,7 @@
  4013  cat >>conftest.$ac_ext <<_ACEOF
  4014  /* end confdefs.h.  */
  4015  $ac_includes_default
  4016 -		   typedef char * ac__type_sizeof_;
  4017 +   typedef char * ac__type_sizeof_;
  4018  int
  4019  main ()
  4021 @@ -11957,27 +10622,10 @@
  4022    rm -f conftest.er1
  4023    cat conftest.err >&5
  4024    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4025 -  (exit $ac_status); } &&
  4026 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4027 -  { (case "(($ac_try" in
  4028 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4029 -  *) ac_try_echo=$ac_try;;
  4030 -esac
  4031 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4032 -  (eval "$ac_try") 2>&5
  4033 -  ac_status=$?
  4034 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4035 -  (exit $ac_status); }; } &&
  4036 -	 { ac_try='test -s conftest.$ac_objext'
  4037 -  { (case "(($ac_try" in
  4038 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4039 -  *) ac_try_echo=$ac_try;;
  4040 -esac
  4041 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4042 -  (eval "$ac_try") 2>&5
  4043 -  ac_status=$?
  4044 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4045 -  (exit $ac_status); }; }; then
  4046 +  (exit $ac_status); } && {
  4047 +	 test -z "$ac_cxx_werror_flag" ||
  4048 +	 test ! -s conftest.err
  4049 +       } && test -s conftest.$ac_objext; then
  4050    ac_hi=-1 ac_mid=-1
  4051    while :; do
  4052      cat >conftest.$ac_ext <<_ACEOF
  4053 @@ -11987,7 +10635,7 @@
  4054  cat >>conftest.$ac_ext <<_ACEOF
  4055  /* end confdefs.h.  */
  4056  $ac_includes_default
  4057 -		   typedef char * ac__type_sizeof_;
  4058 +   typedef char * ac__type_sizeof_;
  4059  int
  4060  main ()
  4062 @@ -12011,27 +10659,10 @@
  4063    rm -f conftest.er1
  4064    cat conftest.err >&5
  4065    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4066 -  (exit $ac_status); } &&
  4067 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4068 -  { (case "(($ac_try" in
  4069 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4070 -  *) ac_try_echo=$ac_try;;
  4071 -esac
  4072 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4073 -  (eval "$ac_try") 2>&5
  4074 -  ac_status=$?
  4075 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4076 -  (exit $ac_status); }; } &&
  4077 -	 { ac_try='test -s conftest.$ac_objext'
  4078 -  { (case "(($ac_try" in
  4079 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4080 -  *) ac_try_echo=$ac_try;;
  4081 -esac
  4082 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4083 -  (eval "$ac_try") 2>&5
  4084 -  ac_status=$?
  4085 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4086 -  (exit $ac_status); }; }; then
  4087 +  (exit $ac_status); } && {
  4088 +	 test -z "$ac_cxx_werror_flag" ||
  4089 +	 test ! -s conftest.err
  4090 +       } && test -s conftest.$ac_objext; then
  4091    ac_lo=$ac_mid; break
  4092  else
  4093    echo "$as_me: failed program was:" >&5
  4094 @@ -12068,7 +10699,7 @@
  4095  cat >>conftest.$ac_ext <<_ACEOF
  4096  /* end confdefs.h.  */
  4097  $ac_includes_default
  4098 -		   typedef char * ac__type_sizeof_;
  4099 +   typedef char * ac__type_sizeof_;
  4100  int
  4101  main ()
  4103 @@ -12092,27 +10723,10 @@
  4104    rm -f conftest.er1
  4105    cat conftest.err >&5
  4106    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4107 -  (exit $ac_status); } &&
  4108 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4109 -  { (case "(($ac_try" in
  4110 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4111 -  *) ac_try_echo=$ac_try;;
  4112 -esac
  4113 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4114 -  (eval "$ac_try") 2>&5
  4115 -  ac_status=$?
  4116 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4117 -  (exit $ac_status); }; } &&
  4118 -	 { ac_try='test -s conftest.$ac_objext'
  4119 -  { (case "(($ac_try" in
  4120 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4121 -  *) ac_try_echo=$ac_try;;
  4122 -esac
  4123 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4124 -  (eval "$ac_try") 2>&5
  4125 -  ac_status=$?
  4126 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4127 -  (exit $ac_status); }; }; then
  4128 +  (exit $ac_status); } && {
  4129 +	 test -z "$ac_cxx_werror_flag" ||
  4130 +	 test ! -s conftest.err
  4131 +       } && test -s conftest.$ac_objext; then
  4132    ac_hi=$ac_mid
  4133  else
  4134    echo "$as_me: failed program was:" >&5
  4135 @@ -12125,11 +10739,15 @@
  4136  done
  4137  case $ac_lo in
  4138  ?*) ac_cv_sizeof_char_p=$ac_lo;;
  4139 -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
  4140 +'') if test "$ac_cv_type_char_p" = yes; then
  4141 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
  4142  See \`config.log' for more details." >&5
  4143  echo "$as_me: error: cannot compute sizeof (char *)
  4144  See \`config.log' for more details." >&2;}
  4145 -   { (exit 77); exit 77; }; } ;;
  4146 +   { (exit 77); exit 77; }; }
  4147 +   else
  4148 +     ac_cv_sizeof_char_p=0
  4149 +   fi ;;
  4150  esac
  4151  else
  4152    cat >conftest.$ac_ext <<_ACEOF
  4153 @@ -12139,7 +10757,7 @@
  4154  cat >>conftest.$ac_ext <<_ACEOF
  4155  /* end confdefs.h.  */
  4156  $ac_includes_default
  4157 -		   typedef char * ac__type_sizeof_;
  4158 +   typedef char * ac__type_sizeof_;
  4159  static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); }
  4160  static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); }
  4161  #include <stdio.h>
  4162 @@ -12198,21 +10816,25 @@
  4163  sed 's/^/| /' conftest.$ac_ext >&5
  4165  ( exit $ac_status )
  4166 -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
  4167 +if test "$ac_cv_type_char_p" = yes; then
  4168 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (char *)
  4169  See \`config.log' for more details." >&5
  4170  echo "$as_me: error: cannot compute sizeof (char *)
  4171  See \`config.log' for more details." >&2;}
  4172     { (exit 77); exit 77; }; }
  4173 +   else
  4174 +     ac_cv_sizeof_char_p=0
  4175 +   fi
  4176  fi
  4177  rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  4178  fi
  4179  rm -f conftest.val
  4180 -else
  4181 -  ac_cv_sizeof_char_p=0
  4182 -fi
  4183  fi
  4184  { echo "$as_me:$LINENO: result: $ac_cv_sizeof_char_p" >&5
  4185  echo "${ECHO_T}$ac_cv_sizeof_char_p" >&6; }
  4189  cat >>confdefs.h <<_ACEOF
  4190  #define SIZEOF_CHAR_P $ac_cv_sizeof_char_p
  4191  _ACEOF
  4192 @@ -12261,27 +10883,11 @@
  4193    rm -f conftest.er1
  4194    cat conftest.err >&5
  4195    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4196 -  (exit $ac_status); } &&
  4197 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4198 -  { (case "(($ac_try" in
  4199 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4200 -  *) ac_try_echo=$ac_try;;
  4201 -esac
  4202 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4203 -  (eval "$ac_try") 2>&5
  4204 -  ac_status=$?
  4205 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4206 -  (exit $ac_status); }; } &&
  4207 -	 { ac_try='test -s conftest$ac_exeext'
  4208 -  { (case "(($ac_try" in
  4209 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4210 -  *) ac_try_echo=$ac_try;;
  4211 -esac
  4212 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4213 -  (eval "$ac_try") 2>&5
  4214 -  ac_status=$?
  4215 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4216 -  (exit $ac_status); }; }; then
  4217 +  (exit $ac_status); } && {
  4218 +	 test -z "$ac_cxx_werror_flag" ||
  4219 +	 test ! -s conftest.err
  4220 +       } && test -s conftest$ac_exeext &&
  4221 +       $as_test_x conftest$ac_exeext; then
  4222    ac_cv_lib_dl_dlopen=yes
  4223  else
  4224    echo "$as_me: failed program was:" >&5
  4225 @@ -12290,7 +10896,7 @@
  4226  	ac_cv_lib_dl_dlopen=no
  4227  fi
  4229 -rm -f core conftest.err conftest.$ac_objext \
  4230 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  4231        conftest$ac_exeext conftest.$ac_ext
  4232  LIBS=$ac_check_lib_save_LIBS
  4233  fi
  4234 @@ -12346,27 +10952,11 @@
  4235    rm -f conftest.er1
  4236    cat conftest.err >&5
  4237    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4238 -  (exit $ac_status); } &&
  4239 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4240 -  { (case "(($ac_try" in
  4241 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4242 -  *) ac_try_echo=$ac_try;;
  4243 -esac
  4244 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4245 -  (eval "$ac_try") 2>&5
  4246 -  ac_status=$?
  4247 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4248 -  (exit $ac_status); }; } &&
  4249 -	 { ac_try='test -s conftest$ac_exeext'
  4250 -  { (case "(($ac_try" in
  4251 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4252 -  *) ac_try_echo=$ac_try;;
  4253 -esac
  4254 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4255 -  (eval "$ac_try") 2>&5
  4256 -  ac_status=$?
  4257 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4258 -  (exit $ac_status); }; }; then
  4259 +  (exit $ac_status); } && {
  4260 +	 test -z "$ac_cxx_werror_flag" ||
  4261 +	 test ! -s conftest.err
  4262 +       } && test -s conftest$ac_exeext &&
  4263 +       $as_test_x conftest$ac_exeext; then
  4264    ac_cv_lib_dld_shl_unload=yes
  4265  else
  4266    echo "$as_me: failed program was:" >&5
  4267 @@ -12375,7 +10965,7 @@
  4268  	ac_cv_lib_dld_shl_unload=no
  4269  fi
  4271 -rm -f core conftest.err conftest.$ac_objext \
  4272 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  4273        conftest$ac_exeext conftest.$ac_ext
  4274  LIBS=$ac_check_lib_save_LIBS
  4275  fi
  4276 @@ -12431,27 +11021,10 @@
  4277    rm -f conftest.er1
  4278    cat conftest.err >&5
  4279    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4280 -  (exit $ac_status); } &&
  4281 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4282 -  { (case "(($ac_try" in
  4283 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4284 -  *) ac_try_echo=$ac_try;;
  4285 -esac
  4286 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4287 -  (eval "$ac_try") 2>&5
  4288 -  ac_status=$?
  4289 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4290 -  (exit $ac_status); }; } &&
  4291 -	 { ac_try='test -s conftest.$ac_objext'
  4292 -  { (case "(($ac_try" in
  4293 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4294 -  *) ac_try_echo=$ac_try;;
  4295 -esac
  4296 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4297 -  (eval "$ac_try") 2>&5
  4298 -  ac_status=$?
  4299 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4300 -  (exit $ac_status); }; }; then
  4301 +  (exit $ac_status); } && {
  4302 +	 test -z "$ac_cxx_werror_flag" ||
  4303 +	 test ! -s conftest.err
  4304 +       } && test -s conftest.$ac_objext; then
  4305    ac_cv_type_size_t=yes
  4306  else
  4307    echo "$as_me: failed program was:" >&5
  4308 @@ -12465,16 +11038,15 @@
  4309  { echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5
  4310  echo "${ECHO_T}$ac_cv_type_size_t" >&6; }
  4312 +# The cast to long int works around a bug in the HP C Compiler
  4313 +# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  4314 +# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  4315 +# This bug is HP SR number 8606223364.
  4316  { echo "$as_me:$LINENO: checking size of size_t" >&5
  4317  echo $ECHO_N "checking size of size_t... $ECHO_C" >&6; }
  4318  if test "${ac_cv_sizeof_size_t+set}" = set; then
  4319    echo $ECHO_N "(cached) $ECHO_C" >&6
  4320  else
  4321 -  if test "$ac_cv_type_size_t" = yes; then
  4322 -  # The cast to long int works around a bug in the HP C Compiler
  4323 -  # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  4324 -  # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  4325 -  # This bug is HP SR number 8606223364.
  4326    if test "$cross_compiling" = yes; then
  4327    # Depending upon the size, compute the lo and hi bounds.
  4328  cat >conftest.$ac_ext <<_ACEOF
  4329 @@ -12484,7 +11056,7 @@
  4330  cat >>conftest.$ac_ext <<_ACEOF
  4331  /* end confdefs.h.  */
  4332  $ac_includes_default
  4333 -		   typedef size_t ac__type_sizeof_;
  4334 +   typedef size_t ac__type_sizeof_;
  4335  int
  4336  main ()
  4338 @@ -12508,27 +11080,10 @@
  4339    rm -f conftest.er1
  4340    cat conftest.err >&5
  4341    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4342 -  (exit $ac_status); } &&
  4343 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4344 -  { (case "(($ac_try" in
  4345 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4346 -  *) ac_try_echo=$ac_try;;
  4347 -esac
  4348 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4349 -  (eval "$ac_try") 2>&5
  4350 -  ac_status=$?
  4351 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4352 -  (exit $ac_status); }; } &&
  4353 -	 { ac_try='test -s conftest.$ac_objext'
  4354 -  { (case "(($ac_try" in
  4355 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4356 -  *) ac_try_echo=$ac_try;;
  4357 -esac
  4358 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4359 -  (eval "$ac_try") 2>&5
  4360 -  ac_status=$?
  4361 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4362 -  (exit $ac_status); }; }; then
  4363 +  (exit $ac_status); } && {
  4364 +	 test -z "$ac_cxx_werror_flag" ||
  4365 +	 test ! -s conftest.err
  4366 +       } && test -s conftest.$ac_objext; then
  4367    ac_lo=0 ac_mid=0
  4368    while :; do
  4369      cat >conftest.$ac_ext <<_ACEOF
  4370 @@ -12538,7 +11093,7 @@
  4371  cat >>conftest.$ac_ext <<_ACEOF
  4372  /* end confdefs.h.  */
  4373  $ac_includes_default
  4374 -		   typedef size_t ac__type_sizeof_;
  4375 +   typedef size_t ac__type_sizeof_;
  4376  int
  4377  main ()
  4379 @@ -12562,27 +11117,10 @@
  4380    rm -f conftest.er1
  4381    cat conftest.err >&5
  4382    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4383 -  (exit $ac_status); } &&
  4384 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4385 -  { (case "(($ac_try" in
  4386 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4387 -  *) ac_try_echo=$ac_try;;
  4388 -esac
  4389 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4390 -  (eval "$ac_try") 2>&5
  4391 -  ac_status=$?
  4392 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4393 -  (exit $ac_status); }; } &&
  4394 -	 { ac_try='test -s conftest.$ac_objext'
  4395 -  { (case "(($ac_try" in
  4396 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4397 -  *) ac_try_echo=$ac_try;;
  4398 -esac
  4399 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4400 -  (eval "$ac_try") 2>&5
  4401 -  ac_status=$?
  4402 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4403 -  (exit $ac_status); }; }; then
  4404 +  (exit $ac_status); } && {
  4405 +	 test -z "$ac_cxx_werror_flag" ||
  4406 +	 test ! -s conftest.err
  4407 +       } && test -s conftest.$ac_objext; then
  4408    ac_hi=$ac_mid; break
  4409  else
  4410    echo "$as_me: failed program was:" >&5
  4411 @@ -12609,7 +11147,7 @@
  4412  cat >>conftest.$ac_ext <<_ACEOF
  4413  /* end confdefs.h.  */
  4414  $ac_includes_default
  4415 -		   typedef size_t ac__type_sizeof_;
  4416 +   typedef size_t ac__type_sizeof_;
  4417  int
  4418  main ()
  4420 @@ -12633,27 +11171,10 @@
  4421    rm -f conftest.er1
  4422    cat conftest.err >&5
  4423    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4424 -  (exit $ac_status); } &&
  4425 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4426 -  { (case "(($ac_try" in
  4427 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4428 -  *) ac_try_echo=$ac_try;;
  4429 -esac
  4430 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4431 -  (eval "$ac_try") 2>&5
  4432 -  ac_status=$?
  4433 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4434 -  (exit $ac_status); }; } &&
  4435 -	 { ac_try='test -s conftest.$ac_objext'
  4436 -  { (case "(($ac_try" in
  4437 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4438 -  *) ac_try_echo=$ac_try;;
  4439 -esac
  4440 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4441 -  (eval "$ac_try") 2>&5
  4442 -  ac_status=$?
  4443 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4444 -  (exit $ac_status); }; }; then
  4445 +  (exit $ac_status); } && {
  4446 +	 test -z "$ac_cxx_werror_flag" ||
  4447 +	 test ! -s conftest.err
  4448 +       } && test -s conftest.$ac_objext; then
  4449    ac_hi=-1 ac_mid=-1
  4450    while :; do
  4451      cat >conftest.$ac_ext <<_ACEOF
  4452 @@ -12663,7 +11184,7 @@
  4453  cat >>conftest.$ac_ext <<_ACEOF
  4454  /* end confdefs.h.  */
  4455  $ac_includes_default
  4456 -		   typedef size_t ac__type_sizeof_;
  4457 +   typedef size_t ac__type_sizeof_;
  4458  int
  4459  main ()
  4461 @@ -12687,27 +11208,10 @@
  4462    rm -f conftest.er1
  4463    cat conftest.err >&5
  4464    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4465 -  (exit $ac_status); } &&
  4466 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4467 -  { (case "(($ac_try" in
  4468 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4469 -  *) ac_try_echo=$ac_try;;
  4470 -esac
  4471 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4472 -  (eval "$ac_try") 2>&5
  4473 -  ac_status=$?
  4474 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4475 -  (exit $ac_status); }; } &&
  4476 -	 { ac_try='test -s conftest.$ac_objext'
  4477 -  { (case "(($ac_try" in
  4478 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4479 -  *) ac_try_echo=$ac_try;;
  4480 -esac
  4481 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4482 -  (eval "$ac_try") 2>&5
  4483 -  ac_status=$?
  4484 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4485 -  (exit $ac_status); }; }; then
  4486 +  (exit $ac_status); } && {
  4487 +	 test -z "$ac_cxx_werror_flag" ||
  4488 +	 test ! -s conftest.err
  4489 +       } && test -s conftest.$ac_objext; then
  4490    ac_lo=$ac_mid; break
  4491  else
  4492    echo "$as_me: failed program was:" >&5
  4493 @@ -12744,7 +11248,7 @@
  4494  cat >>conftest.$ac_ext <<_ACEOF
  4495  /* end confdefs.h.  */
  4496  $ac_includes_default
  4497 -		   typedef size_t ac__type_sizeof_;
  4498 +   typedef size_t ac__type_sizeof_;
  4499  int
  4500  main ()
  4502 @@ -12768,27 +11272,10 @@
  4503    rm -f conftest.er1
  4504    cat conftest.err >&5
  4505    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4506 -  (exit $ac_status); } &&
  4507 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4508 -  { (case "(($ac_try" in
  4509 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4510 -  *) ac_try_echo=$ac_try;;
  4511 -esac
  4512 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4513 -  (eval "$ac_try") 2>&5
  4514 -  ac_status=$?
  4515 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4516 -  (exit $ac_status); }; } &&
  4517 -	 { ac_try='test -s conftest.$ac_objext'
  4518 -  { (case "(($ac_try" in
  4519 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4520 -  *) ac_try_echo=$ac_try;;
  4521 -esac
  4522 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4523 -  (eval "$ac_try") 2>&5
  4524 -  ac_status=$?
  4525 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4526 -  (exit $ac_status); }; }; then
  4527 +  (exit $ac_status); } && {
  4528 +	 test -z "$ac_cxx_werror_flag" ||
  4529 +	 test ! -s conftest.err
  4530 +       } && test -s conftest.$ac_objext; then
  4531    ac_hi=$ac_mid
  4532  else
  4533    echo "$as_me: failed program was:" >&5
  4534 @@ -12801,11 +11288,15 @@
  4535  done
  4536  case $ac_lo in
  4537  ?*) ac_cv_sizeof_size_t=$ac_lo;;
  4538 -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (size_t)
  4539 +'') if test "$ac_cv_type_size_t" = yes; then
  4540 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (size_t)
  4541  See \`config.log' for more details." >&5
  4542  echo "$as_me: error: cannot compute sizeof (size_t)
  4543  See \`config.log' for more details." >&2;}
  4544 -   { (exit 77); exit 77; }; } ;;
  4545 +   { (exit 77); exit 77; }; }
  4546 +   else
  4547 +     ac_cv_sizeof_size_t=0
  4548 +   fi ;;
  4549  esac
  4550  else
  4551    cat >conftest.$ac_ext <<_ACEOF
  4552 @@ -12815,7 +11306,7 @@
  4553  cat >>conftest.$ac_ext <<_ACEOF
  4554  /* end confdefs.h.  */
  4555  $ac_includes_default
  4556 -		   typedef size_t ac__type_sizeof_;
  4557 +   typedef size_t ac__type_sizeof_;
  4558  static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); }
  4559  static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); }
  4560  #include <stdio.h>
  4561 @@ -12874,21 +11365,25 @@
  4562  sed 's/^/| /' conftest.$ac_ext >&5
  4564  ( exit $ac_status )
  4565 -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (size_t)
  4566 +if test "$ac_cv_type_size_t" = yes; then
  4567 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (size_t)
  4568  See \`config.log' for more details." >&5
  4569  echo "$as_me: error: cannot compute sizeof (size_t)
  4570  See \`config.log' for more details." >&2;}
  4571     { (exit 77); exit 77; }; }
  4572 +   else
  4573 +     ac_cv_sizeof_size_t=0
  4574 +   fi
  4575  fi
  4576  rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  4577  fi
  4578  rm -f conftest.val
  4579 -else
  4580 -  ac_cv_sizeof_size_t=0
  4581 -fi
  4582  fi
  4583  { echo "$as_me:$LINENO: result: $ac_cv_sizeof_size_t" >&5
  4584  echo "${ECHO_T}$ac_cv_sizeof_size_t" >&6; }
  4588  cat >>confdefs.h <<_ACEOF
  4589  #define SIZEOF_SIZE_T $ac_cv_sizeof_size_t
  4590  _ACEOF
  4591 @@ -12931,27 +11426,10 @@
  4592    rm -f conftest.er1
  4593    cat conftest.err >&5
  4594    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4595 -  (exit $ac_status); } &&
  4596 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4597 -  { (case "(($ac_try" in
  4598 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4599 -  *) ac_try_echo=$ac_try;;
  4600 -esac
  4601 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4602 -  (eval "$ac_try") 2>&5
  4603 -  ac_status=$?
  4604 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4605 -  (exit $ac_status); }; } &&
  4606 -	 { ac_try='test -s conftest.$ac_objext'
  4607 -  { (case "(($ac_try" in
  4608 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4609 -  *) ac_try_echo=$ac_try;;
  4610 -esac
  4611 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4612 -  (eval "$ac_try") 2>&5
  4613 -  ac_status=$?
  4614 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4615 -  (exit $ac_status); }; }; then
  4616 +  (exit $ac_status); } && {
  4617 +	 test -z "$ac_cxx_werror_flag" ||
  4618 +	 test ! -s conftest.err
  4619 +       } && test -s conftest.$ac_objext; then
  4620    ac_cv_type_unsigned_long=yes
  4621  else
  4622    echo "$as_me: failed program was:" >&5
  4623 @@ -12965,16 +11443,15 @@
  4624  { echo "$as_me:$LINENO: result: $ac_cv_type_unsigned_long" >&5
  4625  echo "${ECHO_T}$ac_cv_type_unsigned_long" >&6; }
  4627 +# The cast to long int works around a bug in the HP C Compiler
  4628 +# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  4629 +# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  4630 +# This bug is HP SR number 8606223364.
  4631  { echo "$as_me:$LINENO: checking size of unsigned long" >&5
  4632  echo $ECHO_N "checking size of unsigned long... $ECHO_C" >&6; }
  4633  if test "${ac_cv_sizeof_unsigned_long+set}" = set; then
  4634    echo $ECHO_N "(cached) $ECHO_C" >&6
  4635  else
  4636 -  if test "$ac_cv_type_unsigned_long" = yes; then
  4637 -  # The cast to long int works around a bug in the HP C Compiler
  4638 -  # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  4639 -  # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  4640 -  # This bug is HP SR number 8606223364.
  4641    if test "$cross_compiling" = yes; then
  4642    # Depending upon the size, compute the lo and hi bounds.
  4643  cat >conftest.$ac_ext <<_ACEOF
  4644 @@ -12984,7 +11461,7 @@
  4645  cat >>conftest.$ac_ext <<_ACEOF
  4646  /* end confdefs.h.  */
  4647  $ac_includes_default
  4648 -		   typedef unsigned long ac__type_sizeof_;
  4649 +   typedef unsigned long ac__type_sizeof_;
  4650  int
  4651  main ()
  4653 @@ -13008,27 +11485,10 @@
  4654    rm -f conftest.er1
  4655    cat conftest.err >&5
  4656    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4657 -  (exit $ac_status); } &&
  4658 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4659 -  { (case "(($ac_try" in
  4660 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4661 -  *) ac_try_echo=$ac_try;;
  4662 -esac
  4663 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4664 -  (eval "$ac_try") 2>&5
  4665 -  ac_status=$?
  4666 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4667 -  (exit $ac_status); }; } &&
  4668 -	 { ac_try='test -s conftest.$ac_objext'
  4669 -  { (case "(($ac_try" in
  4670 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4671 -  *) ac_try_echo=$ac_try;;
  4672 -esac
  4673 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4674 -  (eval "$ac_try") 2>&5
  4675 -  ac_status=$?
  4676 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4677 -  (exit $ac_status); }; }; then
  4678 +  (exit $ac_status); } && {
  4679 +	 test -z "$ac_cxx_werror_flag" ||
  4680 +	 test ! -s conftest.err
  4681 +       } && test -s conftest.$ac_objext; then
  4682    ac_lo=0 ac_mid=0
  4683    while :; do
  4684      cat >conftest.$ac_ext <<_ACEOF
  4685 @@ -13038,7 +11498,7 @@
  4686  cat >>conftest.$ac_ext <<_ACEOF
  4687  /* end confdefs.h.  */
  4688  $ac_includes_default
  4689 -		   typedef unsigned long ac__type_sizeof_;
  4690 +   typedef unsigned long ac__type_sizeof_;
  4691  int
  4692  main ()
  4694 @@ -13062,27 +11522,10 @@
  4695    rm -f conftest.er1
  4696    cat conftest.err >&5
  4697    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4698 -  (exit $ac_status); } &&
  4699 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4700 -  { (case "(($ac_try" in
  4701 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4702 -  *) ac_try_echo=$ac_try;;
  4703 -esac
  4704 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4705 -  (eval "$ac_try") 2>&5
  4706 -  ac_status=$?
  4707 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4708 -  (exit $ac_status); }; } &&
  4709 -	 { ac_try='test -s conftest.$ac_objext'
  4710 -  { (case "(($ac_try" in
  4711 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4712 -  *) ac_try_echo=$ac_try;;
  4713 -esac
  4714 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4715 -  (eval "$ac_try") 2>&5
  4716 -  ac_status=$?
  4717 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4718 -  (exit $ac_status); }; }; then
  4719 +  (exit $ac_status); } && {
  4720 +	 test -z "$ac_cxx_werror_flag" ||
  4721 +	 test ! -s conftest.err
  4722 +       } && test -s conftest.$ac_objext; then
  4723    ac_hi=$ac_mid; break
  4724  else
  4725    echo "$as_me: failed program was:" >&5
  4726 @@ -13109,7 +11552,7 @@
  4727  cat >>conftest.$ac_ext <<_ACEOF
  4728  /* end confdefs.h.  */
  4729  $ac_includes_default
  4730 -		   typedef unsigned long ac__type_sizeof_;
  4731 +   typedef unsigned long ac__type_sizeof_;
  4732  int
  4733  main ()
  4735 @@ -13133,27 +11576,10 @@
  4736    rm -f conftest.er1
  4737    cat conftest.err >&5
  4738    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4739 -  (exit $ac_status); } &&
  4740 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4741 -  { (case "(($ac_try" in
  4742 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4743 -  *) ac_try_echo=$ac_try;;
  4744 -esac
  4745 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4746 -  (eval "$ac_try") 2>&5
  4747 -  ac_status=$?
  4748 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4749 -  (exit $ac_status); }; } &&
  4750 -	 { ac_try='test -s conftest.$ac_objext'
  4751 -  { (case "(($ac_try" in
  4752 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4753 -  *) ac_try_echo=$ac_try;;
  4754 -esac
  4755 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4756 -  (eval "$ac_try") 2>&5
  4757 -  ac_status=$?
  4758 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4759 -  (exit $ac_status); }; }; then
  4760 +  (exit $ac_status); } && {
  4761 +	 test -z "$ac_cxx_werror_flag" ||
  4762 +	 test ! -s conftest.err
  4763 +       } && test -s conftest.$ac_objext; then
  4764    ac_hi=-1 ac_mid=-1
  4765    while :; do
  4766      cat >conftest.$ac_ext <<_ACEOF
  4767 @@ -13163,7 +11589,7 @@
  4768  cat >>conftest.$ac_ext <<_ACEOF
  4769  /* end confdefs.h.  */
  4770  $ac_includes_default
  4771 -		   typedef unsigned long ac__type_sizeof_;
  4772 +   typedef unsigned long ac__type_sizeof_;
  4773  int
  4774  main ()
  4776 @@ -13187,27 +11613,10 @@
  4777    rm -f conftest.er1
  4778    cat conftest.err >&5
  4779    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4780 -  (exit $ac_status); } &&
  4781 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4782 -  { (case "(($ac_try" in
  4783 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4784 -  *) ac_try_echo=$ac_try;;
  4785 -esac
  4786 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4787 -  (eval "$ac_try") 2>&5
  4788 -  ac_status=$?
  4789 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4790 -  (exit $ac_status); }; } &&
  4791 -	 { ac_try='test -s conftest.$ac_objext'
  4792 -  { (case "(($ac_try" in
  4793 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4794 -  *) ac_try_echo=$ac_try;;
  4795 -esac
  4796 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4797 -  (eval "$ac_try") 2>&5
  4798 -  ac_status=$?
  4799 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4800 -  (exit $ac_status); }; }; then
  4801 +  (exit $ac_status); } && {
  4802 +	 test -z "$ac_cxx_werror_flag" ||
  4803 +	 test ! -s conftest.err
  4804 +       } && test -s conftest.$ac_objext; then
  4805    ac_lo=$ac_mid; break
  4806  else
  4807    echo "$as_me: failed program was:" >&5
  4808 @@ -13244,7 +11653,7 @@
  4809  cat >>conftest.$ac_ext <<_ACEOF
  4810  /* end confdefs.h.  */
  4811  $ac_includes_default
  4812 -		   typedef unsigned long ac__type_sizeof_;
  4813 +   typedef unsigned long ac__type_sizeof_;
  4814  int
  4815  main ()
  4817 @@ -13268,27 +11677,10 @@
  4818    rm -f conftest.er1
  4819    cat conftest.err >&5
  4820    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4821 -  (exit $ac_status); } &&
  4822 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4823 -  { (case "(($ac_try" in
  4824 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4825 -  *) ac_try_echo=$ac_try;;
  4826 -esac
  4827 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4828 -  (eval "$ac_try") 2>&5
  4829 -  ac_status=$?
  4830 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4831 -  (exit $ac_status); }; } &&
  4832 -	 { ac_try='test -s conftest.$ac_objext'
  4833 -  { (case "(($ac_try" in
  4834 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4835 -  *) ac_try_echo=$ac_try;;
  4836 -esac
  4837 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4838 -  (eval "$ac_try") 2>&5
  4839 -  ac_status=$?
  4840 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4841 -  (exit $ac_status); }; }; then
  4842 +  (exit $ac_status); } && {
  4843 +	 test -z "$ac_cxx_werror_flag" ||
  4844 +	 test ! -s conftest.err
  4845 +       } && test -s conftest.$ac_objext; then
  4846    ac_hi=$ac_mid
  4847  else
  4848    echo "$as_me: failed program was:" >&5
  4849 @@ -13301,11 +11693,15 @@
  4850  done
  4851  case $ac_lo in
  4852  ?*) ac_cv_sizeof_unsigned_long=$ac_lo;;
  4853 -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long)
  4854 +'') if test "$ac_cv_type_unsigned_long" = yes; then
  4855 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long)
  4856  See \`config.log' for more details." >&5
  4857  echo "$as_me: error: cannot compute sizeof (unsigned long)
  4858  See \`config.log' for more details." >&2;}
  4859 -   { (exit 77); exit 77; }; } ;;
  4860 +   { (exit 77); exit 77; }; }
  4861 +   else
  4862 +     ac_cv_sizeof_unsigned_long=0
  4863 +   fi ;;
  4864  esac
  4865  else
  4866    cat >conftest.$ac_ext <<_ACEOF
  4867 @@ -13315,7 +11711,7 @@
  4868  cat >>conftest.$ac_ext <<_ACEOF
  4869  /* end confdefs.h.  */
  4870  $ac_includes_default
  4871 -		   typedef unsigned long ac__type_sizeof_;
  4872 +   typedef unsigned long ac__type_sizeof_;
  4873  static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); }
  4874  static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); }
  4875  #include <stdio.h>
  4876 @@ -13374,21 +11770,25 @@
  4877  sed 's/^/| /' conftest.$ac_ext >&5
  4879  ( exit $ac_status )
  4880 -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long)
  4881 +if test "$ac_cv_type_unsigned_long" = yes; then
  4882 +     { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long)
  4883  See \`config.log' for more details." >&5
  4884  echo "$as_me: error: cannot compute sizeof (unsigned long)
  4885  See \`config.log' for more details." >&2;}
  4886     { (exit 77); exit 77; }; }
  4887 +   else
  4888 +     ac_cv_sizeof_unsigned_long=0
  4889 +   fi
  4890  fi
  4891  rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  4892  fi
  4893  rm -f conftest.val
  4894 -else
  4895 -  ac_cv_sizeof_unsigned_long=0
  4896 -fi
  4897  fi
  4898  { echo "$as_me:$LINENO: result: $ac_cv_sizeof_unsigned_long" >&5
  4899  echo "${ECHO_T}$ac_cv_sizeof_unsigned_long" >&6; }
  4903  cat >>confdefs.h <<_ACEOF
  4904  #define SIZEOF_UNSIGNED_LONG $ac_cv_sizeof_unsigned_long
  4905  _ACEOF
  4906 @@ -13429,27 +11829,10 @@
  4907    rm -f conftest.er1
  4908    cat conftest.err >&5
  4909    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4910 -  (exit $ac_status); } &&
  4911 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4912 -  { (case "(($ac_try" in
  4913 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4914 -  *) ac_try_echo=$ac_try;;
  4915 -esac
  4916 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4917 -  (eval "$ac_try") 2>&5
  4918 -  ac_status=$?
  4919 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4920 -  (exit $ac_status); }; } &&
  4921 -	 { ac_try='test -s conftest.$ac_objext'
  4922 -  { (case "(($ac_try" in
  4923 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4924 -  *) ac_try_echo=$ac_try;;
  4925 -esac
  4926 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4927 -  (eval "$ac_try") 2>&5
  4928 -  ac_status=$?
  4929 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4930 -  (exit $ac_status); }; }; then
  4931 +  (exit $ac_status); } && {
  4932 +	 test -z "$ac_cxx_werror_flag" ||
  4933 +	 test ! -s conftest.err
  4934 +       } && test -s conftest.$ac_objext; then
  4935    { echo "$as_me:$LINENO: result: yes" >&5
  4936  echo "${ECHO_T}yes" >&6; }
  4937  else
  4938 @@ -13514,27 +11897,10 @@
  4939    rm -f conftest.er1
  4940    cat conftest.err >&5
  4941    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4942 -  (exit $ac_status); } &&
  4943 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  4944 -  { (case "(($ac_try" in
  4945 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4946 -  *) ac_try_echo=$ac_try;;
  4947 -esac
  4948 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4949 -  (eval "$ac_try") 2>&5
  4950 -  ac_status=$?
  4951 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4952 -  (exit $ac_status); }; } &&
  4953 -	 { ac_try='test -s conftest.$ac_objext'
  4954 -  { (case "(($ac_try" in
  4955 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  4956 -  *) ac_try_echo=$ac_try;;
  4957 -esac
  4958 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  4959 -  (eval "$ac_try") 2>&5
  4960 -  ac_status=$?
  4961 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4962 -  (exit $ac_status); }; }; then
  4963 +  (exit $ac_status); } && {
  4964 +	 test -z "$ac_cxx_werror_flag" ||
  4965 +	 test ! -s conftest.err
  4966 +       } && test -s conftest.$ac_objext; then
  4967    ac_header_compiler=yes
  4968  else
  4969    echo "$as_me: failed program was:" >&5
  4970 @@ -13570,18 +11936,11 @@
  4971    rm -f conftest.er1
  4972    cat conftest.err >&5
  4973    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4974 -  (exit $ac_status); } >/dev/null; then
  4975 -  if test -s conftest.err; then
  4976 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  4977 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  4978 -  else
  4979 -    ac_cpp_err=
  4980 -  fi
  4981 -else
  4982 -  ac_cpp_err=yes
  4983 -fi
  4984 -if test -z "$ac_cpp_err"; then
  4985 -  ac_header_preproc=yes
  4986 +  (exit $ac_status); } >/dev/null && {
  4987 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  4988 +	 test ! -s conftest.err
  4989 +       }; then
  4990 +  ac_header_preproc=yes
  4991  else
  4992    echo "$as_me: failed program was:" >&5
  4993  sed 's/^/| /' conftest.$ac_ext >&5
  4994 @@ -13702,27 +12061,11 @@
  4995    rm -f conftest.er1
  4996    cat conftest.err >&5
  4997    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  4998 -  (exit $ac_status); } &&
  4999 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5000 -  { (case "(($ac_try" in
  5001 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5002 -  *) ac_try_echo=$ac_try;;
  5003 -esac
  5004 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5005 -  (eval "$ac_try") 2>&5
  5006 -  ac_status=$?
  5007 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5008 -  (exit $ac_status); }; } &&
  5009 -	 { ac_try='test -s conftest$ac_exeext'
  5010 -  { (case "(($ac_try" in
  5011 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5012 -  *) ac_try_echo=$ac_try;;
  5013 -esac
  5014 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5015 -  (eval "$ac_try") 2>&5
  5016 -  ac_status=$?
  5017 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5018 -  (exit $ac_status); }; }; then
  5019 +  (exit $ac_status); } && {
  5020 +	 test -z "$ac_cxx_werror_flag" ||
  5021 +	 test ! -s conftest.err
  5022 +       } && test -s conftest$ac_exeext &&
  5023 +       $as_test_x conftest$ac_exeext; then
  5024    ac_cv_func__NSGetEnviron=yes
  5025  else
  5026    echo "$as_me: failed program was:" >&5
  5027 @@ -13731,7 +12074,7 @@
  5028  	ac_cv_func__NSGetEnviron=no
  5029  fi
  5031 -rm -f core conftest.err conftest.$ac_objext \
  5032 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5033        conftest$ac_exeext conftest.$ac_ext
  5034  fi
  5035  { echo "$as_me:$LINENO: result: $ac_cv_func__NSGetEnviron" >&5
  5036 @@ -13819,27 +12162,11 @@
  5037    rm -f conftest.er1
  5038    cat conftest.err >&5
  5039    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5040 -  (exit $ac_status); } &&
  5041 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5042 -  { (case "(($ac_try" in
  5043 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5044 -  *) ac_try_echo=$ac_try;;
  5045 -esac
  5046 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5047 -  (eval "$ac_try") 2>&5
  5048 -  ac_status=$?
  5049 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5050 -  (exit $ac_status); }; } &&
  5051 -	 { ac_try='test -s conftest$ac_exeext'
  5052 -  { (case "(($ac_try" in
  5053 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5054 -  *) ac_try_echo=$ac_try;;
  5055 -esac
  5056 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5057 -  (eval "$ac_try") 2>&5
  5058 -  ac_status=$?
  5059 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5060 -  (exit $ac_status); }; }; then
  5061 +  (exit $ac_status); } && {
  5062 +	 test -z "$ac_cxx_werror_flag" ||
  5063 +	 test ! -s conftest.err
  5064 +       } && test -s conftest$ac_exeext &&
  5065 +       $as_test_x conftest$ac_exeext; then
  5066    eval "$as_ac_var=yes"
  5067  else
  5068    echo "$as_me: failed program was:" >&5
  5069 @@ -13848,7 +12175,7 @@
  5070  	eval "$as_ac_var=no"
  5071  fi
  5073 -rm -f core conftest.err conftest.$ac_objext \
  5074 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5075        conftest$ac_exeext conftest.$ac_ext
  5076  fi
  5077  ac_res=`eval echo '${'$as_ac_var'}'`
  5078 @@ -13998,17 +12325,10 @@
  5079    rm -f conftest.er1
  5080    cat conftest.err >&5
  5081    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5082 -  (exit $ac_status); } >/dev/null; then
  5083 -  if test -s conftest.err; then
  5084 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  5085 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  5086 -  else
  5087 -    ac_cpp_err=
  5088 -  fi
  5089 -else
  5090 -  ac_cpp_err=yes
  5091 -fi
  5092 -if test -z "$ac_cpp_err"; then
  5093 +  (exit $ac_status); } >/dev/null && {
  5094 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  5095 +	 test ! -s conftest.err
  5096 +       }; then
  5097    # We can compile using X headers with no special include directory.
  5098  ac_x_includes=
  5099  else
  5100 @@ -14101,27 +12421,11 @@
  5101    rm -f conftest.er1
  5102    cat conftest.err >&5
  5103    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5104 -  (exit $ac_status); } &&
  5105 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5106 -  { (case "(($ac_try" in
  5107 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5108 -  *) ac_try_echo=$ac_try;;
  5109 -esac
  5110 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5111 -  (eval "$ac_try") 2>&5
  5112 -  ac_status=$?
  5113 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5114 -  (exit $ac_status); }; } &&
  5115 -	 { ac_try='test -s conftest$ac_exeext'
  5116 -  { (case "(($ac_try" in
  5117 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5118 -  *) ac_try_echo=$ac_try;;
  5119 -esac
  5120 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5121 -  (eval "$ac_try") 2>&5
  5122 -  ac_status=$?
  5123 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5124 -  (exit $ac_status); }; }; then
  5125 +  (exit $ac_status); } && {
  5126 +	 test -z "$ac_cxx_werror_flag" ||
  5127 +	 test ! -s conftest.err
  5128 +       } && test -s conftest$ac_exeext &&
  5129 +       $as_test_x conftest$ac_exeext; then
  5130    LIBS="$ac_save_LIBS"
  5131  # We can link X programs with no special library path.
  5132  ac_x_libraries=
  5133 @@ -14178,7 +12482,7 @@
  5134  done
  5135  fi
  5137 -rm -f core conftest.err conftest.$ac_objext \
  5138 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5139        conftest$ac_exeext conftest.$ac_ext
  5140  fi # $ac_x_libraries = NO
  5142 @@ -14343,27 +12647,11 @@
  5143    rm -f conftest.er1
  5144    cat conftest.err >&5
  5145    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5146 -  (exit $ac_status); } &&
  5147 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5148 -  { (case "(($ac_try" in
  5149 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5150 -  *) ac_try_echo=$ac_try;;
  5151 -esac
  5152 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5153 -  (eval "$ac_try") 2>&5
  5154 -  ac_status=$?
  5155 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5156 -  (exit $ac_status); }; } &&
  5157 -	 { ac_try='test -s conftest$ac_exeext'
  5158 -  { (case "(($ac_try" in
  5159 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5160 -  *) ac_try_echo=$ac_try;;
  5161 -esac
  5162 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5163 -  (eval "$ac_try") 2>&5
  5164 -  ac_status=$?
  5165 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5166 -  (exit $ac_status); }; }; then
  5167 +  (exit $ac_status); } && {
  5168 +	 test -z "$ac_cxx_werror_flag" ||
  5169 +	 test ! -s conftest.err
  5170 +       } && test -s conftest$ac_exeext &&
  5171 +       $as_test_x conftest$ac_exeext; then
  5172    ac_cv_lib_ICE_IceConnectionNumber=yes
  5173  else
  5174    echo "$as_me: failed program was:" >&5
  5175 @@ -14372,7 +12660,7 @@
  5176  	ac_cv_lib_ICE_IceConnectionNumber=no
  5177  fi
  5179 -rm -f core conftest.err conftest.$ac_objext \
  5180 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5181        conftest$ac_exeext conftest.$ac_ext
  5182  LIBS=$ac_check_lib_save_LIBS
  5183  fi
  5184 @@ -14433,27 +12721,11 @@
  5185    rm -f conftest.er1
  5186    cat conftest.err >&5
  5187    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5188 -  (exit $ac_status); } &&
  5189 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5190 -  { (case "(($ac_try" in
  5191 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5192 -  *) ac_try_echo=$ac_try;;
  5193 -esac
  5194 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5195 -  (eval "$ac_try") 2>&5
  5196 -  ac_status=$?
  5197 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5198 -  (exit $ac_status); }; } &&
  5199 -	 { ac_try='test -s conftest$ac_exeext'
  5200 -  { (case "(($ac_try" in
  5201 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5202 -  *) ac_try_echo=$ac_try;;
  5203 -esac
  5204 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5205 -  (eval "$ac_try") 2>&5
  5206 -  ac_status=$?
  5207 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5208 -  (exit $ac_status); }; }; then
  5209 +  (exit $ac_status); } && {
  5210 +	 test -z "$ac_cxx_werror_flag" ||
  5211 +	 test ! -s conftest.err
  5212 +       } && test -s conftest$ac_exeext &&
  5213 +       $as_test_x conftest$ac_exeext; then
  5214    kde_cv_have_libXext=yes
  5215  else
  5216    echo "$as_me: failed program was:" >&5
  5217 @@ -14463,7 +12735,7 @@
  5219  fi
  5221 -rm -f core conftest.err conftest.$ac_objext \
  5222 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5223        conftest$ac_exeext conftest.$ac_ext
  5225  LDFLAGS=$kde_ldflags_safe
  5226 @@ -14670,27 +12942,11 @@
  5227    rm -f conftest.er1
  5228    cat conftest.err >&5
  5229    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5230 -  (exit $ac_status); } &&
  5231 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5232 -  { (case "(($ac_try" in
  5233 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5234 -  *) ac_try_echo=$ac_try;;
  5235 -esac
  5236 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5237 -  (eval "$ac_try") 2>&5
  5238 -  ac_status=$?
  5239 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5240 -  (exit $ac_status); }; } &&
  5241 -	 { ac_try='test -s conftest$ac_exeext'
  5242 -  { (case "(($ac_try" in
  5243 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5244 -  *) ac_try_echo=$ac_try;;
  5245 -esac
  5246 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5247 -  (eval "$ac_try") 2>&5
  5248 -  ac_status=$?
  5249 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5250 -  (exit $ac_status); }; }; then
  5251 +  (exit $ac_status); } && {
  5252 +	 test -z "$ac_cxx_werror_flag" ||
  5253 +	 test ! -s conftest.err
  5254 +       } && test -s conftest$ac_exeext &&
  5255 +       $as_test_x conftest$ac_exeext; then
  5256    eval "$as_ac_Lib=yes"
  5257  else
  5258    echo "$as_me: failed program was:" >&5
  5259 @@ -14699,7 +12955,7 @@
  5260  	eval "$as_ac_Lib=no"
  5261  fi
  5263 -rm -f core conftest.err conftest.$ac_objext \
  5264 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5265        conftest$ac_exeext conftest.$ac_ext
  5266  LIBS=$ac_check_lib_save_LIBS
  5267  fi
  5268 @@ -14760,27 +13016,11 @@
  5269    rm -f conftest.er1
  5270    cat conftest.err >&5
  5271    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5272 -  (exit $ac_status); } &&
  5273 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5274 -  { (case "(($ac_try" in
  5275 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5276 -  *) ac_try_echo=$ac_try;;
  5277 -esac
  5278 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5279 -  (eval "$ac_try") 2>&5
  5280 -  ac_status=$?
  5281 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5282 -  (exit $ac_status); }; } &&
  5283 -	 { ac_try='test -s conftest$ac_exeext'
  5284 -  { (case "(($ac_try" in
  5285 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5286 -  *) ac_try_echo=$ac_try;;
  5287 -esac
  5288 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5289 -  (eval "$ac_try") 2>&5
  5290 -  ac_status=$?
  5291 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5292 -  (exit $ac_status); }; }; then
  5293 +  (exit $ac_status); } && {
  5294 +	 test -z "$ac_cxx_werror_flag" ||
  5295 +	 test ! -s conftest.err
  5296 +       } && test -s conftest$ac_exeext &&
  5297 +       $as_test_x conftest$ac_exeext; then
  5298    ac_cv_lib_pthread_pthread_create=yes
  5299  else
  5300    echo "$as_me: failed program was:" >&5
  5301 @@ -14789,7 +13029,7 @@
  5302  	ac_cv_lib_pthread_pthread_create=no
  5303  fi
  5305 -rm -f core conftest.err conftest.$ac_objext \
  5306 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5307        conftest$ac_exeext conftest.$ac_ext
  5308  LIBS=$ac_check_lib_save_LIBS
  5309  fi
  5310 @@ -14834,27 +13074,11 @@
  5311    rm -f conftest.er1
  5312    cat conftest.err >&5
  5313    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5314 -  (exit $ac_status); } &&
  5315 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5316 -  { (case "(($ac_try" in
  5317 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5318 -  *) ac_try_echo=$ac_try;;
  5319 -esac
  5320 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5321 -  (eval "$ac_try") 2>&5
  5322 -  ac_status=$?
  5323 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5324 -  (exit $ac_status); }; } &&
  5325 -	 { ac_try='test -s conftest$ac_exeext'
  5326 -  { (case "(($ac_try" in
  5327 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5328 -  *) ac_try_echo=$ac_try;;
  5329 -esac
  5330 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5331 -  (eval "$ac_try") 2>&5
  5332 -  ac_status=$?
  5333 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5334 -  (exit $ac_status); }; }; then
  5335 +  (exit $ac_status); } && {
  5336 +	 test -z "$ac_cxx_werror_flag" ||
  5337 +	 test ! -s conftest.err
  5338 +       } && test -s conftest$ac_exeext &&
  5339 +       $as_test_x conftest$ac_exeext; then
  5341          { echo "$as_me:$LINENO: result: yes" >&5
  5342  echo "${ECHO_T}yes" >&6; }
  5343 @@ -14868,7 +13092,7 @@
  5344  echo "${ECHO_T}no" >&6; }
  5345  fi
  5347 -rm -f core conftest.err conftest.$ac_objext \
  5348 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5349        conftest$ac_exeext conftest.$ac_ext
  5350      LIBS=$kde_safe_libs
  5351    fi
  5352 @@ -14930,27 +13154,11 @@
  5353    rm -f conftest.er1
  5354    cat conftest.err >&5
  5355    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5356 -  (exit $ac_status); } &&
  5357 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5358 -  { (case "(($ac_try" in
  5359 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5360 -  *) ac_try_echo=$ac_try;;
  5361 -esac
  5362 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5363 -  (eval "$ac_try") 2>&5
  5364 -  ac_status=$?
  5365 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5366 -  (exit $ac_status); }; } &&
  5367 -	 { ac_try='test -s conftest$ac_exeext'
  5368 -  { (case "(($ac_try" in
  5369 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5370 -  *) ac_try_echo=$ac_try;;
  5371 -esac
  5372 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5373 -  (eval "$ac_try") 2>&5
  5374 -  ac_status=$?
  5375 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5376 -  (exit $ac_status); }; }; then
  5377 +  (exit $ac_status); } && {
  5378 +	 test -z "$ac_cxx_werror_flag" ||
  5379 +	 test ! -s conftest.err
  5380 +       } && test -s conftest$ac_exeext &&
  5381 +       $as_test_x conftest$ac_exeext; then
  5382    eval "kde_cv_prog_cxx_$kde_cache=yes"
  5383  else
  5384    echo "$as_me: failed program was:" >&5
  5385 @@ -14959,7 +13167,7 @@
  5387  fi
  5389 -rm -f core conftest.err conftest.$ac_objext \
  5390 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5391        conftest$ac_exeext conftest.$ac_ext
  5392    CXXFLAGS="$save_CXXFLAGS"
  5393    ac_ext=cpp
  5394 @@ -15037,27 +13245,11 @@
  5395    rm -f conftest.er1
  5396    cat conftest.err >&5
  5397    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5398 -  (exit $ac_status); } &&
  5399 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5400 -  { (case "(($ac_try" in
  5401 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5402 -  *) ac_try_echo=$ac_try;;
  5403 -esac
  5404 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5405 -  (eval "$ac_try") 2>&5
  5406 -  ac_status=$?
  5407 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5408 -  (exit $ac_status); }; } &&
  5409 -	 { ac_try='test -s conftest$ac_exeext'
  5410 -  { (case "(($ac_try" in
  5411 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5412 -  *) ac_try_echo=$ac_try;;
  5413 -esac
  5414 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5415 -  (eval "$ac_try") 2>&5
  5416 -  ac_status=$?
  5417 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5418 -  (exit $ac_status); }; }; then
  5419 +  (exit $ac_status); } && {
  5420 +	 test -z "$ac_cxx_werror_flag" ||
  5421 +	 test ! -s conftest.err
  5422 +       } && test -s conftest$ac_exeext &&
  5423 +       $as_test_x conftest$ac_exeext; then
  5424    eval "kde_cv_prog_cxx_$kde_cache=yes"
  5425  else
  5426    echo "$as_me: failed program was:" >&5
  5427 @@ -15066,7 +13258,7 @@
  5429  fi
  5431 -rm -f core conftest.err conftest.$ac_objext \
  5432 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5433        conftest$ac_exeext conftest.$ac_ext
  5434    CXXFLAGS="$save_CXXFLAGS"
  5435    ac_ext=cpp
  5436 @@ -15226,27 +13418,11 @@
  5437    rm -f conftest.er1
  5438    cat conftest.err >&5
  5439    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5440 -  (exit $ac_status); } &&
  5441 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5442 -  { (case "(($ac_try" in
  5443 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5444 -  *) ac_try_echo=$ac_try;;
  5445 -esac
  5446 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5447 -  (eval "$ac_try") 2>&5
  5448 -  ac_status=$?
  5449 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5450 -  (exit $ac_status); }; } &&
  5451 -	 { ac_try='test -s conftest$ac_exeext'
  5452 -  { (case "(($ac_try" in
  5453 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5454 -  *) ac_try_echo=$ac_try;;
  5455 -esac
  5456 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5457 -  (eval "$ac_try") 2>&5
  5458 -  ac_status=$?
  5459 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5460 -  (exit $ac_status); }; }; then
  5461 +  (exit $ac_status); } && {
  5462 +	 test -z "$ac_cxx_werror_flag" ||
  5463 +	 test ! -s conftest.err
  5464 +       } && test -s conftest$ac_exeext &&
  5465 +       $as_test_x conftest$ac_exeext; then
  5466    eval "ac_cv_lib_z='-lz'"
  5467  else
  5468    echo "$as_me: failed program was:" >&5
  5469 @@ -15255,7 +13431,7 @@
  5470  	eval "ac_cv_lib_z=no"
  5471  fi
  5473 -rm -f core conftest.err conftest.$ac_objext \
  5474 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5475        conftest$ac_exeext conftest.$ac_ext
  5476  LIBS="$kde_save_LIBS"
  5477  CFLAGS="$kde_save_CFLAGS"
  5478 @@ -15338,27 +13514,11 @@
  5479    rm -f conftest.er1
  5480    cat conftest.err >&5
  5481    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5482 -  (exit $ac_status); } &&
  5483 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5484 -  { (case "(($ac_try" in
  5485 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5486 -  *) ac_try_echo=$ac_try;;
  5487 -esac
  5488 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5489 -  (eval "$ac_try") 2>&5
  5490 -  ac_status=$?
  5491 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5492 -  (exit $ac_status); }; } &&
  5493 -	 { ac_try='test -s conftest$ac_exeext'
  5494 -  { (case "(($ac_try" in
  5495 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5496 -  *) ac_try_echo=$ac_try;;
  5497 -esac
  5498 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5499 -  (eval "$ac_try") 2>&5
  5500 -  ac_status=$?
  5501 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5502 -  (exit $ac_status); }; }; then
  5503 +  (exit $ac_status); } && {
  5504 +	 test -z "$ac_cxx_werror_flag" ||
  5505 +	 test ! -s conftest.err
  5506 +       } && test -s conftest$ac_exeext &&
  5507 +       $as_test_x conftest$ac_exeext; then
  5508    eval "ac_cv_lib_png='-lpng $LIBZ -lm'"
  5509  else
  5510    echo "$as_me: failed program was:" >&5
  5511 @@ -15368,7 +13528,7 @@
  5513  fi
  5515 -rm -f core conftest.err conftest.$ac_objext \
  5516 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5517        conftest$ac_exeext conftest.$ac_ext
  5518  LIBS="$kde_save_LIBS"
  5519  CFLAGS="$kde_save_CFLAGS"
  5520 @@ -15445,27 +13605,11 @@
  5521    rm -f conftest.er1
  5522    cat conftest.err >&5
  5523    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5524 -  (exit $ac_status); } &&
  5525 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5526 -  { (case "(($ac_try" in
  5527 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5528 -  *) ac_try_echo=$ac_try;;
  5529 -esac
  5530 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5531 -  (eval "$ac_try") 2>&5
  5532 -  ac_status=$?
  5533 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5534 -  (exit $ac_status); }; } &&
  5535 -	 { ac_try='test -s conftest$ac_exeext'
  5536 -  { (case "(($ac_try" in
  5537 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5538 -  *) ac_try_echo=$ac_try;;
  5539 -esac
  5540 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5541 -  (eval "$ac_try") 2>&5
  5542 -  ac_status=$?
  5543 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5544 -  (exit $ac_status); }; }; then
  5545 +  (exit $ac_status); } && {
  5546 +	 test -z "$ac_cxx_werror_flag" ||
  5547 +	 test ! -s conftest.err
  5548 +       } && test -s conftest$ac_exeext &&
  5549 +       $as_test_x conftest$ac_exeext; then
  5550    eval "ac_cv_lib_jpeg_6b=-ljpeg6b"
  5551  else
  5552    echo "$as_me: failed program was:" >&5
  5553 @@ -15474,7 +13618,7 @@
  5554  	eval "ac_cv_lib_jpeg_6b=no"
  5555  fi
  5557 -rm -f core conftest.err conftest.$ac_objext \
  5558 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5559        conftest$ac_exeext conftest.$ac_ext
  5560  LIBS="$ac_save_LIBS"
  5561  CFLAGS="$ac_save_CFLAGS"
  5562 @@ -15542,27 +13686,11 @@
  5563    rm -f conftest.er1
  5564    cat conftest.err >&5
  5565    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5566 -  (exit $ac_status); } &&
  5567 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5568 -  { (case "(($ac_try" in
  5569 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5570 -  *) ac_try_echo=$ac_try;;
  5571 -esac
  5572 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5573 -  (eval "$ac_try") 2>&5
  5574 -  ac_status=$?
  5575 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5576 -  (exit $ac_status); }; } &&
  5577 -	 { ac_try='test -s conftest$ac_exeext'
  5578 -  { (case "(($ac_try" in
  5579 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5580 -  *) ac_try_echo=$ac_try;;
  5581 -esac
  5582 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5583 -  (eval "$ac_try") 2>&5
  5584 -  ac_status=$?
  5585 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5586 -  (exit $ac_status); }; }; then
  5587 +  (exit $ac_status); } && {
  5588 +	 test -z "$ac_cxx_werror_flag" ||
  5589 +	 test ! -s conftest.err
  5590 +       } && test -s conftest$ac_exeext &&
  5591 +       $as_test_x conftest$ac_exeext; then
  5592    eval "ac_cv_lib_jpeg_normal=-ljpeg"
  5593  else
  5594    echo "$as_me: failed program was:" >&5
  5595 @@ -15571,7 +13699,7 @@
  5596  	eval "ac_cv_lib_jpeg_normal=no"
  5597  fi
  5599 -rm -f core conftest.err conftest.$ac_objext \
  5600 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5601        conftest$ac_exeext conftest.$ac_ext
  5602  LIBS="$ac_save_LIBS"
  5603  CFLAGS="$ac_save_CFLAGS"
  5604 @@ -15605,7 +13733,7 @@
  5605  do
  5606    for j in jpeglib.h;
  5607    do
  5608 -    echo "configure: 15608: $i/$j" >&5
  5609 +    echo "configure: 13736: $i/$j" >&5
  5610      if test -r "$i/$j"; then
  5611        echo "taking that" >&5
  5612        jpeg_incdir=$i
  5613 @@ -15913,7 +14041,7 @@
  5614  do
  5615    for j in $kde_qt_header;
  5616    do
  5617 -    echo "configure: 15916: $i/$j" >&5
  5618 +    echo "configure: 14044: $i/$j" >&5
  5619      if test -r "$i/$j"; then
  5620        echo "taking that" >&5
  5621        qt_incdir=$i
  5622 @@ -16591,27 +14719,11 @@
  5623    rm -f conftest.er1
  5624    cat conftest.err >&5
  5625    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5626 -  (exit $ac_status); } &&
  5627 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5628 -  { (case "(($ac_try" in
  5629 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5630 -  *) ac_try_echo=$ac_try;;
  5631 -esac
  5632 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5633 -  (eval "$ac_try") 2>&5
  5634 -  ac_status=$?
  5635 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5636 -  (exit $ac_status); }; } &&
  5637 -	 { ac_try='test -s conftest$ac_exeext'
  5638 -  { (case "(($ac_try" in
  5639 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5640 -  *) ac_try_echo=$ac_try;;
  5641 -esac
  5642 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5643 -  (eval "$ac_try") 2>&5
  5644 -  ac_status=$?
  5645 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5646 -  (exit $ac_status); }; }; then
  5647 +  (exit $ac_status); } && {
  5648 +	 test -z "$ac_cxx_werror_flag" ||
  5649 +	 test ! -s conftest.err
  5650 +       } && test -s conftest$ac_exeext &&
  5651 +       $as_test_x conftest$ac_exeext; then
  5652    eval "kde_cv_qt_jpeg=no"
  5653  else
  5654    echo "$as_me: failed program was:" >&5
  5655 @@ -16620,7 +14732,7 @@
  5656  	eval "kde_cv_qt_jpeg=yes"
  5657  fi
  5659 -rm -f core conftest.err conftest.$ac_objext \
  5660 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5661        conftest$ac_exeext conftest.$ac_ext
  5662  LIBS="$ac_save_LIBS"
  5663  CXXFLAGS="$ac_save_CXXFLAGS"
  5664 @@ -16684,7 +14796,7 @@
  5665    IFS=$as_save_IFS
  5666    test -z "$as_dir" && as_dir=.
  5667    for ac_exec_ext in '' $ac_executable_extensions; do
  5668 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
  5669 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  5670      ac_cv_prog_have_lrelease="yes"
  5671      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  5672      break 2
  5673 @@ -16760,7 +14872,7 @@
  5674    IFS=$as_save_IFS
  5675    test -z "$as_dir" && as_dir=.
  5676    for ac_exec_ext in '' $ac_executable_extensions; do
  5677 -  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then
  5678 +  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  5679      ac_cv_prog_have_kde="yes"
  5680      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  5681      break 2
  5682 @@ -17063,27 +15175,10 @@
  5683    rm -f conftest.er1
  5684    cat conftest.err >&5
  5685    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5686 -  (exit $ac_status); } &&
  5687 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5688 -  { (case "(($ac_try" in
  5689 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5690 -  *) ac_try_echo=$ac_try;;
  5691 -esac
  5692 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5693 -  (eval "$ac_try") 2>&5
  5694 -  ac_status=$?
  5695 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5696 -  (exit $ac_status); }; } &&
  5697 -	 { ac_try='test -s conftest.$ac_objext'
  5698 -  { (case "(($ac_try" in
  5699 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5700 -  *) ac_try_echo=$ac_try;;
  5701 -esac
  5702 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5703 -  (eval "$ac_try") 2>&5
  5704 -  ac_status=$?
  5705 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5706 -  (exit $ac_status); }; }; then
  5707 +  (exit $ac_status); } && {
  5708 +	 test -z "$ac_cxx_werror_flag" ||
  5709 +	 test ! -s conftest.err
  5710 +       } && test -s conftest.$ac_objext; then
  5711    kde_cv_stl_works=yes
  5712  else
  5713    echo "$as_me: failed program was:" >&5
  5714 @@ -17219,7 +15314,7 @@
  5715  do
  5716    for j in $kde_check_header;
  5717    do
  5718 -    echo "configure: 17222: $i/$j" >&5
  5719 +    echo "configure: 15317: $i/$j" >&5
  5720      if test -r "$i/$j"; then
  5721        echo "taking that" >&5
  5722        kde_incdir=$i
  5723 @@ -17249,7 +15344,7 @@
  5724  do
  5725    for j in $kde_check_lib;
  5726    do
  5727 -    echo "configure: 17252: $i/$j" >&5
  5728 +    echo "configure: 15347: $i/$j" >&5
  5729      if test -r "$i/$j"; then
  5730        echo "taking that" >&5
  5731        kde_libdir=$i
  5732 @@ -17267,7 +15362,7 @@
  5733  do
  5734    for j in "kde3/plugins/designer/kdewidgets.la";
  5735    do
  5736 -    echo "configure: 17270: $i/$j" >&5
  5737 +    echo "configure: 15365: $i/$j" >&5
  5738      if test -r "$i/$j"; then
  5739        echo "taking that" >&5
  5740        kde_widgetdir=$i
  5741 @@ -18767,7 +16862,7 @@
  5742  do
  5743    for j in apps/ksgmltools2/customization/kde-chunk.xsl;
  5744    do
  5745 -    echo "configure: 18770: $i/$j" >&5
  5746 +    echo "configure: 16865: $i/$j" >&5
  5747      if test -r "$i/$j"; then
  5748        echo "taking that" >&5
  5749        KDE_XSL_STYLESHEET=$i
  5750 @@ -18999,27 +17094,11 @@
  5751    rm -f conftest.er1
  5752    cat conftest.err >&5
  5753    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5754 -  (exit $ac_status); } &&
  5755 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5756 -  { (case "(($ac_try" in
  5757 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5758 -  *) ac_try_echo=$ac_try;;
  5759 -esac
  5760 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5761 -  (eval "$ac_try") 2>&5
  5762 -  ac_status=$?
  5763 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5764 -  (exit $ac_status); }; } &&
  5765 -	 { ac_try='test -s conftest$ac_exeext'
  5766 -  { (case "(($ac_try" in
  5767 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5768 -  *) ac_try_echo=$ac_try;;
  5769 -esac
  5770 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5771 -  (eval "$ac_try") 2>&5
  5772 -  ac_status=$?
  5773 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5774 -  (exit $ac_status); }; }; then
  5775 +  (exit $ac_status); } && {
  5776 +	 test -z "$ac_cxx_werror_flag" ||
  5777 +	 test ! -s conftest.err
  5778 +       } && test -s conftest$ac_exeext &&
  5779 +       $as_test_x conftest$ac_exeext; then
  5780    ac_cv_lib_bind_main=yes
  5781  else
  5782    echo "$as_me: failed program was:" >&5
  5783 @@ -19028,7 +17107,7 @@
  5784  	ac_cv_lib_bind_main=no
  5785  fi
  5787 -rm -f core conftest.err conftest.$ac_objext \
  5788 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5789        conftest$ac_exeext conftest.$ac_ext
  5790  LIBS=$ac_check_lib_save_LIBS
  5791  fi
  5792 @@ -19080,27 +17159,10 @@
  5793    rm -f conftest.er1
  5794    cat conftest.err >&5
  5795    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5796 -  (exit $ac_status); } &&
  5797 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5798 -  { (case "(($ac_try" in
  5799 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5800 -  *) ac_try_echo=$ac_try;;
  5801 -esac
  5802 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5803 -  (eval "$ac_try") 2>&5
  5804 -  ac_status=$?
  5805 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5806 -  (exit $ac_status); }; } &&
  5807 -	 { ac_try='test -s conftest.$ac_objext'
  5808 -  { (case "(($ac_try" in
  5809 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5810 -  *) ac_try_echo=$ac_try;;
  5811 -esac
  5812 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5813 -  (eval "$ac_try") 2>&5
  5814 -  ac_status=$?
  5815 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5816 -  (exit $ac_status); }; }; then
  5817 +  (exit $ac_status); } && {
  5818 +	 test -z "$ac_cxx_werror_flag" ||
  5819 +	 test ! -s conftest.err
  5820 +       } && test -s conftest.$ac_objext; then
  5821    ac_header_compiler=yes
  5822  else
  5823    echo "$as_me: failed program was:" >&5
  5824 @@ -19136,17 +17198,10 @@
  5825    rm -f conftest.er1
  5826    cat conftest.err >&5
  5827    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5828 -  (exit $ac_status); } >/dev/null; then
  5829 -  if test -s conftest.err; then
  5830 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  5831 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  5832 -  else
  5833 -    ac_cpp_err=
  5834 -  fi
  5835 -else
  5836 -  ac_cpp_err=yes
  5837 -fi
  5838 -if test -z "$ac_cpp_err"; then
  5839 +  (exit $ac_status); } >/dev/null && {
  5840 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  5841 +	 test ! -s conftest.err
  5842 +       }; then
  5843    ac_header_preproc=yes
  5844  else
  5845    echo "$as_me: failed program was:" >&5
  5846 @@ -19247,27 +17302,11 @@
  5847    rm -f conftest.er1
  5848    cat conftest.err >&5
  5849    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5850 -  (exit $ac_status); } &&
  5851 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5852 -  { (case "(($ac_try" in
  5853 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5854 -  *) ac_try_echo=$ac_try;;
  5855 -esac
  5856 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5857 -  (eval "$ac_try") 2>&5
  5858 -  ac_status=$?
  5859 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5860 -  (exit $ac_status); }; } &&
  5861 -	 { ac_try='test -s conftest$ac_exeext'
  5862 -  { (case "(($ac_try" in
  5863 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5864 -  *) ac_try_echo=$ac_try;;
  5865 -esac
  5866 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5867 -  (eval "$ac_try") 2>&5
  5868 -  ac_status=$?
  5869 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5870 -  (exit $ac_status); }; }; then
  5871 +  (exit $ac_status); } && {
  5872 +	 test -z "$ac_cxx_werror_flag" ||
  5873 +	 test ! -s conftest.err
  5874 +       } && test -s conftest$ac_exeext &&
  5875 +       $as_test_x conftest$ac_exeext; then
  5876    ac_cv_lib_sndfile_sf_open=yes
  5877  else
  5878    echo "$as_me: failed program was:" >&5
  5879 @@ -19276,7 +17315,7 @@
  5880  	ac_cv_lib_sndfile_sf_open=no
  5881  fi
  5883 -rm -f core conftest.err conftest.$ac_objext \
  5884 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5885        conftest$ac_exeext conftest.$ac_ext
  5886  LIBS=$ac_check_lib_save_LIBS
  5887  fi
  5888 @@ -19549,30 +17588,13 @@
  5890  # This check does not work on all platforms
  5891  # Check if libgsm is available
  5892 -# AC_CHECK_LIB(gsm, sf_open, [
  5893 -#	AC_CHECK_HEADER(gsm.h, [],
  5894 -#		[AC_MSG_ERROR([gsm header files missing (gsm.h)])])
  5895 -#	AC_DEFINE(HAVE_GSM, 1, [Define to 1 if you have the <libgsm> library.])
  5896 -#	GSM_LIBS="-lgsm"
  5897 -#	echo "LIBS += -lgsm" >> $QT_INCL_PRO
  5898 -#	have_gsm="yes" ], [
  5899 -#	have_gsm="no"
  5900 -#	GSM_LIBS="\$(top_builddir)/src/audio/gsm/libgsm.a"
  5901 -#	echo "LIBS += ../audio/gsm/libgsm.a" >> $QT_INCL_PRO ])
  5902 -have_gsm="no"
  5903 -GSM_LIBS="\$(top_builddir)/src/audio/gsm/libgsm.a"
  5904 -echo "LIBS += ../audio/gsm/libgsm.a" >> $QT_INCL_PRO
  5908 -# Check if ALSA is available
  5909 -{ echo "$as_me:$LINENO: checking for main in -lasound" >&5
  5910 -echo $ECHO_N "checking for main in -lasound... $ECHO_C" >&6; }
  5911 -if test "${ac_cv_lib_asound_main+set}" = set; then
  5912 +{ echo "$as_me:$LINENO: checking for sf_open in -lgsm" >&5
  5913 +echo $ECHO_N "checking for sf_open in -lgsm... $ECHO_C" >&6; }
  5914 +if test "${ac_cv_lib_gsm_sf_open+set}" = set; then
  5915    echo $ECHO_N "(cached) $ECHO_C" >&6
  5916  else
  5917    ac_check_lib_save_LIBS=$LIBS
  5918 -LIBS="-lasound  $LIBS"
  5919 +LIBS="-lgsm  $LIBS"
  5920  cat >conftest.$ac_ext <<_ACEOF
  5921  /* confdefs.h.  */
  5922  _ACEOF
  5923 @@ -19580,11 +17602,17 @@
  5924  cat >>conftest.$ac_ext <<_ACEOF
  5925  /* end confdefs.h.  */
  5928 +/* Override any GCC internal prototype to avoid an error.
  5929 +   Use char because int might match the return type of a GCC
  5930 +   builtin and then its argument prototype would still apply.  */
  5931 +#ifdef __cplusplus
  5932 +extern "C"
  5933 +#endif
  5934 +char sf_open ();
  5935  int
  5936  main ()
  5938 -return main ();
  5939 +return sf_open ();
  5941    return 0;
  5943 @@ -19602,55 +17630,39 @@
  5944    rm -f conftest.er1
  5945    cat conftest.err >&5
  5946    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5947 -  (exit $ac_status); } &&
  5948 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  5949 -  { (case "(($ac_try" in
  5950 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5951 -  *) ac_try_echo=$ac_try;;
  5952 -esac
  5953 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5954 -  (eval "$ac_try") 2>&5
  5955 -  ac_status=$?
  5956 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5957 -  (exit $ac_status); }; } &&
  5958 -	 { ac_try='test -s conftest$ac_exeext'
  5959 -  { (case "(($ac_try" in
  5960 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  5961 -  *) ac_try_echo=$ac_try;;
  5962 -esac
  5963 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  5964 -  (eval "$ac_try") 2>&5
  5965 -  ac_status=$?
  5966 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  5967 -  (exit $ac_status); }; }; then
  5968 -  ac_cv_lib_asound_main=yes
  5969 +  (exit $ac_status); } && {
  5970 +	 test -z "$ac_cxx_werror_flag" ||
  5971 +	 test ! -s conftest.err
  5972 +       } && test -s conftest$ac_exeext &&
  5973 +       $as_test_x conftest$ac_exeext; then
  5974 +  ac_cv_lib_gsm_sf_open=yes
  5975  else
  5976    echo "$as_me: failed program was:" >&5
  5977  sed 's/^/| /' conftest.$ac_ext >&5
  5979 -	ac_cv_lib_asound_main=no
  5980 +	ac_cv_lib_gsm_sf_open=no
  5981  fi
  5983 -rm -f core conftest.err conftest.$ac_objext \
  5984 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  5985        conftest$ac_exeext conftest.$ac_ext
  5986  LIBS=$ac_check_lib_save_LIBS
  5987  fi
  5988 -{ echo "$as_me:$LINENO: result: $ac_cv_lib_asound_main" >&5
  5989 -echo "${ECHO_T}$ac_cv_lib_asound_main" >&6; }
  5990 -if test $ac_cv_lib_asound_main = yes; then
  5992 -	if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then
  5993 -  { echo "$as_me:$LINENO: checking for alsa/asoundlib.h" >&5
  5994 -echo $ECHO_N "checking for alsa/asoundlib.h... $ECHO_C" >&6; }
  5995 -if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then
  5996 +{ echo "$as_me:$LINENO: result: $ac_cv_lib_gsm_sf_open" >&5
  5997 +echo "${ECHO_T}$ac_cv_lib_gsm_sf_open" >&6; }
  5998 +if test $ac_cv_lib_gsm_sf_open = yes; then
  6000 +	if test "${ac_cv_header_gsm_h+set}" = set; then
  6001 +  { echo "$as_me:$LINENO: checking for gsm.h" >&5
  6002 +echo $ECHO_N "checking for gsm.h... $ECHO_C" >&6; }
  6003 +if test "${ac_cv_header_gsm_h+set}" = set; then
  6004    echo $ECHO_N "(cached) $ECHO_C" >&6
  6005  fi
  6006 -{ echo "$as_me:$LINENO: result: $ac_cv_header_alsa_asoundlib_h" >&5
  6007 -echo "${ECHO_T}$ac_cv_header_alsa_asoundlib_h" >&6; }
  6008 +{ echo "$as_me:$LINENO: result: $ac_cv_header_gsm_h" >&5
  6009 +echo "${ECHO_T}$ac_cv_header_gsm_h" >&6; }
  6010  else
  6011    # Is the header compilable?
  6012 -{ echo "$as_me:$LINENO: checking alsa/asoundlib.h usability" >&5
  6013 -echo $ECHO_N "checking alsa/asoundlib.h usability... $ECHO_C" >&6; }
  6014 +{ echo "$as_me:$LINENO: checking gsm.h usability" >&5
  6015 +echo $ECHO_N "checking gsm.h usability... $ECHO_C" >&6; }
  6016  cat >conftest.$ac_ext <<_ACEOF
  6017  /* confdefs.h.  */
  6018  _ACEOF
  6019 @@ -19658,7 +17670,7 @@
  6020  cat >>conftest.$ac_ext <<_ACEOF
  6021  /* end confdefs.h.  */
  6022  $ac_includes_default
  6023 -#include <alsa/asoundlib.h>
  6024 +#include <gsm.h>
  6025  _ACEOF
  6026  rm -f conftest.$ac_objext
  6027  if { (ac_try="$ac_compile"
  6028 @@ -19673,27 +17685,436 @@
  6029    rm -f conftest.er1
  6030    cat conftest.err >&5
  6031    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6032 -  (exit $ac_status); } &&
  6033 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  6034 -  { (case "(($ac_try" in
  6035 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6036 -  *) ac_try_echo=$ac_try;;
  6037 -esac
  6038 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6039 -  (eval "$ac_try") 2>&5
  6040 -  ac_status=$?
  6041 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6042 -  (exit $ac_status); }; } &&
  6043 -	 { ac_try='test -s conftest.$ac_objext'
  6044 -  { (case "(($ac_try" in
  6045 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6046 +  (exit $ac_status); } && {
  6047 +	 test -z "$ac_cxx_werror_flag" ||
  6048 +	 test ! -s conftest.err
  6049 +       } && test -s conftest.$ac_objext; then
  6050 +  ac_header_compiler=yes
  6051 +else
  6052 +  echo "$as_me: failed program was:" >&5
  6053 +sed 's/^/| /' conftest.$ac_ext >&5
  6055 +	ac_header_compiler=no
  6056 +fi
  6058 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  6059 +{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  6060 +echo "${ECHO_T}$ac_header_compiler" >&6; }
  6062 +# Is the header present?
  6063 +{ echo "$as_me:$LINENO: checking gsm.h presence" >&5
  6064 +echo $ECHO_N "checking gsm.h presence... $ECHO_C" >&6; }
  6065 +cat >conftest.$ac_ext <<_ACEOF
  6066 +/* confdefs.h.  */
  6067 +_ACEOF
  6068 +cat confdefs.h >>conftest.$ac_ext
  6069 +cat >>conftest.$ac_ext <<_ACEOF
  6070 +/* end confdefs.h.  */
  6071 +#include <gsm.h>
  6072 +_ACEOF
  6073 +if { (ac_try="$ac_cpp conftest.$ac_ext"
  6074 +case "(($ac_try" in
  6075 +  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6076    *) ac_try_echo=$ac_try;;
  6077  esac
  6078  eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6079 -  (eval "$ac_try") 2>&5
  6080 +  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
  6081    ac_status=$?
  6082 +  grep -v '^ *+' conftest.er1 >conftest.err
  6083 +  rm -f conftest.er1
  6084 +  cat conftest.err >&5
  6085    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6086 -  (exit $ac_status); }; }; then
  6087 +  (exit $ac_status); } >/dev/null && {
  6088 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  6089 +	 test ! -s conftest.err
  6090 +       }; then
  6091 +  ac_header_preproc=yes
  6092 +else
  6093 +  echo "$as_me: failed program was:" >&5
  6094 +sed 's/^/| /' conftest.$ac_ext >&5
  6096 +  ac_header_preproc=no
  6097 +fi
  6099 +rm -f conftest.err conftest.$ac_ext
  6100 +{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  6101 +echo "${ECHO_T}$ac_header_preproc" >&6; }
  6103 +# So?  What about this header?
  6104 +case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in
  6105 +  yes:no: )
  6106 +    { echo "$as_me:$LINENO: WARNING: gsm.h: accepted by the compiler, rejected by the preprocessor!" >&5
  6107 +echo "$as_me: WARNING: gsm.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  6108 +    { echo "$as_me:$LINENO: WARNING: gsm.h: proceeding with the compiler's result" >&5
  6109 +echo "$as_me: WARNING: gsm.h: proceeding with the compiler's result" >&2;}
  6110 +    ac_header_preproc=yes
  6111 +    ;;
  6112 +  no:yes:* )
  6113 +    { echo "$as_me:$LINENO: WARNING: gsm.h: present but cannot be compiled" >&5
  6114 +echo "$as_me: WARNING: gsm.h: present but cannot be compiled" >&2;}
  6115 +    { echo "$as_me:$LINENO: WARNING: gsm.h:     check for missing prerequisite headers?" >&5
  6116 +echo "$as_me: WARNING: gsm.h:     check for missing prerequisite headers?" >&2;}
  6117 +    { echo "$as_me:$LINENO: WARNING: gsm.h: see the Autoconf documentation" >&5
  6118 +echo "$as_me: WARNING: gsm.h: see the Autoconf documentation" >&2;}
  6119 +    { echo "$as_me:$LINENO: WARNING: gsm.h:     section \"Present But Cannot Be Compiled\"" >&5
  6120 +echo "$as_me: WARNING: gsm.h:     section \"Present But Cannot Be Compiled\"" >&2;}
  6121 +    { echo "$as_me:$LINENO: WARNING: gsm.h: proceeding with the preprocessor's result" >&5
  6122 +echo "$as_me: WARNING: gsm.h: proceeding with the preprocessor's result" >&2;}
  6123 +    { echo "$as_me:$LINENO: WARNING: gsm.h: in the future, the compiler will take precedence" >&5
  6124 +echo "$as_me: WARNING: gsm.h: in the future, the compiler will take precedence" >&2;}
  6126 +    ;;
  6127 +esac
  6128 +{ echo "$as_me:$LINENO: checking for gsm.h" >&5
  6129 +echo $ECHO_N "checking for gsm.h... $ECHO_C" >&6; }
  6130 +if test "${ac_cv_header_gsm_h+set}" = set; then
  6131 +  echo $ECHO_N "(cached) $ECHO_C" >&6
  6132 +else
  6133 +  ac_cv_header_gsm_h=$ac_header_preproc
  6134 +fi
  6135 +{ echo "$as_me:$LINENO: result: $ac_cv_header_gsm_h" >&5
  6136 +echo "${ECHO_T}$ac_cv_header_gsm_h" >&6; }
  6138 +fi
  6139 +if test $ac_cv_header_gsm_h = yes; then
  6140 +  :
  6141 +else
  6142 +  { { echo "$as_me:$LINENO: error: gsm header files missing (gsm.h)" >&5
  6143 +echo "$as_me: error: gsm header files missing (gsm.h)" >&2;}
  6144 +   { (exit 1); exit 1; }; }
  6145 +fi
  6149 +cat >>confdefs.h <<\_ACEOF
  6150 +#define HAVE_GSM 1
  6151 +_ACEOF
  6153 +	GSM_LIBS="-lgsm"
  6154 +	echo "LIBS += -lgsm" >> $QT_INCL_PRO
  6155 +	have_gsm="yes"
  6156 +else
  6158 +	have_gsm="no"
  6159 +	GSM_LIBS="\$(top_builddir)/src/audio/gsm/libgsm.a"
  6160 +	echo "LIBS += ../audio/gsm/libgsm.a" >> $QT_INCL_PRO
  6161 +fi
  6163 +#have_gsm="no"
  6164 +#GSM_LIBS="\$(top_builddir)/src/audio/gsm/libgsm.a"
  6165 +#echo "LIBS += ../audio/gsm/libgsm.a" >> $QT_INCL_PRO
  6169 +# Check if libgsm is available
  6170 +{ echo "$as_me:$LINENO: checking for sf_open in -lgsm" >&5
  6171 +echo $ECHO_N "checking for sf_open in -lgsm... $ECHO_C" >&6; }
  6172 +if test "${ac_cv_lib_gsm_sf_open+set}" = set; then
  6173 +  echo $ECHO_N "(cached) $ECHO_C" >&6
  6174 +else
  6175 +  ac_check_lib_save_LIBS=$LIBS
  6176 +LIBS="-lgsm  $LIBS"
  6177 +cat >conftest.$ac_ext <<_ACEOF
  6178 +/* confdefs.h.  */
  6179 +_ACEOF
  6180 +cat confdefs.h >>conftest.$ac_ext
  6181 +cat >>conftest.$ac_ext <<_ACEOF
  6182 +/* end confdefs.h.  */
  6184 +/* Override any GCC internal prototype to avoid an error.
  6185 +   Use char because int might match the return type of a GCC
  6186 +   builtin and then its argument prototype would still apply.  */
  6187 +#ifdef __cplusplus
  6188 +extern "C"
  6189 +#endif
  6190 +char sf_open ();
  6191 +int
  6192 +main ()
  6193 +{
  6194 +return sf_open ();
  6195 +  ;
  6196 +  return 0;
  6197 +}
  6198 +_ACEOF
  6199 +rm -f conftest.$ac_objext conftest$ac_exeext
  6200 +if { (ac_try="$ac_link"
  6201 +case "(($ac_try" in
  6202 +  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6203 +  *) ac_try_echo=$ac_try;;
  6204 +esac
  6205 +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6206 +  (eval "$ac_link") 2>conftest.er1
  6207 +  ac_status=$?
  6208 +  grep -v '^ *+' conftest.er1 >conftest.err
  6209 +  rm -f conftest.er1
  6210 +  cat conftest.err >&5
  6211 +  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6212 +  (exit $ac_status); } && {
  6213 +	 test -z "$ac_cxx_werror_flag" ||
  6214 +	 test ! -s conftest.err
  6215 +       } && test -s conftest$ac_exeext &&
  6216 +       $as_test_x conftest$ac_exeext; then
  6217 +  ac_cv_lib_gsm_sf_open=yes
  6218 +else
  6219 +  echo "$as_me: failed program was:" >&5
  6220 +sed 's/^/| /' conftest.$ac_ext >&5
  6222 +	ac_cv_lib_gsm_sf_open=no
  6223 +fi
  6225 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  6226 +      conftest$ac_exeext conftest.$ac_ext
  6227 +LIBS=$ac_check_lib_save_LIBS
  6228 +fi
  6229 +{ echo "$as_me:$LINENO: result: $ac_cv_lib_gsm_sf_open" >&5
  6230 +echo "${ECHO_T}$ac_cv_lib_gsm_sf_open" >&6; }
  6231 +if test $ac_cv_lib_gsm_sf_open = yes; then
  6233 +	if test "${ac_cv_header_gsm_h+set}" = set; then
  6234 +  { echo "$as_me:$LINENO: checking for gsm.h" >&5
  6235 +echo $ECHO_N "checking for gsm.h... $ECHO_C" >&6; }
  6236 +if test "${ac_cv_header_gsm_h+set}" = set; then
  6237 +  echo $ECHO_N "(cached) $ECHO_C" >&6
  6238 +fi
  6239 +{ echo "$as_me:$LINENO: result: $ac_cv_header_gsm_h" >&5
  6240 +echo "${ECHO_T}$ac_cv_header_gsm_h" >&6; }
  6241 +else
  6242 +  # Is the header compilable?
  6243 +{ echo "$as_me:$LINENO: checking gsm.h usability" >&5
  6244 +echo $ECHO_N "checking gsm.h usability... $ECHO_C" >&6; }
  6245 +cat >conftest.$ac_ext <<_ACEOF
  6246 +/* confdefs.h.  */
  6247 +_ACEOF
  6248 +cat confdefs.h >>conftest.$ac_ext
  6249 +cat >>conftest.$ac_ext <<_ACEOF
  6250 +/* end confdefs.h.  */
  6251 +$ac_includes_default
  6252 +#include <gsm.h>
  6253 +_ACEOF
  6254 +rm -f conftest.$ac_objext
  6255 +if { (ac_try="$ac_compile"
  6256 +case "(($ac_try" in
  6257 +  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6258 +  *) ac_try_echo=$ac_try;;
  6259 +esac
  6260 +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6261 +  (eval "$ac_compile") 2>conftest.er1
  6262 +  ac_status=$?
  6263 +  grep -v '^ *+' conftest.er1 >conftest.err
  6264 +  rm -f conftest.er1
  6265 +  cat conftest.err >&5
  6266 +  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6267 +  (exit $ac_status); } && {
  6268 +	 test -z "$ac_cxx_werror_flag" ||
  6269 +	 test ! -s conftest.err
  6270 +       } && test -s conftest.$ac_objext; then
  6271 +  ac_header_compiler=yes
  6272 +else
  6273 +  echo "$as_me: failed program was:" >&5
  6274 +sed 's/^/| /' conftest.$ac_ext >&5
  6276 +	ac_header_compiler=no
  6277 +fi
  6279 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  6280 +{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  6281 +echo "${ECHO_T}$ac_header_compiler" >&6; }
  6283 +# Is the header present?
  6284 +{ echo "$as_me:$LINENO: checking gsm.h presence" >&5
  6285 +echo $ECHO_N "checking gsm.h presence... $ECHO_C" >&6; }
  6286 +cat >conftest.$ac_ext <<_ACEOF
  6287 +/* confdefs.h.  */
  6288 +_ACEOF
  6289 +cat confdefs.h >>conftest.$ac_ext
  6290 +cat >>conftest.$ac_ext <<_ACEOF
  6291 +/* end confdefs.h.  */
  6292 +#include <gsm.h>
  6293 +_ACEOF
  6294 +if { (ac_try="$ac_cpp conftest.$ac_ext"
  6295 +case "(($ac_try" in
  6296 +  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6297 +  *) ac_try_echo=$ac_try;;
  6298 +esac
  6299 +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6300 +  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
  6301 +  ac_status=$?
  6302 +  grep -v '^ *+' conftest.er1 >conftest.err
  6303 +  rm -f conftest.er1
  6304 +  cat conftest.err >&5
  6305 +  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6306 +  (exit $ac_status); } >/dev/null && {
  6307 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  6308 +	 test ! -s conftest.err
  6309 +       }; then
  6310 +  ac_header_preproc=yes
  6311 +else
  6312 +  echo "$as_me: failed program was:" >&5
  6313 +sed 's/^/| /' conftest.$ac_ext >&5
  6315 +  ac_header_preproc=no
  6316 +fi
  6318 +rm -f conftest.err conftest.$ac_ext
  6319 +{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  6320 +echo "${ECHO_T}$ac_header_preproc" >&6; }
  6322 +# So?  What about this header?
  6323 +case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in
  6324 +  yes:no: )
  6325 +    { echo "$as_me:$LINENO: WARNING: gsm.h: accepted by the compiler, rejected by the preprocessor!" >&5
  6326 +echo "$as_me: WARNING: gsm.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  6327 +    { echo "$as_me:$LINENO: WARNING: gsm.h: proceeding with the compiler's result" >&5
  6328 +echo "$as_me: WARNING: gsm.h: proceeding with the compiler's result" >&2;}
  6329 +    ac_header_preproc=yes
  6330 +    ;;
  6331 +  no:yes:* )
  6332 +    { echo "$as_me:$LINENO: WARNING: gsm.h: present but cannot be compiled" >&5
  6333 +echo "$as_me: WARNING: gsm.h: present but cannot be compiled" >&2;}
  6334 +    { echo "$as_me:$LINENO: WARNING: gsm.h:     check for missing prerequisite headers?" >&5
  6335 +echo "$as_me: WARNING: gsm.h:     check for missing prerequisite headers?" >&2;}
  6336 +    { echo "$as_me:$LINENO: WARNING: gsm.h: see the Autoconf documentation" >&5
  6337 +echo "$as_me: WARNING: gsm.h: see the Autoconf documentation" >&2;}
  6338 +    { echo "$as_me:$LINENO: WARNING: gsm.h:     section \"Present But Cannot Be Compiled\"" >&5
  6339 +echo "$as_me: WARNING: gsm.h:     section \"Present But Cannot Be Compiled\"" >&2;}
  6340 +    { echo "$as_me:$LINENO: WARNING: gsm.h: proceeding with the preprocessor's result" >&5
  6341 +echo "$as_me: WARNING: gsm.h: proceeding with the preprocessor's result" >&2;}
  6342 +    { echo "$as_me:$LINENO: WARNING: gsm.h: in the future, the compiler will take precedence" >&5
  6343 +echo "$as_me: WARNING: gsm.h: in the future, the compiler will take precedence" >&2;}
  6345 +    ;;
  6346 +esac
  6347 +{ echo "$as_me:$LINENO: checking for gsm.h" >&5
  6348 +echo $ECHO_N "checking for gsm.h... $ECHO_C" >&6; }
  6349 +if test "${ac_cv_header_gsm_h+set}" = set; then
  6350 +  echo $ECHO_N "(cached) $ECHO_C" >&6
  6351 +else
  6352 +  ac_cv_header_gsm_h=$ac_header_preproc
  6353 +fi
  6354 +{ echo "$as_me:$LINENO: result: $ac_cv_header_gsm_h" >&5
  6355 +echo "${ECHO_T}$ac_cv_header_gsm_h" >&6; }
  6357 +fi
  6358 +if test $ac_cv_header_gsm_h = yes; then
  6359 +  :
  6360 +else
  6361 +  { { echo "$as_me:$LINENO: error: gsm header files missing (gsm.h)" >&5
  6362 +echo "$as_me: error: gsm header files missing (gsm.h)" >&2;}
  6363 +   { (exit 1); exit 1; }; }
  6364 +fi
  6368 +cat >>confdefs.h <<\_ACEOF
  6369 +#define HAVE_GSM 1
  6370 +_ACEOF
  6372 +	LIBS="-lgsm $LIBS"
  6373 +	echo "LIBS += -lgsm" >> $QT_INCL_PRO
  6374 +	have_gsm="yes"
  6375 +else
  6377 +	have_gsm="no"
  6378 +	echo "$(top_builddir)/src/audio/gsm/libgsm.a" >> $QT_INCL_PRO
  6379 +fi
  6382 +# Check if ALSA is available
  6383 +{ echo "$as_me:$LINENO: checking for main in -lasound" >&5
  6384 +echo $ECHO_N "checking for main in -lasound... $ECHO_C" >&6; }
  6385 +if test "${ac_cv_lib_asound_main+set}" = set; then
  6386 +  echo $ECHO_N "(cached) $ECHO_C" >&6
  6387 +else
  6388 +  ac_check_lib_save_LIBS=$LIBS
  6389 +LIBS="-lasound  $LIBS"
  6390 +cat >conftest.$ac_ext <<_ACEOF
  6391 +/* confdefs.h.  */
  6392 +_ACEOF
  6393 +cat confdefs.h >>conftest.$ac_ext
  6394 +cat >>conftest.$ac_ext <<_ACEOF
  6395 +/* end confdefs.h.  */
  6398 +int
  6399 +main ()
  6400 +{
  6401 +return main ();
  6402 +  ;
  6403 +  return 0;
  6404 +}
  6405 +_ACEOF
  6406 +rm -f conftest.$ac_objext conftest$ac_exeext
  6407 +if { (ac_try="$ac_link"
  6408 +case "(($ac_try" in
  6409 +  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6410 +  *) ac_try_echo=$ac_try;;
  6411 +esac
  6412 +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6413 +  (eval "$ac_link") 2>conftest.er1
  6414 +  ac_status=$?
  6415 +  grep -v '^ *+' conftest.er1 >conftest.err
  6416 +  rm -f conftest.er1
  6417 +  cat conftest.err >&5
  6418 +  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6419 +  (exit $ac_status); } && {
  6420 +	 test -z "$ac_cxx_werror_flag" ||
  6421 +	 test ! -s conftest.err
  6422 +       } && test -s conftest$ac_exeext &&
  6423 +       $as_test_x conftest$ac_exeext; then
  6424 +  ac_cv_lib_asound_main=yes
  6425 +else
  6426 +  echo "$as_me: failed program was:" >&5
  6427 +sed 's/^/| /' conftest.$ac_ext >&5
  6429 +	ac_cv_lib_asound_main=no
  6430 +fi
  6432 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  6433 +      conftest$ac_exeext conftest.$ac_ext
  6434 +LIBS=$ac_check_lib_save_LIBS
  6435 +fi
  6436 +{ echo "$as_me:$LINENO: result: $ac_cv_lib_asound_main" >&5
  6437 +echo "${ECHO_T}$ac_cv_lib_asound_main" >&6; }
  6438 +if test $ac_cv_lib_asound_main = yes; then
  6440 +	if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then
  6441 +  { echo "$as_me:$LINENO: checking for alsa/asoundlib.h" >&5
  6442 +echo $ECHO_N "checking for alsa/asoundlib.h... $ECHO_C" >&6; }
  6443 +if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then
  6444 +  echo $ECHO_N "(cached) $ECHO_C" >&6
  6445 +fi
  6446 +{ echo "$as_me:$LINENO: result: $ac_cv_header_alsa_asoundlib_h" >&5
  6447 +echo "${ECHO_T}$ac_cv_header_alsa_asoundlib_h" >&6; }
  6448 +else
  6449 +  # Is the header compilable?
  6450 +{ echo "$as_me:$LINENO: checking alsa/asoundlib.h usability" >&5
  6451 +echo $ECHO_N "checking alsa/asoundlib.h usability... $ECHO_C" >&6; }
  6452 +cat >conftest.$ac_ext <<_ACEOF
  6453 +/* confdefs.h.  */
  6454 +_ACEOF
  6455 +cat confdefs.h >>conftest.$ac_ext
  6456 +cat >>conftest.$ac_ext <<_ACEOF
  6457 +/* end confdefs.h.  */
  6458 +$ac_includes_default
  6459 +#include <alsa/asoundlib.h>
  6460 +_ACEOF
  6461 +rm -f conftest.$ac_objext
  6462 +if { (ac_try="$ac_compile"
  6463 +case "(($ac_try" in
  6464 +  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6465 +  *) ac_try_echo=$ac_try;;
  6466 +esac
  6467 +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6468 +  (eval "$ac_compile") 2>conftest.er1
  6469 +  ac_status=$?
  6470 +  grep -v '^ *+' conftest.er1 >conftest.err
  6471 +  rm -f conftest.er1
  6472 +  cat conftest.err >&5
  6473 +  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6474 +  (exit $ac_status); } && {
  6475 +	 test -z "$ac_cxx_werror_flag" ||
  6476 +	 test ! -s conftest.err
  6477 +       } && test -s conftest.$ac_objext; then
  6478    ac_header_compiler=yes
  6479  else
  6480    echo "$as_me: failed program was:" >&5
  6481 @@ -19729,17 +18150,10 @@
  6482    rm -f conftest.er1
  6483    cat conftest.err >&5
  6484    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6485 -  (exit $ac_status); } >/dev/null; then
  6486 -  if test -s conftest.err; then
  6487 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  6488 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  6489 -  else
  6490 -    ac_cpp_err=
  6491 -  fi
  6492 -else
  6493 -  ac_cpp_err=yes
  6494 -fi
  6495 -if test -z "$ac_cpp_err"; then
  6496 +  (exit $ac_status); } >/dev/null && {
  6497 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  6498 +	 test ! -s conftest.err
  6499 +       }; then
  6500    ac_header_preproc=yes
  6501  else
  6502    echo "$as_me: failed program was:" >&5
  6503 @@ -19850,27 +18264,11 @@
  6504    rm -f conftest.er1
  6505    cat conftest.err >&5
  6506    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6507 -  (exit $ac_status); } &&
  6508 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  6509 -  { (case "(($ac_try" in
  6510 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6511 -  *) ac_try_echo=$ac_try;;
  6512 -esac
  6513 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6514 -  (eval "$ac_try") 2>&5
  6515 -  ac_status=$?
  6516 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6517 -  (exit $ac_status); }; } &&
  6518 -	 { ac_try='test -s conftest$ac_exeext'
  6519 -  { (case "(($ac_try" in
  6520 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6521 -  *) ac_try_echo=$ac_try;;
  6522 -esac
  6523 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6524 -  (eval "$ac_try") 2>&5
  6525 -  ac_status=$?
  6526 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6527 -  (exit $ac_status); }; }; then
  6528 +  (exit $ac_status); } && {
  6529 +	 test -z "$ac_cxx_werror_flag" ||
  6530 +	 test ! -s conftest.err
  6531 +       } && test -s conftest$ac_exeext &&
  6532 +       $as_test_x conftest$ac_exeext; then
  6533    ac_cv_lib_speex_main=yes
  6534  else
  6535    echo "$as_me: failed program was:" >&5
  6536 @@ -19879,7 +18277,7 @@
  6537  	ac_cv_lib_speex_main=no
  6538  fi
  6540 -rm -f core conftest.err conftest.$ac_objext \
  6541 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  6542        conftest$ac_exeext conftest.$ac_ext
  6543  LIBS=$ac_check_lib_save_LIBS
  6544  fi
  6545 @@ -19921,27 +18319,10 @@
  6546    rm -f conftest.er1
  6547    cat conftest.err >&5
  6548    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6549 -  (exit $ac_status); } &&
  6550 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  6551 -  { (case "(($ac_try" in
  6552 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6553 -  *) ac_try_echo=$ac_try;;
  6554 -esac
  6555 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6556 -  (eval "$ac_try") 2>&5
  6557 -  ac_status=$?
  6558 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6559 -  (exit $ac_status); }; } &&
  6560 -	 { ac_try='test -s conftest.$ac_objext'
  6561 -  { (case "(($ac_try" in
  6562 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6563 -  *) ac_try_echo=$ac_try;;
  6564 -esac
  6565 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6566 -  (eval "$ac_try") 2>&5
  6567 -  ac_status=$?
  6568 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6569 -  (exit $ac_status); }; }; then
  6570 +  (exit $ac_status); } && {
  6571 +	 test -z "$ac_cxx_werror_flag" ||
  6572 +	 test ! -s conftest.err
  6573 +       } && test -s conftest.$ac_objext; then
  6574    ac_header_compiler=yes
  6575  else
  6576    echo "$as_me: failed program was:" >&5
  6577 @@ -19977,17 +18358,10 @@
  6578    rm -f conftest.er1
  6579    cat conftest.err >&5
  6580    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6581 -  (exit $ac_status); } >/dev/null; then
  6582 -  if test -s conftest.err; then
  6583 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  6584 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  6585 -  else
  6586 -    ac_cpp_err=
  6587 -  fi
  6588 -else
  6589 -  ac_cpp_err=yes
  6590 -fi
  6591 -if test -z "$ac_cpp_err"; then
  6592 +  (exit $ac_status); } >/dev/null && {
  6593 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  6594 +	 test ! -s conftest.err
  6595 +       }; then
  6596    ac_header_preproc=yes
  6597  else
  6598    echo "$as_me: failed program was:" >&5
  6599 @@ -20355,27 +18729,11 @@
  6600    rm -f conftest.er1
  6601    cat conftest.err >&5
  6602    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6603 -  (exit $ac_status); } &&
  6604 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  6605 -  { (case "(($ac_try" in
  6606 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6607 -  *) ac_try_echo=$ac_try;;
  6608 -esac
  6609 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6610 -  (eval "$ac_try") 2>&5
  6611 -  ac_status=$?
  6612 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6613 -  (exit $ac_status); }; } &&
  6614 -	 { ac_try='test -s conftest$ac_exeext'
  6615 -  { (case "(($ac_try" in
  6616 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6617 -  *) ac_try_echo=$ac_try;;
  6618 -esac
  6619 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6620 -  (eval "$ac_try") 2>&5
  6621 -  ac_status=$?
  6622 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6623 -  (exit $ac_status); }; }; then
  6624 +  (exit $ac_status); } && {
  6625 +	 test -z "$ac_cxx_werror_flag" ||
  6626 +	 test ! -s conftest.err
  6627 +       } && test -s conftest$ac_exeext &&
  6628 +       $as_test_x conftest$ac_exeext; then
  6629    ac_cv_lib_ilbc_iLBC_decode=yes
  6630  else
  6631    echo "$as_me: failed program was:" >&5
  6632 @@ -20384,7 +18742,7 @@
  6633  	ac_cv_lib_ilbc_iLBC_decode=no
  6634  fi
  6636 -rm -f core conftest.err conftest.$ac_objext \
  6637 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  6638        conftest$ac_exeext conftest.$ac_ext
  6639  LIBS=$ac_check_lib_save_LIBS
  6640  fi
  6641 @@ -20426,27 +18784,10 @@
  6642    rm -f conftest.er1
  6643    cat conftest.err >&5
  6644    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6645 -  (exit $ac_status); } &&
  6646 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  6647 -  { (case "(($ac_try" in
  6648 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6649 -  *) ac_try_echo=$ac_try;;
  6650 -esac
  6651 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6652 -  (eval "$ac_try") 2>&5
  6653 -  ac_status=$?
  6654 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6655 -  (exit $ac_status); }; } &&
  6656 -	 { ac_try='test -s conftest.$ac_objext'
  6657 -  { (case "(($ac_try" in
  6658 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6659 -  *) ac_try_echo=$ac_try;;
  6660 -esac
  6661 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6662 -  (eval "$ac_try") 2>&5
  6663 -  ac_status=$?
  6664 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6665 -  (exit $ac_status); }; }; then
  6666 +  (exit $ac_status); } && {
  6667 +	 test -z "$ac_cxx_werror_flag" ||
  6668 +	 test ! -s conftest.err
  6669 +       } && test -s conftest.$ac_objext; then
  6670    ac_header_compiler=yes
  6671  else
  6672    echo "$as_me: failed program was:" >&5
  6673 @@ -20482,17 +18823,10 @@
  6674    rm -f conftest.er1
  6675    cat conftest.err >&5
  6676    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6677 -  (exit $ac_status); } >/dev/null; then
  6678 -  if test -s conftest.err; then
  6679 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  6680 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  6681 -  else
  6682 -    ac_cpp_err=
  6683 -  fi
  6684 -else
  6685 -  ac_cpp_err=yes
  6686 -fi
  6687 -if test -z "$ac_cpp_err"; then
  6688 +  (exit $ac_status); } >/dev/null && {
  6689 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  6690 +	 test ! -s conftest.err
  6691 +       }; then
  6692    ac_header_preproc=yes
  6693  else
  6694    echo "$as_me: failed program was:" >&5
  6695 @@ -20714,27 +19048,11 @@
  6696    rm -f conftest.er1
  6697    cat conftest.err >&5
  6698    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6699 -  (exit $ac_status); } &&
  6700 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  6701 -  { (case "(($ac_try" in
  6702 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6703 -  *) ac_try_echo=$ac_try;;
  6704 -esac
  6705 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6706 -  (eval "$ac_try") 2>&5
  6707 -  ac_status=$?
  6708 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6709 -  (exit $ac_status); }; } &&
  6710 -	 { ac_try='test -s conftest$ac_exeext'
  6711 -  { (case "(($ac_try" in
  6712 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6713 -  *) ac_try_echo=$ac_try;;
  6714 -esac
  6715 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6716 -  (eval "$ac_try") 2>&5
  6717 -  ac_status=$?
  6718 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6719 -  (exit $ac_status); }; }; then
  6720 +  (exit $ac_status); } && {
  6721 +	 test -z "$ac_cxx_werror_flag" ||
  6722 +	 test ! -s conftest.err
  6723 +       } && test -s conftest$ac_exeext &&
  6724 +       $as_test_x conftest$ac_exeext; then
  6725    ac_cv_lib_zrtpcpp_main=yes
  6726  else
  6727    echo "$as_me: failed program was:" >&5
  6728 @@ -20743,7 +19061,7 @@
  6729  	ac_cv_lib_zrtpcpp_main=no
  6730  fi
  6732 -rm -f core conftest.err conftest.$ac_objext \
  6733 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  6734        conftest$ac_exeext conftest.$ac_ext
  6735  LIBS=$ac_check_lib_save_LIBS
  6736  fi
  6737 @@ -20785,27 +19103,10 @@
  6738    rm -f conftest.er1
  6739    cat conftest.err >&5
  6740    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6741 -  (exit $ac_status); } &&
  6742 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  6743 -  { (case "(($ac_try" in
  6744 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6745 -  *) ac_try_echo=$ac_try;;
  6746 -esac
  6747 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6748 -  (eval "$ac_try") 2>&5
  6749 -  ac_status=$?
  6750 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6751 -  (exit $ac_status); }; } &&
  6752 -	 { ac_try='test -s conftest.$ac_objext'
  6753 -  { (case "(($ac_try" in
  6754 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6755 -  *) ac_try_echo=$ac_try;;
  6756 -esac
  6757 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6758 -  (eval "$ac_try") 2>&5
  6759 -  ac_status=$?
  6760 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6761 -  (exit $ac_status); }; }; then
  6762 +  (exit $ac_status); } && {
  6763 +	 test -z "$ac_cxx_werror_flag" ||
  6764 +	 test ! -s conftest.err
  6765 +       } && test -s conftest.$ac_objext; then
  6766    ac_header_compiler=yes
  6767  else
  6768    echo "$as_me: failed program was:" >&5
  6769 @@ -20841,17 +19142,10 @@
  6770    rm -f conftest.er1
  6771    cat conftest.err >&5
  6772    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6773 -  (exit $ac_status); } >/dev/null; then
  6774 -  if test -s conftest.err; then
  6775 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  6776 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  6777 -  else
  6778 -    ac_cpp_err=
  6779 -  fi
  6780 -else
  6781 -  ac_cpp_err=yes
  6782 -fi
  6783 -if test -z "$ac_cpp_err"; then
  6784 +  (exit $ac_status); } >/dev/null && {
  6785 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  6786 +	 test ! -s conftest.err
  6787 +       }; then
  6788    ac_header_preproc=yes
  6789  else
  6790    echo "$as_me: failed program was:" >&5
  6791 @@ -21072,27 +19366,10 @@
  6792    rm -f conftest.er1
  6793    cat conftest.err >&5
  6794    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6795 -  (exit $ac_status); } &&
  6796 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  6797 -  { (case "(($ac_try" in
  6798 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6799 -  *) ac_try_echo=$ac_try;;
  6800 -esac
  6801 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6802 -  (eval "$ac_try") 2>&5
  6803 -  ac_status=$?
  6804 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6805 -  (exit $ac_status); }; } &&
  6806 -	 { ac_try='test -s conftest.$ac_objext'
  6807 -  { (case "(($ac_try" in
  6808 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6809 -  *) ac_try_echo=$ac_try;;
  6810 -esac
  6811 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6812 -  (eval "$ac_try") 2>&5
  6813 -  ac_status=$?
  6814 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6815 -  (exit $ac_status); }; }; then
  6816 +  (exit $ac_status); } && {
  6817 +	 test -z "$ac_cxx_werror_flag" ||
  6818 +	 test ! -s conftest.err
  6819 +       } && test -s conftest.$ac_objext; then
  6820    ac_header_compiler=yes
  6821  else
  6822    echo "$as_me: failed program was:" >&5
  6823 @@ -21128,17 +19405,10 @@
  6824    rm -f conftest.er1
  6825    cat conftest.err >&5
  6826    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6827 -  (exit $ac_status); } >/dev/null; then
  6828 -  if test -s conftest.err; then
  6829 -    ac_cpp_err=$ac_cxx_preproc_warn_flag
  6830 -    ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
  6831 -  else
  6832 -    ac_cpp_err=
  6833 -  fi
  6834 -else
  6835 -  ac_cpp_err=yes
  6836 -fi
  6837 -if test -z "$ac_cpp_err"; then
  6838 +  (exit $ac_status); } >/dev/null && {
  6839 +	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
  6840 +	 test ! -s conftest.err
  6841 +       }; then
  6842    ac_header_preproc=yes
  6843  else
  6844    echo "$as_me: failed program was:" >&5
  6845 @@ -21650,27 +19920,11 @@
  6846    rm -f conftest.er1
  6847    cat conftest.err >&5
  6848    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6849 -  (exit $ac_status); } &&
  6850 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  6851 -  { (case "(($ac_try" in
  6852 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6853 -  *) ac_try_echo=$ac_try;;
  6854 -esac
  6855 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6856 -  (eval "$ac_try") 2>&5
  6857 -  ac_status=$?
  6858 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6859 -  (exit $ac_status); }; } &&
  6860 -	 { ac_try='test -s conftest$ac_exeext'
  6861 -  { (case "(($ac_try" in
  6862 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6863 -  *) ac_try_echo=$ac_try;;
  6864 -esac
  6865 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6866 -  (eval "$ac_try") 2>&5
  6867 -  ac_status=$?
  6868 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6869 -  (exit $ac_status); }; }; then
  6870 +  (exit $ac_status); } && {
  6871 +	 test -z "$ac_cxx_werror_flag" ||
  6872 +	 test ! -s conftest.err
  6873 +       } && test -s conftest$ac_exeext &&
  6874 +       $as_test_x conftest$ac_exeext; then
  6875    ac_cv_lib_boost_regex_main=yes
  6876  else
  6877    echo "$as_me: failed program was:" >&5
  6878 @@ -21679,7 +19933,7 @@
  6879  	ac_cv_lib_boost_regex_main=no
  6880  fi
  6882 -rm -f core conftest.err conftest.$ac_objext \
  6883 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  6884        conftest$ac_exeext conftest.$ac_ext
  6885  LIBS=$ac_check_lib_save_LIBS
  6886  fi
  6887 @@ -21727,27 +19981,11 @@
  6888    rm -f conftest.er1
  6889    cat conftest.err >&5
  6890    echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6891 -  (exit $ac_status); } &&
  6892 -	 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
  6893 -  { (case "(($ac_try" in
  6894 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6895 -  *) ac_try_echo=$ac_try;;
  6896 -esac
  6897 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6898 -  (eval "$ac_try") 2>&5
  6899 -  ac_status=$?
  6900 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6901 -  (exit $ac_status); }; } &&
  6902 -	 { ac_try='test -s conftest$ac_exeext'
  6903 -  { (case "(($ac_try" in
  6904 -  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6905 -  *) ac_try_echo=$ac_try;;
  6906 -esac
  6907 -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6908 -  (eval "$ac_try") 2>&5
  6909 -  ac_status=$?
  6910 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6911 -  (exit $ac_status); }; }; then
  6912 +  (exit $ac_status); } && {
  6913 +	 test -z "$ac_cxx_werror_flag" ||
  6914 +	 test ! -s conftest.err
  6915 +       } && test -s conftest$ac_exeext &&
  6916 +       $as_test_x conftest$ac_exeext; then
  6917    ac_cv_lib_boost_regex_gcc_main=yes
  6918  else
  6919    echo "$as_me: failed program was:" >&5
  6920 @@ -21756,7 +19994,7 @@
  6921  	ac_cv_lib_boost_regex_gcc_main=no
  6922  fi
  6924 -rm -f core conftest.err conftest.$ac_objext \
  6925 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  6926        conftest$ac_exeext conftest.$ac_ext
  6927  LIBS=$ac_check_lib_save_LIBS
  6928  fi
  6929 @@ -21767,6 +20005,67 @@
  6930  		LIBS="-lboost_regex-gcc $LIBS"
  6931  		echo "LIBS += -lboost_regex-gcc" >> $QT_INCL_PRO
  6932  else
  6934 +		{ echo "$as_me:$LINENO: checking for main in -lboost_regex-mt" >&5
  6935 +echo $ECHO_N "checking for main in -lboost_regex-mt... $ECHO_C" >&6; }
  6936 +if test "${ac_cv_lib_boost_regex_mt_main+set}" = set; then
  6937 +  echo $ECHO_N "(cached) $ECHO_C" >&6
  6938 +else
  6939 +  ac_check_lib_save_LIBS=$LIBS
  6940 +LIBS="-lboost_regex-mt  $LIBS"
  6941 +cat >conftest.$ac_ext <<_ACEOF
  6942 +/* confdefs.h.  */
  6943 +_ACEOF
  6944 +cat confdefs.h >>conftest.$ac_ext
  6945 +cat >>conftest.$ac_ext <<_ACEOF
  6946 +/* end confdefs.h.  */
  6949 +int
  6950 +main ()
  6951 +{
  6952 +return main ();
  6953 +  ;
  6954 +  return 0;
  6955 +}
  6956 +_ACEOF
  6957 +rm -f conftest.$ac_objext conftest$ac_exeext
  6958 +if { (ac_try="$ac_link"
  6959 +case "(($ac_try" in
  6960 +  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  6961 +  *) ac_try_echo=$ac_try;;
  6962 +esac
  6963 +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
  6964 +  (eval "$ac_link") 2>conftest.er1
  6965 +  ac_status=$?
  6966 +  grep -v '^ *+' conftest.er1 >conftest.err
  6967 +  rm -f conftest.er1
  6968 +  cat conftest.err >&5
  6969 +  echo "$as_me:$LINENO: \$? = $ac_status" >&5
  6970 +  (exit $ac_status); } && {
  6971 +	 test -z "$ac_cxx_werror_flag" ||
  6972 +	 test ! -s conftest.err
  6973 +       } && test -s conftest$ac_exeext &&
  6974 +       $as_test_x conftest$ac_exeext; then
  6975 +  ac_cv_lib_boost_regex_mt_main=yes
  6976 +else
  6977 +  echo "$as_me: failed program was:" >&5
  6978 +sed 's/^/| /' conftest.$ac_ext >&5
  6980 +	ac_cv_lib_boost_regex_mt_main=no
  6981 +fi
  6983 +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
  6984 +      conftest$ac_exeext conftest.$ac_ext
  6985 +LIBS=$ac_check_lib_save_LIBS
  6986 +fi
  6987 +{ echo "$as_me:$LINENO: result: $ac_cv_lib_boost_regex_mt_main" >&5
  6988 +echo "${ECHO_T}$ac_cv_lib_boost_regex_mt_main" >&6; }
  6989 +if test $ac_cv_lib_boost_regex_mt_main = yes; then
  6991 +			LIBS="-lboost_regex-mt $LIBS"
  6992 +			echo "LIBS += -lboost_regex-mt" >> $QT_INCL_PRO
  6993 +else
  6994    { { echo "$as_me:$LINENO: error: libboost_regex library is missing (boost package)." >&5
  6995  echo "$as_me: error: libboost_regex library is missing (boost package)." >&2;}
  6996     { (exit 1); exit 1; }; }
  6997 @@ -21774,6 +20073,8 @@
  6999  fi
  7001 +fi
  7005  { echo "$as_me:$LINENO: checking LRELEASE OPTIONS" >&5
  7006 @@ -21954,7 +20255,8 @@
  7007  ## M4sh Initialization.  ##
  7008  ## --------------------- ##
  7010 -# Be Bourne compatible
  7011 +# Be more Bourne compatible
  7012 +DUALCASE=1; export DUALCASE # for MKS sh
  7013  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
  7014    emulate sh
  7015    NULLCMD=:
  7016 @@ -21963,10 +20265,13 @@
  7017    alias -g '${1+"$@"}'='"$@"'
  7018    setopt NO_GLOB_SUBST
  7019  else
  7020 -  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
  7021 +  case `(set -o) 2>/dev/null` in
  7022 +  *posix*) set -o posix ;;
  7023 +esac
  7025  fi
  7026 -BIN_SH=xpg4; export BIN_SH # for Tru64
  7027 -DUALCASE=1; export DUALCASE # for MKS sh
  7032  # PATH needs CR
  7033 @@ -22190,19 +20495,28 @@
  7034    as_mkdir_p=false
  7035  fi
  7037 -# Find out whether ``test -x'' works.  Don't use a zero-byte file, as
  7038 -# systems may use methods other than mode bits to determine executability.
  7039 -cat >conf$$.file <<_ASEOF
  7040 -#! /bin/sh
  7041 -exit 0
  7042 -_ASEOF
  7043 -chmod +x conf$$.file
  7044 -if test -x conf$$.file >/dev/null 2>&1; then
  7045 -  as_executable_p="test -x"
  7046 +if test -x / >/dev/null 2>&1; then
  7047 +  as_test_x='test -x'
  7048  else
  7049 -  as_executable_p=:
  7050 +  if ls -dL / >/dev/null 2>&1; then
  7051 +    as_ls_L_option=L
  7052 +  else
  7053 +    as_ls_L_option=
  7054 +  fi
  7055 +  as_test_x='
  7056 +    eval sh -c '\''
  7057 +      if test -d "$1"; then
  7058 +        test -d "$1/.";
  7059 +      else
  7060 +	case $1 in
  7061 +        -*)set "./$1";;
  7062 +	esac;
  7063 +	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
  7064 +	???[sx]*):;;*)false;;esac;fi
  7065 +    '\'' sh
  7066 +  '
  7067  fi
  7068 -rm -f conf$$.file
  7069 +as_executable_p=$as_test_x
  7071  # Sed expression to map a string onto a valid CPP name.
  7072  as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  7073 @@ -22218,7 +20532,7 @@
  7074  # values after options handling.
  7075  ac_log="
  7076  This file was extended by $as_me, which was
  7077 -generated by GNU Autoconf 2.60.  Invocation command line was
  7078 +generated by GNU Autoconf 2.61.  Invocation command line was
  7080    CONFIG_FILES    = $CONFIG_FILES
  7081    CONFIG_HEADERS  = $CONFIG_HEADERS
  7082 @@ -22247,7 +20561,7 @@
  7083  Usage: $0 [OPTIONS] [FILE]...
  7085    -h, --help       print this help, then exit
  7086 -  -V, --version    print version number, then exit
  7087 +  -V, --version    print version number and configuration settings, then exit
  7088    -q, --quiet      do not print progress messages
  7089    -d, --debug      don't remove temporary files
  7090        --recheck    update $as_me by reconfiguring in the same conditions
  7091 @@ -22271,7 +20585,7 @@
  7092  cat >>$CONFIG_STATUS <<_ACEOF
  7093  ac_cs_version="\\
  7094  config.status
  7095 -configured by $0, generated by GNU Autoconf 2.60,
  7096 +configured by $0, generated by GNU Autoconf 2.61,
  7097    with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
  7099  Copyright (C) 2006 Free Software Foundation, Inc.
  7100 @@ -22563,7 +20877,7 @@
  7101  CXXCPP!$CXXCPP$ac_delim
  7102  RANLIB!$RANLIB$ac_delim
  7103  LEX!$LEX$ac_delim
  7104 -LEXLIB!$LEXLIB$ac_delim
  7105 +LEX_OUTPUT_ROOT!$LEX_OUTPUT_ROOT$ac_delim
  7106  _ACEOF
  7108    if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
  7109 @@ -22605,7 +20919,7 @@
  7110  ac_delim='%!_!# '
  7111  for ac_last_try in false false false false false :; do
  7112    cat >conf$$subs.sed <<_ACEOF
  7113 -LEX_OUTPUT_ROOT!$LEX_OUTPUT_ROOT$ac_delim
  7114 +LEXLIB!$LEXLIB$ac_delim
  7115  YACC!$YACC$ac_delim
  7116  YFLAGS!$YFLAGS$ac_delim
  7117  GREP!$GREP$ac_delim
  7118 @@ -23400,3 +21714,5 @@
  7119  echo "${ECHO_T}iLBC:        $have_ilbc" >&6; }
  7120  { echo "$as_me:$LINENO: result: ZRTP:        $have_zrtp" >&5
  7121  echo "${ECHO_T}ZRTP:        $have_zrtp" >&6; }
  7122 +{ echo "$as_me:$LINENO: result: Libgsm dynamic link:	$have_gsm" >&5
  7123 +echo "${ECHO_T}Libgsm dynamic link:	$have_gsm" >&6; }
  7124 Index: configure.in
  7125 diff -Nau configure.in.orig configure.in
  7126 --- configure.in.orig	2009-01-31 05:48:30.000000000 +0100
  7127 +++ configure.in	2009-02-23 14:26:38.000000000 +0100
  7128 @@ -195,22 +195,33 @@
  7130  # This check does not work on all platforms
  7131  # Check if libgsm is available
  7132 -# AC_CHECK_LIB(gsm, sf_open, [
  7133 -#	AC_CHECK_HEADER(gsm.h, [],
  7134 -#		[AC_MSG_ERROR([gsm header files missing (gsm.h)])])
  7135 -#	AC_DEFINE(HAVE_GSM, 1, [Define to 1 if you have the <libgsm> library.])
  7136 -#	GSM_LIBS="-lgsm"
  7137 -#	echo "LIBS += -lgsm" >> $QT_INCL_PRO
  7138 -#	have_gsm="yes" ], [
  7139 -#	have_gsm="no"
  7140 -#	GSM_LIBS="\$(top_builddir)/src/audio/gsm/libgsm.a"
  7141 -#	echo "LIBS += ../audio/gsm/libgsm.a" >> $QT_INCL_PRO ])
  7142 -have_gsm="no"
  7143 -GSM_LIBS="\$(top_builddir)/src/audio/gsm/libgsm.a"
  7144 -echo "LIBS += ../audio/gsm/libgsm.a" >> $QT_INCL_PRO
  7145 +AC_CHECK_LIB(gsm, sf_open, [
  7146 +	AC_CHECK_HEADER(gsm.h, [],
  7147 +		[AC_MSG_ERROR([gsm header files missing (gsm.h)])])
  7148 +	AC_DEFINE(HAVE_GSM, 1, [Define to 1 if you have the <libgsm> library.])
  7149 +	GSM_LIBS="-lgsm"
  7150 +	echo "LIBS += -lgsm" >> $QT_INCL_PRO
  7151 +	have_gsm="yes" ], [
  7152 +	have_gsm="no"
  7153 +	GSM_LIBS="\$(top_builddir)/src/audio/gsm/libgsm.a"
  7154 +	echo "LIBS += ../audio/gsm/libgsm.a" >> $QT_INCL_PRO ])
  7155 +#have_gsm="no"
  7156 +#GSM_LIBS="\$(top_builddir)/src/audio/gsm/libgsm.a"
  7157 +#echo "LIBS += ../audio/gsm/libgsm.a" >> $QT_INCL_PRO
  7159  AC_SUBST(GSM_LIBS)
  7161 +# Check if libgsm is available
  7162 +AC_CHECK_LIB(gsm, sf_open, [
  7163 +	AC_CHECK_HEADER(gsm.h, [],
  7164 +		[AC_MSG_ERROR([gsm header files missing (gsm.h)])])
  7165 +	AC_DEFINE(HAVE_GSM, 1, [Define to 1 if you have the <libgsm> library.])
  7166 +	LIBS="-lgsm $LIBS"
  7167 +	echo "LIBS += -lgsm" >> $QT_INCL_PRO
  7168 +	have_gsm="yes" ], [
  7169 +	have_gsm="no"
  7170 +	echo "$(top_builddir)/src/audio/gsm/libgsm.a" >> $QT_INCL_PRO ])
  7172  # Check if ALSA is available
  7173  AC_CHECK_LIB(asound, main, [
  7174  	AC_CHECK_HEADER(alsa/asoundlib.h, [],
  7175 @@ -294,7 +305,11 @@
  7176  	AC_CHECK_LIB(boost_regex-gcc, main, [
  7177  		LIBS="-lboost_regex-gcc $LIBS"
  7178  		echo "LIBS += -lboost_regex-gcc" >> $QT_INCL_PRO],
  7179 -		[AC_MSG_ERROR([libboost_regex library is missing (boost package).])])])
  7180 +		[
  7181 +		AC_CHECK_LIB(boost_regex-mt, main, [
  7182 +			LIBS="-lboost_regex-mt $LIBS"
  7183 +			echo "LIBS += -lboost_regex-mt" >> $QT_INCL_PRO],
  7184 +			[AC_MSG_ERROR([libboost_regex library is missing (boost package).])])])])
  7186  ms_CHECK_LRELEASE()
  7188 @@ -344,3 +359,4 @@
  7189  AC_MSG_RESULT([Speex:       $have_speex])
  7190  AC_MSG_RESULT([iLBC:        $have_ilbc])
  7191  AC_MSG_RESULT([ZRTP:        $have_zrtp])
  7192 +AC_MSG_RESULT([Libgsm dynamic link:	$have_gsm])
  7193 Index: src/twinkle_config.h.in
  7194 diff -Nau src/twinkle_config.h.in.orig src/twinkle_config.h.in
  7195 --- src/twinkle_config.h.in.orig	2009-01-31 05:49:04.000000000 +0100
  7196 +++ src/twinkle_config.h.in	2009-02-23 14:24:10.000000000 +0100
  7197 @@ -19,6 +19,9 @@
  7198  /* Define to 1 if you have the <history.h> header file. */
  7199  #undef HAVE_HISTORY_H
  7201 +/* Define to 1 if you have the <libgsm> library. */
  7202 +#undef HAVE_GSM
  7204  /* Define to 1 if you have the <ilbc> library. */
  7205  #undef HAVE_ILBC
  7207 Index: src/audio/twinkle_zrtp_ui.cpp
  7208 diff -Nau src/audio/twinkle_zrtp_ui.cpp.orig src/audio/twinkle_zrtp_ui.cpp
  7209 --- src/audio/twinkle_zrtp_ui.cpp.orig	2009-01-03 17:54:05.000000000 +0100
  7210 +++ src/audio/twinkle_zrtp_ui.cpp	2009-02-23 14:54:31.000000000 +0100
  7211 @@ -208,7 +208,7 @@
  7212  	ui->cb_async_zrtp_confirm_go_clear(lineno);
  7215 -void TwinkleZrtpUI::showMessage(MessageSeverity sev, int subCode) {
  7216 +void TwinkleZrtpUI::showMessage(GnuZrtpCodes::MessageSeverity sev, int subCode) {
  7217  	t_line *line = audioSession->get_line();
  7218  	int lineno = line->get_line_number();
  7220 @@ -218,11 +218,11 @@
  7221  	msg += *mapCodesToString(sev, subCode);
  7223  	switch (sev) {
  7224 -	case Info:
  7225 +	case GnuZrtpCodes::Info:
  7226  		log_file->write_report(msg, "TwinkleZrtpUI::showMessage", LOG_NORMAL,
  7227  			LOG_INFO);
  7228  		break;
  7229 -	case Warning:
  7230 +	case GnuZrtpCodes::Warning:
  7231  		log_file->write_report(msg, "TwinkleZrtpUI::showMessage", LOG_NORMAL,
  7232  			LOG_WARNING);
  7233  		break;
  7234 @@ -232,7 +232,7 @@
  7238 -void TwinkleZrtpUI::zrtpNegotiationFailed(MessageSeverity severity, int subCode) {
  7239 +void TwinkleZrtpUI::zrtpNegotiationFailed(GnuZrtpCodes::MessageSeverity severity, int subCode) {
  7240  	t_line *line = audioSession->get_line();
  7241  	int lineno = line->get_line_number();
  7243 @@ -242,11 +242,11 @@
  7244  	m += *mapCodesToString(severity, subCode);
  7246  	switch (severity) {
  7247 -	case Info:
  7248 +	case GnuZrtpCodes::Info:
  7249  		log_file->write_report(m, "TwinkleZrtpUI::zrtpNegotiationFailed", LOG_NORMAL,
  7250  			LOG_INFO);
  7251  		break;
  7252 -	case Warning:
  7253 +	case GnuZrtpCodes::Warning:
  7254  		log_file->write_report(m, "TwinkleZrtpUI::zrtpNegotiationFailed", LOG_NORMAL,
  7255  			LOG_WARNING);
  7256  		break;
  7257 @@ -266,20 +266,20 @@
  7258  	log_file->write_report(msg, "TwinkleZrtpUI::zrtpNotSuppOther");
  7261 -const string *const TwinkleZrtpUI::mapCodesToString(MessageSeverity severity, int subCode) {
  7262 +const string *const TwinkleZrtpUI::mapCodesToString(GnuZrtpCodes::MessageSeverity severity, int subCode) {
  7263    	string *m = &unknownCode;
  7265  	switch (severity) {
  7266 -	case Info:
  7267 +	case GnuZrtpCodes::Info:
  7268  		m = &infoMap[subCode];
  7269  		break;
  7270 -	case Warning:
  7271 +	case GnuZrtpCodes::Warning:
  7272  		m = &warningMap[subCode];
  7273  		break;
  7274 -	case Severe:
  7275 +	case GnuZrtpCodes::Severe:
  7276  		m = &severeMap[subCode];
  7277  		break;
  7278 -	case ZrtpError:
  7279 +	case GnuZrtpCodes::ZrtpError:
  7280  		if (subCode < 0) {
  7281  			subCode *= -1;
  7283 Index: src/audio/twinkle_zrtp_ui.h
  7284 diff -Nau src/audio/twinkle_zrtp_ui.h.orig src/audio/twinkle_zrtp_ui.h
  7285 --- src/audio/twinkle_zrtp_ui.h.orig	2009-01-03 17:53:58.000000000 +0100
  7286 +++ src/audio/twinkle_zrtp_ui.h	2009-02-23 14:55:21.000000000 +0100
  7287 @@ -56,8 +56,8 @@
  7288          virtual void secureOff();
  7289          virtual void showSAS(std::string sas, bool verified); 
  7290          virtual void confirmGoClear();
  7291 -        virtual void showMessage(MessageSeverity sev, int subCode);
  7292 -        virtual void zrtpNegotiationFailed(MessageSeverity severity, int subCode);
  7293 +        virtual void showMessage(GnuZrtpCodes::MessageSeverity sev, int subCode);
  7294 +        virtual void zrtpNegotiationFailed(GnuZrtpCodes::MessageSeverity severity, int subCode);
  7295          virtual void zrtpNotSuppOther();
  7296          //}
  7298 @@ -81,7 +81,7 @@
  7299  	 * @param subCode [in] The message code.
  7300  	 * @return The message text.
  7301  	 */
  7302 -	const string *const mapCodesToString(MessageSeverity severity, int subCode);
  7303 +	const string *const mapCodesToString(GnuZrtpCodes::MessageSeverity severity, int subCode);
  7305  };

mercurial